@charset "UTF-8";
:root {
    --blue: #dc143c;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #dc143c;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --bg-color: #fff;
    --body-color: #484848;
    --heading-color: #1f1f1f;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
        "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
*,
::after,
::before {
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}
[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}
[data-theme="dark"] {
    --p-color: #9a97f3;
    --heading-color: #fff;
    --bg-color: #222;
    --body-color: #eee;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
ul ul {
    margin-bottom: 0;
}
a {
    color: #999;
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    color: #0056b3;
    text-decoration: underline;
}
a:not([href]) {
    color: inherit;
    text-decoration: none;
}
a:not([href]):hover {
    color: inherit;
    text-decoration: none;
}
img {
    vertical-align: middle;
    border-style: none;
}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
}
table {
    border-collapse: collapse;
}
button {
    border-radius: 0;
}
button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}
button,
input,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
select {
    word-wrap: normal;
}
mark {
    padding: 0.1em;
    background-color: transparent;
    color: #dc143c;
}
[type="button"],
[type="submit"],
button {
    -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
textarea {
    overflow: auto;
    resize: vertical;
}
::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}
[hidden] {
    display: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.75rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}
h6 {
    font-size: 1rem;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-7,
.col-lg-9,
.col-md-12,
.col-md-3,
.col-md-6,
.col-sm-10,
.col-xl-2,
.col-xl-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 576px) {
    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
}
@media (min-width: 768px) {
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
}
@media (min-width: 1200px) {
    .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: var(--bg-color);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}
.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}
.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
}
.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.custom-select.is-valid,
.was-validated .custom-select:valid {
    border-color: #28a745;
    padding-right: calc(0.75em + 2.3125rem);
    background:
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
            no-repeat right 0.75rem center/8px 10px,
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e")
            #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}
textarea.form-control {
    height: auto;
}
.form-group {
    margin-bottom: 1rem;
}
.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}
.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}
.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
    color: #6c757d;
}
.form-check-label {
    margin-bottom: 0;
}
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before,
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #28a745;
}
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #dc3545;
}
.is-invalid:not(.form-control) {
    font-size: 0.8rem;
    color: #ce041c;
}
.is-invalid,
.is-valid {
    display: block;
    clear: both;
    width: 100%;
}
.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
}
@media (min-width: 576px) {
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .form-inline .input-group {
        width: auto;
    }
}
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}
.btn:hover {
    color: #212529;
    text-decoration: none;
}
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn:disabled {
    opacity: 0.65;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}
.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}
.btn-light:focus {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #dc143c;
    border-color: #dc143c;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.fade {
    transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}
.fade:not(.show) {
    opacity: 0;
}
.collapse:not(.show) {
    display: none;
}
.dropdown {
    position: relative;
}
.dropdown-toggle {
    white-space: nowrap;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.dropdown-menu[x-placement^="bottom"] {
    right: auto;
    bottom: auto;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #dc143c;
}
.dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}
.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.input-group > .form-control {
    position: relative;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 0;
}
.input-group > .form-control:focus {
    z-index: 3;
}
.input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group-append {
    display: -ms-flexbox;
    display: flex;
}
.input-group-append .btn {
    position: relative;
    z-index: 2;
}
.input-group-append .btn:focus {
    z-index: 3;
}
.input-group-append {
    margin-left: -1px;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #80bdff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}
.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}
.nav-link:focus,
.nav-link:hover {
    text-decoration: none;
}
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
    margin-bottom: -1px;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}
.tab-content > .tab-pane {
    display: none;
}
.tab-content > .active {
    display: block;
}
.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .badge {
        transition: none;
    }
}
a.badge:focus,
a.badge:hover {
    text-decoration: none;
}
.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}
.badge-warning {
    color: #212529;
    background-color: #ffc107;
}
a.badge-warning:focus,
a.badge-warning:hover {
    color: #212529;
    background-color: #d39e00;
}
a.badge-warning:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: 0.75;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.carousel {
    position: relative;
}
.border {
    border: 1px solid #dee2e6 !important;
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.03) !important;
}
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.text-center {
    text-align: center !important;
}
.text-danger {
    color: #dc3545 !important;
}
.text-light {
    color: #f8f9fa !important;
}
.text-muted {
    color: #6c757d !important;
}
@media print {
    *,
    ::after,
    ::before {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    a:not(.btn) {
        text-decoration: underline;
    }
    img {
        page-break-inside: avoid;
    }
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    @page {
        size: a3;
    }
    body {
        min-width: 992px !important;
    }
    .container {
        min-width: 992px !important;
    }
    .badge {
        border: 1px solid #000;
    }
}
#page-title {
    clear: both;
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}
#page-title .page-title {
    text-align: center;
    padding: 0;
}
#page-title .page-title > h1 {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1rem;
}
#page-title .page-title > span {
    font-weight: 400;
    font-size: 14px;
}
#page-title .breadcrumb {
    text-align: center;
    margin-bottom: 0;
    padding: 0;
}
#header[data-transparent="true"] + #page-title {
    top: -120px;
    margin-bottom: -124px;
    position: relative;
    padding: 150px 0 25px;
}
@media (max-width: 1024px) {
    #page-title .page-title > h1 {
        font-size: 26px;
        line-height: 34px;
    }
    #header[data-transparent="true"] + #page-title {
        top: -120px;
        margin-bottom: -124px;
        padding: 160px 0 80px;
    }
}
*,
h1,
h3,
h4,
h5,
h6,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
h1,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: var(--heading-color);
    margin: 0;
    letter-spacing: 0.5px;
}
.grid-item {
    width: 100%;
    float: left;
    height: auto;
    padding: 0 0 20px;
    cursor: pointer;
}
.grid-item a:not(.btn) {
    color: var(--body-color);
}
.grid-item .grid-item-wrap {
    position: relative;
    overflow: hidden;
}
.grid-item .grid-image {
    position: relative;
    overflow: hidden;
}
.grid-item .grid-image:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    transition: all 0.3s ease;
    opacity: 0;
    content: " ";
    z-index: 2;
}
.grid-item .grid-image img {
    position: relative;
    transition: all 0.5s ease-out;
    width: 100%;
    z-index: 1;
    display: block;
    height: auto;
}
.grid-item .grid-description {
    left: 0;
    margin: 0 auto;
    padding: 20px;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    transform: translate3d(0px, -38%, 0px);
    transition: all 250ms ease-in-out 0;
    visibility: hidden;
    width: 70%;
    z-index: 3;
}
.grid-item .grid-description a {
    margin: 3px;
}
.widget-categories .list {
    padding: 0;
}
.bg-light {
    background-color: #f8f9fa;
}
.text-light,
.text-light h1,
.text-light a:not(.btn),
.text-light a:not(.btn):hover:not(.btn-light),
.text-light i,
.text-light li,
.text-light div:not(.alert),
.text-light span:not(.btn-label) {
    color: #fff !important;
}
.text-bold {
    font-weight: bold !important;
}
.m-l-0 {
    margin-left: 0 !important;
}
.m-r-5 {
    margin-right: 5px !important;
}
.btn:not(.close):not(.mfp-close).btn-rounded {
    border-radius: 2em !important;
}
.btn:not(.close):not(.mfp-close).btn-reveal {
    padding: 12px 34px;
}
.btn:not(.close):not(.mfp-close).btn-reveal i {
    line-height: 18px;
    margin-top: -9px;
    opacity: 0;
    position: absolute;
    right: 28px;
    top: 50%;
    transition: all 0.2s ease-out 0;
    width: 18px;
}
.btn:not(.close):not(.mfp-close).btn-reveal:hover i {
    opacity: 1 !important;
    right: 18px;
}
.btn:not(.close):not(.mfp-close).btn-reveal.btn-reveal-left i {
    left: 28px;
    right: auto;
}
.btn:not(.close):not(.mfp-close).btn-reveal.btn-reveal-left:hover i {
    left: 18px;
    right: auto;
}
.btn:not(.close):not(.mfp-close):not(.btn-creative):not(.btn-slide).btn-reveal:hover i {
    display: none;
}
.card {
    border: 1px solid #e6e8eb;
    border-radius: 5px;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.15);
}
.card .card-header {
    background-color: var(--bg-color);
    border-bottom: 1px solid #e6e8eb;
    font-weight: 600;
    padding: 1.8rem 2rem;
}
.card .card-body {
    padding: 1.8rem 2rem;
}
.dropcap {
    background: none repeat scroll 0 0 #eeeeee;
    border-radius: 4px;
    display: inline-block;
    float: left;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    margin: 8px 20px 0 0;
    text-align: center;
    width: 40px;
}
.dropcap.dropcap-circle {
    border-radius: 50%;
}
.dropcap.dropcap-colored {
    background-color: #2250fc;
    color: #ffffff;
}
.list-arrow-icons li {
    padding-left: 0;
}
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
.breadcrumb {
    background-color: transparent;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}
.breadcrumb ul {
    display: inline;
    margin: 0;
    padding: 0;
}
.breadcrumb ul li {
    display: inline;
    position: relative;
    opacity: 0.8;
}
.breadcrumb ul li a {
    color: var(--body-color);
}
.breadcrumb ul li:hover,
.breadcrumb ul li:last-child {
    opacity: 1;
}
h1,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
h1,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-md-12,
.col-md-3,
.col-md-6,
.col-sm-10,
.col-xl-2,
.col-xl-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}
.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}
.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.bg-light {
    background-color: var(--bg-color) !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
h3,
p {
    orphans: 3;
    widows: 3;
}
h3 {
    page-break-after: avoid;
}
.sidebar-both .content {
    padding-right: 15px;
    padding-left: 15px;
}
.sidebar-both .sidebar:before,
.sidebar:before {
    right: 0;
    border-right-width: 0;
    border-left-width: 0;
    left: 0;
}
.grid-layout {
    overflow: hidden;
    margin-bottom: -2px !important;
}
.grid-layout > * {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.grid-layout {
    position: relative;
    display: block;
    clear: both;
    padding: 0;
}
.grid-layout.grid-loaded > * {
    opacity: 1;
}
.portfolio-4-columns .portfolio-item {
    width: 25%;
}
@media (max-width: 1024px) {
    .portfolio-4-columns .portfolio-item {
        width: 33.3333333333%;
    }
}
@media (max-width: 767px) {
    .portfolio-4-columns .portfolio-item {
        width: 50%;
    }
}
@media (max-width: 480px) {
    .portfolio-4-columns .portfolio-item {
        width: 100%;
    }
}
.grid-filter {
    clear: both;
    display: block;
    width: 100%;
    margin-bottom: 26px;
    position: relative;
}
.grid-filter ul {
    list-style: none;
    padding: 0;
    position: relative;
    height: auto;
}
.grid-filter li {
    position: relative;
    margin-right: 6px;
    border: 0;
    margin-bottom: -1px;
    display: inline-block;
}
.grid-filter li a {
    font-weight: 600;
    display: block;
    position: relative;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 15px;
    color: var(--body-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
}
.grid-filter li:hover a,
.grid-filter li:hover a:hover,
.grid-filter li:hover a:active,
.grid-filter li:hover a:focus,
.grid-filter li.active a,
.grid-filter li.active a:hover,
.grid-filter li.active a:active,
.grid-filter li.active a:focus {
    color: #ffffff;
}
.grid-filter li.active {
    cursor: pointer;
    pointer-events: none;
}
.grid-filter li.active a {
    color: #ffffff;
    pointer-events: none;
}
.grid-filter.center li {
    text-align: center;
    float: none;
}
@media (max-width: 1024px) {
    .grid-filter li {
        margin-right: 0;
        margin-bottom: 4px;
    }
    .grid-filter li a {
        text-align: center;
        transition: none;
    }
}
@media (max-width: 479px) {
    .grid-filter li {
        margin-right: 0;
    }
}
.portfolio-item {
    width: 100%;
    float: left;
    height: auto;
    padding: 0 0 20px;
    cursor: pointer;
}
.portfolio-item .portfolio-item-wrap {
    position: relative;
    overflow: hidden;
}
.portfolio-item .portfolio-image {
    position: relative;
    overflow: hidden;
}
.portfolio-item .portfolio-image:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    transition: all 0.3s ease;
    opacity: 0;
    content: " ";
    z-index: 2;
}
.portfolio-item .portfolio-image img {
    position: relative;
    transition: all 0.5s ease-out;
    width: 100%;
    z-index: 1;
    display: block;
    height: auto;
}
.portfolio-item .portfolio-description {
    left: 0;
    margin: 0 auto;
    padding: 20px;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    transform: translate3d(0px, -38%, 0px);
    transition: all 250ms ease-in-out 0;
    visibility: hidden;
    width: 70%;
    z-index: 3;
}
.portfolio-item .portfolio-description h3,
.portfolio-item .portfolio-description span {
    color: #ffffff;
}
.portfolio-item .portfolio-description span {
    opacity: 0;
    transition: all 0.8s ease;
    transition-delay: 0.1s;
    margin-bottom: 0;
    padding-bottom: 0;
}
.portfolio-item:not(.no-overlay):hover .portfolio-image:after {
    opacity: 0.5;
}
.portfolio-item:not(.no-overlay):hover .portfolio-description {
    transform: translate3d(0, -50%, 0);
    opacity: 1;
    visibility: visible;
}
.portfolio-item:not(.no-overlay):hover .portfolio-description h3 {
    transform: translateY(0px);
}
.portfolio-item:not(.no-overlay):hover .portfolio-description span {
    opacity: 1;
}
.portfolio-item.light-bg .portfolio-item-wrap {
    background-color: #fff;
    border: 1px solid #f3f3f3;
}
.sidebar-both .portfolio-item .portfolio-description span {
    font-size: 12px;
}
.center {
    float: none !important;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    button.btn:not(.btn-creative):not(.btn-slide),
    .btn:not(.close):not(.mfp-close):not(.btn-creative):not(.btn-slide) {
        font-size: 12px;
        height: 32px;
        line-height: 30px;
        padding: 0 14px;
    }
}
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-9,
.col-md-12,
.col-md-3,
.col-md-6,
.col-xl-2,
.col-xl-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
iframe {
    width: 100%;
}
.m-b-20 {
    margin-bottom: 20px !important;
}
.icon-box:before {
    content: "\e925";
}
div.icon-box:before {
    display: none !important;
}
.icon {
    margin-bottom: 16px;
}
.icon-box {
    margin-bottom: 50px;
    position: relative;
}
.icon-box .icon {
    height: 64px;
    position: absolute;
    width: 64px;
}
.icon-box .icon i {
    font-size: 28px;
    text-align: center;
    line-height: 66px;
    border-radius: 50%;
}
.icon-box .icon i {
    width: 100%;
    height: 100%;
    color: #333;
}
.icon-box h3 {
    margin: 0 12px 10px 83px;
    letter-spacing: 0;
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
}
.icon-box p {
    margin: 0 0 20px 83px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}
.icon-box.effect .icon i {
    z-index: 1;
}
.icon-box.effect .icon i:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    box-sizing: content-box;
}
.icon-box .icon i {
    -webkit-transition:
        background-color 0.2s,
        color 0.2s;
    transition:
        background-color 0.2s,
        color 0.2s;
}
.icon-box .icon i:after {
    top: -4px;
    left: -4px;
    padding: 4px;
    box-shadow: 0 0 0 3px #333;
    -webkit-transition:
        -webkit-transform 0.2s,
        opacity 0.2s;
    -webkit-transform: scale(0.8);
    -moz-transition:
        -moz-transform 0.2s,
        opacity 0.2s;
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transition:
        -webkit-transform 0.2s,
        opacity 0.2s;
    transition:
        transform 0.2s,
        opacity 0.2s;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}
.icon-box.effect .icon i:hover:after,
.icon-box.effect:hover .icon i:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.icon-box.small .icon {
    height: 46px;
    width: 46px;
}
.icon-box.small .icon i {
    font-size: 20px;
    line-height: 47px;
}
.icon-box.small > h3 {
    font-size: 18px;
    margin: 0 12px 4px 20px;
}
.icon-box.small > p {
    margin: 0 0 20px 20px;
    line-height: 1.6;
    font-size: 14px;
}
.icon-box.fancy .icon i {
    background-color: transparent;
    color: #222;
    font-size: 110px;
    opacity: 0.09;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border-radius: 0;
}
.icon-box.fancy.small > .icon i {
    font-size: 68px;
}
.icon-box.effect.fancy .icon i:after {
    box-shadow: 0 0 0 0 transparent;
}
.icon-box.effect.fancy:hover > .icon i {
    font-size: 110px;
}
.icon-box.effect.fancy.small:hover > .icon i {
    font-size: 76px;
}
.small {
    font-size: 80%;
    font-weight: 400;
}
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-6,
.col-md-12,
.col-md-3,
.col-md-6,
.col-sm-10,
.col-xl-2,
.col-xl-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.fa-headphones:before {
    content: "\f025";
}
.portfolio-3-columns .portfolio-item {
    width: 33.333333333%;
}
@media (max-width: 1024px) {
    .portfolio-3-columns .portfolio-item {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .portfolio-3-columns .portfolio-item {
        width: 50%;
    }
}
@media (max-width: 480px) {
    .portfolio-3-columns .portfolio-item {
        width: 100%;
    }
}
.portfolio-item a:not(.btn) {
    color: var(--body-color);
}
.portfolio-item .portfolio-description a {
    margin: 3px;
}
.breadcrumb ul li + li:before {
    content: "\e930";
    font-family: "inspiro-icons";
    margin: 0 5px;
    background-color: transparent;
}
.single-post .post-item img {
    width: 100%;
    height: auto;
}
.single-post .post-item .post-item-description {
    padding: 0;
    line-height: 28px;
    color: #676767;
}
.single-post .post-item .post-item-description p {
    font-size: 16px;
}
.widget-gallery {
    float: left;
    margin: 10px 0;
}
.widget-gallery a > img {
    float: left;
    height: auto;
    width: 25%;
    padding: 3px;
}
@media (max-width: 479px) {
    .widget-gallery a > img {
        float: left;
        height: auto;
        width: 50%;
        padding: 3px;
    }
}
button.btn.btn-sm,
.btn:not(.close):not(.mfp-close).btn-sm {
    font-size: 11px;
    height: 30px;
    line-height: 28px;
    padding: 0 14px;
}
button.btn.btn-light,
.btn:not(.close):not(.mfp-close).btn-light {
    background-color: #fff;
    border-color: #e6e8eb;
    color: #4c5667;
}
button.btn.btn-light:hover,
button.btn.btn-light:focus,
button.btn.btn-light:active,
.btn:not(.close):not(.mfp-close).btn-light:hover,
.btn:not(.close):not(.mfp-close).btn-light:focus,
.btn:not(.close):not(.mfp-close).btn-light:active {
    border-color: #e6e8eb;
    background-color: #f4f5f8;
    color: #4c5667;
}
button.btn.btn-reveal.btn-sm,
.btn:not(.close):not(.mfp-close).btn-reveal.btn-sm {
    line-height: 0;
}
button.btn:not(.btn-creative):not(.btn-slide).btn-sm,
.btn:not(.close):not(.mfp-close):not(.btn-creative):not(.btn-slide).btn-sm {
    font-size: 11px;
    height: 28px;
    line-height: 28px;
    padding: 0 12px;
}
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}
.p-t-30 {
    padding-top: 30px !important;
}
.btn:not(.close):not(.mfp-close).btn-facebook {
    background-color: #3b5998 !important;
    color: #ffffff !important;
    border-width: 0;
}
.btn:not(.close):not(.mfp-close).btn-twitter {
    background-color: #00aced !important;
    color: #ffffff !important;
    border-width: 0;
}
.btn:not(.close):not(.mfp-close).btn-linkedin {
    background-color: #007bb6 !important;
    color: #ffffff !important;
    border-width: 0;
}
.btn:not(.close):not(.mfp-close).btn-instagram {
    background-color: #517fa4 !important;
    color: #ffffff !important;
    border-width: 0;
}
.btn:not(.close):not(.mfp-close).btn-youtube {
    background-color: #bb0000 !important;
    color: #ffffff !important;
    border-width: 0;
}
.list,
.list-icon {
    list-style: none;
}
.list a,
.list-icon a {
    color: var(--body-color);
}
.list-icon {
    list-style: none;
    padding-left: 0;
}
.list-icon li {
    margin-bottom: 10px;
    margin-left: 20px;
}
.list-icon i {
    font-size: 15px;
    margin-right: 14px;
    margin-left: -20px;
}
.list-icon li:before {
    margin-left: -20px;
    position: absolute;
    font-size: 12px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;
}
.card-title {
    margin-bottom: 0.75rem;
}
.post-3-columns .post-item {
    width: 33.333333333%;
}
@media (max-width: 1024px) {
    .post-3-columns .post-item {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .post-3-columns .post-item {
        width: 50%;
    }
}
@media (max-width: 480px) {
    .post-3-columns .post-item {
        width: 100%;
    }
}
*,
h1,
h2,
h4,
h5,
h6,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
h1,
h2,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: var(--heading-color);
    margin: 0;
    letter-spacing: 0.5px;
}
@media all and (max-width: 767px) {
    h1 {
        font-size: 2.35714286em;
        line-height: 1.36363636em;
    }
    h2 {
        font-size: 1.78571429em;
        line-height: 1.5em;
    }
}
.m-b-30 {
    margin-bottom: 30px !important;
}
h1,
h2,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
h1,
h2,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-9,
.col-md-12,
.col-md-3,
.col-md-6,
.col-sm-10,
.col-xl-2,
.col-xl-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
h2,
p {
    orphans: 3;
    widows: 3;
}
h2 {
    page-break-after: avoid;
}
.post-2-columns .post-item {
    width: 50%;
}
@media (max-width: 1024px) {
    .post-2-columns .post-item {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .post-2-columns .post-item {
        width: 50%;
    }
}
@media (max-width: 480px) {
    .post-2-columns .post-item {
        width: 100%;
    }
}
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-6,
.col-md-12,
.col-md-3,
.col-md-6,
.col-sm-10,
.col-xl-2,
.col-xl-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.fa-angle-right:before {
    content: "\f105";
}
.m-l-10 {
    margin-left: 10px !important;
}
.single-post .post-item .post-item-description > h2 {
    font-size: 34px;
    letter-spacing: 0;
    line-height: 38px;
    margin-bottom: 12px;
    margin-top: 8px;
    color: var(--heading-color);
}
.list-icon.list-icon-colored li:before {
    color: #2250fc;
}
.list-icon.list-icon-caret li:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
}
.call-to-action a.btn {
    margin-top: 20px;
}
.fa-map:before {
    content: "\f279";
}
.fa-mobile-alt:before {
    content: "\f3cd";
}
.fa-whatsapp-square:before {
    content: "\f40c";
}
.fa-angle-double-down:before {
    content: "\f103";
}
.fa-angle-double-up:before {
    content: "\f102";
}
.fa-apple:before {
    content: "\f179";
}
.fa-arrow-circle-right:before {
    content: "\f0a9";
}
.fa-arrow-right:before {
    content: "\f061";
}
.fa-bell:before {
    content: "\f0f3";
}
.fa-building:before {
    content: "\f1ad";
}
.fa-calendar:before {
    content: "\f133";
}
.fa-calendar-alt:before {
    content: "\f073";
}
.fa-clock:before {
    content: "\f017";
}
.fa-code-branch:before {
    content: "\f126";
}
.fa-envelope:before {
    content: "\f0e0";
}
.fa-facebook-f:before {
    content: "\f39e";
}
.fa-google-play:before {
    content: "\f3ab";
}
.fa-history:before {
    content: "\f1da";
}
.fa-info-circle:before {
    content: "\f05a";
}
.fa-instagram:before {
    content: "\f16d";
}
.fa-linkedin:before {
    content: "\f08c";
}
.fa-map-marker-alt:before {
    content: "\f3c5";
}
.fa-money-bill-alt:before {
    content: "\f3d1";
}
.fa-paper-plane:before {
    content: "\f1d8";
}
.fa-phone:before {
    content: "\f095";
}
.fa-phone-volume:before {
    content: "\f2a0";
}
.fa-play:before {
    content: "\f04b";
}
.fa-search:before {
    content: "\f002";
}
.fa-star:before {
    content: "\f005";
}
.fa-stethoscope:before {
    content: "\f0f1";
}
.fa-tag:before {
    content: "\f02b";
}
.fa-twitter:before {
    content: "\f099";
}
.fa-user-md:before {
    content: "\f0f0";
}
.fa-viber:before {
    content: "\f409";
}
.fa-video:before {
    content: "\f03d";
}
.fa-whatsapp:before {
    content: "\f232";
}
.fa-youtube:before {
    content: "\f167";
}
.fa-align-justify:before {
    content: "\f039";
}
.fa-bolt:before {
    content: "\f0e7";
}
.fa-chart-line:before {
    content: "\f201";
}
.fa-cut:before {
    content: "\f0c4";
}
.fa-procedures:before {
    content: "\f487";
}
.fa-retweet:before {
    content: "\f079";
}
.fa-syringe:before {
    content: "\f48e";
}
.fa-user-check:before {
    content: "\f4fc";
}
.fa-user-clock:before {
    content: "\f4fd";
}
.fa-chevron-circle-right:before {
    content: "\f138";
}
.fa-globe-americas:before {
    content: "\f57d";
}
.fa-home:before {
    content: "\f015";
}
.fa-hospital:before {
    content: "\f0f8";
}
.fa-users:before {
    content: "\f0c0";
}
.fa-moon:before {
    content: "\f186";
}
.fa-sun:before {
    content: "\f185";
}
@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    src: url(font/fa-brands-400.eot);
    src:
        url(font/fa-brands-400.eot#iefix)
            format("embedded-opentype"),
        url(font/fa-brands-400.woff2) format("woff2"),
        url(font/fa-brands-400.woff) format("woff"),
        url(font/fa-brands-400.ttf) format("truetype"),
        url(font/fa-brands-400.svg#fontawesome) format("svg");
    font-display: swap;
}
.fab {
    font-family: "Font Awesome 5 Brands";
}
.fa,
.far,
.fas {
    font-family: "Font Awesome 5 Free";
}
.fa,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    src: url(font/fa-regular-400.eot);
    src:
        url(font/fa-regular-400.eot#iefix)
            format("embedded-opentype"),
        url(font/fa-regular-400.woff2) format("woff2"),
        url(font/fa-regular-400.woff) format("woff"),
        url(font/fa-regular-400.ttf) format("truetype"),
        url(font/fa-regular-400.svg#fontawesome) format("svg");
    font-display: swap;
}
.far {
    font-weight: 400;
}
@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    src: url(font/fa-solid-900.eot);
    src:
        url(font/fa-solid-900.eot#iefix)
            format("embedded-opentype"),
        url(font/fa-solid-900.woff2) format("woff2"),
        url(font/fa-solid-900.woff) format("woff"),
        url(font/fa-solid-900.ttf) format("truetype"),
        url(font/fa-solid-900.svg#fontawesome) format("svg");
    font-display: swap;
}
.fa,
.fas {
    font-weight: 900;
}

html {
    overflow-x: hidden;
}
body .body-inner {
    padding: 0;
    margin: 0;
}
@media (max-width: 1024px) {
    body .body-inner {
        width: 100%;
        margin: 0;
    }
}
section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    background-color: var(--bg-color);
}
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
}
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}
#page-content:not(.no-sidebar) {
    padding: 40px 0;
}
#page-content:not(.no-sidebar).sidebar-both > .container > .row {
    flex-direction: row;
}
.content {
    padding-right: 25px;
    margin-bottom: 26px;
}
.sidebar {
    padding-left: 25px;
}
.sidebar-both .sidebar {
    padding-left: 15px;
    padding-right: 25px;
}
.sidebar-both .content {
    padding-right: 25px;
    padding-left: 25px;
}
.sidebar-both .content + .sidebar {
    padding-left: 25px;
    border-right-width: 0;
    padding-right: 15px;
}
@media (max-width: 1024px) {
    #page-content:not(.no-sidebar).sidebar-both > .container > .row .content {
        order: -1;
    }
    .content,
    .sidebar {
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .sidebar-both .content,
    .sidebar-both .content + .sidebar {
        padding-right: 15px;
        padding-left: 15px;
    }
    .sidebar-both .sidebar:before,
    .sidebar:before {
        right: 0;
        border-right-width: 0;
        border-left-width: 0;
        left: 0;
    }
    .sidebar-both .content + .sidebar {
        border-right-width: 0;
    }
    .sidebar-both .content + .sidebar:before {
        border-right-width: 0;
        border-left-width: 0;
    }
}
@media (max-width: 1024px) {
    #page-content {
        padding: 20px 0;
    }
}
.grid-item {
    height: auto !important;
}
#topbar {
    position: relative;
    z-index: 200;
    background-color: #ffffff;
}
#topbar .social-icons {
    float: right;
    height: 100%;
    overflow: hidden;
}
#topbar .social-icons li,
#topbar .social-icons li a {
    float: left;
    list-style: outside none none;
}
#topbar .social-icons li a {
    border-radius: 0;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 35px;
    overflow: hidden;
    margin: 0;
}
#topbar.dark {
    background-color: #1f1f1f;
}
#topbar {
    border-bottom: 1px solid #eeeeee;
}
#topbar.dark {
    background-color: #252525;
    border-color: rgba(231, 231, 231, 0.25);
}
.topbar-transparent {
    margin-top: -2px;
}
#topbar.dark {
    border-bottom: 1px solid rgba(231, 231, 231, 0.05);
}
#topbar.dark.topbar-transparent {
    background-color: transparent;
    border-bottom: 1px solid rgba(144, 144, 144, 0.25);
}
#topbar ~ #header[data-transparent="true"] + #slider {
    top: -120px;
    margin-bottom: -120px;
}
@media (max-width: 1024px) {
    #topbar.topbar-transparent.dark {
        background-color: var(--bg-color) !important;
    }
    #topbar.topbar-transparent.dark .social-icons li a {
        color: var(--body-color) !important;
    }
}
#header {
    position: relative;
    width: 100%;
    z-index: 199 !important;
    height: 80px;
    line-height: 80px;
}
#header .container {
    position: relative;
}
#header .header-inner {
    height: 80px;
    background-color: #fff;
    left: 0;
    right: 0;
    transition: all 0.4s ease-in-out;
}
#header .header-inner #logo {
    float: left;
    font-size: 28px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    height: 80px;
}
#header .header-inner #logo a > img {
    vertical-align: inherit;
    transition: all 0.4s ease-in-out;
    height: 80px;
    width: auto;
}
#header .header-inner #logo a > img,
#header .header-inner #logo a [class*="logo-"] {
    display: none;
}
#header .header-inner #logo a .logo-default {
    display: block;
}
#header .header-inner #logo a {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    color: #1f1f1f;
    font-weight: 800;
    letter-spacing: 1.5px;
}
#header[data-transparent="true"]:not(.sticky-active) .header-inner {
    background-color: transparent;
}
#header[data-transparent="true"] + .inspiro-slider,
#header[data-transparent="true"] + #slider {
    top: -80px;
    margin-bottom: -80px;
}
#header[data-transparent="true"]:not(.sticky-active) .header-inner,
#header[data-transparent="true"]:not(.sticky-active).dark .header-inner {
    background-color: transparent;
}
#header[data-transparent="true"] + .inspiro-slider,
#header[data-transparent="true"] + #slider {
    top: -80px;
    margin-bottom: -80px;
}
#header.header-sticky .header-inner,
#header.header-sticky #header-wrap {
    transition: top 0.8s ease-in-out;
    top: -140px;
}
#header.header-sticky.sticky-active .header-inner,
#header.header-sticky.sticky-active #header-wrap {
    box-shadow: 0 12px 6px rgba(0, 0, 0, 0.06);
    top: 0;
    position: fixed;
    margin: 0 auto;
    width: 100%;
}
#header.dark .header-inner {
    background-color: #181818;
}
#header.dark .header-inner #logo a > img,
#header.dark .header-inner #logo a [class*="logo-"] {
    display: none;
}
#header.dark .header-inner #logo a .logo-dark {
    display: block;
}
#header.dark .header-inner #logo a {
    color: #ffffff;
}
#header.dark .header-inner .lines,
#header.dark .header-inner .lines:before,
#header.dark .header-inner .lines:after {
    background-color: #ffffff;
}
#header.dark[data-transparent="true"]:not(.sticky-active) .header-inner {
    background-color: transparent;
}
@media (max-width: 1024px) {
    #header .header-inner {
        height: auto;
    }
    #header #logo {
        position: absolute !important;
        width: 100%;
        text-align: center;
        margin: 0 !important;
        float: none;
        height: 80px;
        left: 0;
        right: 0;
        padding: 0 !important;
    }
    #header #logo > a {
        display: inline-block;
    }
    #header #logo > a img {
        max-height: 80px;
        padding-bottom: 6px;
    }
}
#mainMenu {
    padding: 0;
}
#mainMenu > .container {
    padding: 0 !important;
}
#mainMenu [class*="col-lg-"] {
    line-height: 24px !important;
}
#mainMenu nav {
    float: right;
}
#mainMenu nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#mainMenu nav > ul > li {
    float: left;
    border: 0;
    transition: all 0.3s ease;
    margin-left: 6px;
    position: relative;
}
#mainMenu nav > ul > li > a {
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 10px 12px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #000000;
    border-radius: 0;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    transition: all 0.3s ease;
    line-height: normal;
}
#mainMenu nav > ul > li > a:after,
#mainMenu nav > ul > li > a:before {
    transition: all 0.3s ease;
}
#mainMenu nav > ul > li:hover > a,
#mainMenu nav > ul > li:focus > a {
    color: #2250fc;
}
#mainMenu nav > ul > li.dropdown:before {
    content: "\e930";
    transform: rotate(90deg);
    font-family: "inspiro-icons";
    opacity: 0.6;
    position: absolute;
    right: 16px;
    color: #262626;
    font-size: 16px;
    display: none;
}
#mainMenu nav > ul > li .dropdown-arrow {
    display: none;
    height: 40px;
    width: 50px;
    position: absolute;
    z-index: 1;
    right: -10px;
    top: 0;
    cursor: pointer;
}
#mainMenu nav > ul > li .dropdown-menu {
    background-position: right bottom;
    background-repeat: no-repeat;
    min-width: 230px;
    top: auto;
    background-color: #ffffff;
    border: 0;
    color: #000000;
    border-style: solid;
    border-color: #eeeeee;
    border-width: 1px !important;
    left: auto;
    margin: 0;
    margin-top: -6px;
    border-radius: 4px;
    box-shadow: 0 33px 32px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: none;
    position: absolute;
}
#mainMenu nav > ul > li .dropdown-menu > li > a,
#mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    font-style: normal;
    color: #444;
    font-family: "Poppins", sans-serif;
    padding: 12px 20px 12px 18px;
    display: block;
    transition: 0.3s ease;
}
#mainMenu nav > ul > li .dropdown-menu > li > a:focus,
#mainMenu nav > ul > li .dropdown-menu > li > a:hover,
#mainMenu nav > ul > li .dropdown-menu > li > a:active,
#mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a:focus,
#mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a:hover,
#mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a:active {
    background-color: transparent;
    color: #2250fc;
    cursor: pointer;
}
#mainMenu nav > ul > li .dropdown-menu > li:hover > a,
#mainMenu nav > ul > li .dropdown-menu > li:focus > a,
#mainMenu nav > ul > li .dropdown-menu > li:active > a {
    color: #2250fc;
}
#mainMenu nav > ul > li.mega-menu-item {
    position: static;
}
#mainMenu nav > ul > li.mega-menu-item > .dropdown-menu {
    left: 0;
    right: 0;
    overflow: hidden;
    width: 1140px;
    transition-duration: 0.3s !important;
}
#mainMenu nav > ul > li.mega-menu-item .mega-menu-content {
    padding: 20px;
}
#mainMenu nav > ul > li.mega-menu-item .mega-menu-content .mega-menu-title {
    font-family: "Poppins", sans-serif;
    color: #000000;
    font-size: 13px;
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 12px;
}
#mainMenu nav > ul > li.mega-menu-item .mega-menu-content [class*="col-"] > ul > li > a {
    padding: 10px 0;
}
#mainMenu nav > ul > li.mega-menu-item .mega-menu-content [class*="col-"] > ul > li:last-child > a {
    padding-bottom: 0;
}
#mainMenu nav > ul > li:not(.hover-active):hover > ul {
    display: block;
    animation: fade-in-out 0.3s ease;
}
#mainMenu nav > ul > li:last-child {
    margin-right: 0;
}
#mainMenu nav > ul li ul {
    list-style: none;
    padding: 0;
}
.dark #mainMenu nav > ul > li > a {
    color: #ffffff;
}
.dark #mainMenu nav > ul > li:hover > a,
.dark #mainMenu nav > ul > li:focus > a {
    color: #e2e2e2;
}
.dark #mainMenu nav > ul > li.dropdown:before {
    color: #ffffff;
}
#mainMenu-trigger {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    height: 80px;
    z-index: 1;
    float: right;
}
@media (max-width: 1024px) {
    #mainMenu-trigger {
        position: relative;
        opacity: 1;
        visibility: visible;
    }
    #mainMenu:not(.menu-overlay) {
        max-height: 0;
        clear: both;
        display: block;
        width: 100%;
        opacity: 1;
        overflow: hidden;
        transition:
            max-height 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86),
            opacity 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    }
    #mainMenu:not(.menu-overlay) > .container {
        text-align: left !important;
        width: 100%;
        max-width: 100%;
    }
    #mainMenu:not(.menu-overlay) nav {
        line-height: 40px;
        float: none;
        width: 100%;
        padding-bottom: 20px;
        transition: 0.7s ease;
        opacity: 0;
        transform: translateY(-18px);
    }
    #mainMenu:not(.menu-overlay) nav > ul {
        float: none;
        width: 100%;
    }
    #mainMenu:not(.menu-overlay) nav > ul > li {
        padding: 0;
        margin: 0;
        clear: both;
        float: none;
        display: block;
        border: 0;
    }
    #mainMenu:not(.menu-overlay) nav > ul > li > a {
        display: block;
        padding: 12px 0;
        font-size: 14px;
        border: 0;
        border-radius: 0;
    }
    #mainMenu:not(.menu-overlay) nav > ul > li > a:after {
        display: none;
    }
    #mainMenu:not(.menu-overlay) nav > ul > li.dropdown:before {
        right: 14px;
        display: block;
    }
    #mainMenu:not(.menu-overlay) nav > ul > li .dropdown-arrow {
        display: inline;
    }
    #mainMenu:not(.menu-overlay) nav > ul li.hover-active > .dropdown-menu {
        visibility: visible;
        opacity: 1;
        max-height: 3000px;
    }
    #mainMenu:not(.menu-overlay) nav > ul > li .dropdown-menu {
        background-image: none !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition:
            max-height 0.5s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        position: static;
        clear: both;
        float: none;
        box-shadow: none;
        border: 0 !important;
        min-width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 0 16px;
    }
    #mainMenu:not(.menu-overlay) nav > ul > li .dropdown-menu > li > a,
    #mainMenu:not(.menu-overlay) nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a {
        line-height: 16px;
        font-size: 14px;
        padding: 12px 0;
        display: block;
    }
    #mainMenu:not(.menu-overlay) nav > ul > li.mega-menu-item {
        position: relative;
    }
    #mainMenu:not(.menu-overlay) nav > ul > li.mega-menu-item .mega-menu-content {
        padding: 0 0 0 15px;
    }
    #mainMenu:not(.menu-overlay) nav > ul > li.mega-menu-item .mega-menu-content .mega-menu-title {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    #mainMenu:not(.menu-overlay) nav > ul > li.mega-menu-item .mega-menu-content [class*="col-"] > ul > li > a {
        padding: 10px 0;
    }
    #mainMenu:not(.menu-overlay)
        nav
        > ul
        > li.mega-menu-item
        .mega-menu-content
        [class*="col-"]
        > ul
        > li:last-child
        > a {
        padding-bottom: 12px;
    }
    #mainMenu:not(.menu-overlay) nav > ul li > .dropdown-menu {
        border: 0 none;
        background-color: transparent;
        display: block;
    }
    #mainMenu:not(.menu-overlay) nav > ul [class*="col-lg"] {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        flex: 100%;
        padding: 0;
        margin: 0;
    }
    #mainMenu:not(.menu-overlay).menu-animate nav {
        opacity: 1;
        transform: translateY(0);
    }
    .mainMenu-open #header #mainMenu {
        width: calc(100% + 14px);
        display: block;
        opacity: 1;
        overflow-y: scroll;
    }
    .mainMenu-open #header .header-inner,
    .mainMenu-open #header #header-wrap {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        background-color: #fff !important;
    }
}
@keyframes fade-in-out {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.header-extras {
    float: right;
    z-index: 199;
    position: relative;
    height: 80px;
}
.header-extras > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header-extras > ul > li {
    float: left;
    border: 0;
}
.header-extras > ul > li a,
.header-extras > ul > li i {
    color: var(--body-color);
}
.header-extras > ul > li > a:not(.btn) {
    padding-left: 6px;
    padding-right: 6px;
}
.header-extras > ul > li > a:not(.btn) {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    position: relative;
    display: block;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 700;
}
.header-extras > ul > li > a:not(.btn) i {
    font-size: 14px;
    position: relative;
}
.dark .header-extras a > i {
    color: #ffffff;
}
@media (max-width: 1024px) {
    .header-extras {
        float: left;
    }
    .header-extras > ul > li > a > i {
        font-size: 16px !important;
    }
    .header-extras > ul > li:first-child > a {
        padding-left: 0;
    }
}
#search {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    line-height: normal;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}
#search .search-form {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 1);
    transition:
        opacity 0.5s,
        transform 0.5s;
    margin: 80px 0;
}
#search .search-form .text-muted {
    opacity: 0.4;
}
#search .search-form .form-control {
    border-width: 0 0 2px;
    border-radius: 0;
    font-size: 34px;
    padding: 10px 0;
    border-color: #cecece;
    font-weight: 700;
    margin-bottom: 20px;
    background-color: transparent;
}
#search .search-form .form-control:focus {
    background-color: transparent;
    outline: none;
    box-shadow: none;
}
#search .search-form .form-control:-webkit-input-placeholder {
    color: #999999;
}
#search .search-form .form-control:-moz-placeholder {
    color: #999999;
}
#search .search-form .form-control:-ms-input-placeholder {
    color: #999999;
}
#search .btn-search-close {
    font-size: 2em;
    position: absolute;
    top: 20px;
    right: 30px;
    display: none;
    padding: 12px;
    line-height: 12px;
    background-color: #2250fc;
    border: 0;
    cursor: pointer;
    border-radius: 5px;
    color: #ffffff;
    opacity: 0;
    transform: scale3d(0.8, 0.8, 1);
    transition:
        opacity 0.5s,
        transform 0.5s;
}
body.search-open #topbar {
    z-index: 199;
}
body.search-open #search {
    z-index: 201;
    pointer-events: auto;
    opacity: 1;
}
body.search-open #search #search-logo {
    display: block;
    opacity: 1;
}
body.search-open #search .search-form {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}
body.search-open #search .btn-search-close {
    display: block;
    opacity: 1;
    transform: scale3d(1, 1, 1);
}
body.search-open #search .search-suggestion {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
body.search-open #search .search-suggestion:nth-child(2) {
    transition-delay: 0.1s;
}
body.search-open #search .search-suggestion:nth-child(3) {
    transition-delay: 0.2s;
}
@media (max-width: 1024px) {
    #search .search-form {
        margin: 40px;
    }
    #search .search-form .form-control {
        font-size: 24px;
        margin-bottom: 8px;
    }
    #search .search-form .text-muted {
        font-size: 10px;
    }
    #search .btn-search-close {
        font-size: 1em;
        padding: 8px;
        line-height: 8px;
    }
}
*,
h1,
h2,
h3,
h4,
h5,
h6,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
footer,
header,
nav,
section {
    display: block;
}
html {
    font-size: 88%;
}
@media all and (max-width: 768px) {
    html {
        font-size: 81.25%;
    }
}
body {
    font-size: 1rem;
    line-height: 1.65714286em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Poppins", sans-serif;
    color: var(--body-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: var(--heading-color);
    margin: 0;
    letter-spacing: 0.5px;
}
h1 {
    font-size: 3.14285714em;
    line-height: 1.31818182em;
}
h1:not(:last-child) {
    margin-bottom: 20px;
}
h2 {
    font-size: 2.35714286em;
    line-height: 1.36363636em;
    font-weight: 500;
}
h2:not(:last-child) {
    margin-bottom: 16px;
}
h3 {
    font-size: 1.78571429em;
    line-height: 1.5em;
    font-weight: 500;
}
h3:not(:last-child) {
    margin-bottom: 12px;
}
h4 {
    font-size: 1.35714286em;
    line-height: 1.68421053em;
    font-weight: 600;
}
h4:not(:last-child) {
    margin-bottom: 8px;
}
h5 {
    font-size: 1em;
    line-height: 1.85714286em;
    font-weight: 500;
}
h5:not(:last-child) {
    margin-bottom: 6px;
}
h6 {
    font-size: 0.85714286em;
    line-height: 2.16666667em;
    font-weight: 500;
}
h6:not(:last-child) {
    margin-bottom: 6px;
}
@media all and (max-width: 767px) {
    h1 {
        font-size: 2.35714286em;
        line-height: 1.36363636em;
    }
    h2 {
        font-size: 1.78571429em;
        line-height: 1.5em;
    }
    h3 {
        font-size: 1.35714286em;
        line-height: 1.85714286em;
    }
}
p {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    line-height: 1.7;
    letter-spacing: 0;
    color: #777777;
    font-family: "Poppins", sans-serif;
}
a:not(.btn):not(.badge):hover,
a:not(.btn):not(.badge):focus,
a:not(.btn):not(.badge):active {
    text-decoration: none;
    outline: none;
    color: #2250fc;
}
a:not(.btn):not(.badge):not(.btn):not([href]):not([tabindex]) {
    color: var(--body-color);
}
.inspiro-slider {
    width: 100%;
    height: 72vh;
    overflow: hidden;
    transition: opacity 0.3s ease;
    min-height: 100%;
    width: 100%;
}
.inspiro-slider.slider-fullscreen {
    height: 100vh;
}
.inspiro-slider .slide {
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 20%;
    z-index: 1;
    width: 100%;
    display: flex !important;
}
.inspiro-slider .slide .container {
    padding-top: 120px;
    padding-bottom: 100px;
    align-self: center !important;
}
.inspiro-slider .slide .slide-captions {
    position: relative;
    text-align: left;
}
.inspiro-slider .slide .slide-captions h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 30px;
    color: #ffffff;
}
.inspiro-slider .slide .slide-captions h4 {
    color: #ffffff;
}
.inspiro-slider .slide .slide-captions .strong {
    color: #ffffff;
    display: block;
    font-size: 12px !important;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 18px;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}
.inspiro-slider .slide .slide-captions .strong::after {
    border-top: 3px solid #fff;
    content: "";
    display: block;
    margin-bottom: 0;
    margin-top: 8px;
    width: 26px;
}
.inspiro-slider .slide-captions > * {
    opacity: 0;
}
#slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    background-color: #fff;
    z-index: 1;
}
.flickity-viewport {
    overflow: hidden !important;
}
.flickity-slider > div > img,
.carousel .polo-carousel-item img {
    width: 100%;
}
.carousel[data-auto-width="true"] .flickity-slider > div > img,
.carousel[data-auto-width="true"] .carousel .polo-carousel-item img,
.carousel.custom-height .flickity-slider > div > img,
.carousel.custom-height .carousel .polo-carousel-item img {
    height: 100%;
    width: auto;
}
.flickity-enabled {
    position: relative;
}
.flickity-enabled:focus {
    outline: none;
}
.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}
.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}
.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
.flickity-enabled.is-fade .flickity-slider > * {
    pointer-events: none;
    z-index: 0;
}
.flickity-enabled.is-fade .flickity-slider > .is-selected {
    pointer-events: auto;
    z-index: 1;
}
.flickity-button {
    background: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: -23px 0 0;
    display: block;
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease 0;
    color: #9896a6;
    text-align: center;
    z-index: 200;
    border: 0;
    box-sizing: initial;
    opacity: 0;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.inspiro-slider .flickity-button {
    width: 78px;
    height: 78px;
    line-height: 78px;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    padding: 0;
}
.inspiro-slider .flickity-button::before {
    line-height: 78px;
    font-size: 28px;
    color: #ffffff;
}
.flickity-button:before {
    color: #1f1f1f;
}
.flickity-button:hover {
    background-color: #2250fc;
}
.flickity-button:hover:before {
    color: #ffffff;
}
.flickity-button.next:before,
.flickity-button.previous:before {
    font-size: 25px;
    font-family: inspiro-icons !important;
}
.flickity-button.next {
    right: 0;
}
.flickity-button.next:before {
    margin-left: 4px;
    content: "\e930";
}
.flickity-button.next.disabled {
    opacity: 0;
}
.flickity-button.previous {
    left: 0;
}
.flickity-button.previous:before {
    content: "\e92f";
    margin-right: 2px;
}
.flickity-button.previous.disabled {
    opacity: 0;
}
.flickity-button svg {
    display: none !important;
}
.inspiro-slider:hover .flickity-button.next,
.carousel:hover .flickity-button.next {
    left: auto;
    right: 10px;
    opacity: 1;
}
.inspiro-slider:hover .flickity-button.next.disabled,
.carousel:hover .flickity-button.next.disabled {
    opacity: 0;
}
.inspiro-slider:hover .flickity-button.previous,
.carousel:hover .flickity-button.previous {
    right: auto;
    left: 10px;
    opacity: 1;
}
.inspiro-slider:hover .flickity-button.previous.disabled,
.carousel:hover .flickity-button.previous.disabled {
    opacity: 0;
}
.inspiro-slider.arrows-dark .flickity-button,
.carousel.arrows-dark .flickity-button {
    color: #9896a6;
}
.inspiro-slider.arrows-dark .flickity-button:hover,
.carousel.arrows-dark .flickity-button:hover {
    background-color: #2250fc;
}
.inspiro-slider.arrows-dark .flickity-button:hover:before,
.carousel.arrows-dark .flickity-button:hover:before {
    color: #ffffff;
}
.inspiro-slider.arrows-grey .flickity-button,
.carousel.arrows-grey .flickity-button {
    color: #cecece;
}
.inspiro-slider.arrows-grey .flickity-button:hover,
.carousel.arrows-grey .flickity-button:hover {
    background-color: #2250fc;
}
.inspiro-slider.arrows-grey .flickity-button:hover:before,
.carousel.arrows-grey .flickity-button:hover:before {
    color: #ffffff;
}
.inspiro-slider.arrows-only .flickity-button,
.carousel.arrows-only .flickity-button {
    background-color: transparent;
    color: #ffffff;
    box-shadow: none;
}
.inspiro-slider.arrows-only .flickity-button:hover,
.carousel.arrows-only .flickity-button:hover {
    background-color: transparent;
}
.inspiro-slider.arrows-only .flickity-button:hover:before,
.carousel.arrows-only .flickity-button:hover:before {
    color: #ffffff;
}
.inspiro-slider.arrows-visibile .flickity-button.next,
.carousel.arrows-visibile .flickity-button.next {
    left: auto;
    right: 10px;
    opacity: 1;
}
.inspiro-slider.arrows-visibile .flickity-button.previous,
.carousel.arrows-visibile .flickity-button.previous {
    right: auto;
    left: 10px;
    opacity: 1;
}
.inspiro-slider .portfolio-item,
.carousel .portfolio-item {
    padding-bottom: 0;
}
.polo-carousel-item.is-selected {
    z-index: 2;
}
.flickity-button-icon {
    fill: currentColor;
}
.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
    z-index: 3;
    height: 10px;
}
.flickity-page-dots .dot {
    display: inline-block;
    position: relative;
    margin: 0 4px;
    width: 10px;
    height: 10px;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
    background-color: transparent;
    box-shadow: inset 0 0 0 2px #cccccc;
    transition: background 0.8s ease;
}
.flickity-page-dots .dot:after {
    outline: medium none;
    text-indent: -999em;
    border-radius: 50%;
    overflow: hidden;
    content: "";
    position: absolute;
    bottom: 0;
    height: 0;
    left: 0;
    width: 100%;
    background-color: #cccccc;
    box-shadow: 0 0 1px #cccccc;
    transition: height 0.3s ease;
}
.flickity-page-dots .dot.is-selected:after {
    height: 100%;
}
.inspiro-slider.dots-inside .flickity-page-dots,
.carousel.dots-inside .flickity-page-dots {
    bottom: 20px;
    position: absolute;
}
.inspiro-slider.dots-inside-top .flickity-page-dots,
.carousel.dots-inside-top .flickity-page-dots {
    top: 20px;
}
.inspiro-slider.dots-outside-top .flickity-page-dots,
.carousel.dots-outside-top .flickity-page-dots {
    top: -46px;
}
.inspiro-slider.dots-light .flickity-page-dots .dot,
.carousel.dots-light .flickity-page-dots .dot {
    box-shadow: inset 0 0 0 2px #ffffff;
}
.inspiro-slider.dots-light .flickity-page-dots .dot:after,
.carousel.dots-light .flickity-page-dots .dot:after {
    background-color: #ffffff;
    box-shadow: 0 0 1px #ffffff;
}
.inspiro-slider.dots-dark .flickity-page-dots .dot,
.carousel.dots-dark .flickity-page-dots .dot {
    box-shadow: inset 0 0 0 2px #9896a6;
}
.inspiro-slider.dots-dark .flickity-page-dots .dot:after,
.carousel.dots-dark .flickity-page-dots .dot:after {
    background-color: #9896a6;
}
.inspiro-slider.dots-grey .flickity-page-dots .dot,
.carousel.dots-grey .flickity-page-dots .dot {
    box-shadow: inset 0 0 0 2px #bbbbbb;
}
.inspiro-slider.dots-grey .flickity-page-dots .dot:after,
.carousel.dots-grey .flickity-page-dots .dot:after {
    background-color: #bbbbbb;
}
.inspiro-slider.dots-creative .flickity-page-dots .dot,
.carousel.dots-creative .flickity-page-dots .dot {
    opacity: 0.5;
    box-shadow: none;
    border-radius: 0;
    background-color: #ffffff;
    height: 4px;
    width: 30px;
}
.inspiro-slider.dots-creative .flickity-page-dots .dot:after,
.carousel.dots-creative .flickity-page-dots .dot:after {
    background-color: #ffffff;
    box-shadow: none;
}
.inspiro-slider.dots-creative .flickity-page-dots .dot:hover,
.carousel.dots-creative .flickity-page-dots .dot:hover {
    opacity: 0.6;
}
.inspiro-slider.dots-creative .flickity-page-dots .dot.is-selected,
.carousel.dots-creative .flickity-page-dots .dot.is-selected {
    opacity: 1;
}
.inspiro-slider.dots-creative.dots-dark .flickity-page-dots .dot,
.carousel.dots-creative.dots-dark .flickity-page-dots .dot {
    background-color: #9896a6;
}
.inspiro-slider.dots-creative.dots-dark .flickity-page-dots .dot:after,
.carousel.dots-creative.dots-dark .flickity-page-dots .dot:after {
    background-color: #9896a6;
}
.flickity-rtl .flickity-page-dots {
    direction: rtl;
}
.carousel-promotion .owl-stage-outer {
    overflow: unset !important;
}
.carousel-promotion .owl-stage-outer .polo-carousel-item {
    opacity: 0.3;
    transition: opacity 400ms ease;
}
.carousel-promotion .owl-stage-outer .polo-carousel-item.active {
    opacity: 1;
}
.carousel {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.carousel.carousel-loaded {
    opacity: 1;
    visibility: visible;
}
.item-video {
    position: relative;
    width: 100%;
    height: 400px;
}
.item-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.embed-responsive::before {
    display: block;
    content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive-21by9::before {
    padding-top: 42.857143%;
}
.embed-responsive-16by9::before {
    padding-top: 56.25%;
}
.embed-responsive-4by3::before {
    padding-top: 75%;
}
.embed-responsive-1by1::before {
    padding-top: 100%;
}
@media (max-width: 1024px) {
    .inspiro-slider .flickity-button:hover {
        background-color: transparent;
    }
    .inspiro-slider .flickity-button.next,
    .inspiro-slider .flickity-button.next:hover {
        right: -5px !important;
        opacity: 1;
    }
    .inspiro-slider .flickity-button.previous,
    .inspiro-slider .flickity-button.previous:hover {
        left: -5px !important;
        opacity: 1;
    }
    .inspiro-slider .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    .inspiro-slider .slide .slide-captions {
        text-align: center;
    }
    .inspiro-slider .slide .slide-captions .strong::after {
        margin-left: auto;
        margin-right: auto;
    }
    .inspiro-slider .slide .slide-captions h1 {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 14px;
    }
    .inspiro-slider .slide .slide-captions h4 {
        color: #ffffff;
    }
}
.portfolio-item,
.grid-item {
    width: 100%;
    float: left;
    height: auto;
    padding: 0 0 20px;
    cursor: pointer;
}
.portfolio-item a:not(.btn),
.grid-item a:not(.btn) {
    color: var(--body-color);
}
.portfolio-item .portfolio-item-wrap,
.grid-item .grid-item-wrap {
    position: relative;
    overflow: hidden;
}
.portfolio-item .portfolio-image,
.grid-item .grid-image {
    position: relative;
    overflow: hidden;
}
.portfolio-item .portfolio-image:after,
.grid-item .grid-image:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    transition: all 0.3s ease;
    opacity: 0;
    content: " ";
    z-index: 2;
}
.portfolio-item .portfolio-image img,
.grid-item .grid-image img {
    position: relative;
    transition: all 0.5s ease-out;
    width: 100%;
    z-index: 1;
    display: block;
    height: auto;
}
.portfolio-item .portfolio-description,
.grid-item .grid-description {
    left: 0;
    margin: 0 auto;
    padding: 20px;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    transform: translate3d(0px, -38%, 0px);
    transition: all 250ms ease-in-out 0;
    visibility: hidden;
    width: 70%;
    z-index: 3;
}
.portfolio-item .portfolio-description h3 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.portfolio-item .portfolio-description h3,
.portfolio-item .portfolio-description p {
    color: #ffffff;
}
.portfolio-item .portfolio-description a,
.grid-item .grid-description a {
    margin: 3px;
}
.grid-item .grid-description a i {
    background-color: #ffffff;
    color: var(--body-color);
    border-radius: 50%;
    color: #444;
    font-size: 18px;
    height: 40px;
    line-height: 40px !important;
    width: 40px;
    transition: all 250ms ease-in-out 0;
    border: 1px solid #ededed;
}
.grid-item .grid-description a:hover i {
    background-color: #2250fc;
    color: #ffffff;
    border: 1px solid #2250fc;
}
.portfolio-item .portfolio-description p {
    opacity: 0;
    transition: all 0.8s ease;
    transition-delay: 0.1s;
    margin-bottom: 0;
    padding-bottom: 0;
}
.grid-item .grid-description a > i {
    font-size: 14px !important;
}
.grid-item:not(.no-overlay):hover .grid-image:after {
    opacity: 0.5;
}
.grid-item:not(.no-overlay):hover .grid-description {
    transform: translate3d(0, -50%, 0);
    opacity: 1;
    visibility: visible;
}
.portfolio-item.img-zoom .portfolio-image img {
    transform: scale(1);
}
.portfolio-item.img-zoom:hover .portfolio-image img {
    transform: scale(1.1);
}
.portfolio-item.no-overlay .portfolio-image {
    position: relative;
    overflow: hidden;
}
.portfolio-item.no-overlay .portfolio-image:after {
    display: none;
}
.portfolio-item.no-overlay .portfolio-description {
    opacity: 1;
    padding: 6px;
    position: relative;
    transform: translateY(-10px);
    visibility: inherit;
    width: 100%;
}
.portfolio-item.no-overlay .portfolio-description h3 {
    color: var(--body-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 18px;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.portfolio-item.no-overlay .portfolio-description p {
    color: var(--body-color);
    font-weight: 500;
    font-size: 14px;
    opacity: 1;
}
.portfolio-item.no-overlay:hover .portfolio-description {
    transform: translate3d(0, -10px, 0);
    opacity: 1;
    visibility: visible;
}
.portfolio-item.no-overlay:hover .portfolio-description h3 {
    transform: translateY(0px);
}
.portfolio-item.no-overlay:hover .portfolio-description p {
    opacity: 1;
}
.portfolio-item.shadow {
    box-shadow: none !important;
}
.portfolio-item.shadow .portfolio-item-wrap {
    box-shadow: 0 7px 20px -10px rgba(171, 171, 171, 0.6);
}
.portfolio-item.outline .portfolio-item-wrap {
    border: 1px solid #ebebeb;
    padding: 1px;
}
.content.col-lg-9 .portfolio-item .portfolio-description h3 {
    font-size: 13px;
    line-height: 14px;
}
.sidebar-both .portfolio-item .portfolio-description h3 {
    font-size: 13px;
    line-height: 14px;
}
.sidebar-both .portfolio-item .portfolio-description p {
    font-size: 12px;
}
.post-item {
    float: left;
    width: 100%;
    height: auto;
    padding: 0 0 20px;
}
.post-item .post-item-wrap {
    background-color: var(--bg-color);
    position: relative;
}
.post-item img {
    width: 100%;
    height: auto;
}
.post-item .post-image {
    margin-bottom: 22px;
    position: relative;
    padding: 0;
}
.post-item .post-item-description {
    padding: 24px;
    line-height: 28px;
    color: #676767;
}
.post-item .post-item-description > h2,
.post-item .post-item-description > h2 > a {
    font-size: 18px;
    letter-spacing: -0.1px;
    line-height: 23px;
    margin-bottom: 16px;
    color: #444;
    font-weight: 600;
}
.post-item .post-item-description .post-meta-date {
    color: #c2c2c2;
    position: relative;
    top: -4px;
    font-size: 12px;
    margin-right: 8px;
}
.post-item .post-item-description .post-meta-date i {
    margin-right: 4px !important;
}
.post-item.border {
    border: none !important;
}
.post-item.border .post-item-wrap {
    border: 1px solid #f2f2f2;
}
.post-item.border > .post-item-wrap > .post-item-description {
    padding: 24px !important;
    width: 100% !important;
}
.post-image {
    margin-bottom: 20px;
}
.post-image img {
    width: 100%;
}
.post-author {
    border-top: 1px solid #eee;
    font-size: 14px;
    height: 40px;
    margin-top: 15px;
    padding-bottom: 0;
    padding-top: 16px;
}
.post-author p {
    position: relative;
}
.portfolio-item .portfolio-item-wrap .portfolio-image .portfolio-meta-category {
    background-color: #dc143c;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 3;
    margin-right: 0;
    opacity: 0.75;
}
.post-thumbnail-list {
    position: relative;
}
.post-thumbnail-list .post-thumbnail-entry img + .post-thumbnail-content {
    padding-left: 90px;
}
.post-thumbnail-list .post-thumbnail-entry > img {
    float: left;
    display: block;
    height: 60px;
    width: 80px;
    margin-right: 16px;
    border-radius: 2px;
}
.post-thumbnail-list .post-thumbnail-entry .post-thumbnail-content a {
    font-size: 14px;
    font-weight: 500;
    margin: -4px 0 0;
}
.post-thumbnail-entry {
    border-bottom: 1px solid #f7f9fb;
    float: left;
    margin-bottom: 16px;
    padding-bottom: 10px;
    position: relative;
    clear: both;
}
.post-thumbnail-entry a {
    color: var(--body-color);
}
.post-thumbnail-entry:last-child {
    border-bottom: 0;
}
.post-thumbnail-entry .post-thumbnail-content > a {
    display: block;
}
.post-thumbnail-entry .post-thumbnail-content .post-date,
.post-thumbnail-entry .post-thumbnail-content .post-category {
    color: #aaa;
    font-size: 13px;
}
.post-thumbnail-entry .post-thumbnail-content .post-date i,
.post-thumbnail-entry .post-thumbnail-content .post-category i {
    margin-right: 2px;
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}
.table td,
.table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

#footer {
    display: block;
    position: relative;
    background-color: #f8f9fa;
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
#footer a:not(.btn):not(:hover) {
    color: var(--body-color);
}
#footer p {
    font-family: "Poppins", sans-serif;
}
#footer a:not(.btn) {
    font-weight: 400;
}
#footer .footer-content {
    padding: 60px 0 40px;
}
#footer .widget .widget-title,
#footer .widget h4 {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}
#footer .copyright-content {
    min-height: 80px;
    padding: 30px 0;
    background-color: #eff1f4;
    font-size: 13px;
}
#footer.inverted {
    background-color: #181818;
}
#footer.inverted p {
    color: #999;
}
#footer.inverted a:not(.btn) {
    font-weight: 400;
}
.dark #footer a:not(.btn):not(:hover),
#footer.inverted a:not(.btn):not(:hover),
#footer.dark a:not(.btn):not(:hover) {
    color: #999;
}
#footer.inverted h4 {
    color: #fff;
}
#footer.inverted .widget .widget-title,
#footer.inverted .widget h4 {
    color: #fff;
}
#footer.inverted .copyright-content {
    background-color: #1e1e1e;
}
.widget {
    margin-bottom: 30px;
    position: relative;
}
.widget .widget-title,
.widget > h4 {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.widget:after,
.widget:before {
    clear: both;
    content: " ";
    display: table;
}
.widget a {
    color: var(--body-color);
}
.widget p {
    margin-bottom: 20px;
}
.sidebar .widget {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.sidebar .widget:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.widget.widget-newsletter button {
    margin-left: -1px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.widget.widget-newsletter .btn {
    text-transform: none;
}
.widget.widget-newsletter .form-control {
    height: 40px;
}
.widget.widget-newsletter .btn {
    font-size: 12px;
    font-weight: 600;
    height: 40px;
    padding: 8px 16px;
}
.widget .form-inline .input-group {
    width: 100%;
}
.sidebar .widget .tabs li > a {
    padding: 10px;
}
.widget .post-thumbnail-content a {
    font-size: 13px;
    line-height: 20px;
    display: block;
}
.sidebar .widget .post-thumbnail-list .post-thumbnail-entry > img {
    height: 48px;
    margin-right: 10px;
    width: 64px;
}
.sidebar .widget .post-thumbnail-list .post-thumbnail-entry img + .post-thumbnail-content {
    padding-left: 72px;
}
.sidebar .widget .post-thumbnail-entry .post-thumbnail-content .post-date,
.post-thumbnail-entry .post-thumbnail-content .post-category {
    font-size: 11px;
}
.sidebar .widget .post-thumbnail-entry:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
@media (max-width: 1024px) {
    .widget {
        float: left;
        width: 100%;
    }
}
.item-link {
    color: var(--body-color);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase !important;
}
.item-link i {
    position: relative;
    right: 0;
    transition: right 0.3s ease 0s;
}
.item-link:hover {
    color: #2250fc;
}
.item-link:hover i {
    right: -6px;
}
#scrollTop {
    z-index: -1;
    opacity: 0;
    position: fixed;
    text-align: center;
    line-height: 12px !important;
    right: 26px;
    bottom: 0;
    color: #fff;
    cursor: pointer;
    border-radius: 100px;
    height: 40px;
    width: 40px;
    background-color: rgba(0, 0, 0, 0.25);
    background-repeat: no-repeat;
    background-position: center;
    transition:
        opacity 0.3s,
        bottom 0.5s,
        box-shadow 0.3s cubic-bezier(0.55, 0, 0.1, 1),
        background-color 0.1s linear;
    background-color: rgba(0, 0, 0, 0.25) !important;
    overflow: hidden;
    border: 1px solid #ccc;
}
#scrollTop i {
    line-height: 39px !important;
    width: 39px !important;
    height: 39px !important;
    font-size: 16px !important;
    top: 0 !important;
    left: 0 !important;
    text-align: center !important;
    position: relative;
    z-index: 10;
    background-color: transparent !important;
    transform: translate(0, 0px);
    transition: transform 0.2s ease;
}
#scrollTop:hover {
    transition:
        box-shadow 0.3s cubic-bezier(0.55, 0, 0.1, 1),
        background-color 0.05s linear 0.25s;
    background-color: transparent !important;
}
#scrollTop:hover i {
    transform: translate(0, -39px) !important;
}
#scrollTop:after,
#scrollTop:before {
    display: block;
    content: " ";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #2250fc;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    border-radius: 100px;
}
#scrollTop:before {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    z-index: 2;
}
#scrollTop:hover:after {
    transform: scale(1);
}
#scrollTop:active:before {
    opacity: 1;
}
[class^="icon"] {
    display: inline-block;
}
.col-lg-2-5 {
    width: 20%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}
.lines-button {
    appearance: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: 0.3s;
    user-select: none;
    width: 16px;
    background: transparent;
    outline: none;
}
.lines-button > * {
    display: block;
}
.lines-button:hover,
.lines-button:focus {
    outline: none;
}
.lines-button::-moz-focus-inner {
    border: 0;
}
.lines {
    display: inline-block;
    height: 2px;
    width: 20px;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
    top: -4px;
}
.lines::before,
.lines::after {
    display: inline-block;
    height: 2px;
    width: 20px;
    border-radius: 4px;
    transition: 0.3s;
    content: "";
    position: absolute;
    left: 0;
    transform-origin: 2.85714px center;
    width: 100%;
}
.lines::before {
    top: 6px;
}
.lines::after {
    top: -6px;
}
.lines,
.lines:before,
.lines:after {
    background-color: #111;
}
.x {
    width: auto;
}
.text-center {
    text-align: center;
}
.align-center {
    display: inline-flex;
    text-align: center;
}
.shadow {
    box-shadow: 0 4px 16px #e2e2e2;
}
.text-medium {
    font-size: 50px !important;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.text-light,
.text-light h1,
.text-light h4,
.text-light p,
.text-light a:not(.btn),
.text-light a:not(.btn):hover:not(.btn-light),
.text-light i,
.text-light div:not(.alert),
.text-light span:not(.btn-label) {
    color: #fff !important;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid #81c868;
}
.alert-link {
    font-weight: 700;
    color: #000;
}
.m-b-10 {
    margin-bottom: 10px !important;
}
.m-t-50 {
    margin-top: 50px !important;
}
.p-10 {
    padding: 10px !important;
}
.p-r-40 {
    padding-right: 40px !important;
}
@media (max-width: 768px) {
    .text-medium {
        font-size: 40px !important;
        font-size: 30px !important;
    }
}
a:not([href]):not([tabindex]):not(.btn) {
    color: none;
}
button.btn,
.btn:not(.close):not(.mfp-close) {
    font-family: "Poppins", sans-serif;
    border-radius: 5px 5px 5px 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    outline: none;
    padding: 12px 18px;
    position: relative;
    text-transform: uppercase;
    background-color: #2250fc;
    border-color: #2250fc;
    border-width: 1px;
    border-style: solid;
    color: #ffffff;
    transition: all 0.3s;
    margin-bottom: 6px;
    outline: none;
    line-height: 14px;
    cursor: pointer;
}
button.btn:after,
.btn:not(.close):not(.mfp-close):after {
    content: "";
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
button.btn i,
.btn:not(.close):not(.mfp-close) i {
    text-shadow: none;
}
.btn:not(.close):not(.mfp-close).btn-xs {
    font-size: 10px;
    height: 24px;
    line-height: 22px;
    padding: 0 10px;
}
button.btn:hover,
button.btn:focus,
button.btn:not(:disabled):not(.disabled):active,
button.btn:not(:disabled):not(.disabled).active,
.btn:not(.close):not(.mfp-close):hover,
.btn:not(.close):not(.mfp-close):focus,
.btn:not(.close):not(.mfp-close):not(:disabled):not(.disabled):active,
.btn:not(.close):not(.mfp-close):not(:disabled):not(.disabled).active,
a.btn:not([href]):not([tabindex]):not(:disabled):not(.disabled):active,
a.btn:not([href]):not([tabindex]):not(:disabled):not(.disabled).active {
    background-color: #0333e8;
    border-color: #0333e8;
    color: #ffffff;
    text-decoration: none;
}
.btn:not(.close):not(.mfp-close).btn-outline {
    background-color: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: #2250fc;
    color: #2250fc;
}
.btn:not(.close):not(.mfp-close).btn-outline:hover,
.btn:not(.close):not(.mfp-close).btn-outline:focus,
.btn:not(.close):not(.mfp-close).btn-outline:active {
    background-color: #2250fc;
    border-width: 2px;
    border-style: solid;
    border-color: #2250fc;
    color: #fff;
}
button.btn.btn-rounded,
.btn:not(.close):not(.mfp-close).btn-rounded {
    border-radius: 2em !important;
}
.btn:not(.close):not(.mfp-close).btn-light {
    background-color: #fff;
    border-color: #e6e8eb;
    color: #4c5667;
}
.btn:not(.close):not(.mfp-close).btn-light:hover,
.btn:not(.close):not(.mfp-close).btn-light:focus,
.btn:not(.close):not(.mfp-close).btn-light:active {
    border-color: #e6e8eb;
    background-color: #f4f5f8;
    color: #4c5667;
}
.btn:not(.close):not(.mfp-close).btn-light.btn-outline {
    border-color: #ffffff;
    background-color: transparent;
    color: #ffffff;
}
.btn:not(.close):not(.mfp-close).btn-light.btn-outline:hover,
.btn:not(.close):not(.mfp-close).btn-light.btn-outline:focus,
.btn:not(.close):not(.mfp-close).btn-light.btn-outline:active {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #4c5667;
}
button.btn:not(.btn-shadow):focus,
button.btn:not(.btn-shadow):focus:active,
.btn:not(.close):not(.mfp-close):not(.btn-shadow):focus,
.btn:not(.close):not(.mfp-close):not(.btn-shadow):focus:active {
    box-shadow: none !important;
}
button.btn.btn-primary:not(:disabled):not(.disabled):active,
button.btn.btn-primary:not(:disabled):not(.disabled).active,
.btn:not(.close):not(.mfp-close).btn-primary:not(:disabled):not(.disabled):active,
.btn:not(.close):not(.mfp-close).btn-primary:not(:disabled):not(.disabled).active,
a.btn:not([href]):not([tabindex]).btn-primary:not(:disabled):not(.disabled):active,
a.btn:not([href]):not([tabindex]).btn-primary:not(:disabled):not(.disabled).active {
    background-color: #0333e8;
    border-color: #0333e8;
    color: #ffffff;
}
button.btn.btn-secondary:not(:disabled):not(.disabled):active,
button.btn.btn-secondary:not(:disabled):not(.disabled).active,
.btn:not(.close):not(.mfp-close).btn-secondary:not(:disabled):not(.disabled):active,
.btn:not(.close):not(.mfp-close).btn-secondary:not(:disabled):not(.disabled).active,
a.btn:not([href]):not([tabindex]).btn-secondary:not(:disabled):not(.disabled):active,
a.btn:not([href]):not([tabindex]).btn-secondary:not(:disabled):not(.disabled).active {
    background-color: #42484d;
    border-color: #42484d;
    color: #ffffff;
}
button.btn.btn-success:not(:disabled):not(.disabled):active,
button.btn.btn-success:not(:disabled):not(.disabled).active,
.btn:not(.close):not(.mfp-close).btn-success:not(:disabled):not(.disabled):active,
.btn:not(.close):not(.mfp-close).btn-success:not(:disabled):not(.disabled).active,
a.btn:not([href]):not([tabindex]).btn-success:not(:disabled):not(.disabled):active,
a.btn:not([href]):not([tabindex]).btn-success:not(:disabled):not(.disabled).active {
    background-color: #62b944;
    border-color: #62b944;
    color: #ffffff;
}
button.btn.btn-info:not(:disabled):not(.disabled):active,
button.btn.btn-info:not(:disabled):not(.disabled).active,
.btn:not(.close):not(.mfp-close).btn-info:not(:disabled):not(.disabled):active,
.btn:not(.close):not(.mfp-close).btn-info:not(:disabled):not(.disabled).active,
a.btn:not([href]):not([tabindex]).btn-info:not(:disabled):not(.disabled):active,
a.btn:not([href]):not([tabindex]).btn-info:not(:disabled):not(.disabled).active {
    background-color: #2299f6;
    border-color: #2299f6;
    color: #ffffff;
}
button.btn.btn-warning:not(:disabled):not(.disabled):active,
button.btn.btn-warning:not(:disabled):not(.disabled).active,
.btn:not(.close):not(.mfp-close).btn-warning:not(:disabled):not(.disabled):active,
.btn:not(.close):not(.mfp-close).btn-warning:not(:disabled):not(.disabled).active,
a.btn:not([href]):not([tabindex]).btn-warning:not(:disabled):not(.disabled):active,
a.btn:not([href]):not([tabindex]).btn-warning:not(:disabled):not(.disabled).active {
    background-color: #da9400;
    border-color: #da9400;
    color: #ffffff;
}
button.btn.btn-danger:not(:disabled):not(.disabled):active,
button.btn.btn-danger:not(:disabled):not(.disabled).active,
.btn:not(.close):not(.mfp-close).btn-danger:not(:disabled):not(.disabled):active,
.btn:not(.close):not(.mfp-close).btn-danger:not(:disabled):not(.disabled).active,
a.btn:not([href]):not([tabindex]).btn-danger:not(:disabled):not(.disabled):active,
a.btn:not([href]):not([tabindex]).btn-danger:not(:disabled):not(.disabled).active {
    background-color: #9c0315;
    border-color: #9c0315;
    color: #ffffff;
}
button.btn.btn-red:not(:disabled):not(.disabled):active,
button.btn.btn-red:not(:disabled):not(.disabled).active,
.btn:not(.close):not(.mfp-close).btn-red:not(:disabled):not(.disabled):active,
.btn:not(.close):not(.mfp-close).btn-red:not(:disabled):not(.disabled).active,
a.btn:not([href]):not([tabindex]).btn-red:not(:disabled):not(.disabled):active,
a.btn:not([href]):not([tabindex]).btn-red:not(:disabled):not(.disabled).active {
    background-color: #97001d;
    border-color: #97001d;
    color: #ffffff;
}
.btn:not(.close):not(.mfp-close).btn-slide {
    border-radius: 50px;
    display: table-cell;
    opacity: 1;
    overflow: hidden;
    padding: 22px;
    position: relative;
    transition:
        width 0.4s ease 0s,
        background 0.4s ease 0;
    width: 46px;
    line-height: 18px;
}
.btn:not(.close):not(.mfp-close).btn-slide > i {
    float: left;
    left: 17px;
    position: absolute;
    top: 17px;
    transition: all 0.8s ease 0;
}
.btn:not(.close):not(.mfp-close).btn-slide > span {
    left: 40px;
    position: absolute;
    text-align: left;
    top: 13px;
    transition:
        left 0.5s ease 0s,
        opacity 0.5s ease 0;
    white-space: nowrap;
    opacity: 0;
}
.btn:not(.close):not(.mfp-close).btn-slide:hover {
    width: 140px;
    text-align: left;
}
.btn:not(.close):not(.mfp-close).btn-slide:hover > i {
    transform: rotate(360deg);
}
.btn:not(.close):not(.mfp-close).btn-slide:hover > span {
    opacity: 1;
}
.btn:not(.close):not(.mfp-close).btn-slide.btn-xs {
    padding: 14px;
    width: 30px;
    line-height: 26px;
}
.btn:not(.close):not(.mfp-close).btn-slide.btn-xs > i {
    left: 9px;
    top: 8px;
}
.btn:not(.close):not(.mfp-close).btn-slide.btn-xs > span {
    left: 28px;
    top: 0;
}
.btn:not(.close):not(.mfp-close).btn-slide.btn-xs:hover {
    width: 110px;
}
button.btn.btn-reveal,
.btn:not(.close):not(.mfp-close).btn-reveal {
    padding: 12px 34px;
}
button.btn.btn-reveal span,
.btn:not(.close):not(.mfp-close).btn-reveal span {
    left: 0;
    position: relative;
    transition:
        opacity 0.2s ease-out 0s,
        left 0.2s ease-out 0;
}
button.btn.btn-reveal i,
.btn:not(.close):not(.mfp-close).btn-reveal i {
    line-height: 18px;
    margin-top: -9px;
    opacity: 0;
    position: absolute;
    right: 28px;
    top: 50%;
    transition: all 0.2s ease-out 0;
    width: 18px;
}
button.btn.btn-reveal:hover span,
.btn:not(.close):not(.mfp-close).btn-reveal:hover span {
    left: -10px;
}
button.btn.btn-reveal:hover i,
.btn:not(.close):not(.mfp-close).btn-reveal:hover i {
    opacity: 1 !important;
    right: 18px;
}
.btn:not(.close):not(.mfp-close).btn-reveal.btn-xs {
    line-height: 0;
}
button.btn.btn-reveal.btn-reveal-left span,
.btn:not(.close):not(.mfp-close).btn-reveal.btn-reveal-left span {
    right: 0;
    left: auto;
    transition:
        opacity 0.2s ease-out 0s,
        right 0.2s ease-out 0;
}
button.btn.btn-reveal.btn-reveal-left i,
.btn:not(.close):not(.mfp-close).btn-reveal.btn-reveal-left i {
    left: 28px;
    right: auto;
}
button.btn.btn-reveal.btn-reveal-left:hover span,
.btn:not(.close):not(.mfp-close).btn-reveal.btn-reveal-left:hover span {
    right: -10px;
    left: auto;
}
button.btn.btn-reveal.btn-reveal-left:hover i,
.btn:not(.close):not(.mfp-close).btn-reveal.btn-reveal-left:hover i {
    left: 18px;
    right: auto;
}
button.btn.btn-shadow:not(:disabled):not(.disabled):active,
button.btn.btn-shadow:not(:disabled):not(.disabled).active,
.btn:not(.close):not(.mfp-close).btn-shadow:not(:disabled):not(.disabled):active,
.btn:not(.close):not(.mfp-close).btn-shadow:not(:disabled):not(.disabled).active,
a.btn:not([href]):not([tabindex]).btn-shadow:not(:disabled):not(.disabled):active,
a.btn:not([href]):not([tabindex]).btn-shadow:not(:disabled):not(.disabled).active {
    -webkit-box-shadow: 4px 8px 16px #dedede;
    -moz-box-shadow: 4px 8px 16px #dedede;
    box-shadow: 4px 8px 16px #dedede;
}
.btn:not(.close):not(.mfp-close) + .btn {
    margin-left: 4px;
}
@media (max-width: 1024px) {
    button.btn:not(.btn-creative):not(.btn-slide),
    .btn:not(.close):not(.mfp-close):not(.btn-creative):not(.btn-slide) {
        font-size: 12px;
        height: 32px;
        line-height: 30px;
        padding: 0 14px;
    }
    button.btn:not(.btn-creative):not(.btn-slide).btn-reveal:hover span,
    .btn:not(.close):not(.mfp-close):not(.btn-creative):not(.btn-slide).btn-reveal:hover span {
        left: auto;
        right: auto;
    }
    button.btn:not(.btn-creative):not(.btn-slide).btn-reveal:hover i,
    .btn:not(.close):not(.mfp-close):not(.btn-creative):not(.btn-slide).btn-reveal:hover i {
        display: none;
    }
    .btn:not(.close):not(.mfp-close):not(.btn-creative):not(.btn-slide).btn-xs {
        font-size: 10px;
        height: 26px;
        line-height: 26px;
        padding: 0 10px;
    }
}
.dark:not(.submenu-light) a.btn:not([href]):not([tabindex]).btn-shadow:not(:disabled):not(.disabled):active,
.dark:not(.submenu-light) a.btn:not([href]):not([tabindex]).btn-shadow:not(:disabled):not(.disabled).active,
.dark:not(.submenu-light) .btn.btn-shadow:not(:disabled):not(.disabled):active,
.dark:not(.submenu-light) .btn.btn-shadow:not(:disabled):not(.disabled).active {
    box-shadow: 4px 8px 16px #1d1d1d;
}
ul.nav li.dropdown:hover > ul.dropdown-menu {
    display: block;
}
.tabs .nav-tabs {
    border-bottom: 2px solid #e6e8eb;
    margin-bottom: 30px;
}
.tabs .nav-tabs .nav-item {
    margin-bottom: -2px;
}
.tabs .nav-tabs .nav-link {
    color: var(--body-color);
    padding: 14px 24px;
    color: rgba(72, 72, 72, 0.8);
    transition: 0.3s ease;
    font-weight: 500;
    border: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: 2px solid #e6e8eb;
}
.tabs .nav-tabs .nav-link i {
    margin-right: 6px;
}
.tabs .nav-tabs .nav-link.active {
    color: #2250fc;
    background-color: transparent;
    border-bottom: 2px solid #2250fc;
}
.social-icons {
    line-height: 0;
}
.social-icons ul {
    padding: 0;
    margin: 0;
}
.text-center.social-icons ul {
    display: inline-block;
}
.social-icons li {
    float: left;
    list-style: none;
}
.social-icons li a {
    float: left;
    height: 32px;
    width: 32px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    margin: 0 4px 4px 0;
    border-radius: 4px;
    border: 0;
    background: transparent;
    color: #333;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark .social-icons li a {
    color: #ffffff;
}
.social-icons.social-icons-colored-hover a:hover {
    color: #ffffff !important;
    border: 0;
}
.social-icons.social-icons-colored-hover .social-facebook a:hover {
    background-color: #5d82d1;
}
.social-icons.social-icons-colored-hover .social-twitter a:hover {
    background-color: #40bff5;
}
.social-icons.social-icons-colored-hover .social-youtube a:hover {
    background-color: #ef4e41;
}
.social-icons.social-icons-colored-hover .social-instagram a:hover {
    background-color: #ea079d;
}
.social-icons.social-icons-colored-hover .social-linkedin a:hover {
    background-color: #238cc8;
}
.social-icons:not(.social-icons-colored):not(.social-icons-colored-hover) li a:hover {
    background-color: var(--bg-color);
}
.social-icons li:hover i {
    -webkit-animation: toTopFromBottom 0.3s forwards;
    -moz-animation: toTopFromBottom 0.3s forwards;
    animation: toTopFromBottom 0.3s forwards;
}
@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@-moz-keyframes toTopFromBottom {
    49% {
        -moz-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@font-face {
    font-family: "inspiro-icons";
    src:
        url(font/inspiro-icons.ttf?ijzgpf) format("truetype"),
        url(font/inspiro-icons.woff?ijzgpf) format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
i:not(.fa):not(.fab):not(.far):not(.fas) {
    font-family: inspiro-icons !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-chevron-up:before {
    content: "\e931";
}
.icon-search:before {
    content: "\e9cc";
}
.icon-x:before {
    content: "\ea12";
}
.icon-box.square.border:large:hover > .icon i {
    line-height: 84px;
}
.carousel .portfolio-item {
    padding-bottom: 0;
}
.carousel {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.team-members .team-member {
    background-color: var(--bg-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 4px;
}
.team-members .team-member .team-image {
    margin-bottom: 20px;
}
.team-members .team-member .team-desc {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}
.team-members .team-member .team-desc > h3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
    color: #676767 !important;
}
.team-members .team-member .team-desc > span {
    font-size: 13px;
    color: #bbbbbb;
    line-height: 18px;
}
.team-members .team-member .team-desc > p {
    margin-top: 10px;
    font-size: 14px;
}
.team-members.team-members-shadow .team-member {
    border: 1px solid #eeeeee;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.03);
}
.team-members.team-members-shadow .team-member .team-desc {
    padding: 10px;
}
.seperator {
    color: #ccc;
    width: 100%;
    margin: 30px auto;
    overflow: hidden;
    text-align: center;
    line-height: 1.2em;
}
.seperator::before,
.seperator::after {
    border-bottom: 1px solid #eee;
    content: "";
    display: inline-block;
    height: 0.65em;
    margin: 0 -4px 0 -100%;
    vertical-align: top;
    width: 50%;
}
.page-error-404 {
    color: #eee;
    display: block;
    font-size: 300px;
    font-weight: 800;
    line-height: 0.7;
}
.seperator::after {
    margin: 0 -100% 0 0;
}
.seperator i {
    font-size: 18px;
}
.seperator i {
    margin: 0 20px 0 24px;
    display: inline-block;
}
.form-control {
    border: 1px solid #e6e8eb;
    border-radius: 5px;
}
form .btn {
    padding: 12px 14px;
}
input:not([type="checkbox"]):not([type="radio"]),
select {
    line-height: 18px;
    padding: 10px 16px;
    min-height: 40px;
    font-size: 0.9rem;
}
.input-group-append {
    margin-left: -4px;
}
.input-group-append .btn,
.input-group-append button {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    height: 40px;
}
.input-group-append .btn i,
.input-group-append button i {
    margin-right: 0;
}
.input-group .input-group-btn {
    margin-left: -4px;
}
.input-group .input-group-btn .btn,
.input-group .input-group-btn button {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.form-group label:not(.error) {
    font-size: 13px;
    letter-spacing: 0.04em;
    font-weight: 400;
    margin-bottom: 4px;
    color: #777777;
}
.form-inline button {
    margin: 0;
}
.form-group > label {
    display: block;
}
select.form-control:not([size]):not([multiple]) {
    height: 40px;
}
select {
    width: 100%;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url(/web/20250408073953im_/https://static.nihatdik.com.tr/images/dropdown-arrow.png) !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    border: 1px solid #e6e8eb;
    border-radius: 5px;
}
.dark .form-control,
.dark input {
    background-color: #222;
    border-color: #333;
}
.badge {
    font-weight: 600;
}
.badge-pill {
    padding: 0.4em 0.8em;
    border-radius: 10rem;
}
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
    filter: alpha(opacity=80);
}
.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}
.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
    display: none;
}
.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
    padding: 25px;
}
.mfp-ajax-cur {
    cursor: progress;
}
.mfp-zoom-out-cur {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}
.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
    cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.mfp-loading.mfp-figure {
    display: none;
}
.mfp-hide {
    display: none !important;
}
.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}
.mfp-preloader a {
    color: #ccc;
}
.mfp-preloader a:hover {
    color: #fff;
}
.mfp-s-ready .mfp-preloader,
.mfp-s-error .mfp-content {
    display: none;
}
button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.mfp-close {
    width: 36px !important;
    height: 36px !important;
    cursor: pointer;
    line-height: 36px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 22px;
}
.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}
.mfp-close:active {
    top: 1px;
}
.mfp-close-btn-in .mfp-close {
    color: #a3a3a3;
    font-size: 37px;
    font-weight: 300;
    top: 5px;
    right: 5px;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}
.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}
.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
    margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}
.mfp-arrow-left {
    left: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
    border-right: 17px solid #fff;
    margin-left: 31px;
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
    right: 0;
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
    border-left: 17px solid #fff;
    margin-left: 39px;
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
    top: -40px;
}
.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0;
    margin: 0 auto;
}
.mfp-figure {
    line-height: 0;
}
.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}
.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}
.mfp-figure figure {
    margin: 0;
}
.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}
.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}
.mfp-image-holder .mfp-content {
    max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}
@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}
.mfp-ie7 .mfp-img {
    padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
    padding: 0;
}
.mfp-ie7 .mfp-content {
    padding-top: 44px;
}
.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}
.lightbox-open {
    position: relative;
    overflow: hidden !important;
}
.mfp-ajax-holder .mfp-content {
    background: #f8f8f8;
    max-width: 1000px;
}
.mfp-ajax-holder .ajax-quick-view {
    padding: 20px 30px 35px;
}
.mfp-ajax-holder .ajax-quick-view .quick-view-title {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 30px;
    position: relative;
}
.mfp-ajax-holder .ajax-quick-view .quick-view-title h2 {
    font-weight: 600;
}
.mfp-ajax-holder .mfp-close:hover {
    background: #2250fc;
    color: #ffffff;
}
.portfolio-ajax-page iframe {
    width: 100%;
}
.portfolio-ajax-page .col-lg-8 {
    margin-bottom: -6px !important;
}
@media (max-width: 1024px) {
    .mfp-ajax-holder .mfp-close {
        margin-right: 0;
    }
    .mfp-close {
        font-size: 22px;
        height: 30px;
        line-height: 32px;
        width: 30px;
    }
}
.accordion .ac-item {
    margin-bottom: 10px;
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #e6e8eb;
}
.accordion .ac-item .ac-title {
    font-weight: 500;
    position: relative;
    padding-right: 10px;
    margin: 0;
    font-size: 1em;
    cursor: pointer;
    user-select: none;
}
.accordion .ac-item .ac-title:before {
    font-size: 18px;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.list {
    clear: both;
    display: block;
    position: relative;
}
.list li {
    line-height: 24px;
}
.list li a {
    color: var(--body-color);
}
.list {
    list-style: none;
}
.list a {
    color: var(--body-color);
}
.call-to-action {
    position: relative;
    overflow: hidden;
    padding: 46px 50px 34px;
    margin-bottom: 40px;
}
.call-to-action h3 {
    margin-top: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}
.call-to-action p {
    margin-top: 0;
}
@media (max-width: 1024px) {
    .call-to-action {
        padding: 26px 12px 18px;
    }
    [class*="col-"] > .call-to-action {
        padding: 26px 26px 18px;
    }
}
a[data-toggle] {
    color: var(--body-color);
}
.modal .modal-content .modal-header {
    display: block;
}
.modal .modal-content .modal-header .modal-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}
.modal-header .close {
    position: absolute;
    right: 20px;
    top: 14px;
    font-weight: 100;
}
.modal-title {
    display: block;
    font-size: 28px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}
.modal p {
    font-size: 15px;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 13px;
    font-weight: 300;
}
.modal-strip {
    background-color: #000;
    bottom: 0;
    color: #ffffff;
    left: 0;
    padding: 20px;
    position: fixed;
    width: 100%;
    display: inline-block;
    transform: translate3d(0px, 200px, 0px);
    transition: all 0.7s ease 0s;
    z-index: 999 !important;
}
.modal-strip .btn,
.modal-strip h5,
.modal-strip h4,
.modal-strip h3,
.modal-strip h2,
.modal-strip h1 {
    margin-bottom: 0 !important;
}
.modal-strip a,
.modal-strip a:hover,
.modal-strip a:active,
.modal-strip a:visited {
    color: #ffffff;
    text-decoration: underline;
}
.modal-strip.modal-top {
    bottom: auto;
    top: 0;
    transform: translate3d(0px, -200px, 0px);
}
.modal-strip.modal-left {
    bottom: auto;
    top: auto;
    left: 0;
    right: auto;
    width: 30%;
    transform: none;
}
.modal-strip.modal-right {
    transform: translate3d(0px, 0px, 0px);
    bottom: auto;
    top: 0;
}
.modal-strip.modal-active {
    transform: translate3d(0px, 0px, 0px);
}
@media (max-width: 1024px) {
    .modal-strip.modal-active .vertical-align {
        top: 0 !important;
        transform: translateY(0px) !important;
    }
}
.mfp-zoom-out .mfp-content {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
}
.mfp-zoom-out.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.mfp-zoom-out.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale(1);
}
.mfp-zoom-out.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-zoom-out.mfp-removing .mfp-content {
    transform: scale(1.3);
    opacity: 0;
}
.mfp-zoom-out.mfp-removing.mfp-bg {
    opacity: 0;
}
.mfp-ready .modal {
    background: var(--bg-color);
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    max-width: 580px;
    padding: 40px;
    position: relative;
    z-index: 1050;
}
.modal .video-wrap video,
.modal .iframe-wrap iframe,
.modal .audio-wrap audio {
    width: 100%;
}
.modal iframe {
    margin-bottom: -10px;
}
.x {
    width: auto;
}
.x.toggle-active .lines {
    background: transparent !important;
}
.x.toggle-active .lines::before,
.x.toggle-active .lines::after {
    transform-origin: 50% 50%;
    top: 0;
    width: 26px;
}
.x.toggle-active .lines::before {
    transform: rotate3d(0, 0, 1, 45deg);
}
.x.toggle-active .lines::after {
    transform: rotate3d(0, 0, 1, -45deg);
}
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: " ";
    z-index: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.5;
}
.bg-overlay ~ .container,
.bg-overlay ~ .container-fluid {
    position: relative;
    z-index: 2;
}
[data-animate] {
    opacity: 0;
}
[data-animate].visible {
    opacity: 1;
}
[data-bg-parallax] {
    background-color: #181818;
}
#page-title[data-bg-parallax],
[data-bg-parallax] {
    background-color: #181818;
}
.parallax-container {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center center;
    width: 100%;
    height: 100%;
    z-index: -100;
    opacity: 0;
    transition: opacity 0.5s linear;
}
.parallax-container.parallax-responsive {
    background-size: cover !important;
    background-attachment: scroll !important;
    background-position: center center !important;
}
.img-loaded {
    opacity: 1;
}
[data-bg-image] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
[data-bg-image]::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: #181818;
    transition: opacity 0.5s linear;
}
[data-bg-image].bg-loaded::before {
    opacity: 0;
}
body[data-bg-image] {
    background-attachment: fixed;
    background-position: top center;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.fadeInUp {
    animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.fadeInUpBig {
    animation-name: fadeInUpBig;
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.fa-paper-plane:before { content: "\f1d8"; }
.fa-instagram:before { content: "\f16d"; }
.fa-facebook:before { content: "\f09a"; }
.fa-twitter:before { content: "\f099"; }
.fa-youtube:before { content: "\f167"; }
.fa-linkedin:before { content: "\f08c"; }
.fa-phone:before { content: "\f095"; }
.fa-envelope:before { content: "\f0e0"; }
.fa-star:before { content: "\f005"; }
.fa-chevron-up:before { content: "\f077"; }
.fa-chevron-down:before { content: "\f078"; }
.fa-bars:before { content: "\f0c9"; } /* hamburger menu */