@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proxima-nova/ProximaNova-Light.otf") format("opentype");
    font-weight: 300;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proxima-nova/ProximaNova-Reg.otf") format("opentype");
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proxima-nova/ProximaNova-Sbold.otf") format("opentype");
    font-weight: 600;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proxima-nova/ProximaNova-Bold.otf") format("opentype");
    font-weight: 700;
}

@font-face {
    font-family: "Bebas";
    src: url("../fonts/bebas/Bebas-Regular.otf") format("opentype");
    font-weight: 400;
}

:root {
    --black: #141414;
    --black-90: rgba(0, 0, 0, .9);
    --black-80: rgba(0, 0, 0, .8);
    --black-70: rgba(0, 0, 0, .7);
    --black-80: rgba(0, 0, 0, .6);
    --black-50: rgba(0, 0, 0, .5);
    --black-20: rgba(0, 0, 0, .2);
    --black-10: rgba(0, 0, 0, .1);
    --black-05: rgba(0, 0, 0, .05);
    --grey: #848484;
    --litegrey: #999999;
    --litergrey: #dedede;
    --white-90: rgba(255, 255, 255, .9);
    --white-80: rgba(255, 255, 255, .8);
    --white-50: rgba(255, 255, 255, .5);
    --white-20: rgba(255, 255, 255, .2);
    --white-10: rgba(255, 255, 255, .1);
    --red: #d32f2f;
    --gold: #b38a4c;
    --logo: url("images/logo.png");
}

html {
    font: 16px "Proxima Nova", sans-serif;
    text-rendering: optimizeSpeed;
}
body {
    font: 16px "Proxima Nova", sans-serif;
}

html,
body {
    margin: 0px;
    padding: 0px;
    height: 100vh;
    background: #fff;
}

.fill-height {
    min-height: calc(100vh - 13.6rem);
}

/*
| ---------------------
| TYPOGRAPHY
| ---------------------
*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
    font-weight: 700;
}
.bebas {
    font-family: "Bebas", sans-serif;
    font-weight: 400;
    line-height: .9;
}
.wg-300 {
    font-weight: 300;
}
.wg-400 {
    font-weight: 400;
}
.wg-600 {
    font-weight: 600;
}
.wg-700 {
    font-weight: 700;
}
.f-grey {
    color: var(--grey);
}
.f-litegrey {
    color: var(--litegrey);
}
.f-red {
    color: var(--red);
}
.f-white {
    color: var(--white-90);
}
.bg-grey {
    background-color: var(--grey);
}
.bg-litegrey {
    background-color: var(--litegrey);
}
.bg-litergrey {
    background-color: var(--litergrey);
}
.bg-red {
    background-color: var(--red);
}
.bg-gold {
    background-color: var(--gold);
}
a {
    color: var(--black);
    text-decoration: underline;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
a:hover, a:focus {
    color: var(--grey);
    text-decoration: none;
}
a.fake-underline {
    position: relative;
    text-decoration: none;
}
a.fake-underline::before {
    border-top: 1px solid var(--grey);
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
a.nav-link.fake-underline::before {
    bottom: .5rem;
}
a.fake-underline:hover::before {
    border-color: white;
    width: 0;
}
a.no-underline {
    text-decoration: none;
}
ul, ol {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

/*
| ---------------------
| NAVBAR
| ---------------------
*/
.navbar-brand img {
    width: 80px;
}
.navbar-nav .nav-link {
    font-weight: 600;
}
.navbar-nav li:first-of-type .nav-link{
    margin-left: 0;
}
.navbar-nav li:last-of-type .nav-link {
    margin-right: 0;
}
.navbar-collapse {
    margin: 1rem;
}
@media screen and (min-width: 768px) {
    .navbar-brand img {
        width: 125px;
    }
    .navbar-nav {
        -ms-flex-align: center;
        align-items: center;
    }
    .navbar-nav .nav-link {
        margin: 0 1.5rem;
        padding: .5rem 0 !important;
    }
}
.dropdown-menu {
    border-color: var(--black-20);
    border-radius: 0;
    padding: 0;
}
.dropdown-item {
    color: var(--black);
    padding: .75rem 1.5rem;
    text-decoration: none;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--black);
    background-color: var(--black-10);
}
.dropdown-divider {
    border-color: var(--black-20);
    margin: 0;
}

/*
| ---------------------
| ICON
| ---------------------
*/
.ico:before {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 1rem;
    width: 1rem;
}
.ico-magnifier::before {
    background-image: url("images/magnifier.svg");
}

/*
| ---------------------
| FORM
| ---------------------
*/
.form-control {
    background: white;
    border-color: var(--black-20);
    border-radius: 0;
    box-shadow: none !important;
    color: var(--black);
    height: 3.5rem;
    outline: none !important;
    padding: .75rem 1.5rem;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.form-control[type="file"] {
    padding: .75rem;
}
.form-control:hover, .form-control:focus {
    border-color: var(--black);
}
.form-control:focus {
    border-width: 2px;
    padding: calc(.75rem - 1px) calc(1.5rem - 1px);
}
.form-control[type="file"]:focus {
    padding: calc(.75rem - 1px) calc(.75rem - 1px);
}
.input-group .form-control {
    border-left: none;
    padding-left: 0;
}
.input-group-prepend {
    background-color: white;
    border: 1px solid var(--black);
    border-radius: 0;
    border-right: none;
    color: var(--black);
    padding: 0 1.5rem;
    align-items: center;
}
.btn, .jconfirm .jconfirm-box .jconfirm-buttons button.btn.btn-default {
    background-color: white;
    border: 1px solid var(--black);
    border-radius: 0;
    color: var(--black);
    font-weight: 600;
    padding: .875rem 1.5rem;
    text-decoration: none;
}
.btn-group-lg > .btn, .btn-lg {
    padding: 1.25rem 2rem;
}
.btn-group-sm > .btn, .btn-sm {
    padding: .25rem 1rem;
}
.btn:hover, .btn.focus, .btn:focus,
.jconfirm .jconfirm-box .jconfirm-buttons button.btn.btn-default:hover,
.jconfirm .jconfirm-box .jconfirm-buttons button.btn.btn-default.focus,
.jconfirm .jconfirm-box .jconfirm-buttons button.btn.btn-default:focus {
    border-color: var(--grey);
    box-shadow: 0 0 .5rem var(--black-20);
    color: var(--grey);
}
.btn-white, .btn-default, .jconfirm .jconfirm-box .jconfirm-buttons button.btn.btn-default {
    background-color: white;
    border-color: white !important;
    color: var(--black) !important;
}
.btn-white.btn-border, .btn-default, .jconfirm .jconfirm-box .jconfirm-buttons button.btn.btn-default {
    border-color: var(--black) !important;
}
.btn-white:hover, .btn-default:hover,
.btn-white.focus, .btn-white:focus,
.btn-default.focus, .btn-default:focus,
.jconfirm .jconfirm-box .jconfirm-buttons button.btn.btn-default:hover,
.jconfirm .jconfirm-box .jconfirm-buttons button.btn.btn-default.focus,
.jconfirm .jconfirm-box .jconfirm-buttons button.btn.btn-default:focus {
    background-color: var(--white-80);
}
.btn-black, .btn-primary {
    background-color: var(--black);
    border-color: var(--black) !important;
    color: white !important;
}
.btn-black:hover, .btn-primary:hover,
.btn-black.focus, .btn-black:focus,
.btn-primary.focus, .btn-primary:focus {
    background-color: var(--black-70);
}
.btn-grey {
    background-color: var(--black-50);
    border-color: var(--black) !important;
    color: white !important;
}
.btn-grey:hover, .btn-grey.focus, .btn-grey:focus {
    background-color: var(--black-70);
}
.btn-transparent {
    background-color: var(--black-10);
    border-color: white;
    color: white !important;
}
.btn-transparent:hover, .btn-transparent.focus, .btn-transparent:focus {
    background-color: var(--black-50);
}
.text-on-hr {
    background-color: white;
    margin: -1.75rem auto 1rem auto;
    text-align: center;
    width: 8rem;
}
.btn.disabled, .btn:disabled {
    background-color: var(--black-50);
    opacity: .25;
}

/*
| ---------------------
| NOTE EDITOR
| ---------------------
*/
.note-editor.note-frame {
    border-color: var(--black-20);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.note-editor.note-frame:hover {
    border-color: var(--black);
}
.note-btn.btn {
    border-color: transparent !important;
    box-shadow: none !important;
    padding: .25rem .5rem;
}
.note-popover .popover-content, .panel-heading.note-toolbar {
    padding-left: 6px;
}

/*
| ---------------------
| MDC FORM
| ---------------------
*/
.mdc-text-field {
    border-radius: 0;
    padding: 0;
}
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,
.mdc-select--outlined .mdc-notched-outline .mdc-notched-outline__leading,
.mdc-select--outlined .mdc-notched-outline .mdc-notched-outline__trailing {
    border-radius: 0;
}
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,
.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label,
.mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-floating-label {
    color: var(--black);
}
.mdc-text-field--outlined .mdc-text-field__input {
    padding: 0 1rem;
}
.mdc-text-field--outlined .mdc-text-field__input[type="number"] {
    padding-right: 0;
}
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon--leading {
    color: var(--black-50);
}
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing,
.mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__leading,
.mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__notch,
.mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__trailing {
    border-color: var(--black-20);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing,
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing,
.mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__leading,
.mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__notch,
.mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__trailing {
    border-color: var(--black);
}
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,
.mdc-select--invalid:not(.mdc-select--disabled) .mdc-floating-label {
    color: var(--red);
}
.mdc-select--invalid:not(.mdc-select--disabled) .mdc-select__dropdown-icon {
    fill: var(--red);
}
.mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-select__dropdown-icon {
    fill: var(--black);
}
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing,
.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,
.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,
.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing,
.mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled) .mdc-notched-outline__leading,
.mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled) .mdc-notched-outline__notch,
.mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled) .mdc-notched-outline__trailing,
.mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__leading,
.mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__notch,
.mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__trailing {
    border-color: var(--red);
}
.mdc-text-field__icon--leading {
    margin: 0 1rem;
}
.mdc-text-field__input,
.mdc-form-field,
.mdc-list,
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__affix--suffix {
    color: var(--black);
    font: 400 1rem "Proxima Nova", sans-serif;
    letter-spacing: normal;
    -webkit-font-smoothing: unset;
}
.mdc-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background {
    border-color: var(--black-50);
}
.mdc-checkbox .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,
.mdc-checkbox .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,
.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background {
    background-color: var(--black);
    border-color: var(--black);
}
.mdc-text-field__affix--suffix {
    padding: 0 1rem 0 0;
}
.mdc-form-field > label {
    margin: 0;
    padding: 0;
}
.mdc-text-field+.mdc-text-field-helper-line {
    padding: 0;
}
.mdc-menu-surface {
    border-radius: 0;
    color: var(--black);
    width: 100%;
}
.mdc-list-item {
    padding: .5rem 1.5rem;
}
:not(.mdc-list-item--disabled).mdc-list-item .mdc-list-item__ripple::before,
:not(.mdc-list-item--disabled).mdc-list-item .mdc-list-item__ripple::after {
    background-color: transparent;
    opacity: 1 !important;
}
:not(.mdc-list-item--disabled).mdc-list-item:hover .mdc-list-item__ripple::before,
:not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-surface--hover .mdc-list-item__ripple::before {
    background-color: var(--black-10);
}
:not(.mdc-list-item--disabled).mdc-list-item--selected .mdc-list-item__ripple::before,
:not(.mdc-list-item--disabled).mdc-list-item--selected .mdc-list-item__ripple::after {
    background-color: var(--black-20);
}
span.mdc-notched-outline__notch {
    width: auto !important;
}

/*
| ---------------------
| SELECT2
| ---------------------
*/
span.select2-container--default .select2-selection--multiple {
    border-color: var(--black-20);
    border-radius: 0;
    min-height: 3.5rem;
    padding: .45rem .5rem;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
span.select2-container--default .select2-selection--multiple:hover {
    border-color: var(--black);
}
span.select2-container--default.select2-container--focus .select2-selection--multiple {
    padding: calc(.45rem - 1px) calc(.5rem - 1px);
}
span.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 2px solid var(--black);
}
span.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--black-10);
    border-radius: 0;
    padding: .25rem .5rem;
}
span.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    margin-right: 4px;
}
li.select2-results__option {
    padding: .5rem 1.5rem;
}
span.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--black-10);
    color: var(--black);
}
span.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--black-50);
    color: white;
}
span.select2-dropdown {
    border-color: var(--black);
    border-radius: 0;
}

/*
| ---------------------
| DATERANGE
| ---------------------
*/
div.daterangepicker,
div.daterangepicker select {
    border-radius: 0;
    color: var(--black);
    font: 400 1rem "Proxima Nova", sans-serif;
}
div.daterangepicker select {
    padding: .25rem .5rem !important;
}
div.daterangepicker select.yearselect {
    width: 45%;
}
div.daterangepicker select {
    font-size: .875rem !important;
}
div.daterangepicker .calendar-table th {
    font-size: .75rem;
}
div.daterangepicker .calendar-table td {
    font-size: .875rem;
}
div.daterangepicker td.start-date.end-date {
    border-radius: 0;
}
div.daterangepicker th.prev.available {
    border: 3px solid white;
}
div.daterangepicker td.available:hover,
div.daterangepicker th.available:hover {
    background-color: var(--black-20);
    border-radius: 0;
}
div.daterangepicker td.active,
div.daterangepicker td.active:hover {
    background-color: var(--black);
}
div.daterangepicker .drp-buttons .btn {
    margin-left: .5rem;
    font-size: .875rem;
    font-weight: 700;
    padding: .5rem 1rem;
}

/*
| ---------------------
| FORMBOX
| ---------------------
*/
.breadcrumb {
    background: url("images/bg-breadcrumb.jpg") no-repeat top center / cover;
    height: 60vh;
    left: 0;
    position: fixed;
    right: 0;
    top:0;
    z-index: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.formbox {
    background: white;
    box-shadow: 0 .25rem 1rem var(--black-20);
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.border {
    border: 1px solid var(--black-10);
}
.border-black {
    border: 1px solid var(--black);
}

/*
| ---------------------
| DATATABLE
| ---------------------
*/
#datatables_wrapper .form-control {
    height: 2.5rem;
    padding: .5rem 1rem;
}
#datatables_wrapper .form-control:focus {
    border-width: 2px;
    padding: calc(.5rem - 2px) calc(1rem - 1px);
}
.table td, .table th, .table thead th {
    border-color: var(--black-20);
    white-space: nowrap;
}
.table thead th {
    font-size: .875rem;
    font-weight: 600;
}
div.dataTables_wrapper div.dataTables_info {
    font-size: .875rem;
    margin: .5rem 0;
}
ul.pagination {
    margin: .75rem 0 !important;
}
.pagination a.page-link {
    border-color: var(--black-20) !important;
    border-radius: 0 !important;
    color: var(--black);
    font-size: .875rem;
    text-decoration: none;
}
.page-item.active .page-link {
    background-color: var(--black);
}
.pagination a.page-link:focus {
    box-shadow: 0 0 .5rem var(--black-20);
}

/*
| ---------------------
| BADGE
| ---------------------
*/
.badge {
    background-color: var(--black-10);
    border-radius: 0;
    font-weight: 600;
    padding: .5rem .75rem;
}

/*
| ---------------------
| MODAL
| ---------------------
*/
.jconfirm.jconfirm-modern .jconfirm-bg {
    background-color: var(--black-50) !important;
    opacity: 1 !important;
}
.modal-content {
    border: none;
    border-radius: 0;
}
.jconfirm .jconfirm-box {
    border-radius: 0 !important;
}

/*
| ---------------------
| SLIDING BANNER
| ---------------------
*/
.owl-carousel .item {
    position: relative;
}
.banner-text {
    color: white;
    height: 100%;
    left: 0;
    position: absolute;
    text-shadow: 0 0 8px rgba(0, 0, 0, .25);
    top: 0;
    width: 100%;
}
.banner-text h1 {
    font-size: 8.25rem;
}
.sliderhome {
    max-height: calc(100vh - 115px);
}
.sliderhome img {
    height: calc(100vh - 115px);
    object-fit: cover;
}
@media screen and (max-width: 767.98px) {
    .sliderhome {
        max-height: calc(100vh - 88px);
    }
    .sliderhome img {
        height: calc(100vh - 88px);
    }
}

/*
| ---------------------
| SECTION w/ BG
| ---------------------
*/
.section-bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 5.5rem 0;
    text-shadow: 0 0 8px rgba(0, 0, 0, .25);
}

/*
| ---------------------
| SECTION PARTS
| ---------------------
*/
.section-part {
    margin-bottom: 4rem;
    margin-top: 4rem;
}
.section-img-header {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 5.5rem;
    margin: 1rem 0;
    width: 5.5rem;
}

/*
| ---------------------
| SECTION CHANGING TEXT
| ---------------------
*/
.changing-text {
    height: 6rem;
    margin: 0;
    padding: 0;
    position: relative;
}
.changing-text li {
    font: 5rem/1 "Bebas", sans-serif;
    left: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
}
@media screen and (max-width: 767.98px) {
    .changing-text {
        min-height: 7rem;
    }
    .changing-text li {
        font-size: 3.5rem;
    }
}

/*
| ---------------------
| PORTFOLIO
| ---------------------
*/
.portfolio .card {
    background-color: var(--black-10);
    border: none;
    border-radius: 0;
}
.portfolio .card:before {
    background-color: var(--black-05);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    mask-image: var(--logo);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: 50%;
    -webkit-mask-image: var(--logo);
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 125px 71px;
}
.portfolio .card.card-small:before {
    height: 100%;
}
.portfolio .card-base {
    height: calc(34vh + 30px);
}
.portfolio .card-small {
    height: calc(20vh + 30px);
}
.portfolio .card-0 {
    height: 30rem;
}
.portfolio .card-1 {
    height: 22.5rem;
}
.portfolio .card-2 {
    height: 25rem;
}
.portfolio .card-3 {
    height: 22.5rem;
}
.portfolio .card-4 {
    height: 35rem;
}
.portfolio .card-5 {
    height: 20rem;
}
.portfolio .card-6 {
    height: 25rem;
}
.portfolio .card-7 {
    height: 20rem;
}
.portfolio .card-8 {
    height: 32.5rem;
}
.img-portofolio {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(0%);
    height: 100%;
    position: relative;
    width: 100%;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}
.img-portofolio::after {
    background-color: black;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}
.img-portofolio:hover {
    filter: grayscale(100%);
}
.img-portofolio:hover::after {
    opacity: .25;
}
.img-portofolio > .portfolio-link {
    bottom: 1rem;
    left: 0;
    opacity: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}
.img-portofolio:hover > .portfolio-link {
    opacity: 1;
}
.img-portofolio ul {
    list-style: none;
    opacity: 0;
    position: relative;
    z-index: 2;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}
.img-portofolio:hover ul {
    opacity: 1;
}
.img-portofolio ul li {
    cursor: pointer;
    margin: 1rem;
}
#framebox {
    background: var(--black-10);
    cursor: pointer;
    display: flex;
    height: 300px;
    width: 100%;
}
#watermark {
    background: var(--logo) no-repeat center center / 75%;
    height: calc(100% - 34px);
    left: 32px;
    position: absolute;
    top: 17px;
    width: calc(100% - 64px);
    mix-blend-mode: multiply;
    opacity: .25;
}
img.w-100.lazyloaded[data-src=""] {
    min-height: calc(75vh - 34px);
    background-color: var(--black-10);
}
.bg-form {
    background: url('images/bg-form.jpeg') no-repeat top center;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 2rem 0;
}
@media screen and (max-width: 767.98px) {
    .portfolio .card {
        height: 100vw !important;
    }
}

/*
| ---------------------
| MODAL CONTENT
| ---------------------
*/
.modal-body #DetailContent span {
    color: var(--grey);
    display: block;
    font-size: .875rem;
    margin-bottom: 4px;
}
.col_count_2 {
    column-count: 2;
    margin-bottom: 15px;
}
.col_count_5 {
    column-count: 5;
    margin-bottom: 15px;
}
@media screen and (max-width: 575.98px) {
    .col_count_2 {
        column-count: 1;
    }
    .col_count_5 {
        column-count: 1;
    }
}

/*
| ---------------------
| FOOTER
| ---------------------
*/
footer {
    font-size: .875rem;
}
footer ul {
    display: inline-block;
    list-style: none;
    margin: .5rem 0;
    padding: 0;
}
footer ul:last-of-type {
    margin-right: 0;
}
footer li {
    display: inline-block;
    margin-right: .625rem;
}
footer li:after {
    content: "|";
    display: inline-block;
    margin-left: .625rem;
}
footer li:last-of-type::after {
    display: none;
}
.copyright {
    color: var(--litegrey);
    margin: .5rem 0;
}
@media screen and (min-width: 768px) {
    footer ul {
        margin-right: 1.875rem;
    }
}
