/*!-----------------------------------------------------------------
    Name: Piroll - Minimal & Clean Portfolio HTML Template
    Version: 1.0.4
    Author: robirurk, nK
    Website: https://nkdev.info
    Purchase: https://nkdev.info
    Support: https://nk.ticksy.com
    License: You must have a valid license purchased only from ThemeForest (the above link) in order to legally use the theme for your project.
    Copyright 2025.
-------------------------------------------------------------------*/
    @charset "UTF-8";
/*------------------------------------------------------------------
  [Typography]

  Body:       15px/1.65 Nunito Sans, sans-serif;
  Headings:   Montserrat, sans-serif
  Additional: Montserrat, sans-serif

  Note: Most of font sizes are relative to the base font size (rem)
 -------------------------------------------------------------------*/
/*------------------------------------------------------------------
  [Color codes]

  Main 1:    #c91010

  Dark 1:    #280909
  Dark 2:    #390d0d
  Dark 3:    #491010
  Dark 4:    #5a1414

  Gray 1:    #fafafa
  Gray 2:    #f7f7f7
  Gray 3:    whitesmoke
  Gray 4:    #f2f2f2
 -------------------------------------------------------------------*/
/*------------------------------------------------------------------
  [Table of contents]
  
  1. Base
  2. Typography
  3. Bootstrap
  4. Helpers
  5. Navbar
  6. Navbar Full
  7. Header Title
  8. Footer
  9. Widgets
  10. Elements
    - Element Buttons
    - Element Progress
    - Element Tabs
    - Element Icon Boxes
    - Element Content Boxes
    - Element Contact Info
    - Element Pagination
    - Element Blockquotes
    - Element Carousels
    - Element Video
    - Element Forms
    - Element Links List
    - Element Icons
    - Element Isotope
  11. Full Page
  12. Portfolio
  13. Blog
  14. Plugins
    - Plugin NanoScroller
 -------------------------------------------------------------------*/
/*------------------------------------------------------------------

  Base

 -------------------------------------------------------------------*/
html {
    overflow-y: scroll;
}

body {
    color: #5f5f5f;
    background-color: #f6f6f6;
}

.nk-main {
    position: relative;
    overflow: hidden;
    background-color: #f6f6f6;
    z-index: 1;
}

body.nk-bg-gradient .nk-main {
    background: linear-gradient(to bottom, #fff, #f6f6f6);
}

body.nk-page-boxed {
    max-width: 1200px;
    margin: 0 auto;
}

a {
    color: #c91010;
}

.color-main {
    color: #c91010 !important;
}

a:focus,
a:hover {
    color: #9a0c0c;
}

::-moz-selection {
    color: #fff;
    background-color: #c91010;
}

::selection {
    color: #fff;
    background-color: #c91010;
}

.nk-block {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.nk-block::after, .nk-block::before {
    content: "";
    display: table;
    clear: both;
}

.bg-image,
.bg-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 50% 50%;
    background-size: cover;
    z-index: -1;
}

.bg-image > div,
.bg-video > div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 50% 50%;
    background-size: cover;
}

.bg-image-square {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 10px;
    background-position: 50% 10%;
    width: 90%;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
}

.bg-image-square > div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 10px;
    background-position: 50% 10%;
    background-size: contain;
    background-repeat: no-repeat;
}

.bg-video {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-image-row,
.bg-video-row,
.bg-map-row {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.bg-image-row > div,
.bg-video-row > div,
.bg-map-row > div {
    height: 100%;
    overflow: hidden;
}

@media (max-width: 991px) {
    .bg-image-row,
    .bg-video-row,
    .bg-map-row {
        position: relative;
    }
    .bg-image-row > div,
    .bg-video-row > div,
    .bg-map-row > div {
        padding-top: 56.25%;
    }
    .bg-image-row > div > div,
    .bg-video-row > div > div,
    .bg-map-row > div > div {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

.bg-map-row {
    z-index: auto;
}

.bg-map-row .nk-gmaps {
    height: 100%;
    z-index: 1;
}

@media (max-width: 991px) {
    .bg-map-row {
        position: relative;
    }
    .bg-map-row > div {
        padding-top: 0;
    }
    .bg-map-row > div > div {
        position: relative;
    }
    .bg-map-row .nk-gmaps {
        height: 300px;
    }
    .bg-map-row .nk-gmaps-sm {
        height: 250px;
    }
    .bg-map-row .nk-gmaps-md {
        height: 450px;
    }
    .bg-map-row .nk-gmaps-lg {
        height: 550px;
    }
    .bg-map-row .nk-gmaps-full {
        height: 700px;
        height: 100vh;
        min-height: 700px;
    }
}

.bg-color {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #280909;
    z-index: -1;
}

.nk-gap,
.nk-gap-1,
.nk-gap-2,
.nk-gap-3,
.nk-gap-4,
.nk-gap-5,
.nk-gap-6 {
    display: block;
    height: 20px;
}

.nk-gap::after, .nk-gap::before,
.nk-gap-1::after,
.nk-gap-1::before,
.nk-gap-2::after,
.nk-gap-2::before,
.nk-gap-3::after,
.nk-gap-3::before,
.nk-gap-4::after,
.nk-gap-4::before,
.nk-gap-5::after,
.nk-gap-5::before,
.nk-gap-6::after,
.nk-gap-6::before {
    content: "";
    display: table;
    clear: both;
}

.nk-gap-1 {
    height: 30px;
}

.nk-gap-2 {
    height: 40px;
}

.nk-gap-3 {
    height: 60px;
}

.nk-gap-4 {
    height: 80px;
}

.nk-gap-5 {
    height: 100px;
}

.nk-gap-6 {
    height: 120px;
}

.nk-body-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.nk-gmaps {
    width: 100%;
    height: 300px;
}

.nk-gmaps-sm {
    height: 250px;
}

.nk-gmaps-md {
    height: 450px;
}

.nk-gmaps-lg {
    height: 570px;
}

.nk-gmaps-full {
    height: 700px;
    height: 100vh;
    min-height: 700px;
}

.nk-badge {
    display: inline-block;
    min-width: 15px;
    height: 15px;
    padding: 0 4px;
    font-size: 10px;
    line-height: 15px;
    color: #280909;
    text-align: center;
    background-color: #fff;
    border-radius: 7.5px;
}

.nk-navbar li > .nk-badge {
    position: absolute;
    right: 5px;
    bottom: 0;
}

.nk-scroll-top {
    cursor: pointer;
}

pre {
    position: relative;
    max-height: 500px;
    padding: 25px;
    line-height: 1.3;
    color: #fff;
    background-color: #491010;
}

pre .tag {
    display: inline-block;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: inherit;
    white-space: inherit;
    vertical-align: inherit;
    border-radius: 0;
}

pre[class*="language-"] {
    margin: 0;
}

/*  DEPRECATED, added for back compatibility */
.nk-vertical-center {
    display: table;
    width: 100%;
    height: 100%;
}

.nk-vertical-center > div {
    display: table-cell;
    vertical-align: middle;
}

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

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

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

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

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

/*------------------------------------------------------------------

  Typography

 -------------------------------------------------------------------*/
html {
    font-size: 15px;
}

body {
    font-family: "Nunito Sans", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    margin-bottom: 1.6rem;
}

b,
strong {
    font-weight: 1000;
    color: black;
}

div.lead {
    font-family: "Montserrat", sans-serif;
    font-size: 1.68rem;
    line-height: 1.45;
    color: #171717;
}

div.lead-sm {
    font-size: 1.25rem;
}

/* font like on headings */
.nk-heading-font {
    font-family: "Montserrat", sans-serif;
    letter-spacing: .02em;
}

/* headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-bottom: 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #171717;
}

.display-1,
.display-2,
.display-3,
.display-4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #171717;
}

.display-1 {
    font-size: 4.1rem;
}

.display-2 {
    font-size: 3.6rem;
}

.display-3 {
    font-size: 3.4rem;
}

.display-4 {
    font-size: 2.6rem;
}

.h2,
h2 {
    font-size: 2rem;
}

.h3,
h3 {
    font-size: 1.69rem;
}

.h4,
h4 {
    font-size: 1.4rem;
}

/* Sub Title */
.nk-subtitle {
    margin-bottom: 1.1rem;
    font-family: inherit;
    font-size: .93rem;
    text-transform: uppercase;
    letter-spacing: .2em;
}

.nk-subtitle-2 {
    font-family: inherit;
    font-size: .96rem;
    font-weight: 500;
    text-transform: uppercase;
}

/*------------------------------------------------------------------

  Bootstrap

 -------------------------------------------------------------------*/
.row.vertical-gap > [class*="col-"] {
    padding-top: 30px;
}

.row.vertical-gap {
    margin-top: -30px;
}

.nk-sidebar-sticky-parent {
    display: flex;
    flex-direction: column;
}

.nk-sidebar-sticky-parent > .nk-sidebar {
    flex: 1;
}

.row.xs-gap {
    margin-right: -5px;
    margin-left: -5px;
}

.row.xs-gap > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.row.xs-gap.vertical-gap > [class*="col-"] {
    padding-top: 10px;
}

.row.xs-gap.vertical-gap {
    margin-top: -10px;
}

.row.sm-gap {
    margin-right: -7.5px;
    margin-left: -7.5px;
}

.row.sm-gap > [class*="col-"] {
    padding-right: 7.5px;
    padding-left: 7.5px;
}

.row.sm-gap.vertical-gap > [class*="col-"] {
    padding-top: 15px;
}

.row.sm-gap.vertical-gap {
    margin-top: -15px;
}

.row.md-gap {
    margin-right: -22.5px;
    margin-left: -22.5px;
}

.row.md-gap > [class*="col-"] {
    padding-right: 22.5px;
    padding-left: 22.5px;
}

.row.md-gap.vertical-gap > [class*="col-"] {
    padding-top: 45px;
}

.row.md-gap.vertical-gap {
    margin-top: -45px;
}

.row.lg-gap {
    margin-right: -30px;
    margin-left: -30px;
}

.row.lg-gap > [class*="col-"] {
    padding-right: 30px;
    padding-left: 30px;
}

.row.lg-gap.vertical-gap > [class*="col-"] {
    padding-top: 65px;
}

.row.lg-gap.vertical-gap {
    margin-top: -65px;
}

.thead-default th {
    color: #5a1414;
    background-color: #f7f7f7;
}

.table thead th,
.table td,
.table th {
    border-color: #f2f2f2;
}

.nk-modal .modal-content {
    border: none;
    border-radius: 0;
}

.nk-modal .modal-header,
.nk-modal .modal-footer {
    padding: 25px 30px;
    border-top-color: #f3f3f3;
    border-bottom-color: #f3f3f3;
}

.nk-modal .modal-header .close,
.nk-modal .modal-footer .close {
    position: relative;
    margin-top: 0;
    z-index: 2;
}

.nk-modal .modal-body {
    padding: 30px;
}

.nk-modal.fade .modal-dialog {
    transition: none;
    transform: translate(0, 0);
}

@media (min-width: 576px) {
    .nk-modal .modal-dialog {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

/*------------------------------------------------------------------

  Helpers

 -------------------------------------------------------------------*/
/* stylelint-disable */
/*
 * Text Color Helper
 */
.text-main {
    color: #c91010 !important;
}

.text-white {
    color: #fff !important;
}

.text-black {
    color: #000 !important;
}

.text-black-2 {
    color: #0e0e0e !important;
}

.text-black-3 {
    color: #141414 !important;
}

.text-dark-1 {
    color: #280909 !important;
}

.text-dark-2 {
    color: #390d0d !important;
}

.text-dark-3 {
    color: #491010 !important;
}

.text-dark-4 {
    color: #5a1414 !important;
}

.text-gray-1 {
    color: #fafafa !important;
}

.text-gray-2 {
    color: #f7f7f7 !important;
}

.text-gray-3 {
    color: whitesmoke !important;
}

.text-gray-4 {
    color: #f2f2f2 !important;
}

.text-gray-5 {
    color: #c7c7c7 !important;
}

/*
 * Bg Color Helper
 */
.bg-main {
    background-color: #c91010 !important;
}

.bg-main-1 {
    background-color: rgba(201, 16, 16, 0.1) !important;
}

.bg-main-2 {
    background-color: rgba(201, 16, 16, 0.2) !important;
}

.bg-main-3 {
    background-color: rgba(201, 16, 16, 0.3) !important;
}

.bg-main-4 {
    background-color: rgba(201, 16, 16, 0.4) !important;
}

.bg-main-5 {
    background-color: rgba(201, 16, 16, 0.5) !important;
}

.bg-main-6 {
    background-color: rgba(201, 16, 16, 0.6) !important;
}

.bg-main-7 {
    background-color: rgba(201, 16, 16, 0.7) !important;
}

.bg-main-8 {
    background-color: rgba(201, 16, 16, 0.8) !important;
}

.bg-main-9 {
    background-color: rgba(201, 16, 16, 0.9) !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-white-1 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.bg-white-2 {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-white-3 {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.bg-white-4 {
    background-color: rgba(255, 255, 255, 0.4) !important;
}

.bg-white-5 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-6 {
    background-color: rgba(255, 255, 255, 0.6) !important;
}

.bg-white-7 {
    background-color: rgba(255, 255, 255, 0.7) !important;
}

.bg-white-8 {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

.bg-white-9 {
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.bg-black {
    background-color: #000 !important;
}

.bg-black-1 {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.bg-black-2 {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.bg-black-3 {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

.bg-black-4 {
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.bg-black-5 {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-black-6 {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.bg-black-7 {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.bg-black-8 {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.bg-black-9 {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.bg-black-2 {
    background-color: #0e0e0e !important;
}

.bg-black-2-1 {
    background-color: rgba(14, 14, 14, 0.1) !important;
}

.bg-black-2-2 {
    background-color: rgba(14, 14, 14, 0.2) !important;
}

.bg-black-2-3 {
    background-color: rgba(14, 14, 14, 0.3) !important;
}

.bg-black-2-4 {
    background-color: rgba(14, 14, 14, 0.4) !important;
}

.bg-black-2-5 {
    background-color: rgba(14, 14, 14, 0.5) !important;
}

.bg-black-2-6 {
    background-color: rgba(14, 14, 14, 0.6) !important;
}

.bg-black-2-7 {
    background-color: rgba(14, 14, 14, 0.7) !important;
}

.bg-black-2-8 {
    background-color: rgba(14, 14, 14, 0.8) !important;
}

.bg-black-2-9 {
    background-color: rgba(14, 14, 14, 0.9) !important;
}

.bg-black-3 {
    background-color: #141414 !important;
}

.bg-black-3-1 {
    background-color: rgba(20, 20, 20, 0.1) !important;
}

.bg-black-3-2 {
    background-color: rgba(20, 20, 20, 0.2) !important;
}

.bg-black-3-3 {
    background-color: rgba(20, 20, 20, 0.3) !important;
}

.bg-black-3-4 {
    background-color: rgba(20, 20, 20, 0.4) !important;
}

.bg-black-3-5 {
    background-color: rgba(20, 20, 20, 0.5) !important;
}

.bg-black-3-6 {
    background-color: rgba(20, 20, 20, 0.6) !important;
}

.bg-black-3-7 {
    background-color: rgba(20, 20, 20, 0.7) !important;
}

.bg-black-3-8 {
    background-color: rgba(20, 20, 20, 0.8) !important;
}

.bg-black-3-9 {
    background-color: rgba(20, 20, 20, 0.9) !important;
}

.bg-dark-1 {
    background-color: #280909 !important;
}

.bg-dark-1-1 {
    background-color: rgba(40, 9, 9, 0.1) !important;
}

.bg-dark-1-2 {
    background-color: rgba(40, 9, 9, 0.2) !important;
}

.bg-dark-1-3 {
    background-color: rgba(40, 9, 9, 0.3) !important;
}

.bg-dark-1-4 {
    background-color: rgba(40, 9, 9, 0.4) !important;
}

.bg-dark-1-5 {
    background-color: rgba(40, 9, 9, 0.5) !important;
}

.bg-dark-1-6 {
    background-color: rgba(40, 9, 9, 0.6) !important;
}

.bg-dark-1-7 {
    background-color: rgba(40, 9, 9, 0.7) !important;
}

.bg-dark-1-8 {
    background-color: rgba(40, 9, 9, 0.8) !important;
}

.bg-dark-1-9 {
    background-color: rgba(40, 9, 9, 0.9) !important;
}

.bg-dark-2 {
    background-color: #390d0d !important;
}

.bg-dark-2-1 {
    background-color: rgba(57, 13, 13, 0.1) !important;
}

.bg-dark-2-2 {
    background-color: rgba(57, 13, 13, 0.2) !important;
}

.bg-dark-2-3 {
    background-color: rgba(57, 13, 13, 0.3) !important;
}

.bg-dark-2-4 {
    background-color: rgba(57, 13, 13, 0.4) !important;
}

.bg-dark-2-5 {
    background-color: rgba(57, 13, 13, 0.5) !important;
}

.bg-dark-2-6 {
    background-color: rgba(57, 13, 13, 0.6) !important;
}

.bg-dark-2-7 {
    background-color: rgba(57, 13, 13, 0.7) !important;
}

.bg-dark-2-8 {
    background-color: rgba(57, 13, 13, 0.8) !important;
}

.bg-dark-2-9 {
    background-color: rgba(57, 13, 13, 0.9) !important;
}

.bg-dark-3 {
    background-color: #491010 !important;
}

.bg-dark-3-1 {
    background-color: rgba(73, 16, 16, 0.1) !important;
}

.bg-dark-3-2 {
    background-color: rgba(73, 16, 16, 0.2) !important;
}

.bg-dark-3-3 {
    background-color: rgba(73, 16, 16, 0.3) !important;
}

.bg-dark-3-4 {
    background-color: rgba(73, 16, 16, 0.4) !important;
}

.bg-dark-3-5 {
    background-color: rgba(73, 16, 16, 0.5) !important;
}

.bg-dark-3-6 {
    background-color: rgba(73, 16, 16, 0.6) !important;
}

.bg-dark-3-7 {
    background-color: rgba(73, 16, 16, 0.7) !important;
}

.bg-dark-3-8 {
    background-color: rgba(73, 16, 16, 0.8) !important;
}

.bg-dark-3-9 {
    background-color: rgba(73, 16, 16, 0.9) !important;
}

.bg-dark-4 {
    background-color: #5a1414 !important;
}

.bg-dark-4-1 {
    background-color: rgba(90, 20, 20, 0.1) !important;
}

.bg-dark-4-2 {
    background-color: rgba(90, 20, 20, 0.2) !important;
}

.bg-dark-4-3 {
    background-color: rgba(90, 20, 20, 0.3) !important;
}

.bg-dark-4-4 {
    background-color: rgba(90, 20, 20, 0.4) !important;
}

.bg-dark-4-5 {
    background-color: rgba(90, 20, 20, 0.5) !important;
}

.bg-dark-4-6 {
    background-color: rgba(90, 20, 20, 0.6) !important;
}

.bg-dark-4-7 {
    background-color: rgba(90, 20, 20, 0.7) !important;
}

.bg-dark-4-8 {
    background-color: rgba(90, 20, 20, 0.8) !important;
}

.bg-dark-4-9 {
    background-color: rgba(90, 20, 20, 0.9) !important;
}

.bg-gray-1 {
    background-color: #fafafa !important;
}

.bg-gray-1-1 {
    background-color: rgba(250, 250, 250, 0.1) !important;
}

.bg-gray-1-2 {
    background-color: rgba(250, 250, 250, 0.2) !important;
}

.bg-gray-1-3 {
    background-color: rgba(250, 250, 250, 0.3) !important;
}

.bg-gray-1-4 {
    background-color: rgba(250, 250, 250, 0.4) !important;
}

.bg-gray-1-5 {
    background-color: rgba(250, 250, 250, 0.5) !important;
}

.bg-gray-1-6 {
    background-color: rgba(250, 250, 250, 0.6) !important;
}

.bg-gray-1-7 {
    background-color: rgba(250, 250, 250, 0.7) !important;
}

.bg-gray-1-8 {
    background-color: rgba(250, 250, 250, 0.8) !important;
}

.bg-gray-1-9 {
    background-color: rgba(250, 250, 250, 0.9) !important;
}

.bg-gray-2 {
    background-color: #f7f7f7 !important;
}

.bg-gray-2-1 {
    background-color: rgba(247, 247, 247, 0.1) !important;
}

.bg-gray-2-2 {
    background-color: rgba(247, 247, 247, 0.2) !important;
}

.bg-gray-2-3 {
    background-color: rgba(247, 247, 247, 0.3) !important;
}

.bg-gray-2-4 {
    background-color: rgba(247, 247, 247, 0.4) !important;
}

.bg-gray-2-5 {
    background-color: rgba(247, 247, 247, 0.5) !important;
}

.bg-gray-2-6 {
    background-color: rgba(247, 247, 247, 0.6) !important;
}

.bg-gray-2-7 {
    background-color: rgba(247, 247, 247, 0.7) !important;
}

.bg-gray-2-8 {
    background-color: rgba(247, 247, 247, 0.8) !important;
}

.bg-gray-2-9 {
    background-color: rgba(247, 247, 247, 0.9) !important;
}

.bg-gray-3 {
    background-color: whitesmoke !important;
}

.bg-gray-3-1 {
    background-color: rgba(245, 245, 245, 0.1) !important;
}

.bg-gray-3-2 {
    background-color: rgba(245, 245, 245, 0.2) !important;
}

.bg-gray-3-3 {
    background-color: rgba(245, 245, 245, 0.3) !important;
}

.bg-gray-3-4 {
    background-color: rgba(245, 245, 245, 0.4) !important;
}

.bg-gray-3-5 {
    background-color: rgba(245, 245, 245, 0.5) !important;
}

.bg-gray-3-6 {
    background-color: rgba(245, 245, 245, 0.6) !important;
}

.bg-gray-3-7 {
    background-color: rgba(245, 245, 245, 0.7) !important;
}

.bg-gray-3-8 {
    background-color: rgba(245, 245, 245, 0.8) !important;
}

.bg-gray-3-9 {
    background-color: rgba(245, 245, 245, 0.9) !important;
}

.bg-gray-4 {
    background-color: #f2f2f2 !important;
}

.bg-gray-4-1 {
    background-color: rgba(242, 242, 242, 0.1) !important;
}

.bg-gray-4-2 {
    background-color: rgba(242, 242, 242, 0.2) !important;
}

.bg-gray-4-3 {
    background-color: rgba(242, 242, 242, 0.3) !important;
}

.bg-gray-4-4 {
    background-color: rgba(242, 242, 242, 0.4) !important;
}

.bg-gray-4-5 {
    background-color: rgba(242, 242, 242, 0.5) !important;
}

.bg-gray-4-6 {
    background-color: rgba(242, 242, 242, 0.6) !important;
}

.bg-gray-4-7 {
    background-color: rgba(242, 242, 242, 0.7) !important;
}

.bg-gray-4-8 {
    background-color: rgba(242, 242, 242, 0.8) !important;
}

.bg-gray-4-9 {
    background-color: rgba(242, 242, 242, 0.9) !important;
}

.bg-gray-5 {
    background-color: #c7c7c7 !important;
}

.bg-gray-5-1 {
    background-color: rgba(199, 199, 199, 0.1) !important;
}

.bg-gray-5-2 {
    background-color: rgba(199, 199, 199, 0.2) !important;
}

.bg-gray-5-3 {
    background-color: rgba(199, 199, 199, 0.3) !important;
}

.bg-gray-5-4 {
    background-color: rgba(199, 199, 199, 0.4) !important;
}

.bg-gray-5-5 {
    background-color: rgba(199, 199, 199, 0.5) !important;
}

.bg-gray-5-6 {
    background-color: rgba(199, 199, 199, 0.6) !important;
}

.bg-gray-5-7 {
    background-color: rgba(199, 199, 199, 0.7) !important;
}

.bg-gray-5-8 {
    background-color: rgba(199, 199, 199, 0.8) !important;
}

.bg-gray-5-9 {
    background-color: rgba(199, 199, 199, 0.9) !important;
}

/*
 * Image Fit
 */
.nk-img-fit,
.nk-img {
    max-width: 100%;
}

@media (max-width: 575px) {
    .nk-img-fit-xs-down {
        max-width: 100%;
    }
}

@media (min-width: 576px) {
    .nk-img-fit-sm-up {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .nk-img-fit-sm-down {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .nk-img-fit-md-up {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .nk-img-fit-md-down {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .nk-img-fit-lg-up {
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    .nk-img-fit-lg-down {
        max-width: 100%;
    }
}

@media (min-width: 1200) {
    .nk-img-fit-xl-up {
        max-width: 100%;
    }
}

/*
 * Image Stretch
 */
.nk-img-stretch {
    width: 100%;
}

/*
 * Circle / Rounded Images Helper
 */
img.circle {
    border-radius: 50%;
}

img.rounded {
    border-radius: 5px;
}

/*
 * Text Align Helper
 */
.align-left {
    text-align: left;
}

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

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

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

/*
 * Vertical Align Helper
 */
.va-t {
    vertical-align: top !important;
}

.va-m {
    vertical-align: middle !important;
}

.va-b {
    vertical-align: bottom !important;
}

.va-s {
    vertical-align: super !important;
}

/*
 * Inline Block Helper
 */
.dib {
    display: inline-block !important;
}

/*
 * Block Helper
 */
.db {
    display: block;
}

/*
 * Cursor Pointer Helper
 */
.cursor {
    cursor: pointer !important;
}

/*
 * Text Transform Helper
 */
.text-uppercase {
    text-transform: uppercase !important;
}

/*
 * Font Weight Helper
 */
.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

/*
 * Font Size Helper
 */
.fs-4 {
    font-size: 4px !important;
}

.fs-5 {
    font-size: 5px !important;
}

.fs-6 {
    font-size: 6px !important;
}

.fs-7 {
    font-size: 7px !important;
}

.fs-8 {
    font-size: 8px !important;
}

.fs-9 {
    font-size: 9px !important;
}

.fs-10 {
    font-size: 10px !important;
}

.fs-11 {
    font-size: 11px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-17 {
    font-size: 17px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-19 {
    font-size: 19px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-26 {
    font-size: 26px !important;
}

.fs-28 {
    font-size: 28px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-35 {
    font-size: 35px !important;
}

.fs-40 {
    font-size: 40px !important;
}

.fs-45 {
    font-size: 45px !important;
}

.fs-50 {
    font-size: 50px !important;
}

/*
 * Line Height Helper
 */
.lh-0 {
    line-height: 0px !important;
}

.lh-5 {
    line-height: 5px !important;
}

.lh-10 {
    line-height: 10px !important;
}

.lh-15 {
    line-height: 15px !important;
}

.lh-20 {
    line-height: 20px !important;
}

.lh-25 {
    line-height: 25px !important;
}

.lh-30 {
    line-height: 30px !important;
}

.lh-35 {
    line-height: 35px !important;
}

.lh-40 {
    line-height: 40px !important;
}

.lh-45 {
    line-height: 45px !important;
}

.lh-50 {
    line-height: 50px !important;
}

.lh-55 {
    line-height: 55px !important;
}

/*
 * Inherit Font Family
 */
.nk-font-inherit {
    font-family: inherit !important;
}

/*
 * Text Ellipsis Helper
 */
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*
 * auto height and width
 */
.hauto {
    height: auto !important;
}

.wauto {
    width: auto !important;
}

/*
 * Overflow Helper
 */
.of-a {
    overflow: auto !important;
}

.of-h {
    overflow: hidden !important;
}

.of-v {
    overflow: visible !important;
}

.of-x-a {
    overflow-x: auto !important;
}

.of-x-h {
    overflow-x: hidden !important;
}

.of-x-v {
    overflow-x: visible !important;
}

.of-y-a {
    overflow-y: auto !important;
}

.of-y-h {
    overflow-y: hidden !important;
}

.of-y-v {
    overflow-y: visible !important;
}

/*
 * Border Radius Helper
 */
.br-0 {
    border-radius: 0px !important;
}

.br-1 {
    border-radius: 1px !important;
}

.br-2 {
    border-radius: 2px !important;
}

.br-3 {
    border-radius: 3px !important;
}

.br-4 {
    border-radius: 4px !important;
}

.br-5 {
    border-radius: 5px !important;
}

.br-6 {
    border-radius: 6px !important;
}

.br-7 {
    border-radius: 7px !important;
}

.br-8 {
    border-radius: 8px !important;
}

.br-9 {
    border-radius: 9px !important;
}

.br-10 {
    border-radius: 10px !important;
}

.br-12 {
    border-radius: 12px !important;
}

.br-14 {
    border-radius: 14px !important;
}

.br-16 {
    border-radius: 16px !important;
}

.br-18 {
    border-radius: 18px !important;
}

.br-20 {
    border-radius: 20px !important;
}

.br-25 {
    border-radius: 25px !important;
}

.br-30 {
    border-radius: 30px !important;
}

.br-35 {
    border-radius: 35px !important;
}

/*
 * Paddings Helper
 */
.p-0 {
    padding: 0px !important;
}

.p-1 {
    padding: 1px !important;
}

.p-2 {
    padding: 2px !important;
}

.p-3 {
    padding: 3px !important;
}

.p-4 {
    padding: 4px !important;
}

.p-5 {
    padding: 5px !important;
}

.p-6 {
    padding: 6px !important;
}

.p-7 {
    padding: 7px !important;
}

.p-8 {
    padding: 8px !important;
}

.p-9 {
    padding: 9px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-35 {
    padding: 35px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-45 {
    padding: 45px !important;
}

.p-50 {
    padding: 50px !important;
}

.p-60 {
    padding: 60px !important;
}

.p-70 {
    padding: 70px !important;
}

.p-80 {
    padding: 80px !important;
}

.p-90 {
    padding: 90px !important;
}

.p-100 {
    padding: 100px !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pt-1 {
    padding-top: 1px !important;
}

.pt-2 {
    padding-top: 2px !important;
}

.pt-3 {
    padding-top: 3px !important;
}

.pt-4 {
    padding-top: 4px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-6 {
    padding-top: 6px !important;
}

.pt-7 {
    padding-top: 7px !important;
}

.pt-8 {
    padding-top: 8px !important;
}

.pt-9 {
    padding-top: 9px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

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

.pt-30 {
    padding-top: 30px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

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

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

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

.pl-0 {
    padding-left: 0px !important;
}

.pl-1 {
    padding-left: 1px !important;
}

.pl-2 {
    padding-left: 2px !important;
}

.pl-3 {
    padding-left: 3px !important;
}

.pl-4 {
    padding-left: 4px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pl-6 {
    padding-left: 6px !important;
}

.pl-7 {
    padding-left: 7px !important;
}

.pl-8 {
    padding-left: 8px !important;
}

.pl-9 {
    padding-left: 9px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-35 {
    padding-left: 35px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-45 {
    padding-left: 45px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.pr-1 {
    padding-right: 1px !important;
}

.pr-2 {
    padding-right: 2px !important;
}

.pr-3 {
    padding-right: 3px !important;
}

.pr-4 {
    padding-right: 4px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pr-6 {
    padding-right: 6px !important;
}

.pr-7 {
    padding-right: 7px !important;
}

.pr-8 {
    padding-right: 8px !important;
}

.pr-9 {
    padding-right: 9px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pr-45 {
    padding-right: 45px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pb-1 {
    padding-bottom: 1px !important;
}

.pb-2 {
    padding-bottom: 2px !important;
}

.pb-3 {
    padding-bottom: 3px !important;
}

.pb-4 {
    padding-bottom: 4px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-6 {
    padding-bottom: 6px !important;
}

.pb-7 {
    padding-bottom: 7px !important;
}

.pb-8 {
    padding-bottom: 8px !important;
}

.pb-9 {
    padding-bottom: 9px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

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

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

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

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

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

/*
 * Margins Helper
 */
.mauto {
    margin-right: auto;
    margin-left: auto;
}

.mrauto {
    margin-right: auto;
}

.mlauto {
    margin-left: auto;
}

.m-0 {
    margin: 0px !important;
}

.m-1 {
    margin: 1px !important;
}

.m-2 {
    margin: 2px !important;
}

.m-3 {
    margin: 3px !important;
}

.m-4 {
    margin: 4px !important;
}

.m-5 {
    margin: 5px !important;
}

.m-6 {
    margin: 6px !important;
}

.m-7 {
    margin: 7px !important;
}

.m-8 {
    margin: 8px !important;
}

.m-9 {
    margin: 9px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-11 {
    margin: 11px !important;
}

.m-12 {
    margin: 12px !important;
}

.m-13 {
    margin: 13px !important;
}

.m-14 {
    margin: 14px !important;
}

.m-15 {
    margin: 15px !important;
}

.m-20 {
    margin: 20px !important;
}

.m-25 {
    margin: 25px !important;
}

.m-30 {
    margin: 30px !important;
}

.m-35 {
    margin: 35px !important;
}

.m-40 {
    margin: 40px !important;
}

.m-45 {
    margin: 45px !important;
}

.m-50 {
    margin: 50px !important;
}

.m-60 {
    margin: 60px !important;
}

.m-70 {
    margin: 70px !important;
}

.m-80 {
    margin: 80px !important;
}

.m-90 {
    margin: 90px !important;
}

.m-100 {
    margin: 100px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mt-1 {
    margin-top: 1px !important;
}

.mt-2 {
    margin-top: 2px !important;
}

.mt-3 {
    margin-top: 3px !important;
}

.mt-4 {
    margin-top: 4px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-6 {
    margin-top: 6px !important;
}

.mt-7 {
    margin-top: 7px !important;
}

.mt-8 {
    margin-top: 8px !important;
}

.mt-9 {
    margin-top: 9px !important;
}

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

.mt-11 {
    margin-top: 11px !important;
}

.mt-12 {
    margin-top: 12px !important;
}

.mt-13 {
    margin-top: 13px !important;
}

.mt-14 {
    margin-top: 14px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

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

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

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

.mt-60 {
    margin-top: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.ml-1 {
    margin-left: 1px !important;
}

.ml-2 {
    margin-left: 2px !important;
}

.ml-3 {
    margin-left: 3px !important;
}

.ml-4 {
    margin-left: 4px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-6 {
    margin-left: 6px !important;
}

.ml-7 {
    margin-left: 7px !important;
}

.ml-8 {
    margin-left: 8px !important;
}

.ml-9 {
    margin-left: 9px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-11 {
    margin-left: 11px !important;
}

.ml-12 {
    margin-left: 12px !important;
}

.ml-13 {
    margin-left: 13px !important;
}

.ml-14 {
    margin-left: 14px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-45 {
    margin-left: 45px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.ml-70 {
    margin-left: 70px !important;
}

.ml-80 {
    margin-left: 80px !important;
}

.ml-90 {
    margin-left: 90px !important;
}

.ml-100 {
    margin-left: 100px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mr-1 {
    margin-right: 1px !important;
}

.mr-2 {
    margin-right: 2px !important;
}

.mr-3 {
    margin-right: 3px !important;
}

.mr-4 {
    margin-right: 4px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-6 {
    margin-right: 6px !important;
}

.mr-7 {
    margin-right: 7px !important;
}

.mr-8 {
    margin-right: 8px !important;
}

.mr-9 {
    margin-right: 9px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-11 {
    margin-right: 11px !important;
}

.mr-12 {
    margin-right: 12px !important;
}

.mr-13 {
    margin-right: 13px !important;
}

.mr-14 {
    margin-right: 14px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-45 {
    margin-right: 45px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mr-70 {
    margin-right: 70px !important;
}

.mr-80 {
    margin-right: 80px !important;
}

.mr-90 {
    margin-right: 90px !important;
}

.mr-100 {
    margin-right: 100px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-1 {
    margin-bottom: 1px !important;
}

.mb-2 {
    margin-bottom: 2px !important;
}

.mb-3 {
    margin-bottom: 3px !important;
}

.mb-4 {
    margin-bottom: 4px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-6 {
    margin-bottom: 6px !important;
}

.mb-7 {
    margin-bottom: 7px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mb-9 {
    margin-bottom: 9px !important;
}

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

.mb-11 {
    margin-bottom: 11px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-13 {
    margin-bottom: 13px !important;
}

.mb-14 {
    margin-bottom: 14px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

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

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

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

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

/*
 * Negative Margins Helper
 */
.mn-0 {
    margin: 0px !important;
}

.mn-1 {
    margin: -1px !important;
}

.mn-2 {
    margin: -2px !important;
}

.mn-3 {
    margin: -3px !important;
}

.mn-4 {
    margin: -4px !important;
}

.mn-5 {
    margin: -5px !important;
}

.mn-6 {
    margin: -6px !important;
}

.mn-7 {
    margin: -7px !important;
}

.mn-8 {
    margin: -8px !important;
}

.mn-9 {
    margin: -9px !important;
}

.mn-10 {
    margin: -10px !important;
}

.mn-11 {
    margin: -11px !important;
}

.mn-12 {
    margin: -12px !important;
}

.mn-13 {
    margin: -13px !important;
}

.mn-14 {
    margin: -14px !important;
}

.mn-15 {
    margin: -15px !important;
}

.mn-20 {
    margin: -20px !important;
}

.mn-25 {
    margin: -25px !important;
}

.mn-30 {
    margin: -30px !important;
}

.mn-35 {
    margin: -35px !important;
}

.mn-40 {
    margin: -40px !important;
}

.mn-45 {
    margin: -45px !important;
}

.mn-50 {
    margin: -50px !important;
}

.mn-60 {
    margin: -60px !important;
}

.mn-70 {
    margin: -70px !important;
}

.mn-80 {
    margin: -80px !important;
}

.mn-90 {
    margin: -90px !important;
}

.mn-100 {
    margin: -100px !important;
}

.mnt-0 {
    margin-top: 0px !important;
}

.mnt-1 {
    margin-top: -1px !important;
}

.mnt-2 {
    margin-top: -2px !important;
}

.mnt-3 {
    margin-top: -3px !important;
}

.mnt-4 {
    margin-top: -4px !important;
}

.mnt-5 {
    margin-top: -5px !important;
}

.mnt-6 {
    margin-top: -6px !important;
}

.mnt-7 {
    margin-top: -7px !important;
}

.mnt-8 {
    margin-top: -8px !important;
}

.mnt-9 {
    margin-top: -9px !important;
}

.mnt-10 {
    margin-top: -10px !important;
}

.mnt-11 {
    margin-top: -11px !important;
}

.mnt-12 {
    margin-top: -12px !important;
}

.mnt-13 {
    margin-top: -13px !important;
}

.mnt-14 {
    margin-top: -14px !important;
}

.mnt-15 {
    margin-top: -15px !important;
}

.mnt-20 {
    margin-top: -20px !important;
}

.mnt-25 {
    margin-top: -25px !important;
}

.mnt-30 {
    margin-top: -30px !important;
}

.mnt-35 {
    margin-top: -35px !important;
}

.mnt-40 {
    margin-top: -40px !important;
}

.mnt-45 {
    margin-top: -45px !important;
}

.mnt-50 {
    margin-top: -50px !important;
}

.mnt-60 {
    margin-top: -60px !important;
}

.mnt-70 {
    margin-top: -70px !important;
}

.mnt-80 {
    margin-top: -80px !important;
}

.mnt-90 {
    margin-top: -90px !important;
}

.mnt-100 {
    margin-top: -100px !important;
}

.mnl-0 {
    margin-left: 0px !important;
}

.mnl-1 {
    margin-left: -1px !important;
}

.mnl-2 {
    margin-left: -2px !important;
}

.mnl-3 {
    margin-left: -3px !important;
}

.mnl-4 {
    margin-left: -4px !important;
}

.mnl-5 {
    margin-left: -5px !important;
}

.mnl-6 {
    margin-left: -6px !important;
}

.mnl-7 {
    margin-left: -7px !important;
}

.mnl-8 {
    margin-left: -8px !important;
}

.mnl-9 {
    margin-left: -9px !important;
}

.mnl-10 {
    margin-left: -10px !important;
}

.mnl-11 {
    margin-left: -11px !important;
}

.mnl-12 {
    margin-left: -12px !important;
}

.mnl-13 {
    margin-left: -13px !important;
}

.mnl-14 {
    margin-left: -14px !important;
}

.mnl-15 {
    margin-left: -15px !important;
}

.mnl-20 {
    margin-left: -20px !important;
}

.mnl-25 {
    margin-left: -25px !important;
}

.mnl-30 {
    margin-left: -30px !important;
}

.mnl-35 {
    margin-left: -35px !important;
}

.mnl-40 {
    margin-left: -40px !important;
}

.mnl-45 {
    margin-left: -45px !important;
}

.mnl-50 {
    margin-left: -50px !important;
}

.mnl-60 {
    margin-left: -60px !important;
}

.mnl-70 {
    margin-left: -70px !important;
}

.mnl-80 {
    margin-left: -80px !important;
}

.mnl-90 {
    margin-left: -90px !important;
}

.mnl-100 {
    margin-left: -100px !important;
}

.mnr-0 {
    margin-right: 0px !important;
}

.mnr-1 {
    margin-right: -1px !important;
}

.mnr-2 {
    margin-right: -2px !important;
}

.mnr-3 {
    margin-right: -3px !important;
}

.mnr-4 {
    margin-right: -4px !important;
}

.mnr-5 {
    margin-right: -5px !important;
}

.mnr-6 {
    margin-right: -6px !important;
}

.mnr-7 {
    margin-right: -7px !important;
}

.mnr-8 {
    margin-right: -8px !important;
}

.mnr-9 {
    margin-right: -9px !important;
}

.mnr-10 {
    margin-right: -10px !important;
}

.mnr-11 {
    margin-right: -11px !important;
}

.mnr-12 {
    margin-right: -12px !important;
}

.mnr-13 {
    margin-right: -13px !important;
}

.mnr-14 {
    margin-right: -14px !important;
}

.mnr-15 {
    margin-right: -15px !important;
}

.mnr-20 {
    margin-right: -20px !important;
}

.mnr-25 {
    margin-right: -25px !important;
}

.mnr-30 {
    margin-right: -30px !important;
}

.mnr-35 {
    margin-right: -35px !important;
}

.mnr-40 {
    margin-right: -40px !important;
}

.mnr-45 {
    margin-right: -45px !important;
}

.mnr-50 {
    margin-right: -50px !important;
}

.mnr-60 {
    margin-right: -60px !important;
}

.mnr-70 {
    margin-right: -70px !important;
}

.mnr-80 {
    margin-right: -80px !important;
}

.mnr-90 {
    margin-right: -90px !important;
}

.mnr-100 {
    margin-right: -100px !important;
}

.mnb-0 {
    margin-bottom: 0px !important;
}

.mnb-1 {
    margin-bottom: -1px !important;
}

.mnb-2 {
    margin-bottom: -2px !important;
}

.mnb-3 {
    margin-bottom: -3px !important;
}

.mnb-4 {
    margin-bottom: -4px !important;
}

.mnb-5 {
    margin-bottom: -5px !important;
}

.mnb-6 {
    margin-bottom: -6px !important;
}

.mnb-7 {
    margin-bottom: -7px !important;
}

.mnb-8 {
    margin-bottom: -8px !important;
}

.mnb-9 {
    margin-bottom: -9px !important;
}

.mnb-10 {
    margin-bottom: -10px !important;
}

.mnb-11 {
    margin-bottom: -11px !important;
}

.mnb-12 {
    margin-bottom: -12px !important;
}

.mnb-13 {
    margin-bottom: -13px !important;
}

.mnb-14 {
    margin-bottom: -14px !important;
}

.mnb-15 {
    margin-bottom: -15px !important;
}

.mnb-20 {
    margin-bottom: -20px !important;
}

.mnb-25 {
    margin-bottom: -25px !important;
}

.mnb-30 {
    margin-bottom: -30px !important;
}

.mnb-35 {
    margin-bottom: -35px !important;
}

.mnb-40 {
    margin-bottom: -40px !important;
}

.mnb-45 {
    margin-bottom: -45px !important;
}

.mnb-50 {
    margin-bottom: -50px !important;
}

.mnb-60 {
    margin-bottom: -60px !important;
}

.mnb-70 {
    margin-bottom: -70px !important;
}

.mnb-80 {
    margin-bottom: -80px !important;
}

.mnb-90 {
    margin-bottom: -90px !important;
}

.mnb-100 {
    margin-bottom: -100px !important;
}

/*
 * Opacity
 */
.op-0 {
    opacity: 0 !important;
}

.op-1 {
    opacity: 0.1 !important;
}

.op-2 {
    opacity: 0.2 !important;
}

.op-3 {
    opacity: 0.3 !important;
}

.op-4 {
    opacity: 0.4 !important;
}

.op-5 {
    opacity: 0.5 !important;
}

.op-6 {
    opacity: 0.6 !important;
}

.op-7 {
    opacity: 0.7 !important;
}

.op-8 {
    opacity: 0.8 !important;
}

.op-9 {
    opacity: 0.9 !important;
}

.op-10 {
    opacity: 1 !important;
}

/*
 * Max Width
 */
.mw-100 {
    max-width: 100px !important;
}

.mw-200 {
    max-width: 200px !important;
}

.mw-300 {
    max-width: 300px !important;
}

.mw-400 {
    max-width: 400px !important;
}

.mw-500 {
    max-width: 500px !important;
}

.mw-600 {
    max-width: 600px !important;
}

.mw-620 {
    max-width: 620px !important;
}

.mw-700 {
    max-width: 700px !important;
}

.mw-800 {
    max-width: 800px !important;
}

.mw-900 {
    max-width: 900px !important;
}

.mw-1000 {
    max-width: 1000px !important;
}

/*
 * Responsive embeds
 */
.responsive-embed {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    clear: both;
}

.responsive-embed.responsive-embed-16x9 {
    padding-bottom: 56.25%;
}

.responsive-embed.responsive-embed-4x3 {
    padding-bottom: 75%;
}

.responsive-embed > .embed-item,
.responsive-embed > iframe,
.responsive-embed > embed,
.responsive-embed > object {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*
 * Keyboard Key
 */
.nk-keyboard {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    padding: 0 7px;
    margin: 5px;
    font-size: 12px;
    line-height: 28px;
    color: #280909;
    text-align: center;
    background-color: #fff;
    border: 1px solid #d95757;
    border-radius: 3px;
}

/*------------------------------------------------------------------

  Navbar

 -------------------------------------------------------------------*/
/* Header */
.nk-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
}

.nk-header.nk-header-opaque {
    position: relative;
}

/* Navbar */
.nk-navbar {
    position: relative;
    padding: 33px 0;
    font-family: "Montserrat", sans-serif;
    font-size: .9rem;
    transition: .3s background-color;
    z-index: 1000;
    will-change: background-color;
    /* Navbar style 2 */
}

.nk-navbar .container-fluid .nk-nav-table {
    padding-right: 30px;
    padding-left: 30px;
}

.nk-navbar.nk-navbar-lg {
    padding: 51px 0;
}

.nk-navbar.nk-navbar-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    transition: .2s transform, .2s visibility, .3s background-color;
    will-change: transform, visibility, background-color;
}

.nk-navbar.nk-navbar-fixed.nk-onscroll-hide {
    visibility: hidden;
    transform: translateY(-100%);
}

.nk-navbar.nk-navbar-fixed.nk-onscroll-show {
    visibility: visible;
    transform: translateY(0);
}

.nk-navbar.nk-navbar-transparent {
    background-color: transparent;
}

.nk-navbar, .nk-navbar.nk-navbar-solid {
    background-color: #fff;
}

.nk-navbar.nk-navbar-transparent-always {
    background-color: transparent;
}

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

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

.nk-navbar .nk-nav-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.nk-navbar .nk-nav-table > * {
    flex: 0 0 auto;
}

.nk-navbar .nk-nav-table > .nk-nav,
.nk-navbar .nk-nav-table > .nk-nav-row-full {
    flex: 1;
}

.nk-navbar .nk-nav-table > .nk-nav-row-full {
    flex: 1;
    min-height: 0;
}

.nk-navbar .nk-nav-table > .nk-nav-row-center {
    display: flex;
    flex-direction: column;
}

.nk-navbar .nk-nav-table > .nk-nav-row-center > * {
    margin-top: auto;
    margin-bottom: auto;
}

.nk-navbar .nk-nav-table > .nk-nav-icons {
    margin-left: auto;
    text-align: right;
}

.nk-navbar .nk-nav-table > .nk-nav-icons,
.nk-navbar .nk-nav-table > .nk-nav-logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.nk-navbar.nk-navbar-top .nk-nav-table {
    flex-direction: row;
    align-items: center;
}

.nk-navbar .nk-nav-logo img {
    height: auto;
}

.nk-navbar .nk-nav-icons {
    white-space: nowrap;
}

.nk-navbar .nk-nav-icons > * {
    white-space: initial;
}

.nk-navbar a {
    color: inherit;
    transition: .2s color;
}

.nk-navbar ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.nk-navbar ul > li > a {
    white-space: nowrap;
}

.nk-navbar ul > li > a:hover, .nk-navbar ul > li > a:focus {
    text-decoration: none;
}

.nk-navbar .nk-navbar-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.nk-navbar .nk-nav {
    position: relative;
    padding-left: 20px;
}

.nk-navbar .nk-nav > li:last-of-type > a,
.nk-navbar .nk-nav > li.single-icon:last-of-type > a {
    padding-right: 0;
}

.nk-navbar .nk-nav + .nk-nav {
    padding-left: 0;
}

.nk-navbar .nk-nav + .nk-nav > li:first-child {
    padding-left: 20px;
}

.nk-navbar .nk-nav .nk-nav {
    padding-right: 0;
    padding-left: 0;
}

.nk-navbar .nk-nav li > a {
    font-size: .8rem;
    letter-spacing: .07em;
}

.nk-navbar .nk-nav li.single-icon > a {
    padding: 0 15px;
}

.nk-navbar .nk-nav li.single-icon > a::before {
    content: none;
}

.nk-navbar .nk-nav li.single-icon > a > i,
.nk-navbar .nk-nav li.single-icon > a > span {
    height: 32px;
    font-size: 1.1rem;
    line-height: 32px;
    vertical-align: middle;
}

.nk-navbar .nk-nav li > a .nk-item-descr {
    display: block;
    font-size: .7em;
    font-style: italic;
    opacity: .7;
}

.nk-navbar .nk-nav > li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.nk-navbar .nk-nav > li > a {
    position: relative;
    display: block;
    padding: 6px 14.6px;
    font-weight: 500;
    text-transform: uppercase;
}

.nk-navbar .nk-nav > li > a:hover {
    color: #0e0e0e;
}

.nk-navbar .nk-nav > li.active > a {
    color: #c91010;
}

.nk-navbar .nk-nav .dropdown {
    position: absolute;
    display: none;
    padding: 15px 0;
    margin-top: 12px;
    margin-left: -15px;
    font-size: 1rem;
    text-align: left;
    background-color: #280909;
    opacity: 0;
    z-index: 1;
}

.nk-navbar .nk-nav .dropdown::before {
    content: "";
    position: absolute;
    display: block;
    top: -20px;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: -1;
}

.nk-navbar .nk-nav .dropdown > li {
    position: relative;
}

.nk-navbar .nk-nav .dropdown > li > a {
    display: block;
    padding: 6px 30px;
    padding-right: 75px;
    color: #c5c5c5;
    text-decoration: none;
}

.nk-navbar .nk-nav .dropdown > li > a:hover,
.nk-navbar .nk-nav .dropdown > li.active > a {
    color: #fff;
}

.nk-navbar .nk-nav .nk-drop-item .nk-drop-item > a::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 20px;
    width: 0;
    height: 0;
    margin-top: -1px;
    color: inherit;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-left: 2px solid;
}

.nk-navbar .nk-nav .nk-drop-item .nk-drop-item .dropdown {
    top: 0;
    margin-top: -15px;
    margin-left: 100%;
}

.nk-navbar.nk-navbar-dark {
    background-color: #280909;
}

.nk-navbar.nk-navbar-dark a {
    color: #bcbcbc;
}

.nk-navbar.nk-navbar-dark .nk-nav > li > a:hover,
.nk-navbar.nk-navbar-dark .nk-nav > li.active > a {
    color: #fff;
}

.nk-navbar .nk-nav-logo .nk-nav-logo-onscroll {
    display: none;
}

.nk-navbar.nk-navbar-white-text-on-top .nk-nav > li > a {
    color: #bfbfbf;
}

.nk-navbar.nk-navbar-white-text-on-top .nk-nav > li > a:hover,
.nk-navbar.nk-navbar-white-text-on-top .nk-nav > li.active > a,
.nk-navbar.nk-navbar-white-text-on-top .nk-icon-burger {
    color: #fff;
}

.nk-navbar.nk-navbar-white-text-on-top.nk-navbar-solid .nk-nav > li > a {
    color: inherit;
}

.nk-navbar.nk-navbar-white-text-on-top.nk-navbar-solid .nk-nav > li > a:hover,
.nk-navbar.nk-navbar-white-text-on-top.nk-navbar-solid .nk-nav > li.active > a,
.nk-navbar.nk-navbar-white-text-on-top.nk-navbar-solid .nk-icon-burger {
    color: #0e0e0e;
}

.nk-navbar.nk-navbar-white-text-on-top .nk-nav-logo .nk-nav-logo-onscroll {
    display: block;
}

.nk-navbar.nk-navbar-white-text-on-top .nk-nav-logo .nk-nav-logo-onscroll + img {
    display: none;
}

.nk-navbar.nk-navbar-white-text-on-top.nk-navbar-solid .nk-nav-logo .nk-nav-logo-onscroll {
    display: none;
}

.nk-navbar.nk-navbar-white-text-on-top.nk-navbar-solid .nk-nav-logo .nk-nav-logo-onscroll + img {
    display: block;
}

.nk-navbar .nk-nav-right {
    text-align: right;
}

.nk-navbar .nk-nav-right > * {
    text-align: left;
}

.nk-navbar .nk-nav-center {
    text-align: center;
}

.nk-navbar .nk-nav-center > * {
    text-align: left;
}

.nk-navbar .nk-drop-item.nk-drop-left > a::after {
    border-top: 2px solid transparent;
    border-right: 2px solid;
    border-bottom: 2px solid transparent;
    border-left: none;
}

.nk-navbar .nk-drop-item.nk-drop-left .dropdown {
    margin-left: -100%;
}

.nk-navbar .nk-nav-left {
    padding-left: 0;
    text-align: right;
}

.nk-navbar .nk-nav-left + .nk-nav-logo {
    padding-right: 150px;
    padding-left: 150px;
}

.nk-navbar .nk-nav-left ~ .nk-nav:not(.nk-nav-icons) {
    padding-left: 0;
    text-align: left;
}

@media (max-width: 991px) {
    .nk-navbar .nk-nav-left + .nk-nav-logo {
        padding-right: 0;
        padding-left: 0;
    }
}

/*------------------------------------------------------------------

  Navbar Full

 -------------------------------------------------------------------*/
.nk-navbar-full {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    overflow: hidden;
    background: #280909;
    opacity: 0;
    z-index: 1002;
}

.nk-navbar-full .nk-nav-header {
    display: flex;
    align-items: center;
    padding: 33px 0;
    margin-right: -22px;
}

.nk-navbar-full .nk-nav-header::after {
    content: "";
    display: block;
    clear: both;
}

.nk-navbar-full .nk-nav-header .nk-nav-logo,
.nk-navbar-full .nk-nav-header .nk-nav-close {
    color: #c91010;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.nk-navbar-full .nk-nav-header .nk-nav-close {
    padding: 6px 25px;
    margin-left: auto;
    color: #d8d8d8;
    cursor: pointer;
    z-index: 1;
}

.nk-navbar-full .nk-nav-header .nk-nav-close:hover {
    color: #fff;
}

.nk-navbar-full .container-fluid .nk-nav-header {
    padding-right: 8px;
    padding-left: 30px;
    margin-right: 0;
}

.nk-navbar-full .nk-nav-row-full {
    position: relative;
}

.nk-navbar-full .nk-nav-row-full > .nano {
    position: absolute;
}

.nk-navbar-full .nk-nav {
    position: relative;
    width: 100%;
    padding: 0;
    padding-top: 25px;
    overflow: hidden;
}

.nk-navbar-full .nk-nav li > a .nk-item-descr {
    font-size: .5em;
}

.nk-navbar-full .nk-nav .dropdown > li,
.nk-navbar-full .nk-nav > li {
    position: static;
    display: block;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.nk-navbar-full .nk-nav .dropdown > li:last-of-type > a,
.nk-navbar-full .nk-nav .dropdown > li > a,
.nk-navbar-full .nk-nav > li:last-of-type > a,
.nk-navbar-full .nk-nav > li > a {
    padding: 11px 80px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    line-height: 1.1;
    color: #d8d8d8;
    text-transform: none;
    white-space: normal;
}

@media (max-width: 400px) {
    .nk-navbar-full .nk-nav .dropdown > li:last-of-type > a,
    .nk-navbar-full .nk-nav .dropdown > li > a,
    .nk-navbar-full .nk-nav > li:last-of-type > a,
    .nk-navbar-full .nk-nav > li > a {
        font-size: 1.3rem;
    }
}

@media (max-width: 550px) {
    .nk-navbar-full .nk-nav .dropdown > li:last-of-type > a,
    .nk-navbar-full .nk-nav .dropdown > li > a,
    .nk-navbar-full .nk-nav > li:last-of-type > a,
    .nk-navbar-full .nk-nav > li > a {
        padding-right: 40px;
        padding-left: 40px;
    }
}

.nk-navbar-full .nk-nav .dropdown > li.active > a,
.nk-navbar-full .nk-nav .dropdown > li > a:hover,
.nk-navbar-full .nk-nav > li.active > a,
.nk-navbar-full .nk-nav > li > a:hover {
    color: #fff;
}

.nk-navbar-full .nk-nav .dropdown > li > a::before,
.nk-navbar-full .nk-nav .dropdown > li > a::after,
.nk-navbar-full .nk-nav > li > a::before,
.nk-navbar-full .nk-nav > li > a::after {
    content: none;
}

.nk-navbar-full .nk-nav .nk-drop-item > a,
.nk-navbar-full .nk-nav > .nk-drop-item > a,
.nk-navbar-full .nk-nav .dropdown-back > a {
    position: relative;
}

.nk-navbar-full .nk-nav .nk-drop-item > a::after,
.nk-navbar-full .nk-nav .nk-drop-item .nk-drop-item > a::after,
.nk-navbar-full .nk-nav > .nk-drop-item > a::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 30px;
    left: auto;
    width: 0;
    height: 0;
    margin-top: -2px;
    color: inherit;
    border: none;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 3px solid;
    opacity: .6 !important;
    transition: .3s opacity;
    transform: none;
    will-change: opacity;
}

.nk-navbar-full .nk-nav .nk-drop-item > a:hover::after,
.nk-navbar-full .nk-nav .nk-drop-item > a.hover::after,
.nk-navbar-full .nk-nav > .nk-drop-item > a:hover::after,
.nk-navbar-full .nk-nav > .nk-drop-item > a.hover::after {
    width: 0;
    height: 0;
    opacity: 1 !important;
}

.nk-navbar-full .nk-nav .dropdown {
    display: block;
    padding: 0;
    background-color: transparent;
    opacity: 1;
}

.nk-navbar-full .nk-nav .dropdown::before {
    content: none;
}

.nk-navbar-full .nk-nav .dropdown > li > a {
    display: none;
}

.nk-navbar-full .nk-nav .nk-drop-item .dropdown,
.nk-navbar-full .nk-nav .nk-drop-item .nk-drop-item .dropdown {
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
}

.nk-navbar-full .dropdown > .dropdown-back > a::after {
    content: "" !important;
    position: absolute;
    display: block;
    top: 50%;
    left: 30px;
    width: 0;
    height: 0;
    margin-top: -2px;
    color: inherit;
    border: none;
    border-top: 3px solid transparent;
    border-right: 3px solid;
    border-bottom: 3px solid transparent;
    opacity: .6;
    transition: .3s opacity;
    transform: none;
    will-change: opacity;
}

.nk-navbar-full .dropdown > .dropdown-back > a:hover::after,
.nk-navbar-full .dropdown > .dropdown-back > a.hover::after {
    opacity: 1;
}

.nk-navbar-full .nk-nav-social {
    padding: 51px 20px;
}

.nk-navbar-full .nk-nav-social > ul li {
    display: inline-block;
}

.nk-navbar-full .nk-nav-social > ul li > a {
    display: block;
    margin: 3px 6px;
    font-size: 1.13rem;
    color: #d8d8d8;
}

.nk-navbar-full .nk-nav-social > ul li > a:hover, .nk-navbar-full .nk-nav-social > ul li > a.hover {
    color: #fff;
}

/*------------------------------------------------------------------

  Header Title

 -------------------------------------------------------------------*/
.nk-header-title {
    position: relative;
    display: flex;
    overflow: hidden;
    text-align: center;
    z-index: 0;
}

.nk-header-title .nk-header-table {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 470px;
    padding-top: 75px;
}

.nk-header-title.nk-header-title-sm .nk-header-table {
    min-height: 370px;
}

.nk-header-title.nk-header-title-md .nk-header-table {
    min-height: 460px;
}

.nk-header-title.nk-header-title-xmd .nk-header-table {
    min-height: 570px;
}

.nk-header-title.nk-header-title-lg .nk-header-table {
    min-height: 670px;
}

.nk-header-title.nk-header-title-xl .nk-header-table {
    min-height: 770px;
}

.nk-header-title.nk-header-title-full .nk-header-table {
    min-height: 100vh;
}

.nk-header-title .nk-header-table-cell {
    flex: 1;
    width: 100%;
    padding: 80px 0;
}

.nk-header-title .nk-header-text-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgba(40, 9, 9, 0.4);
}

.nk-header-title.nk-header-title-full .nk-header-text-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.nk-header-title .nk-header-title-scroll-down {
    position: absolute;
    display: block;
    bottom: 65px;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    font-size: 2rem;
    line-height: 54px;
    color: inherit;
    text-align: center;
    text-decoration: none;
    border: 1px solid;
    border-radius: 50%;
    opacity: .6;
    transition: .5s opacity;
}

.nk-header-title .nk-header-title-scroll-down:hover {
    opacity: 1;
}

.nk-header-title h1.nk-title {
    margin-bottom: 0;
    line-height: 1.18;
}

/*------------------------------------------------------------------

  Footer

 -------------------------------------------------------------------*/
.nk-footer {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #bcbcbc;
    background-color: #141414;
    z-index: 1;
}

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

.nk-footer a {
    color: inherit;
}

/*------------------------------------------------------------------

  Widgets

 -------------------------------------------------------------------*/
.nk-widget {
    overflow: hidden;
}

.nk-widget ~ .nk-widget {
    margin-top: 65px;
}

.nk-widget .nk-widget-title {
    margin-bottom: 2.1rem;
    font-size: 1.4rem;
}

.nk-twitter {
    position: relative;
    padding-left: 39px;
}

.nk-twitter + .nk-twitter {
    margin-top: 20px;
}

.nk-twitter .nk-twitter-date {
    margin-bottom: 10px;
    font-size: .8rem;
    line-height: 1.4;
    opacity: .6;
}

.nk-twitter .nk-twitter-icon {
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 1.3rem;
}

/*------------------------------------------------------------------

  Elements

 -------------------------------------------------------------------*/
/*---------------------------
  Element Buttons
 ----------------------------*/
.nk-btn {
    display: inline-block;
    padding: 20px 25px;
    font-family: "Montserrat", sans-serif;
    font-size: .8rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .1em;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    background-color: #c91010;
    border: 0;
    transition: .5s all;
}

.nk-btn, .nk-btn:hover, .nk-btn.hover, .nk-btn:active, .nk-btn.active, .nk-btn:focus {
    color: #fff;
    text-decoration: none;
}

.nk-btn:hover, .nk-btn.hover, .nk-btn:active, .nk-btn.active, .nk-btn:focus {
    background-color: #280909;
}

.nk-btn-xs {
    padding: 8px 16px;
    font-size: .9rem;
}

.nk-btn-xs.nk-btn-outline {
    padding-top: 7px;
    padding-bottom: 7px;
}

.nk-btn-sm {
    padding: 10px 20px;
}

.nk-btn-sm.nk-btn-outline {
    padding-top: 9px;
    padding-bottom: 9px;
}

.nk-btn-lg {
    padding: 14px 30px;
}

.nk-btn-lg.nk-btn-outline {
    padding-top: 13px;
    padding-bottom: 13px;
}

.nk-btn-long {
    padding-right: 43px;
    padding-left: 43px;
}

.nk-btn-long.nk-btn-xs {
    padding-right: 36px;
    padding-left: 36px;
}

.nk-btn-long.nk-btn-sm {
    padding-right: 40px;
    padding-left: 40px;
}

.nk-btn-long.nk-btn-lg {
    padding-right: 50px;
    padding-left: 50px;
}

.nk-btn-block {
    display: block;
    width: 100%;
}

/* Button Style 2 */
.nk-btn-2 {
    position: relative;
    display: inline-block;
    padding: 0 3px;
    font-family: "Montserrat", sans-serif;
    font-size: .8rem;
    font-weight: 500;
    color: #171717;
    text-transform: uppercase;
    letter-spacing: .07em;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.nk-btn-2::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 3px;
    width: 40px;
    border-bottom: 1px solid;
    opacity: .2;
    transition: .5s transform, .5s opacity;
    transform-origin: 0 0;
}

.nk-btn-2:hover::after, .nk-btn-2.hover::after {
    opacity: .5;
    transform: scaleX(1.2);
}

.nk-btn-2:hover, .nk-btn-2:active, .nk-btn-2:focus {
    color: #171717;
    text-decoration: none;
}

/*---------------------------
  Element Progress
 ----------------------------*/
.nk-progress {
    display: block;
    width: 100%;
    margin-bottom: 18px;
}

.nk-progress .nk-progress-line {
    width: 100%;
    height: 5px;
    background-color: #d8d8d8;
}

.nk-progress .nk-progress-line > div {
    height: 100%;
    text-align: right;
    background-color: #c91010;
}

.nk-progress .nk-progress-title {
    margin-bottom: 13px;
    font-family: "Montserrat", sans-serif;
    font-size: .8rem;
    font-weight: 500;
    color: #171717;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.nk-progress .nk-progress-title .nk-progress-percent {
    margin-left: 14px;
}

.nk-progress.nk-progress-xs .nk-progress-line {
    height: 1px;
}

.nk-progress.nk-progress-sm .nk-progress-line {
    height: 3px;
}

.nk-progress.nk-progress-md .nk-progress-line {
    height: 8px;
}

.nk-progress.nk-progress-lg .nk-progress-line {
    height: 12px;
}

.nk-progress.nk-progress-xlg .nk-progress-line {
    height: 16px;
}

/*---------------------------
  Element Tabs
 ----------------------------*/
.nk-tabs .nav-tabs {
    display: block;
    margin-top: -10px;
    margin-bottom: 27px;
    border-bottom: none;
}

.nk-tabs .nav-tabs .nav-item {
    display: inline-block;
    float: none;
    color: #171717;
}

.nk-tabs .nav-tabs .nav-link, .nk-tabs .nav-tabs .nav-link:focus, .nk-tabs .nav-tabs .nav-link:hover,
.nk-tabs .nav-tabs .nav-item.open .nav-link,
.nk-tabs .nav-tabs .nav-item.open .nav-link:focus,
.nk-tabs .nav-tabs .nav-item.open .nav-link:hover,
.nk-tabs .nav-tabs .nav-link.active,
.nk-tabs .nav-tabs .nav-link.active:focus,
.nk-tabs .nav-tabs .nav-link.active:hover {
    color: inherit;
    background-color: transparent;
}

.nk-tabs .nav-tabs .nav-link {
    position: relative;
    padding: 10px 17px;
    font-family: "Montserrat", sans-serif;
    font-size: .85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
    border: none;
    border-bottom: 2px solid transparent;
    opacity: .6;
    transition: .5s opacity;
}

.nk-tabs .nav-tabs .nav-link:hover {
    opacity: 1;
}

.nk-tabs .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    display: block;
    right: 10px;
    bottom: 6px;
    left: 10px;
    border-bottom: 1px solid transparent;
    transition: .5s border-bottom;
}

.nk-tabs .nav-tabs .nav-link.active {
    opacity: 1;
}

.nk-tabs .nav-tabs .nav-link.active::after, .nk-tabs .nav-tabs .nav-link.active:focus::after, .nk-tabs .nav-tabs .nav-link.active:hover::after {
    border-bottom: 1px solid;
}

.nk-tabs .tab-content {
    font-size: 1.05rem;
}

/*---------------------------
  Element Icon Boxes
 ----------------------------*/
/* Style 1 */
.nk-ibox-1 {
    position: relative;
    min-height: 50px;
}

.nk-ibox-1 .nk-ibox-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    margin-top: 3px;
    font-size: 3.3rem;
    line-height: 50px;
    text-align: center;
}

.nk-ibox-1 .nk-ibox-cont {
    margin-left: 72px;
}

.nk-ibox-1 .nk-ibox-title {
    font-weight: 500;
}

.nk-ibox-1 .nk-ibox-text {
    margin-top: -1px;
    font-family: "Montserrat", sans-serif;
    font-size: .85rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* Style 2 */
.nk-ibox-2 {
    position: relative;
}

.nk-ibox-2 .nk-ibox-cont {
    padding-top: 7px;
}

.nk-ibox-2 .nk-ibox-title {
    font-size: .96rem;
    font-weight: 500;
    color: #171717;
    text-transform: uppercase;
}

/* Style 3 */
.nk-ibox-3 {
    position: relative;
    text-align: center;
}

.nk-ibox-3 .nk-ibox-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 17px;
    font-size: 3.3rem;
    line-height: 50px;
    text-align: center;
}

.nk-ibox-3 .nk-ibox-title {
    font-size: .85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.nk-ibox-3 .nk-ibox-text {
    margin-top: 8px;
}

/* Titles */
.nk-ibox-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    letter-spacing: .04em;
}

.nk-ibox-title a {
    color: inherit;
    text-decoration: none;
}

/*---------------------------
  Element Content Boxes
 ----------------------------*/
.nk-box,
.nk-box-1,
.nk-box-2,
.nk-box-3,
.nk-box-4,
.nk-box-rounded,
.nk-box-rounded-1,
.nk-box-rounded-2,
.nk-box-rounded-3,
.nk-box-rounded-4 {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.nk-box-1,
.nk-box-rounded-1 {
    padding: 20px;
}

.nk-box-2,
.nk-box-rounded-2 {
    padding: 40px;
}

.nk-box-3,
.nk-box-rounded-3 {
    padding: 60px;
}

.nk-box-4,
.nk-box-rounded-4 {
    padding: 72px;
}

.nk-box-rounded,
.nk-box-rounded-1,
.nk-box-rounded-2,
.nk-box-rounded-3,
.nk-box-rounded-4 {
    border-radius: 6px;
}

/* line between boxes
   Used JS code to add .nk-box-line-top and .nk-box-last classnames */
.nk-box-line::before {
    content: "";
    position: absolute;
    display: block;
    top: 2rem;
    right: 0;
    bottom: 2rem;
    border-left: 1px solid;
    opacity: .07;
}

.nk-box-line.nk-box-line-top::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 2rem;
    left: 2rem;
    border-bottom: 1px solid;
    opacity: .07;
}

.nk-box-line.nk-box-last::before {
    content: none;
}

/*---------------------------
  Element Contact Info
 ----------------------------*/
.nk-contact-info {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.nk-contact-info > li + li {
    margin-top: 12px;
}

.nk-contact-info > li > strong {
    padding-right: 5px;
    color: #171717;
}

/*---------------------------
  Element Pagination
 ----------------------------*/
.nk-pagination {
    width: 100%;
    padding: 20px 0;
    background-color: #fff;
}

.nk-pagination.nk-pagination-nobg {
    background-color: transparent;
}

.nk-pagination,
.nk-pagination .container {
    display: flex;
}

.nk-pagination > *,
.nk-pagination .container > * {
    flex: 1;
}

.nk-pagination > a,
.nk-pagination .container > a {
    display: inline-block;
    padding: 19px;
    font-family: "Montserrat", sans-serif;
    font-size: .85rem;
    font-weight: 500;
    color: #171717;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    vertical-align: middle;
    opacity: .6;
    transition: .2s opacity;
}

.nk-pagination > a:hover,
.nk-pagination .container > a:hover {
    opacity: 1;
}

.nk-pagination > span,
.nk-pagination .container > span {
    display: inline-block;
    padding: 19px;
    font-size: .97rem;
    color: #171717;
    text-transform: uppercase;
    vertical-align: middle;
}

.nk-pagination .nk-pagination-prev,
.nk-pagination .nk-pagination-next,
.nk-pagination .container .nk-pagination-prev,
.nk-pagination .container .nk-pagination-next {
    min-width: 190px;
    opacity: 1;
}

.nk-pagination .nk-pagination-prev:hover,
.nk-pagination .nk-pagination-next:hover,
.nk-pagination .container .nk-pagination-prev:hover,
.nk-pagination .container .nk-pagination-next:hover {
    opacity: .6;
}

.nk-pagination .nk-pagination-prev > span,
.nk-pagination .nk-pagination-next > span,
.nk-pagination .container .nk-pagination-prev > span,
.nk-pagination .container .nk-pagination-next > span {
    margin-top: -1px;
    font-size: 1.6rem;
    line-height: 1;
    vertical-align: middle;
}

.nk-pagination .nk-pagination-prev,
.nk-pagination .container .nk-pagination-prev {
    padding-left: 0;
    text-align: left;
}

.nk-pagination .nk-pagination-prev > span,
.nk-pagination .container .nk-pagination-prev > span {
    margin-left: -8px;
}

.nk-pagination .nk-pagination-next,
.nk-pagination .container .nk-pagination-next {
    padding-right: 0;
    text-align: right;
}

.nk-pagination .nk-pagination-next > span,
.nk-pagination .container .nk-pagination-next > span {
    margin-right: -8px;
}

.nk-pagination .nk-pagination-center,
.nk-pagination .container .nk-pagination-center {
    width: 100%;
}

@media (max-width: 991px) {
    .nk-pagination .nk-pagination-prev,
    .nk-pagination .nk-pagination-next,
    .nk-pagination .container .nk-pagination-prev,
    .nk-pagination .container .nk-pagination-next {
        min-width: 60px;
        font-size: 0;
    }
    .nk-pagination .nk-pagination-prev > span,
    .nk-pagination .nk-pagination-next > span,
    .nk-pagination .container .nk-pagination-prev > span,
    .nk-pagination .container .nk-pagination-next > span {
        font-size: 1.6rem;
    }
}

.nk-pagination .container {
    flex: initial;
}

@media (max-width: 575px) {
    .nk-pagination .container {
        width: 100%;
    }
}

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

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

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

/*---------------------------
  Element Blockquotes
 ----------------------------*/
blockquote {
    margin-bottom: 1.5rem;
    font-family: "PT Sans", serif;
    font-size: 1.42rem;
    line-height: 1.4;
    color: #171717;
}

blockquote.nk-blockquote-style-1 {
    display: block;
    max-width: 715px;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    letter-spacing: .04em;
}

blockquote.nk-blockquote-style-1 > p {
    margin-bottom: 1.15rem;
    font-size: 1.6rem;
    line-height: 1.45;
}

blockquote.nk-blockquote-style-1 > p::before, blockquote.nk-blockquote-style-1 > p::after {
    font-size: 2.2rem;
    line-height: 1;
}

blockquote.nk-blockquote-style-1 > p::before {
    content: "“ ";
}

blockquote.nk-blockquote-style-1 > p::after {
    content: " ”";
}

blockquote.nk-blockquote-style-1 cite {
    font-size: .89rem;
    font-style: normal;
    text-transform: uppercase;
}

/*---------------------------
  Element Carousels
 ----------------------------*/
.nk-carousel,
.nk-carousel-2 {
    position: relative;
}

.nk-carousel .flickity-slider > div,
.nk-carousel-2 .flickity-slider > div {
    display: block;
    width: 100%;
    padding: 17px 0;
}

[data-dots="true"] {
    margin-bottom: 55px;
}

.flickity-page-dots {
    bottom: -20px;
}

.flickity-page-dots .dot {
    margin: 0 3px;
    background: #000;
    border: 5px solid;
    transition: .4s opacity, .4s transform;
    transform: scale(0.6);
}

.flickity-page-dots .dot.is-selected {
    transform: scale(1);
}

.flickity-page-dots .dot:hover {
    opacity: 1;
}

.nk-flickity-arrow {
    position: absolute;
    top: 50%;
    width: 39px;
    height: 39px;
    margin-top: -20px;
    font-size: 2.3rem;
    line-height: 1.35;
    color: #fff;
    text-align: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    transition: .3s background-color;
    z-index: 1;
}

.nk-flickity-arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.nk-flickity-arrow.nk-flickity-arrow-prev {
    left: 39px;
}

.nk-flickity-arrow.nk-flickity-arrow-next {
    right: 39px;
}

@media (max-width: 767px) {
    .nk-flickity-arrow {
        display: none;
    }
}

.nk-carousel-arrows-2 .nk-flickity-arrow {
    top: auto;
    bottom: 60px;
    left: 60px;
}

.nk-carousel-arrows-2 .nk-flickity-arrow.nk-flickity-arrow-next {
    right: auto;
    left: 120px;
}

.flickity-viewport.is-dragging {
    pointer-events: none;
}

/* Style 1 */
.nk-carousel .flickity-slider > div > div {
    width: 60%;
    margin-right: auto;
    margin-left: auto;
}

.nk-carousel .nk-carousel-prev,
.nk-carousel .nk-carousel-next {
    position: absolute;
    top: 12%;
    width: 25%;
    min-height: 80px;
    padding: 17px 0;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    z-index: 1;
}

.nk-carousel .nk-carousel-prev .nk-carousel-arrow-name,
.nk-carousel .nk-carousel-next .nk-carousel-arrow-name {
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nk-carousel .nk-carousel-prev .nk-icon-arrow-left,
.nk-carousel .nk-carousel-prev .nk-icon-arrow-right,
.nk-carousel .nk-carousel-next .nk-icon-arrow-left,
.nk-carousel .nk-carousel-next .nk-icon-arrow-right {
    position: absolute;
    top: 28px;
}

.nk-carousel .nk-carousel-prev .nk-icon-arrow-left,
.nk-carousel .nk-carousel-next .nk-icon-arrow-left {
    left: 0;
}

.nk-carousel .nk-carousel-prev .nk-icon-arrow-right,
.nk-carousel .nk-carousel-next .nk-icon-arrow-right {
    right: 0;
}

.nk-carousel .nk-carousel-prev {
    left: 0;
    padding-right: 20px;
    padding-left: 45px;
    text-align: left;
}

.nk-carousel .nk-carousel-next {
    right: 0;
    padding-right: 45px;
    padding-left: 20px;
    text-align: right;
}

@media (max-width: 991px) {
    .nk-carousel .flickity-slider > div > div {
        width: 90%;
    }
    .nk-carousel .nk-carousel-prev,
    .nk-carousel .nk-carousel-next {
        position: relative;
        display: inline-block;
        top: auto;
        width: 49%;
    }
}

@media (max-width: 575px) {
    .nk-carousel .nk-carousel-prev,
    .nk-carousel .nk-carousel-next {
        font-size: .8rem;
    }
    .nk-carousel .nk-carousel-prev .nk-carousel-arrow-name,
    .nk-carousel .nk-carousel-next .nk-carousel-arrow-name {
        font-size: 1rem;
    }
}

/* Style 2 */
.nk-carousel-2 .flickity-slider > div {
    width: 40%;
    max-width: 600px;
    margin: 0 20px;
    opacity: .4;
    transition: .3s opacity;
}

.nk-carousel-2 .flickity-slider > div.is-selected {
    opacity: 1;
}

@media (max-width: 1199px) {
    .nk-carousel-2 .flickity-slider > div {
        width: 50%;
        opacity: .6;
    }
}

@media (max-width: 767px) {
    .nk-carousel-2 .flickity-slider > div {
        width: 70%;
        margin: 0 20px;
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .nk-carousel-2 .flickity-slider > div {
        width: 90%;
        margin: 0 20px;
    }
}

.nk-carousel-2.nk-carousel-no-margin .flickity-slider > div {
    /* stylelint-disable-next-line */
    margin: 0 !important;
}

.nk-carousel-2.nk-carousel-all-visible .flickity-slider > div {
    /* stylelint-disable-next-line */
    opacity: 1 !important;
}

.nk-carousel-2.nk-carousel-x2 .flickity-slider > div {
    width: 33.3334%;
}

@media (max-width: 1199px) {
    .nk-carousel-2.nk-carousel-x2 .flickity-slider > div {
        width: 33.3334%;
    }
}

@media (max-width: 767px) {
    .nk-carousel-2.nk-carousel-x2 .flickity-slider > div {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .nk-carousel-2.nk-carousel-x2 .flickity-slider > div {
        width: 100%;
    }
}

.nk-carousel-2.nk-carousel-x3 .flickity-slider > div {
    width: 25%;
}

@media (max-width: 1199px) {
    .nk-carousel-2.nk-carousel-x3 .flickity-slider > div {
        width: 33.3334%;
    }
}

@media (max-width: 767px) {
    .nk-carousel-2.nk-carousel-x3 .flickity-slider > div {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .nk-carousel-2.nk-carousel-x3 .flickity-slider > div {
        width: 100%;
    }
}

.nk-carousel-2.nk-carousel-x4 .flickity-slider > div {
    width: 20%;
}

@media (max-width: 1199px) {
    .nk-carousel-2.nk-carousel-x4 .flickity-slider > div {
        width: 25%;
    }
}

@media (max-width: 767px) {
    .nk-carousel-2.nk-carousel-x4 .flickity-slider > div {
        width: 33.3334%;
    }
}

@media (max-width: 575px) {
    .nk-carousel-2.nk-carousel-x4 .flickity-slider > div {
        width: 50%;
    }
}

.nk-carousel-2.nk-carousel-x5 .flickity-slider > div {
    width: 14.285%;
}

@media (max-width: 1199px) {
    .nk-carousel-2.nk-carousel-x5 .flickity-slider > div {
        width: 20%;
    }
}

@media (max-width: 767px) {
    .nk-carousel-2.nk-carousel-x5 .flickity-slider > div {
        width: 25%;
    }
}

@media (max-width: 575px) {
    .nk-carousel-2.nk-carousel-x5 .flickity-slider > div {
        width: 50%;
    }
}

/* Wide Slider */
.nk-carousel-3 {
    position: relative;
}

.nk-carousel-3 .flickity-slider > div {
    display: block;
    opacity: .4;
    transition: .3s opacity;
}

.nk-carousel-3 .flickity-slider > div.is-selected {
    opacity: 1;
}

.nk-carousel-3 .flickity-slider > div > div,
.nk-carousel-3 .flickity-slider > div > div img {
    width: auto;
    height: 100%;
}

.nk-carousel-3.nk-carousel-all-visible .flickity-slider > div {
    /* stylelint-disable-next-line */
    opacity: 1 !important;
}

.nk-carousel-3 .nk-portfolio-title,
.nk-carousel-3 .nk-portfolio-sub-title {
    display: none;
}

.nk-carousel-3 .nk-carousel-prev,
.nk-carousel-3 .nk-carousel-next {
    position: relative;
    top: 12%;
    width: 25%;
    min-height: 80px;
    padding: 17px 0;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    z-index: 1;
}

.nk-carousel-3 .nk-carousel-prev .nk-carousel-arrow-name,
.nk-carousel-3 .nk-carousel-next .nk-carousel-arrow-name {
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nk-carousel-3 .nk-carousel-prev .nk-icon-arrow-left,
.nk-carousel-3 .nk-carousel-prev .nk-icon-arrow-right,
.nk-carousel-3 .nk-carousel-next .nk-icon-arrow-left,
.nk-carousel-3 .nk-carousel-next .nk-icon-arrow-right {
    position: absolute;
    top: 28px;
}

.nk-carousel-3 .nk-carousel-prev .nk-icon-arrow-left,
.nk-carousel-3 .nk-carousel-next .nk-icon-arrow-left {
    left: 0;
}

.nk-carousel-3 .nk-carousel-prev .nk-icon-arrow-right,
.nk-carousel-3 .nk-carousel-next .nk-icon-arrow-right {
    right: 0;
}

.nk-carousel-3 .nk-carousel-prev {
    float: left;
    left: 0;
    padding-right: 20px;
    padding-left: 45px;
    text-align: left;
}

.nk-carousel-3 .nk-carousel-next {
    float: right;
    right: 0;
    padding-right: 45px;
    padding-left: 20px;
    text-align: right;
}

.nk-carousel-3 .nk-carousel-current {
    display: block;
    width: 50%;
    padding: 17px;
    margin: 0 auto;
    text-align: center;
}

.nk-carousel-3 .nk-carousel-current .nk-carousel-name a,
.nk-carousel-3 .nk-carousel-current .nk-carousel-links a {
    color: inherit;
    text-decoration: none;
}

.nk-carousel-3 .nk-carousel-current .nk-carousel-name {
    margin-bottom: .5rem;
}

.nk-carousel-3 .nk-carousel-current .nk-carousel-links {
    font-size: .9rem;
}

.nk-carousel-3 .nk-carousel-current .nk-carousel-links a {
    opacity: .6;
    transition: .3s opacity;
}

.nk-carousel-3 .nk-carousel-current .nk-carousel-links a:hover {
    opacity: .9;
}

@media (max-width: 991px) {
    .nk-carousel-3 .nk-carousel-prev,
    .nk-carousel-3 .nk-carousel-next {
        position: relative;
        top: auto;
        width: 49%;
    }
    .nk-carousel-3 .nk-carousel-current {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .nk-carousel-3 .nk-carousel-prev,
    .nk-carousel-3 .nk-carousel-next {
        font-size: .8rem;
    }
    .nk-carousel-3 .nk-carousel-prev .nk-carousel-arrow-name,
    .nk-carousel-3 .nk-carousel-next .nk-carousel-arrow-name {
        font-size: 1rem;
    }
}

/*---------------------------
  Element Video
 ----------------------------*/
/* FullScreen Video */
.nk-video-fullscreen {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background-color: #280909;
    background-color: rgba(40, 9, 9, 0.9);
    z-index: 1200;
}

.nk-video-fullscreen .nk-video-fullscreen-cont {
    position: absolute;
}

.nk-video-fullscreen .nk-video-fullscreen-cont > iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nk-video-fullscreen .nk-video-fullscreen-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: #fff;
    text-align: right;
    cursor: pointer;
    z-index: -1;
}

/* Toggle Video Button */
.nk-video-fullscreen-toggle,
.nk-video-plain-toggle {
    display: inline-block;
    cursor: pointer;
}

.nk-video-fullscreen-toggle .nk-video-icon,
.nk-video-plain-toggle .nk-video-icon {
    text-decoration: none;
}

/* toggle button on the right/left half of nk-box blocks */
.nk-video-fullscreen-toggle-right,
.nk-video-fullscreen-toggle-left {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
}

.nk-video-fullscreen-toggle-right > .nk-video-fullscreen-toggle,
.nk-video-fullscreen-toggle-left > .nk-video-fullscreen-toggle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 767px) and (max-width: 991px) {
    .nk-video-fullscreen-toggle-right,
    .nk-video-fullscreen-toggle-left {
        width: 100%;
        height: 0;
        padding-top: 56.25%;
    }
}

.nk-video-fullscreen-toggle-right {
    right: 0;
}

.nk-video-fullscreen-toggle-left {
    left: 0;
}

/* Plain Video */
.nk-plain-video {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
    background-position: 50% 50%;
    background-size: cover;
}

.nk-plain-video > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nk-plain-video > .nk-video-plain-toggle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/*---------------------------
  Element Forms
 ----------------------------*/
/* Placeholders */
::-moz-placeholder, .form-control::-moz-placeholder {
    color: #858585;
    opacity: 1;
}
::placeholder,
.form-control::placeholder {
    color: #858585;
    opacity: 1;
}

/* From Style 1 */
.form-control {
    padding: 16px 22px;
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.2;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 0;
}

.form-control:focus {
    border-color: #c91010;
}

select.form-control {
    padding: 6px 20px;
}

/* Validation */
div.nk-error {
    padding: 0;
    margin: 5px 0;
    font-weight: 400;
    color: #f00;
    background-color: transparent;
    z-index: 1;
}

.form-control.nk-error,
.nk-form-style-1 .form-control.nk-error {
    background-color: rgba(255, 0, 0, 0.4);
}

.nk-form-response-success {
    display: none;
    margin-bottom: 10px;
    color: #008000;
}

.nk-form-response-error {
    display: none;
    margin-bottom: 10px;
    color: #f00;
}

/*---------------------------
  Element Links List
 ----------------------------*/
.nk-links-list {
    display: flex;
}

.nk-links-list ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.nk-links-list ul + ul {
    margin-left: 50px;
}

/*---------------------------
  Element Icons
 ----------------------------*/
.nk-icon-burger {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 18px;
    color: #280909;
}

.nk-icon-burger > span {
    position: absolute;
    display: block;
    top: 50%;
    width: 20px;
    height: 0;
    border-bottom: 2px solid;
    transition: .3s .2s width, .3s opacity, .2s transform;
    will-change: width, opacity, transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.nk-icon-burger .nk-t-1 {
    margin-top: -8px;
}

.nk-icon-burger .nk-t-2 {
    margin-top: -1px;
}

.nk-icon-burger .nk-t-3 {
    margin-top: 6px;
}

.nk-icon-burger:hover .nk-t-1,
a:hover > .nk-icon-burger .nk-t-1 {
    animation: nk-icon-burger-animation .4s ease-in-out;
}

.nk-icon-burger:hover .nk-t-2,
a:hover > .nk-icon-burger .nk-t-2 {
    animation: nk-icon-burger-animation .4s .1s ease-in-out;
}

.nk-icon-burger:hover .nk-t-3,
a:hover > .nk-icon-burger .nk-t-3 {
    animation: nk-icon-burger-animation .4s .2s ease-in-out;
}

@keyframes nk-icon-burger-animation {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        width: 14px;
        transform: translateX(3px);
    }
}

.nk-icon-close {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
}

.nk-icon-close::before, .nk-icon-close::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    width: 21px;
    height: 0;
    border-bottom: 2px solid;
    transform-origin: 50% 50%;
}

.nk-icon-close::before {
    transform: rotate(45deg);
}

.nk-icon-close::after {
    transform: rotate(-45deg);
}

.nk-icon-squares {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.nk-icon-squares::after, .nk-icon-squares::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    border-bottom: 6px solid;
    box-shadow: 0 10px;
}

.nk-icon-squares::before {
    right: 0;
    left: auto;
}

.nk-icon-search {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 24px;
}

.nk-icon-search::before, .nk-icon-search::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    transition: .3s;
    transform: rotate(-45deg);
    transform-style: preserve-3d;
}

.nk-icon-search::before {
    width: 12px;
    height: 12px;
    margin-top: -7px;
    margin-left: 3px;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1.2px;
}

.nk-icon-search::after {
    width: 0;
    height: 6px;
    margin-top: 3px;
    margin-left: 12px;
    border-right: 2px solid;
    transform-origin: 1px 0;
}

.nk-icon-search:hover::before,
a:hover > .nk-icon-search::before {
    transform: rotate(-45deg) scale(1.2);
}

.nk-icon-search:hover::after,
a:hover > .nk-icon-search::after {
    transform: rotate(-40deg) translateX(-1px) translateY(1px);
}

.nk-icon-search.active::before, .nk-icon-search.active::after,
a.active > .nk-icon-search::before,
a.active > .nk-icon-search::after {
    width: 1px;
    height: 23px;
}

.nk-icon-search.active::before,
a.active > .nk-icon-search::before {
    margin-top: -10px;
    margin-left: 11px;
    transform: rotate(45deg);
}

.nk-icon-search.active::after,
a.active > .nk-icon-search::after {
    width: 0;
    margin-top: -7px;
    margin-left: 3px;
    border-right: 1px solid;
    transform: rotate(-45deg);
}

.nk-icon-arrow-right, .nk-icon-arrow-left {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid;
}

.nk-icon-arrow-right::after, .nk-icon-arrow-right::before, .nk-icon-arrow-left::after, .nk-icon-arrow-left::before {
    content: "";
    position: absolute;
    display: block;
    bottom: -1px;
    left: 0;
    width: 50%;
    border-bottom: 1px solid;
    transition: .2s transform;
    transform-origin: 0 50%;
    will-change: transform;
}

.nk-icon-arrow-right::after, .nk-icon-arrow-left::after {
    transform: rotate(40deg);
}

.nk-icon-arrow-right::before, .nk-icon-arrow-left::before {
    transform: rotate(-40deg);
}

.nk-icon-arrow-right:hover::after, .nk-icon-arrow-right.hover::after,
:hover > .nk-icon-arrow-right::after,
.hover > .nk-icon-arrow-right::after, .nk-icon-arrow-left:hover::after, .nk-icon-arrow-left.hover::after,
:hover > .nk-icon-arrow-left::after,
.hover > .nk-icon-arrow-left::after {
    transform: rotate(48deg);
}

.nk-icon-arrow-right:hover::before, .nk-icon-arrow-right.hover::before,
:hover > .nk-icon-arrow-right::before,
.hover > .nk-icon-arrow-right::before, .nk-icon-arrow-left:hover::before, .nk-icon-arrow-left.hover::before,
:hover > .nk-icon-arrow-left::before,
.hover > .nk-icon-arrow-left::before {
    transform: rotate(-48deg);
}

.nk-icon-arrow-right::after, .nk-icon-arrow-right::before {
    right: 0;
    left: auto;
    transform-origin: 100% 50%;
}

.nk-play-icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid;
}

.nk-video-icon,
.nk-gif-icon {
    position: relative;
    display: inline-block;
    width: 85px;
    height: 85px;
    color: #fff;
}

.nk-video-icon::before,
.nk-gif-icon::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #c91010;
    border-radius: 42.5px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
    transition: .3s transform;
    transform-style: preserve-3d;
}

.nk-video-icon > *,
.nk-gif-icon > * {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    font-size: 1.5rem;
    line-height: 51px;
    color: inherit;
    text-align: center;
    transition: .3s transform;
    transform-style: preserve-3d;
}

.nk-video-icon:hover::before, .nk-video-icon.hover::before,
.nk-gif-icon:hover::before,
.nk-gif-icon.hover::before {
    transform: scale(0.95);
}

.nk-video-icon:hover > *, .nk-video-icon.hover > *,
.nk-gif-icon:hover > *,
.nk-gif-icon.hover > * {
    transform: scale(1.05);
}

.nk-video-icon-2,
.nk-video-icon-2-light,
.nk-gif-icon-2,
.nk-gif-icon-2-light {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    color: #280909;
}

.nk-video-icon-2::before,
.nk-video-icon-2-light::before,
.nk-gif-icon-2::before,
.nk-gif-icon-2-light::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 5px solid #280909;
    border-radius: 40px;
    opacity: 1;
    transition: .3s opacity, .3s transform;
    transform-style: preserve-3d;
}

.nk-video-icon-2 > *,
.nk-video-icon-2-light > *,
.nk-gif-icon-2 > *,
.nk-gif-icon-2-light > * {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    font-size: 1.5rem;
    line-height: 51px;
    color: inherit;
    text-align: center;
    opacity: 1;
    transition: .3s transform, .3s opacity;
    transform-style: preserve-3d;
}

.nk-video-icon-2:hover::before, .nk-video-icon-2.hover::before,
.nk-video-icon-2-light:hover::before,
.nk-video-icon-2-light.hover::before,
.nk-gif-icon-2:hover::before,
.nk-gif-icon-2.hover::before,
.nk-gif-icon-2-light:hover::before,
.nk-gif-icon-2-light.hover::before {
    opacity: .7;
    transform: scale(1.1);
}

.nk-video-icon-2:hover > *, .nk-video-icon-2.hover > *,
.nk-video-icon-2-light:hover > *,
.nk-video-icon-2-light.hover > *,
.nk-gif-icon-2:hover > *,
.nk-gif-icon-2.hover > *,
.nk-gif-icon-2-light:hover > *,
.nk-gif-icon-2-light.hover > * {
    opacity: 1;
    transform: scale(1.3);
}

.nk-video-icon-2-light,
.nk-gif-icon-2-light {
    color: #fff;
}

.nk-video-icon-2-light::before,
.nk-gif-icon-2-light::before {
    border-color: #fff;
}

.nk-loading-spinner,
.nk-loading-spinner-light {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #280909;
}

.nk-loading-spinner i,
.nk-loading-spinner-light i {
    position: absolute;
    display: block;
    width: 28px;
    height: 28px;
    overflow: hidden;
    transform-origin: 40px 40px;
    animation: nk-loading-spinner .7s infinite linear;
}

.nk-loading-spinner i::after,
.nk-loading-spinner-light i::after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.nk-loading-spinner-light {
    box-shadow: inset 0 0 0 2px #fff;
}

.nk-loading-spinner-light i::after {
    box-shadow: inset 0 0 0 2px rgba(40, 9, 9, 0.8);
}

@keyframes nk-loading-spinner {
    100% {
        transform: rotate(360deg);
    }
}

/*---------------------------
  Element Isotope
 ----------------------------*/
.nk-isotope::after {
    content: "";
    display: table;
    clear: both;
}

.nk-isotope.nk-isotope-gap {
    margin: -15px;
}

.nk-isotope.nk-isotope-gap .nk-isotope-item {
    padding: 15px;
}

.nk-isotope.nk-isotope-gap-big {
    margin: -30px;
}

.nk-isotope.nk-isotope-gap-big .nk-isotope-item {
    padding: 30px;
}

.nk-isotope.nk-isotope-gap-small {
    margin: -10px;
}

.nk-isotope.nk-isotope-gap-small .nk-isotope-item {
    padding: 10px;
}

.container-fluid .nk-isotope {
    margin-right: -15px;
    margin-left: -15px;
}

.container-fluid .nk-isotope.nk-isotope-gap {
    margin-right: -30px;
    margin-left: -30px;
}

.container-fluid .nk-isotope.nk-isotope-gap-big {
    margin: -60px;
}

.container-fluid .nk-isotope.nk-isotope-gap-big .nk-isotope-item {
    padding: 60px;
}

.container-fluid .nk-isotope.nk-isotope-gap-small {
    margin-right: -25px;
    margin-left: -25px;
}

.nk-isotope .nk-isotope-item {
    display: block;
    float: left;
    width: 25%;
}

.nk-isotope .nk-isotope-item.nk-isotope-item-x2 {
    width: 50%;
}

.nk-isotope .nk-isotope-item.nk-isotope-item-x3 {
    width: 75%;
}

.nk-isotope .nk-isotope-item.nk-isotope-item-x4 {
    width: 100%;
}

.nk-isotope.nk-isotope-3-cols .nk-isotope-item {
    width: 33.332%;
}

.nk-isotope.nk-isotope-3-cols .nk-isotope-item.nk-isotope-item-x2 {
    width: 66.665%;
}

.nk-isotope.nk-isotope-3-cols .nk-isotope-item.nk-isotope-item-x3 {
    width: 100%;
}

.nk-isotope.nk-isotope-2-cols .nk-isotope-item {
    width: 50%;
}

.nk-isotope.nk-isotope-2-cols .nk-isotope-item.nk-isotope-item-x2, .nk-isotope.nk-isotope-2-cols .nk-isotope-item.nk-isotope-item-x3 {
    width: 100%;
}

.nk-isotope.nk-isotope-1-cols .nk-isotope-item {
    width: 100%;
}

.nk-isotope.nk-isotope-1-cols .nk-isotope-item.nk-isotope-item-x2, .nk-isotope.nk-isotope-1-cols .nk-isotope-item.nk-isotope-item-x3 {
    width: 100%;
}

.nk-isotope.nk-isotope-wide .nk-isotope-item {
    width: 100%;
}

@media (max-width: 1199px) {
    .nk-isotope .nk-isotope-item,
    .nk-isotope.nk-isotope-3-cols .nk-isotope-item {
        width: 33.3334%;
    }
    .nk-isotope .nk-isotope-item.nk-isotope-item-x2, .nk-isotope .nk-isotope-item.nk-isotope-item-x3,
    .nk-isotope.nk-isotope-3-cols .nk-isotope-item.nk-isotope-item-x2,
    .nk-isotope.nk-isotope-3-cols .nk-isotope-item.nk-isotope-item-x3 {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .nk-isotope .nk-isotope-item,
    .nk-isotope.nk-isotope-3-cols .nk-isotope-item,
    .nk-isotope.nk-isotope-2-cols .nk-isotope-item {
        width: 50%;
    }
    .nk-isotope .nk-isotope-item.nk-isotope-item-x2, .nk-isotope .nk-isotope-item.nk-isotope-item-x3,
    .nk-isotope.nk-isotope-3-cols .nk-isotope-item.nk-isotope-item-x2,
    .nk-isotope.nk-isotope-3-cols .nk-isotope-item.nk-isotope-item-x3,
    .nk-isotope.nk-isotope-2-cols .nk-isotope-item.nk-isotope-item-x2,
    .nk-isotope.nk-isotope-2-cols .nk-isotope-item.nk-isotope-item-x3 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .nk-isotope .nk-isotope-item,
    .nk-isotope .nk-isotope-item.nk-isotope-item-x2,
    .nk-isotope .nk-isotope-item.nk-isotope-item-x3,
    .nk-isotope.nk-isotope-3-cols .nk-isotope-item,
    .nk-isotope.nk-isotope-2-cols .nk-isotope-item {
        width: 100%;
    }
}

.nk-isotope-filter {
    padding: 0;
    margin: 34px -17px;
    text-align: center;
    list-style: none;
}

.nk-isotope-filter > li {
    display: inline-block;
    padding: 5px 15px;
    font-family: "Montserrat", sans-serif;
    font-size: .85rem;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    cursor: pointer;
    opacity: .5;
    transition: .2s opacity;
}

.nk-isotope-filter > li.active, .nk-isotope-filter > li:hover {
    opacity: 1;
    color: #c91010;
}

/*------------------------------------------------------------------

  Full Page

 -------------------------------------------------------------------*/
.nk-fullpage-portfolio {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #141414;
    z-index: 1;
}

.nk-fullpage-portfolio .nk-fullpage-item {
    display: none;
}

.nk-fullpage-portfolio .nk-fullpage-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 50% 50%;
    background-size: cover;
    z-index: 0;
}

.nk-fullpage-portfolio .nk-fullpage-bg-image::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: .5;
}

.nk-fullpage-portfolio a {
    color: inherit;
    text-decoration: none;
    transition: .3s opacity;
}

.nk-fullpage-portfolio a:hover {
    color: inherit;
    opacity: .6;
}

.nk-fullpage-portfolio .nk-fullpage-nav > li,
.nk-fullpage-portfolio .nk-fullpage-item-category a {
    font-family: "Montserrat", sans-serif;
    font-size: .8rem;
    letter-spacing: .07em;
    opacity: .5;
    transition: .3s opacity;
}

.nk-fullpage-portfolio .nk-fullpage-nav > li:hover, .nk-fullpage-portfolio .nk-fullpage-nav > li.active,
.nk-fullpage-portfolio .nk-fullpage-item-category a:hover,
.nk-fullpage-portfolio .nk-fullpage-item-category a.active {
    color: inherit;
    opacity: 1;
}

.nk-fullpage-portfolio .nk-fullpage-view-button {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
}

.nk-fullpage-portfolio .nk-fullpage-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nk-fullpage-portfolio .nk-fullpage-item-category {
    margin-bottom: 10px;
    font-size: .848rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.nk-fullpage-portfolio .nk-fullpage-title a {
    color: #fff;
}

.nk-fullpage-nav {
    position: fixed;
    top: 50%;
    right: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    transition: .3s visibility, .3s opacity, .3s transform;
    transform: translateY(-50%) translateX(100%);
    z-index: 2;
}

.nk-fullpage-nav.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.nk-fullpage-nav > li {
    position: relative;
    width: 20px;
    padding: 15px 0;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

/*------------------------------------------------------------------

  Portfolio

 -------------------------------------------------------------------*/
/* List */
.nk-portfolio-list .nk-portfolio-item {
    position: relative;
    overflow: hidden;
}

.nk-portfolio-list .nk-portfolio-item div.nk-portfolio-item-image,
.nk-portfolio-list .nk-portfolio-item a.nk-portfolio-item-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
}

.nk-portfolio-list .nk-portfolio-item div.nk-portfolio-item-image img,
.nk-portfolio-list .nk-portfolio-item a.nk-portfolio-item-image img {
    display: none;
}

.nk-portfolio-list .nk-portfolio-item img.nk-portfolio-item-image {
    width: 100%;
}

.nk-portfolio-list .nk-portfolio-item div.nk-portfolio-item-image > div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 50% 50%;
    background-size: cover;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-xxs div.nk-portfolio-item-image,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-xxs a.nk-portfolio-item-image {
    padding-bottom: 40%;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-xs div.nk-portfolio-item-image,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-xs a.nk-portfolio-item-image {
    padding-bottom: 50%;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-sm div.nk-portfolio-item-image,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-sm a.nk-portfolio-item-image {
    padding-bottom: 67%;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-square div.nk-portfolio-item-image,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-square a.nk-portfolio-item-image {
    padding-bottom: 100%;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-lg div.nk-portfolio-item-image,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-lg a.nk-portfolio-item-image {
    padding-top: 30px;
    padding-bottom: 134%;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-lg-0 div.nk-portfolio-item-image,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-lg-0 a.nk-portfolio-item-image {
    padding-bottom: 134%;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-lg-1 div.nk-portfolio-item-image,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-lg-1 a.nk-portfolio-item-image {
    padding-bottom: 160.68%;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-xl div.nk-portfolio-item-image,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-xl a.nk-portfolio-item-image {
    padding-bottom: 200%;
}

.nk-portfolio-list .nk-portfolio-item .nk-portfolio-item-link {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.nk-portfolio-list .nk-portfolio-item .portfolio-item-title {
    margin-bottom: 1.2rem;
    color: inherit;
}

.nk-portfolio-list .nk-portfolio-item .portfolio-item-category {
    font-family: "Montserrat", sans-serif;
    font-size: .85rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.nk-portfolio-list .nk-portfolio-item .portfolio-item-icon {
    font-size: 3rem;
}

.nk-portfolio-list .nk-portfolio-item .portfolio-item-icon > span {
    display: block;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1 .nk-portfolio-item-info, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2 .nk-portfolio-item-info {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 50px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    transition: .5s opacity, .5s background-color;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1 .nk-portfolio-item-info > div, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2 .nk-portfolio-item-info > div {
    width: 100%;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1 .nk-portfolio-item-info.nk-portfolio-item-info-center, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2 .nk-portfolio-item-info.nk-portfolio-item-info-center {
    align-items: center;
    justify-content: center;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1 .nk-portfolio-item-info.nk-portfolio-item-info-bottom, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2 .nk-portfolio-item-info.nk-portfolio-item-info-bottom {
    align-items: flex-end;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1:hover .nk-portfolio-item-info,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1.hover .nk-portfolio-item-info, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2:hover .nk-portfolio-item-info,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2.hover .nk-portfolio-item-info {
    opacity: 1;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1.hover .nk-portfolio-item-info, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2.hover .nk-portfolio-item-info {
    background-color: rgba(0, 0, 0, 0.6);
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1.hover:hover .nk-portfolio-item-info, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2.hover:hover .nk-portfolio-item-info {
    background-color: rgba(0, 0, 0, 0.85);
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1 .portfolio-item-title, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2 .portfolio-item-title {
    opacity: 0;
    transition: .4s transform .2s, .4s opacity .2s;
    transform: translateY(10px);
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1 .portfolio-item-category, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2 .portfolio-item-category {
    opacity: 0;
    transition: .4s transform .3s, .4s opacity .3s;
    transform: translateY(10px);
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1:hover .portfolio-item-title,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1:hover .portfolio-item-category, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1.hover .portfolio-item-title,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-1.hover .portfolio-item-category, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2:hover .portfolio-item-title,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2:hover .portfolio-item-category, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2.hover .portfolio-item-title,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2.hover .portfolio-item-category {
    opacity: 1;
    transform: translateY(0);
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2 .nk-portfolio-item-info {
    color: #000;
    background-color: rgba(255, 255, 255, 0.85);
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2.hover .nk-portfolio-item-info {
    background-color: rgba(255, 255, 255, 0.6);
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-2.hover:hover .nk-portfolio-item-info {
    background-color: rgba(255, 255, 255, 0.85);
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-3 .nk-portfolio-item-info {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px 50px;
    background-color: #fff;
    transition: .4s transform;
    transform: translateY(100%);
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-3 .nk-portfolio-item-info > div {
    width: 100%;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-3:hover .nk-portfolio-item-info,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-3.hover .nk-portfolio-item-info {
    transform: translateY(0%);
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-3 .portfolio-item-title {
    margin-bottom: .85rem;
    color: #000;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-3 .portfolio-item-category {
    color: inherit;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-4 .nk-portfolio-item-info {
    padding: 30px 0;
    padding-bottom: 22px;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-4:hover .nk-portfolio-item-info,
.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-4.hover .nk-portfolio-item-info {
    transform: translateY(0%);
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-4 .portfolio-item-title {
    margin-bottom: .85rem;
    color: #000;
    transition: .2s color;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-4 .portfolio-item-category {
    color: inherit;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-4 .nk-portfolio-item-image > div {
    transition: .5s opacity;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-4:hover .portfolio-item-title, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-4.hover .portfolio-item-title {
    color: #c91010;
}

.nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-4:hover .nk-portfolio-item-image > div, .nk-portfolio-list .nk-portfolio-item.nk-portfolio-item-info-style-4.hover .nk-portfolio-item-image > div {
    opacity: .6;
}

/*
 * Single Portfolio Item
 */
.nk-portfolio-single .nk-portfolio-title {
    margin-bottom: 1.9rem;
    letter-spacing: .012em;
}

.nk-portfolio-single .nk-portfolio-details {
    width: 100%;
}

.nk-portfolio-single .nk-portfolio-details tr td {
    width: 1%;
    padding-right: 7px;
}

.nk-portfolio-single .nk-portfolio-details tr td + td {
    width: 100%;
    padding-right: 0;
}

.nk-portfolio-single .nk-portfolio-details tr + tr td {
    padding-top: 5px;
}

.nk-portfolio-single .nk-portfolio-details strong {
    color: #171717;
}

.nk-portfolio-single .nk-portfolio-details a {
    color: inherit;
    text-decoration: none;
    transition: .5s opacity;
}

.nk-portfolio-single .nk-portfolio-details a:hover {
    opacity: .6;
}

.nk-portfolio-single .nk-portfolio-text + .nk-portfolio-details {
    margin-top: 46px;
}

.nk-portfolio-single .nk-portfolio-text p:last-of-type {
    margin-bottom: 0;
}

.container-fluid .nk-portfolio-single.nk-portfolio-single-half .nk-portfolio-images {
    margin-right: -15px;
    margin-left: -15px;
}

.nk-portfolio-single.nk-portfolio-single-half .nk-portfolio-info {
    max-width: 580px;
    padding-top: 92px;
    padding-right: 60px;
    padding-bottom: 92px;
    padding-left: 90px;
}

@media (max-width: 767px) {
    .nk-portfolio-single.nk-portfolio-single-half .nk-portfolio-info {
        padding: 70px 40px;
    }
}

@media (max-width: 575px) {
    .nk-portfolio-single.nk-portfolio-single-half .nk-portfolio-info {
        padding: 50px 20px;
    }
}

.nk-portfolio-images img {
    width: 100%;
    height: auto;
}

.nk-portfolio-launch-site {
    padding-top: 48px;
    padding-bottom: 54px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.nk-portfolio-launch-site a {
    color: inherit;
    text-decoration: none;
    transition: .5s opacity;
}

.nk-portfolio-launch-site a:hover, .nk-portfolio-launch-site a.hover {
    opacity: .6;
}

.nk-portfolio-launch-site > a {
    display: inline-block;
    font-size: 1.68rem;
    font-weight: 600;
    color: #171717;
}

.nk-portfolio-launch-site > a::after {
    content: "";
    display: block;
    margin-top: -4px;
    border-bottom: 1px solid;
}

.nk-portfolio-launch-site > div {
    margin-top: 24px;
    font-size: 1.05rem;
}

/*
 * Single Portfolio Header
 */
.nk-portfolio-single-header {
    display: table;
    width: 100%;
    min-height: 570px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #e8e8e8;
}

.nk-portfolio-single-header > div {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}

.nk-portfolio-single-header > div > .container > .row {
    align-items: center;
}

.nk-portfolio-single-header .nk-portfolio-title + .lead {
    margin-top: 24px;
}

/*------------------------------------------------------------------

  Blog

 -------------------------------------------------------------------*/
/* Isotope Posts list */
.nk-blog-isotope .nk-blog-post {
    padding: 25px 30px;
}

.nk-blog-isotope .nk-blog-post .nk-post-thumb {
    position: relative;
    margin-top: -25px;
    margin-right: -30px;
    margin-bottom: 25px;
    margin-left: -30px;
}

.nk-blog-isotope .nk-blog-post .nk-post-thumb > a {
    transition: .5s opacity;
}

.nk-blog-isotope .nk-blog-post .nk-post-thumb > a:hover {
    opacity: .6;
}

.nk-blog-isotope .nk-blog-post .nk-post-category a {
    display: inline-block;
    bottom: 9px;
    left: 10px;
    min-width: 90px;
    padding: 5.5px 15px;
    margin-top: 25px;
    margin-left: 30px;
    font-size: .8rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #280909;
    transition: .5s background-color;
}

.nk-blog-isotope .nk-blog-post .nk-post-category a:hover {
    background-color: #491010;
}

.nk-blog-isotope .nk-blog-post .nk-post-title {
    margin-bottom: 15px;
}

.nk-blog-isotope .nk-blog-post .nk-post-text {
    margin-top: 12px;
    margin-bottom: 0;
}

/* Isotope Posts list Style 2 */
.nk-blog-isotope-2 .nk-blog-post {
    position: relative;
    text-align: center;
    background-color: #0c0c0c;
    z-index: 1;
}

.nk-blog-isotope-2 .nk-blog-post .nk-post-thumb {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 50% 50%;
    background-size: cover;
    opacity: .5;
    transition: .5s opacity;
    z-index: -1;
}

.nk-blog-isotope-2 .nk-blog-post:hover .nk-post-thumb,
.nk-blog-isotope-2 .nk-blog-post.hover .nk-post-thumb {
    opacity: .2;
}

.nk-blog-isotope-2 .nk-blog-post .nk-post-content {
    display: table;
    width: 100%;
    min-height: 400px;
    padding: 40px;
}

.nk-blog-isotope-2 .nk-blog-post .nk-post-content > div {
    display: table-cell;
    vertical-align: middle;
}

.nk-blog-isotope-2 .nk-blog-post .nk-post-date {
    margin-bottom: 17px;
    font-size: .84rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.nk-blog-isotope-2 .nk-blog-post .nk-post-title {
    margin-bottom: 19px;
    color: #fff;
}

.nk-blog-isotope-2 .nk-blog-post .nk-post-more {
    position: relative;
    display: inline-block;
    font-size: .97rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.nk-blog-isotope-2 .nk-blog-post .nk-post-more::after {
    content: "";
    position: absolute;
    display: block;
    bottom: -1px;
    left: 50%;
    width: 20px;
    margin-left: -10px;
    border-bottom: 1px solid;
    transition: .5s transform, .5s width;
}

.nk-blog-isotope-2 .nk-blog-post .nk-post-more:hover::after, .nk-blog-isotope-2 .nk-blog-post .nk-post-more.hover::after {
    width: 30px;
    transform: translateX(-5px);
}

/* Single Post */
.nk-blog-post-single h1 {
    margin-top: 8px;
}

.nk-blog-post-single .nk-post-date,
.nk-blog-post-single .nk-post-category,
.nk-blog-post-single .nk-post-comments-count {
    font-size: .84rem;
    font-weight: 500;
    color: #171717;
    text-transform: uppercase;
}

.nk-blog-post-single .nk-post-date a,
.nk-blog-post-single .nk-post-category a,
.nk-blog-post-single .nk-post-comments-count a {
    color: inherit;
    text-decoration: none;
    transition: .5s opacity;
}

.nk-blog-post-single .nk-post-date a:hover,
.nk-blog-post-single .nk-post-category a:hover,
.nk-blog-post-single .nk-post-comments-count a:hover {
    opacity: .6;
}

.nk-blog-post-single .nk-post-share {
    margin-bottom: -6px;
    color: #171717;
}

.nk-blog-post-single .nk-post-share strong {
    margin-right: 5px;
}

.nk-blog-post-single .nk-post-share a {
    color: inherit;
    text-decoration: none;
    transition: .5s opacity;
}

.nk-blog-post-single .nk-post-share a:hover {
    opacity: .6;
}

.nk-post-title > a {
    color: inherit;
    text-decoration: none;
    transition: .2s color;
}

.nk-post-title > a:hover, .nk-post-title > a.hover {
    color: #c91010;
}

.nk-post-meta {
    font-family: "Montserrat", sans-serif;
    font-size: .76rem;
    font-weight: 500;
    color: #171717;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.nk-post-meta > a {
    color: inherit;
    transition: .2s color;
}

.nk-post-meta > a:hover {
    color: #c91010;
    text-decoration: none;
}

.nk-post-text {
    margin: 25px 0;
    color: #787878;
}

.nk-post-text::after, .nk-post-text::before {
    content: "";
    display: table;
    clear: both;
}

.nk-post-text .pull-right,
.nk-post-text .pull-left {
    margin: 15px;
}

.nk-post-text .pull-right {
    margin-right: 0;
}

.nk-post-text .pull-left {
    margin-left: 0;
}

.nk-post-text > p:last-child {
    margin-bottom: 0;
}

.nk-comments {
    background-color: #f7f7f7;
}

.nk-comments h3:first-of-type {
    margin-top: -6px;
}

.nk-comments .nk-comment {
    margin-top: -5px;
}

.nk-comments .nk-comment::after, .nk-comments .nk-comment::before {
    content: "";
    display: table;
    clear: both;
}

.nk-comments .nk-comment .nk-comment {
    margin-left: 100px;
}

.nk-comments .nk-comment .nk-comment,
.nk-comments .nk-comment + .nk-comment {
    padding-top: 19px;
    clear: both;
}

.nk-comments .nk-comment .nk-comment-avatar {
    position: relative;
    float: left;
    margin-top: 4px;
    margin-right: 30px;
    z-index: 1;
}

.nk-comments .nk-comment .nk-comment-avatar img {
    width: 100px;
    height: auto;
    border-radius: 50px;
    transition: .5s opacity;
}

.nk-comments .nk-comment .nk-comment-avatar a:hover img,
.nk-comments .nk-comment .nk-comment-avatar a.hover img {
    opacity: .6;
}

.nk-comments .nk-comment .nk-comment-meta {
    position: relative;
    padding-bottom: 38px;
    margin-right: -22px;
    margin-bottom: 3px;
    margin-left: -22px;
    font-family: "Montserrat", sans-serif;
}

.nk-comments .nk-comment .nk-comment-meta .nk-comment-name,
.nk-comments .nk-comment .nk-comment-meta .nk-comment-date,
.nk-comments .nk-comment .nk-comment-meta .nk-comment-reply {
    margin-right: 22px;
    margin-left: 22px;
    font-weight: 500;
    color: #171717;
}

.nk-comments .nk-comment .nk-comment-meta .nk-comment-name a,
.nk-comments .nk-comment .nk-comment-meta .nk-comment-date a,
.nk-comments .nk-comment .nk-comment-meta .nk-comment-reply a {
    color: inherit;
    text-decoration: none;
    transition: .2s color;
}

.nk-comments .nk-comment .nk-comment-meta .nk-comment-name a:hover,
.nk-comments .nk-comment .nk-comment-meta .nk-comment-date a:hover,
.nk-comments .nk-comment .nk-comment-meta .nk-comment-reply a:hover {
    color: #c91010;
}

.nk-comments .nk-comment .nk-comment-meta .nk-comment-name {
    float: left;
    margin-left: 0;
    line-height: 1;
}

.nk-comments .nk-comment .nk-comment-meta .nk-comment-date,
.nk-comments .nk-comment .nk-comment-meta .nk-comment-reply {
    float: right;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.nk-comments .nk-comment .nk-comment-text {
    margin-left: 130px;
    color: #787878;
}

@media (max-width: 1199px) {
    .nk-comments .nk-comment .nk-comment {
        margin-left: 50px;
    }
    .nk-comments .nk-comment .nk-comment-meta {
        padding-bottom: 20px;
        margin-bottom: 15px;
    }
    .nk-comments .nk-comment .nk-comment-avatar {
        margin-right: 20px;
    }
    .nk-comments .nk-comment .nk-comment-avatar img {
        width: 50px;
        border-radius: 25px;
    }
    .nk-comments .nk-comment .nk-comment-text {
        margin-left: 70px;
    }
}

@media (max-width: 767px) {
    .nk-comments .nk-comment .nk-comment {
        margin-left: 20px;
    }
    .nk-comments .nk-comment .nk-comment-avatar {
        margin-top: 0;
    }
    .nk-comments .nk-comment .nk-comment-meta {
        padding-top: 13px;
        padding-bottom: 0;
    }
    .nk-comments .nk-comment .nk-comment-text {
        padding-top: 15px;
        margin-left: 0;
        clear: both;
    }
}

.nk-reply h3:first-of-type {
    margin-top: -6px;
}

/*------------------------------------------------------------------

  Plugins

 -------------------------------------------------------------------*/
/*---------------------------
  Plugin NanoScroller
 ----------------------------*/
.nano {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nano .nano-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: scroll;
    overflow-x: hidden;
    outline: none;
    -webkit-overflow-scrolling: touch;
}

.nano .nano-content::-webkit-scrollbar {
    display: none;
}

.nano > .nano-pane {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 6px;
    visibility: hidden\9;
    background: rgba(0, 0, 0, 0.4);
    opacity: .01;
    transition: .2s opacity;
    will-change: opacity;
}

.nano > .nano-pane > .nano-slider {
    position: relative;
    margin: 0 1px;
    background: #fff;
    opacity: .5;
}

.nano > .nano-pane:hover > .nano-slider {
    opacity: .6;
}

.has-scrollbar > .nano-content::-webkit-scrollbar {
    display: block;
}

.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
    visibility: visible\9;
    opacity: .99;
}
