@charset "UTF-8";

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

  Template Name: Xmin - Ajax Portfolio Showcase HTML Template
  Template URI: http://theme.dsngrid.com/xmin
  Description: xmin Ajax Portfolio Showcase HTML Template
  Author: design_grid
  Author URI: https://themeforest.net/user/design_grid
  Version: 1.0.0

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

    1.  Variables
    2.  Mixins
      - Mixins Master
      - Utilities
    3.  Normalize
    4.  Helpers
    5. Typography
      - Copy
	  - Headings
	6. Core
    7. Navigation
      - Links
      - Menus
	  - Next & Previous
    8. Content
      - pages
      - Comments
      - Archives
      - Footer
    9.Forms
      - Button
      - Fields
    10.Blocks
    11.Media
      - captions
    12.Version Light

------------------------------------------------------------- */
/* -------------------------------------------------------
                     mixins
-------------------------------------------------------- */
[data-overlay]:before {
    content: '';
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

[data-overlay="0"]:before {
    opacity: 0;
}

[data-overlay="1"]:before {
    opacity: 0.1;
}

[data-overlay="2"]:before {
    opacity: 0.2;
}

[data-overlay="3"]:before {
    opacity: 0.3;
}

[data-overlay="4"]:before {
    opacity: 0.4;
}

[data-overlay="5"]:before {
    opacity: 0.5;
}

[data-overlay="6"]:before {
    opacity: 0.6;
}

[data-overlay="7"]:before {
    opacity: 0.7;
}

[data-overlay="8"]:before {
    opacity: 0.8;
}

[data-overlay="9"]:before {
    opacity: 0.9;
}

[data-overlay="10"]:before {
    opacity: 1;
}

.cover-bg {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

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

.v-middle-horizontal {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.v-middle-vertical {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

:root {
    --body-bg: #181818;
    --theme-color: #f13c46;
    --ltblue: #F8FFFE;
    --darkgrey: #5A5A5D;
}

/* *
      ------- Dark Color */
/* *
      ------- Light Color */
.background-main {
    background-color: var(--body-bg);
}

.v-light .background-main {
    background-color: #f9f9f9;
}

.background-section {
    background-color: #212121;
}

.background-section-ltblue {
    background-color: var(--ltblue);
}

.v-light .background-section {
    background-color: #e6e6e6;
}

.background-theme {
    background-color: #f13c46;
    -webkit-transition-property: background-color, color;
    -o-transition-property: background-color, color;
    transition-property: background-color, color;
}

.v-light .background-theme {
    background-color: #e82a2a;
}

.background-white {
    background-color: #fff;
}

.background-white-assistant {
    background-color: #e6e6e6;
}

.theme-color {
    color: #f13c46;
}

.text-darkgrey {
    color: var(--darkgrey);
}

.background-reverse {
    background-color: #f9f9f9;
}

.v-light .background-reverse {
    background-color: var(--body-bg);
}

.background-reverse .background-section {
    background-color: #e6e6e6;
}

.v-light .background-reverse .background-section {
    background-color: #212121;
}

.color-light {
    color: #d7d7d7;
}

.v-light .color-light {
    color: #0009;
}

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

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

.color-dark,
.background-reverse {
    color: #0009;
}

.v-light .color-dark,
.v-light .background-reverse {
    color: #d7d7d7;
}

.color-dark h1,
.background-reverse h1,
.color-dark h2,
.background-reverse h2 {
    color: #000;
}

.v-light .color-dark h1,
.v-light .background-reverse h1,
.v-light .color-dark h2,
.v-light .background-reverse h2 {
    color: #fff;
}

/* ! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    outline: none;
    margin: 0;
    padding: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

/* *
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS. */
html {
    -webkit-text-size-adjust: 100%;

    /* 2 */
}

/* Sections
	 ========================================================================== */
/* *
 * Remove the margin in all browsers. */
body {
    margin: 0;
}

/* Grouping content
	 ========================================================================== */
/* *
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE. */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;

    /* 1 */
    height: 0;

    /* 1 */
    overflow: visible;

    /* 2 */
}

/* *
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers. */
pre {
    font-family: monospace, monospace;

    /* 1 */
}

/* Text-level semantics
	 ========================================================================== */
/* *
 * Remove the gray background on active links in IE 10. */
a {
    background-color: transparent;
}

/* *
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] {
    border-bottom: none;

    /* 1 */
    text-decoration: underline;

    /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;

    /* 2 */
}

/* *
 * Add the correct font weight in Chrome, Edge, and Safari. */
b,
strong {
    font-weight: bolder;
}

/* *
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers. */
code,
kbd,
samp {
    font-family: monospace, monospace;

    /* 1 */
    font-size: 1em;

    /* 2 */
}

/* *
 * Add the correct font size in all browsers. */
small {
    font-size: 80%;
}

/* *
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers. */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/* *
 * Remove the border on images inside links in IE 10. */
img {
    border-style: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

iframe {
    border: none;
}

/* Forms
	 ========================================================================== */
/* *
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari. */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;

    /* 1 */
    margin: 0;

    /* 2 */
}

/* *
 * Show the overflow in IE.
 * 1. Show the overflow in Edge. */
button,
input {
    /* 1 */
    overflow: visible;
}

/* *
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox. */
button,
select {
    /* 1 */
    text-transform: none;
}

/* *
 * Correct the inability to style clickable types in iOS and Safari. */
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    background: inherit;
    border: none;
}

/* *
 * Remove the inner border and padding in Firefox. */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/* *
 * Restore the focus styles unset by the previous rule. */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/* *
 * Correct the padding in Firefox. */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/* *
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers. */
legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    /* 1 */
    color: inherit;

    /* 2 */
    display: table;

    /* 1 */
    max-width: 100%;

    /* 1 */
    padding: 0;

    /* 3 */
    white-space: normal;

    /* 1 */
}

/* *
 * Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
    vertical-align: baseline;
}

/* *
 * Remove the default vertical scrollbar in IE 10+. */
textarea {
    overflow: auto;
}

/* *
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10. */
[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    /* 1 */
    padding: 0;

    /* 2 */
}

/* *
 * Correct the cursor style of increment and decrement buttons in Chrome. */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/* *
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari. */
[type="search"] {
    -webkit-appearance: textfield;

    /* 1 */
    outline-offset: -2px;

    /* 2 */
}

/* *
 * Remove the inner padding in Chrome and Safari on macOS. */
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/* *
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button {
    -webkit-appearance: button;

    /* 1 */
    font: inherit;

    /* 2 */
}

/* Interactive
	 ========================================================================== */
/* * Add the correct display in Edge, IE 10+, and Firefox. */
details {
    display: block;
}

/* * Add the correct display in all browsers. */
summary {
    display: list-item;
}

/* Misc
	 ========================================================================== */
/* *
 * Add the correct display in IE 10+. */
template {
    display: none;
}

/* *
 * Add the correct display in IE 10. */
[hidden] {
    display: none;
}

button,
input,
select,
optgroup,
textarea {
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-weight: 600;
    line-height: 1.2;

    /* font-family: "Cinzel", serif; */
    font-family: "Playfair Display", serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.v-light h1,
.v-lighth2,
.v-lighth3,
.v-lighth4,
.v-lighth5,
.v-lighth6 {
    color: #000;
}

/* ----------------------------------------------------------------
	Basic Layout Styles
----------------------------------------------------------------- */
h1 {
    font-size: 55px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 18px;
}

.section-title {
    position: relative;
}

.section-title .section-sub-title {
    color: #000;
}

.section-title.text-center .title-section {
    margin-left: auto;
    margin-right: auto;
}

.section-title.text-center .title-section::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (max-width: 991px) {
    .section-title {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .section-title {
        margin-bottom: 40px;
    }
}

.style-title::before,
.style-title::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -0.5px;
    width: 80px;
    height: 1px;
    background-color: rgba(112, 112, 112, 0.5);
}

@media only screen and (max-width: 991px) {
    .style-title::before,
    le-title::after {
        display: none;
    }
}

.style-title::before {
    left: -100px;
}

.style-title::after {
    right: -100px;
}

.title {
    position: relative;
    color: #fff;

    /* font-family: "Cinzel", serif; */
    font-family: "Playfair Display", serif;
    font-size: 62px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
}

.title.background-white {
    padding: 10px;
    color: #000;
}

@media only screen and (max-width: 991px) {
    .title {
        font-size: 46px;
    }
}

@media only screen and (max-width: 768px) {
    .title {
        font-size: 42px;
    }

    .title::before,
    le::after {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .title {
        /* font-size: 36px; */
        font-size: 24px;
        line-height: 1.2;
        /* width: 400px !important; */
    }
}

@media only screen and (max-width: 400px) {
    .title {
        font-size: 35px;
    }
}

.title-section,
.section-title h2 {
    position: relative;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding-bottom: 15px;
    max-width: 850px;
}

.title-section.text-center,
.section-title h2.text-center {
    margin-left: auto;
    margin-right: auto;
}

.title-section.text-center::after,
.section-title h2.text-center::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.title-section::after,.title-section2::after,
.section-title h2::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: #f13c46;
    left: 0;
    bottom: 0;
}

.title-section2::after {
    right:0;
    left:auto !important;
}

.p-margintop {
    margin-top: 20px;
}

.title-section span,
.section-title h2 span {
    padding-bottom: 5px;
    font-weight: bold;
    border-bottom: 2px solid #f13c46;
}

@media only screen and (max-width: 991px) {
    .title-section,
    ection-title h2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .title-section,
    ection-title h2 {
        font-size: 32px;
        letter-spacing: 0;
    }
}

.section-sub-title {
    display: inline-block;
    color: #f13c46;
    position: relative;
    font-family: "Proxima Nova", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.section-sub-title.background-white {
    padding: 4px 15px;
}

.icon-lg {
    vertical-align: middle;
    font-size: 42px;
}

.metas {
    font-size: 16px;
    color: #fff;
}

.v-light .metas {
    color: #e82a2a;
}

.metas span {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    background-color: #f13c46;
    padding: 5px 10px;
}

.metas span::after {
    content: ",";
    position: relative;
    color: #fff;
    font-size: 13px;
}

.metas span:last-of-type::after {
    display: none;
}

.title-h2 {
    font-size: 38px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

@media only screen and (max-width: 991px) {
    .title-h2 {
        font-size: 35px;
        margin-bottom: 20px;
        line-height: inherit;
    }
}

@media only screen and (max-width: 768px) {
    .title-h2 {
        font-size: 25px;
    }
}

.title-block {
    position: relative;

    /* letter-spacing: 2px; */
    font-size: 26px;
    font-weight: 500;
}

.sm-title-block {
    position: relative;

    /* letter-spacing: 2px; */
    letter-spacing: 0px;
    font-size: 18px;
    font-weight: 400;
}

.p-larg {
    max-width: 980px;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.6;
}

p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

cite,
dfn,
em,
i {
    font-style: italic;
}

span,
a {
    display: inline-block;
    color: inherit;
}

blockquote cite {
    font-style: normal;
    font-family: "Cinzel", serif;
}

pre {
    font-family: "Courier 10 Pitch", Courier, monospace;
    overflow: auto;
}

code,
kbd,
tt,
var {
    font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: underline;
}

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

body {
    background-color: var(--body-bg);
    line-height: 1.2;
    color: #d7d7d7;
    font-family: "Proxima Nova", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-property: background-color, color;
    -o-transition-property: background-color, color;
    transition-property: background-color, color;
}

body.dsn-mobile {
    overflow-y: auto;
}

body.v-light:not(.no-light) {
    color: #0009;
    background-color: #f9f9f9;
}

.margin-lr-100 {
    margin-right: 80px;
    margin-left: 80px;
}

@media only screen and (max-width: 991px) {
    .margin-lr-100 {
        margin-right: 50px;
        margin-left: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .margin-lr-100 {
        margin-right: 30px;
        margin-left: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .margin-lr-100 {
        margin-right: 15px;
        margin-left: 15px;
    }
}

.padding-lr-100 {
    padding-right: 80px;
    padding-left: 80px;
}

@media only screen and (max-width: 991px) {
    .padding-lr-100 {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .padding-lr-100 {
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .padding-lr-100 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

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

.main-root {
    position: relative;
    overflow: hidden;
}

.social-network h5 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.social-network ul {
    padding-left: 20px;
}

.social-network ul:before {
    content: "";
    width: 3vw;
    top: 50%;
    height: 1px;
    background: #fff;
    margin-right: 15px;
}

.socials li a {
    position: relative;
    margin-right: 25px;
    margin-top: 5px;
    color: #fff;
}

.socials li a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.2);
    -ms-transform: translate(-50%, -50%) scale(0.2);
    transform: translate(-50%, -50%) scale(0.2);
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
    -o-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
    transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}

.socials li a i {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials li a span {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 13px;
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
    -o-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
    transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    cursor: pointer;
}

.socials li a:hover i {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
    -o-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
    transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}

.socials li a:hover span {
    opacity: 1;
    -webkit-transform: matrix(1, 0, 0, 1, 0, -25);
    -ms-transform: matrix(1, 0, 0, 1, 0, -25);
    transform: matrix(1, 0, 0, 1, 0, -25);
    -webkit-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
    -o-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
    transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.socials li a:hover:after {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
    -o-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
    transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

.overlay-header:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(var(--body-bg)));
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), var(--body-bg));
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0), var(--body-bg));
    background-image: linear-gradient(rgba(0, 0, 0, 0), var(--body-bg));
}

.next-container,
.prev-container {
    position: absolute;
    bottom: 0;
    display: inline-block;
    cursor: pointer;
    z-index: 11;
}

.next-container div,
.prev-container div {
    position: relative;
    width: 60px;
    height: 15px;
}

.next-container div::after,
.prev-container div::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    width: 60px;
    height: 2px;
}

.v-light .next-container div::after,
.v-light.prev-container div::after {
    background-color: #000;
}

.next-container div::before,
.prev-container div::before {
    content: "";
    position: absolute;
    bottom: 11px;
    width: 12px;
    height: 1.5px;
    background-color: #fff;
}

.v-light .next-container div::before,
.v-light.prev-container div::before {
    background-color: #000;
}

.next-container.next-container div::before,
.prev-container.next-container div::before {
    right: -2px;
    -webkit-transform: rotate(137deg);
    -ms-transform: rotate(137deg);
    transform: rotate(137deg);
    bottom: 3px;
}

.next-container.prev-container div::before,
.prev-container.prev-container div::before {
    left: -2px;
    -webkit-transform: rotate(-37deg);
    -ms-transform: rotate(-37deg);
    transform: rotate(-37deg);
}

.swiper-pagination-bullet {
    position: relative;
    background-color: transparent;
    width: 12px;
    height: 12px;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    margin: 5px;
    bottom: 0 !important;
}

.swiper-pagination-bullet::before,
.swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet::before {
    background-color: #f13c46;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
}

.swiper-pagination-bullet::after {
    border: 1.5px solid #f13c46;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.play-btn {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: auto;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

.play-btn .outline {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.play-btn .outline-progress {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: stroke-dashoffset 0.5s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: stroke-dashoffset 0.5s cubic-bezier(0.65, 0, 0.35, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: stroke-dashoffset 0.5s cubic-bezier(0.65, 0, 0.35, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: stroke-dashoffset 0.5s cubic-bezier(0.65, 0, 0.35, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.play-btn:hover .outline {
    -webkit-transform: scale(0.95) translateZ(0);
    transform: scale(0.95) translateZ(0);
}

.play-btn:hover .outline-progress {
    stroke-dashoffset: 0px;
    -webkit-transform: rotate(-90deg) scale(0.95) translateZ(0);
    transform: rotate(-90deg) scale(0.95) translateZ(0);
}

.scroll-down .button-icon {
    width: 60px;
    height: 60px;
}

.scroll-down .button-icon img {
    width: 100%;
    height: 100%;
}

.scroll-down .label {
    position: relative;
    padding-left: 70px;
    margin-left: 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
}

.scroll-down .label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: rgba(112, 112, 112, 0.5);
}

.container-nav {
    position: relative;
    z-index: 2;
}

.container-nav svg {
    vertical-align: middle;
}

.container-nav svg.arrow {
    -webkit-transform: scaleX(-1) translate(60px);
    -ms-transform: scaleX(-1) translate(60px);
    transform: scaleX(-1) translate(60px);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    width: 50px;
    height: 60px;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.container-nav svg.arrow path {
    stroke-width: 2px;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    fill: rgba(241, 60, 70, 0.5);
}

.container-nav svg.arrow path.amm {
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0.4);
    -ms-transform: scaleX(0.4);
    transform: scaleX(0.4);
    stroke: rgba(241, 60, 70, 0.5);
}

.container-nav svg.circle,
.container-nav svg.stroke {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.container-nav svg.circle circle {
    stroke-dasharray: 46.25px;
    stroke-dashoffset: 0;
    stroke: rgba(241, 60, 70, 0.5);
}

.container-nav svg.stroke circle {
    -webkit-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
    stroke-dasharray: 92.5px;
    stroke-dashoffset: 92.5px;
}

.container-nav:hover svg.arrow path {
    fill: #f13c46;
}

.container-nav:hover svg.arrow .amm {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    stroke: #f13c46;
}

.container-nav:hover svg.stroke circle {
    stroke-dashoffset: 0;
    stroke: #f13c46;
    -webkit-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

.prev-container {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.prev-container svg.circle {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.height-mg {
    width: 100%;
    position: relative;
    height: 120px;
}

.section-padding {
    padding-top: 260px;
    padding-bottom: 120px;
}

@media only screen and (max-width: 991px) {
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section-margin {
    margin-top: 120px;
    margin-bottom: 120px;
}

@media only screen and (max-width: 991px) {
    .section-margin {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 768px) {
    .section-margin-sm {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

.mt-section {
    margin-top: 120px;
}

@media only screen and (max-width: 991px) {
    .mt-section {
        margin-top: 80px;
    }
}

.mb-section {
    margin-bottom: 120px;
}

@media only screen and (max-width: 991px) {
    .mb-section {
        margin-bottom: 80px;
    }
}

.pt-section {
    padding-top: 120px;
}

@media only screen and (max-width: 991px) {
    .pt-section {
        padding-top: 80px;
    }
}

.pb-section {
    padding-bottom: 120px;
}

@media only screen and (max-width: 991px) {
    .pb-section {
        padding-bottom: 80px;
    }
}

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

.header-scale-hero {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.img-box-parallax .title-popup {
    display: none;
    -webkit-transform: translate(-50%, -90px);
    -ms-transform: translate(-50%, -90px);
    transform: translate(-50%, -90px);
}

.img-box-parallax:hover .title-popup {
    display: block;
}

.cursor {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 76px;
    height: 76px;
    z-index: 999999;
    pointer-events: none;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale(0.3) translate(-50%, -50%);
    -ms-transform: scale(0.3) translate(-50%, -50%);
    transform: scale(0.3) translate(-50%, -50%);
    mix-blend-mode: exclusion;
}

.cursor.cursor-scale-full,
.mfp-zoom-out-cur .cursor {
    -webkit-transform: scale(1.2) translate(-50%, -50%);
    -ms-transform: scale(1.2) translate(-50%, -50%);
    transform: scale(1.2) translate(-50%, -50%);
}

.cursor.cursor-scale-full span,
.mfp-zoom-out-cur .cursor span {
    color: #000;
}

.cursor.cursor-scale-half {
    -webkit-transform: scale(1) translate(-50%, -50%);
    -ms-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    mix-blend-mode: unset;
    background-color: #000;
}

.cursor.cursor-scale-half span {
    color: #fff;
}

.cursor.cursor-drag .cursor-next,
.cursor.cursor-drag .cursor-prev {
    position: absolute;
    top: 0;
    right: -25px;
}

.cursor.cursor-drag .cursor-prev {
    right: auto;
    left: -25px;
}

.cursor.cursor-drag.no-drag {
    mix-blend-mode: exclusion;
    color: #fff;
}

.cursor.cursor-drag.no-drag .cursor-next,
.cursor.cursor-drag.no-drag .cursor-prev,
.cursor.cursor-drag.no-drag .cursor-drag {
    display: none;
}

.cursor.cursor-drag.cursor-up-down .cursor-next,
.cursor.cursor-drag.cursor-up-down .cursor-prev {
    position: absolute;
    top: -50px;
    right: auto;
    left: 33px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.cursor.cursor-drag.cursor-up-down .cursor-prev {
    top: auto;
    bottom: -50px;
}

.cursor.cursor-drag.no-drag {
    mix-blend-mode: exclusion;
    background-color: #fff;
}

.cursor.cursor-drag.no-drag .cursor-next,
.cursor.cursor-drag.no-drag .cursor-prev,
.cursor.cursor-drag.no-drag .cursor-drag {
    display: none;
}

@media only screen and (max-width: 991px) {
    .cursor {
        display: none;
    }
}

.cursor .cursor-helper {
    position: absolute;
    border-radius: 50%;
    width: 100%;
    text-align: center;
}

.cursor .cursor-helper span {
    line-height: 76px;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 20px 20px 20px #000;
    display: none;
}

.cursor.cursor-view span.cursor-view {
    display: block;
}

.cursor.cursor-close span.cursor-close {
    display: block;
}

.cursor.cursor-play span.cursor-play {
    display: block;
}

.cursor.cursor-open span.cursor-open {
    display: block;
}

.cursor.cursor-prev span.cursor-prev {
    display: block;
}

.cursor.cursor-next span.cursor-next {
    display: block;
}

.cursor.cursor-drag span.cursor-drag {
    display: block;
}

.dsn-ajax-effect:not(.dsn-cursor-effect) .cursor {
    left: auto;
    top: auto;
    right: 10px;
    bottom: 10px;
    -webkit-transform: scale(0.3) translate(-50%, -50%);
    -ms-transform: scale(0.3) translate(-50%, -50%);
    transform: scale(0.3) translate(-50%, -50%);
    mix-blend-mode: unset;
}

.dsn-ajax-effect .cursor {
    display: inherit !important;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
    mix-blend-mode: unset;
}

.dsn-ajax-effect .cursor:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 109px;
    border-radius: 50%;
    left: -9px;
    top: -15px;
    border-top: 5px solid #fff;
    -webkit-animation-name: animate-load;
    animation-name: animate-load;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.cursor.no-scale {
    -webkit-transform: scale(0) translate(-50%, -50%);
    -ms-transform: scale(0) translate(-50%, -50%);
    transform: scale(0) translate(-50%, -50%);
}

@-webkit-keyframes animate-load {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes animate-load {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes animate-load {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.dsn-arrow {
    position: relative;
}

.dsn-arrow [data-cursor]:not(.slick-slider) {
    position: absolute;
    width: 25%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
}

.dsn-arrow.our-work [data-cursor]:not(.slick-slider) {
    height: 60%;
}

.dsn-arrow [data-cursor="next"]:not(.slick-slider) {
    right: 0;
    left: auto;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: var(--body-bg);
}

.preloader .preloader-before {
    top: 0;
}

.preloader .preloader-after {
    bottom: 0;
}

.preloader .percent {
    position: absolute;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 16px;
    color: #f13c46;
    top: -25px;
}

.preloader .title {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    line-height: 0.9;
    letter-spacing: 10px;
    font-family: "Proxima Nova", sans-serif;
}

.preloader .title .text-strok {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.preloader .title .text-fill {
    color: #fff;
    position: absolute;
    left: 0;
    -webkit-clip-path: inset(100.09% 0% 0% 0%);
    clip-path: inset(100.09% 0% 0% 0%);
}

.preloader .preloader-bar {
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    background: #1d1d1d;
}

.preloader .preloader-bar .preloader-progress {
    width: 0;
    height: 100%;
    background: #f13c46;
}

.line-before:before,
.line-after:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 1.5px;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #f13c46), color-stop(35%, #f13c46), color-stop(65%, #f13c46), to(transparent));
    background: -webkit-linear-gradient(left, #f13c46 0, #f13c46 35%, #f13c46 65%, transparent 100%);
    background: -o-linear-gradient(left, #f13c46 0, #f13c46 35%, #f13c46 65%, transparent 100%);
    background: linear-gradient(to right, #f13c46 0, #f13c46 35%, #f13c46 65%, transparent 100%);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.line-before:before {
    margin-right: 10px;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.line-after:after {
    margin-left: 10px;
}

.box-shadow {
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.strok-text {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.v-light .strok-text {
    -webkit-text-stroke: 1px #000;
}

.border-top {
    border-top: 1px solid rgba(112, 112, 112, 0.5);
}

.m-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-620 {
    max-width: 620px;
}

.slick-dots {
    text-align: center;
    margin-top: 20px;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
    line-height: 1px;
}

.slick-dots li button {
    position: relative;
    background-color: #f13c46;
    width: 15px;
    height: 2px;
    font-size: 0;
    opacity: 0.5;
}

.slick-dots li.slick-active button {
    opacity: 1;
}

.space-under-box {
    margin-bottom: 50px;
}

.block-margin-top {
    margin-top: 30px;
}

.block-margin-bottom {
    margin-bottom: 30px;
}

.box-border-after {
    position: relative;
}

.box-border-after::before,
.box-border-after::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    z-index: -1;
}

@media only screen and (max-width: 768px) {
    .box-border-after::before,
    -border-after::after {
        display: none;
    }
}

.box-border-after::before {
    top: -10px;
    left: -10px;
    border-right: 50px solid transparent;
    border-top: 50px solid transparent;
    border-top: 50px solid #f13c46;
}

.box-border-after:after {
    border-left: 50px solid transparent;
    border-top: 50px solid transparent;
    border-bottom: 50px solid #f13c46;
    bottom: -10px;
    right: -10px;
}

.pointer-events {
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .pl-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.animation-rotate img {
    -webkit-animation: rotate 15s linear infinite;
    animation: rotate 15s linear infinite;
}

.social-network-box {
    width: 95vh;
    position: absolute;
    left: 40px;
    bottom: 0;
    color: #fff;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    z-index: 3;
}

@media only screen and (max-width: 575px) {
    .social-network-box {
        display: none;
    }
}

.social-network-box.social-network-box_right {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    left: auto;
    right: 40px;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
}

.social-network-box .social-network ul li {
    display: inline-block;
    margin-right: 20px;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.social-network-box .social-network ul li:last-of-type {
    margin-right: 0;
}

@media only screen and (max-width: 991px) {
    .social-network-box {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        left: auto;
        right: 40px;
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
    }
}

a.link-hover {
    color: #fff;
    display: inline-block;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 400;
    position: relative;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.v-light a.link-hover {
    color: #000;
}

a.link-hover:before {
    content: attr(data-hover-text);
    position: absolute;
    left: 0;
    top: 100%;
    color: #fff;
}

.v-light a.link-hover:before {
    color: #000;
}

a.link-hover:hover {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    text-decoration: none;
}

.link-vist {
    left: 30px;
    bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}

@media only screen and (max-width: 768px) {
    .link-vist {
        margin-top: 20px;
    }
}

.link-vist .link-vist-text {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3px;
    font-family: "Cinzel", serif;
}

.v-light .link-vist .link-vist-text {
    color: #000;
}

.link-vist .link-vist-text:before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #fff;
    bottom: 1px;
    left: 0;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.v-light .link-vist .link-vist-text:before {
    background: #000;
}

.link-vist .link-vist-arrow {
    margin-left: 10px;
}

.link-vist .link-vist-arrow svg {
    width: 20px;
    height: 20px;
    -webkit-transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    -o-transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
}

.link-vist .link-vist-arrow svg * {
    fill: none;
    stroke: #fff;
    stroke-width: 2px;
}

.v-light .link-vist .link-vist-arrow svg * {
    stroke: #000;
}

.link-vist:hover .link-vist-text:before {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
}

.link-vist:hover .link-vist-arrow svg {
    -webkit-transform: translate(10px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
    opacity: 0;
}

.scroll-to-top {
    position: fixed;
    right: -100px;
    bottom: 60px;
    width: 70px;
    height: 70px;
    z-index: 99;
    cursor: pointer;
}

.scroll-to-top .box-numper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    line-height: 35px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.v-light .scroll-to-top .box-numper {
    color: #000;
}

.scroll-to-top .box-numper span {
    font-size: 12px;
}

.scroll-to-top img {
    width: 65px;
}

.v-light .scroll-to-top img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.scroll-d {
    right: 30px;
    bottom: 40px;
    cursor: pointer;
    z-index: 2;
}

.scroll-d img {
    width: 60px;
}

.v-light .scroll-d img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.shap-section {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 190px;
}

.shap-section img {
    opacity: 0.15;
}

.container-fluid.no-padding,
.container.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.bg-section {
    top: 0;
    bottom: 0;
}

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.w-40 {
    width: 40%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-auto {
    width: auto;
}

.w-100-v {
    width: 100vh;
}

.max-width-750 {
    max-width: 750px;
}

.h-100 {
    height: 100%;
}

.h-100-v {
    height: 100vh;
}

.h-50 {
    height: 50%;
}

.h-65 {
    height: 65%;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

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

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

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.fw-blod {
    font-weight: bold;
}

.over-hidden {
    overflow: hidden;
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

.before-z-index:before {
    z-index: 1;
}

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

.m-auto {
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 991px) {
    .mb-80 {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .sm-mb-30 {
        margin-bottom: 30px;
    }
}

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

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

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

.left-0 {
    left: 0;
}

.p-0 {
    padding: 0;
}

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

@media only screen and (max-width: 991px) {
    .container {
        max-width: 100%;
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.custom-container {
    width: 120%;
}

@media only screen and (max-width: 991px) {
    .custom-container {
        width: 100%;
    }
}

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

.dsn-video {
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -20 !important;
    width: 100%;
    height: 100%;
}

[data-dsn="video"] {
    width: 100%;
    height: 100%;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.scrool-down {
    width: 140px;
    height: 140px;
    -webkit-transform: scaleX(1.2);
    -ms-transform: scaleX(1.2);
    transform: scaleX(1.2);
    overflow: hidden;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    z-index: 3;
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
}

.scrool-down a {
    z-index: 3;
}

.scrool-down a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 99em;
    border-top: 2px solid #555;
    border-right: 2px solid #555;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    -webkit-transform: translateY(75%) rotate(-45deg);
    -ms-transform: translateY(75%) rotate(-45deg);
    transform: translateY(75%) rotate(-45deg);
    will-change: transform;
    cursor: pointer;
}

.scrool-down a:after {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    border-top: 0;
    border-left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0 auto;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.background-box {
    background-color: #a56433;
    color: #000;
    font-weight: 700;
}

.color-white {
    color: #fff;
}

.v-light .color-white {
    color: #0009;
}

.overflow-hidden {
    overflow: hidden;
}

.user-no-selection {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.user-no-selection::-moz-selection {
    background: none;
    color: inherit;
}

.user-no-selection::selection {
    background: none;
    color: inherit;
}

[data-overlay] .transform-3d {
    position: relative;
    z-index: -1;
}

.cover-bg-img, .cover-bg-img2 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: 8%;
}

.cover-bg-img2 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: 50%;
}

.no-shadow {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.transform-3d {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.p-fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.day-night {
    position: fixed;
    z-index: 99999;
    top: 23px;
    left: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.admin-bar .day-night {
    top: 74px;
}

@media screen and (min-width: 783px) {
    .admin-bar .day-night {
        top: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .day-night {
        left: 150px;
        display: none;
    }
}

.day-night .night,
.day-night .moon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-transition: opacity 0.8s;
    -o-transition: opacity 0.8s;
    transition: opacity 0.8s;
    border-radius: 100%;
    opacity: 0;
}

.day-night .night svg,
.day-night .moon svg {
    width: 100%;
    height: 100%;
}

.day-night .night {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: #fff;
    opacity: 1;
}

.day-night .night svg {
    fill: #000;
    width: 100%;
    height: 100%;
}

.day-night .moon {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: #000;
    opacity: 0;
}

.day-night .moon svg {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    fill: #f0f0f0;
}

.v-light .day-night .night {
    opacity: 0;
}

.v-light .day-night .moon {
    opacity: 1;
}

.dsn-ajax-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.dsn-ajax-loader:not(.dsn-ajax-normal) {
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.dsn-ajax-loader.dsn-ajax-normal {
    background-color: #1b1b1b;
    z-index: 900199;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
}

.embed-3d-dimensions {
    max-width: 100%;
    height: 80vh;
}

.embed-3d-dimensions .overlay-3d-dimensions {
    -webkit-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    color: #f13c46;
}

.embed-3d-dimensions .overlay-3d-dimensions .button-action {
    cursor: pointer;
    background-color: var(--body-bg);
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.embed-3d-dimensions .overlay-3d-dimensions i {
    font-size: 50px;
}

.embed-3d-dimensions .overlay-3d-dimensions .action-key {
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
    left: 10px;
    top: 10px;
}

.embed-3d-dimensions .overlay-3d-dimensions .key-on {
    opacity: 1;
    z-index: 1;
}

.embed-3d-dimensions .overlay-3d-dimensions .key-off {
    opacity: 0;
    z-index: 0;
}

.embed-3d-dimensions.active-3d-dimensions .overlay-3d-dimensions {
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
}

.embed-3d-dimensions.active-3d-dimensions .overlay-3d-dimensions:before {
    display: none;
}

.embed-3d-dimensions.active-3d-dimensions .overlay-3d-dimensions .key-off {
    opacity: 1;
    z-index: 1;
}

.embed-3d-dimensions.active-3d-dimensions .overlay-3d-dimensions .key-on {
    opacity: 0;
    z-index: 0;
}

.embed-3d-dimensions iframe {
    border: none;
    max-width: 100%;
}

.dsn-ajax-effect {
    overflow: hidden !important;
}

.dsn-ajax-loader .title {
    color: #fff !important;
}

.dsn-z-index-2 {
    z-index: 2;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

[data-fill-text] {
    position: relative;
    line-height: 1.2;
    color: transparent;
    -webkit-text-stroke: 1.1px #fff;
}

.v-light [data-fill-text] {
    -webkit-text-stroke: 1.1px #000;
}

[data-fill-text]:before {
    content: attr(data-fill-text);
    position: absolute;
    width: 0;
    height: 100%;
    -webkit-transition: width 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: width 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: width 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    color: #fff;
    white-space: nowrap;
    -webkit-text-stroke: 0 transparent;
}

.v-light [data-fill-text]:before {
    color: #000;
}

[data-fill-text]:hover:before {
    width: 100%;
}

.box-small {
    padding: 12px;
    background-color: #212121;
}

.v-light .box-small {
    background-color: #e6e6e6;
}

.col-margin-2 > *:nth-of-type(n + 3) {
    margin-top: 50px;
}

.col-margin-3 > *:nth-of-type(n + 4) {
    margin-top: 50px;
}

.col-margin-4 > *:nth-of-type(n + 5) {
    margin-top: 50px;
}

.dsn-col > * {
    width: calc((100% / var(--dsn-col)) - 3px);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-box input::-webkit-input-placeholder,
.form-box textarea::-webkit-input-placeholder {
    color: #eee;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-box input:-ms-input-placeholder,
.form-box textarea:-ms-input-placeholder {
    color: #eee;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
.form-control::-ms-input-placeholder,
.form-box input::-ms-input-placeholder,
.form-box textarea::-ms-input-placeholder {
    color: #eee;
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder,
.form-box input::placeholder,
.form-box textarea::placeholder {
    color: #eee;
}

.v-light input::-webkit-input-placeholder,
.v-lighttextarea::-webkit-input-placeholder,
.v-light.form-control::-webkit-input-placeholder,
.v-light.form-box input::-webkit-input-placeholder,
.v-light.form-box textarea::-webkit-input-placeholder {
    color: #0009;
}

.v-light input:-ms-input-placeholder,
.v-lighttextarea:-ms-input-placeholder,
.v-light.form-control:-ms-input-placeholder,
.v-light.form-box input:-ms-input-placeholder,
.v-light.form-box textarea:-ms-input-placeholder {
    color: #0009;
}

.v-light input::-ms-input-placeholder,
.v-lighttextarea::-ms-input-placeholder,
.v-light.form-control::-ms-input-placeholder,
.v-light.form-box input::-ms-input-placeholder,
.v-light.form-box textarea::-ms-input-placeholder {
    color: #0009;
}

.v-light input::placeholder,
.v-lighttextarea::placeholder,
.v-light.form-control::placeholder,
.v-light.form-box input::placeholder,
.v-light.form-box textarea::placeholder {
    color: #0009;
}

input[type="search"]::-webkit-search-decoration {
    display: none;
}

[type="submit"] {
    background-color: #f9f9f9;
}

.dsn-btn-inner {
    padding: 5px;
}

.bottom-submit {
    position: relative;
    display: inline-block;
    padding: 5px;
}

.bottom-submit::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 1px solid #fff;
}

.dsn-btn,
.dsn-button-link input[type="submit"] {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 45px;
    cursor: pointer;
    border: 1px solid rgba(112, 112, 112, 0.5);
    font-family: "Proxima Nova", sans-serif;
    z-index: 2;
}

.dsn-btn.background-white span,
.dsn-button-link input[type="submit"].background-white span {
    color: #000;
}

.dsn-btn.dsn-btn-radius,
.dsn-button-link input[type="submit"].dsn-btn-radius {
    border-radius: 30px;
}

.dsn-btn.dsn-btn-radius::before,
.dsn-button-link input[type="submit"].dsn-btn-radius::before {
    border-radius: 30px;
}

.dsn-btn::before,
.dsn-button-link input[type="submit"]::before {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    top: -5px;
    bottom: -5px;
    border: 1px solid rgba(112, 112, 112, 0.5);
}

.dsn-btn span,
.dsn-button-link input[type="submit"] span {
    color: #fff;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* --------------------------------------------------------------
## Links
-------------------------------------------------------------- */
a {
    outline: 0;
    outline-style: none;
    text-decoration: none;
}

a:hover,
a:active {
    outline: 0;
    text-decoration: none;
}

/* --------------------------------------------------------------
## Menus
-------------------------------------------------------------- */
.font-heading {
    font-family: "Cinzel", serif;
}

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

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 80px;
    z-index: 9000;
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .site-header {
        padding: 22px 40px;
    }
}

@media only screen and (max-width: 768px) {
    .site-header {
        padding: 22px 30px;
    }
}

@media only screen and (max-width: 575px) {
    .site-header {
        padding: 22px 15px;
    }
}

.site-header .menu-cover-title {
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 20vw;
    font-weight: 600;
    line-height: 1.15;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.05;
}

.site-header .inner-header .main-logo {
    /* width: 96px; */
    width: 215px;
    pointer-events: all;
}

.site-header .inner-header .main-logo .dark-logo {
    display: none;
}

.site-header .main-navigation {
    pointer-events: all;
}

.site-header .nav-border-bottom {
    display: none;
}

.site-header .menu-icon {
    position: relative;
    top: -5px;
    cursor: pointer;
    pointer-events: all;
}

.site-header .menu-icon .icon-m .menu-icon-line {
    background-color: #f13c46;
    width: 23px;
    height: 2px;
    -webkit-transition: -webkit-transform 0.2s ease-Out;
    transition: -webkit-transform 0.2s ease-Out;
    -o-transition: transform 0.2s ease-Out;
    transition: transform 0.2s ease-Out;
    transition: transform 0.2s ease-Out, -webkit-transform 0.2s ease-Out;
}

.site-header .menu-icon .icon-m .menu-icon-line.icon-top {
    width: 5px;
}

.site-header .menu-icon .icon-m .menu-icon-line.icon-center {
    width: 14px;
}

.site-header .menu-icon .icon-m .menu-icon-line.icon-bottom {
    margin-top: 5px;
}

.site-header .menu-icon .icon-m .icon-circle {
    position: absolute;
    top: -5px;
    left: -8px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: none;
}

.site-header .menu-icon .icon-m:hover .icon-circle {
    display: inherit;
}

.site-header .menu-icon .text-menu {
    top: -5px;
    width: 44px;
    margin-right: 10px;
    color: #fff;
    opacity: 0.9;
    font-family: "Proxima Nova", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.site-header .menu-icon .text-menu > div {
    left: 0;
    top: 0;
}

.site-header .menu-icon .text-menu .text-button .dsn-word-wrapper {
    overflow: hidden;
    will-change: transform;
}

.site-header .menu-icon .text-menu .text-button .dsn-chars-wrapper {
    opacity: 0;
    visibility: hidden;
    will-change: transform;
    -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
    -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
    transform: translateY(50%) rotate(15deg) scale(0.8);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
    transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
    -o-transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
    transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
    transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
    -webkit-transition-delay: calc(30ms * var(--char-dsn-index) + 1ms);
    -o-transition-delay: calc(30ms * var(--char-dsn-index) + 1ms);
    transition-delay: calc(30ms * var(--char-dsn-index) + 1ms);
}

.site-header .menu-icon .text-menu .text-button .dsn-chars-wrapper {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
    -ms-transform: translateY(0) rotate(0deg) scale(1);
    transform: translateY(0) rotate(0deg) scale(1);
}

.site-header .menu-icon .text-menu .text-open .dsn-word-wrapper,
.site-header .menu-icon .text-menu .text-close .dsn-word-wrapper {
    overflow: hidden;
    will-change: transform;
}

.site-header .menu-icon .text-menu .text-open .dsn-chars-wrapper,
.site-header .menu-icon .text-menu .text-close .dsn-chars-wrapper {
    opacity: 0;
    visibility: hidden;
    will-change: transform;
    -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
    -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
    transform: translateY(50%) rotate(15deg) scale(0.8);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
    transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
    -o-transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
    transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
    transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
    -webkit-transition-delay: calc(30ms * var(--char-dsn-index) + 1ms);
    -o-transition-delay: calc(30ms * var(--char-dsn-index) + 1ms);
    transition-delay: calc(30ms * var(--char-dsn-index) + 1ms);
}

.site-header .menu-icon.nav-active .text-menu {
    width: 50px;
}

.site-header .menu-icon:hover .icon-m .icon-top,
.site-header .menu-icon:hover .icon-m .icon-center {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
}

.site-header .menu-icon:hover .icon-m .icon-bottom {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.site-header .menu-icon:hover .text-menu .text-button .dsn-word-wrapper {
    overflow: hidden;
    will-change: transform;
}

.site-header .menu-icon:hover .text-menu .text-button .dsn-chars-wrapper {
    opacity: 0;
    visibility: hidden;
    will-change: transform;
    -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
    -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
    transform: translateY(50%) rotate(15deg) scale(0.8);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
    transition: opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
    -o-transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
    transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s;
    transition: transform 0.4s cubic-bezier(0.3, 0, 0.7, 1), opacity 0.3s cubic-bezier(0.3, 0, 0.7, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.3, 0, 0.7, 1);
    -webkit-transition-delay: calc(30ms * var(--char-dsn-index) + 1ms);
    -o-transition-delay: calc(30ms * var(--char-dsn-index) + 1ms);
    transition-delay: calc(30ms * var(--char-dsn-index) + 1ms);
}

.site-header .menu-icon:hover:not(.nav-active) .text-menu .text-open .dsn-chars-wrapper {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
    -ms-transform: translateY(0) rotate(0deg) scale(1);
    transform: translateY(0) rotate(0deg) scale(1);
}

.site-header .menu-icon:hover.nav-active .text-menu .text-close .dsn-chars-wrapper {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
    -ms-transform: translateY(0) rotate(0deg) scale(1);
    transform: translateY(0) rotate(0deg) scale(1);
}

.site-header ul.extend-container {
    width: 100%;
    padding: 0 30px 0 60px;
}

@media only screen and (max-width: 768px) {
    .site-header ul.extend-container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0;
    }
}

.site-header .container-content {
    width: 40%;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (max-width: 768px) {
    .site-header .container-content {
        display: none;
    }
}

.site-header .container-content .nav-content {
    margin-top: 30px;
}

.site-header .container-content .nav-content:first-of-type {
    margin-top: 0;
}

.site-header .container-content .nav-content p {
    margin-bottom: 5px;
    color: #d7d7d7;
}

.site-header .container-content .nav-content p:last-of-type {
    margin-top: 0;
}

.site-header .container-content .nav-content p .link-hover {
    text-transform: uppercase;
}

.site-header .container-content .title-line,
.site-header .container-content p.title-line {
    color: #f13c46;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.site-header .container-content .nav-social {
    margin-top: 30px;
}

.site-header .container-content .nav-social ul {
    margin-bottom: 0;
}

.site-header .container-content .nav-social ul li {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px;
    padding-right: 5px;
}

.site-header .container-content .nav-social ul li a {
    color: #fff;
    display: inline-block;
    letter-spacing: 2px;
    font-size: 13px;
    font-family: "Cinzel", serif;
    font-weight: 400;
    position: relative;
}

.site-header .extend-container .main-navigation {
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: -1;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    visibility: visible;
}

.site-header .extend-container .main-navigation:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    opacity: 0.05;
    background-size: cover;
    background-repeat: no-repeat;
}

.site-header .extend-container .main-navigation ul.extend-container li {
    overflow: hidden;
    font-family: "Cinzel", serif;
    font-weight: 600;
    color: #fff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 10px;
    line-height: 1;
}

.site-header .extend-container .main-navigation ul.extend-container li.dsn-active,
.site-header .extend-container .main-navigation ul.extend-container li:hover {
    color: #f13c46;
}

.site-header .extend-container .main-navigation ul.extend-container li.dsn-active .dsn-meta-menu,
.site-header .extend-container .main-navigation ul.extend-container li:hover .dsn-meta-menu {
    color: #a8a8a8;
}

.site-header .extend-container .main-navigation ul.extend-container li .dsn-back-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.site-header .extend-container .main-navigation ul.extend-container li .dsn-back-menu img {
    width: 32px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.site-header .extend-container .main-navigation ul.extend-container li .dsn-back-menu .dsn-title-menu {
    font-size: 42px;
    margin-left: 5px;
}

@media only screen and (max-width: 768px) {
    .site-header .extend-container .main-navigation ul.extend-container li .dsn-back-menu .dsn-title-menu {
        font-size: 32px;
    }
}

@media only screen and (max-width: 575px) {
    .site-header .extend-container .main-navigation ul.extend-container li .dsn-back-menu .dsn-title-menu {
        font-size: 24px;
    }
}

.site-header .extend-container .main-navigation ul.extend-container li .dsn-back-menu img,
.site-header .extend-container .main-navigation ul.extend-container li .dsn-back-menu .dsn-title-menu {
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, -webkit-transform;
    -o-transition-property: opacity, visibility, transform;
    transition-property: opacity, visibility, transform;
    transition-property: opacity, visibility, transform, -webkit-transform;
}

.site-header .extend-container .main-navigation ul.extend-container li .dsn-back-menu:hover img {
    -webkit-transform: translateX(-22px);
    -ms-transform: translateX(-22px);
    transform: translateX(-22px);
    opacity: 0;
    visibility: hidden;
}

.site-header .extend-container .main-navigation ul.extend-container li .dsn-back-menu:hover .dsn-title-menu {
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
}

.site-header .extend-container .main-navigation ul.extend-container li li {
    overflow: inherit;
    margin-bottom: 0;
}

.site-header .extend-container .main-navigation ul.extend-container li a {
    overflow: hidden;
    line-height: 1.2;
}

.site-header .extend-container .main-navigation ul.extend-container li a:after,
.site-header .extend-container .main-navigation ul.extend-container li a .dsn-meta-menu {
    position: absolute;
    display: inherit;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.site-header .extend-container .main-navigation ul.extend-container li a .dsn-meta-menu {
    margin-left: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    -webkit-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px);
}

@media only screen and (max-width: 768px) {
    .site-header .extend-container .main-navigation ul.extend-container li a .dsn-meta-menu {
        display: none;
    }
}

.site-header .extend-container .main-navigation ul.extend-container li.dsn-drop-down > a:after {
    content: "";
    background-image: url("../img/right.svg");
    background-size: 17px;
    height: 17px;
    width: 17px;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translate(0, 8px);
    -ms-transform: translate(0, 8px);
    transform: translate(0, 8px);
}

.site-header .extend-container .main-navigation ul.extend-container li.dsn-drop-down > a:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(50%, 8px);
    -ms-transform: translate(50%, 8px);
    transform: translate(50%, 8px);
}

.site-header .extend-container .main-navigation ul.extend-container > li {
    font-size: 42px;
}

@media only screen and (max-width: 768px) {
    .site-header .extend-container .main-navigation ul.extend-container > li {
        font-size: 32px;
    }
}

@media only screen and (max-width: 575px) {
    .site-header .extend-container .main-navigation ul.extend-container > li {
        font-size: 24px;
    }
}

.site-header .extend-container .main-navigation ul.extend-container > li > a .dsn-title-menu {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.site-header .extend-container .main-navigation ul.extend-container > li > a .dsn-meta-menu {
    opacity: 0;
    visibility: hidden;
}

.site-header .extend-container .main-navigation ul.extend-container > li ul {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 60px;
}

.site-header .extend-container .main-navigation ul.extend-container > li ul li {
    font-size: 32px;
    line-height: 1;
}

.site-header .extend-container .main-navigation ul.extend-container > li ul li a {
    line-height: 1.5;
}

.site-header .extend-container .main-navigation ul.extend-container > li ul li a .dsn-meta-menu {
    -webkit-transform: translateY(22px);
    -ms-transform: translateY(22px);
    transform: translateY(22px);
    margin-left: 10px;
}

@media only screen and (min-width: 992px) {
    .classic-menu .site-header .menu-icon {
        display: none;
    }

    .classic-menu .site-header .container-content {
        display: none;
    }

    .classic-menu .site-header .nav-border-bottom {
        position: absolute;
        display: block;
        top: 63px;
        left: 30px;
        width: 25px;
        height: 1px;
        background: #f13c46;
        border-radius: 3px;
    }

    .classic-menu .site-header > .extend-container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .classic-menu .site-header > .extend-container .menu-cover-title {
        display: none;
    }

    .classic-menu .site-header .extend-container .main-navigation {
        position: inherit;
        display: block;
        margin-left: auto;
        height: auto;
        width: auto;
        top: unset;
        left: unset;
        background-color: transparent;
        z-index: 1;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .classic-menu .site-header .extend-container .main-navigation:after {
        display: none;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container {
        display: block;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container li .dsn-back-menu {
        display: none;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container li a:after,
    ssic-menu .site-header .extend-container .main-navigation ul.extend-container li a .dsn-meta-menu {
        display: none;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container li.dsn-drop-down > a:after {
        display: none;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li {
        font-size: 15px;
        display: inline-block;
        margin-left: 30px;
        margin-bottom: 0;
        font-weight: 700;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li:first-of-type {
        margin-left: 0;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li > a .dsn-title-menu {
        opacity: 1 !important;
        visibility: visible !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li > a .dsn-meta-menu {
        display: none;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li ul {
        position: absolute;
        display: block !important;
        width: 195px;
        height: auto;
        left: unset;
        top: unset;
        margin-top: 15px;
        padding: 10px;
        margin-left: -10px;
        background-color: #212121;
        -webkit-transition-property: opacity, visibility, -webkit-transform;
        transition-property: opacity, visibility, -webkit-transform;
        -o-transition-property: transform, opacity, visibility;
        transition-property: transform, opacity, visibility;
        transition-property: transform, opacity, visibility, -webkit-transform;
        -webkit-transition-duration: 0.8s;
        -o-transition-duration: 0.8s;
        transition-duration: 0.8s;
        border-radius: 3px;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(35px);
        -ms-transform: translateY(35px);
        transform: translateY(35px);
        -webkit-transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
        -o-transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
        transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li ul li {
        width: 100%;
        padding: 7px 0;
        border-bottom: 0.5px dotted #ffffff14;
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 0;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li ul li .dsn-meta-menu {
        display: none;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li ul li:last-child {
        border-bottom: 0;
        margin-bottom: 0;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li ul li:before {
        position: relative;
        content: '-';
        opacity: 0;
        top: -4px;
        visibility: hidden;
        margin-right: -4px;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li ul li.dsn-active,
    ssic-menu .site-header .extend-container .main-navigation ul.extend-container > li ul li:hover {
        color: #fff;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li ul li.dsn-active:before,
    ssic-menu .site-header .extend-container .main-navigation ul.extend-container > li ul li:hover:before {
        opacity: 1;
        visibility: visible;
        margin-right: 5px;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li:hover ul {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        visibility: visible;
    }

    .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li:last-child ul {
        right: -32px;
    }
}

/* Social menu */
/* * === Footer menu === */
.footer-navigation {
    display: inline;
}

.footer-navigation > div {
    display: inline;
}

.footer-navigation .footer-menu {
    display: inline;
    padding-left: 0;
}

.footer-navigation .footer-menu li {
    display: inline;
    margin-right: 1rem;
}

/* --------------------------------------------------------------
## Next / Previous
-------------------------------------------------------------- */
.next-project {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media only screen and (max-width: 575px) {
    .next-project {
        padding: 0;
    }
}

@media only screen and (max-width: 575px) {
    .next-project .col {
        margin: 0;
        padding: 0;
    }
}

@media only screen and (max-width: 768px) {
    .next-project .all-work-nav {
        display: none;
    }
}

.next-project .nav-project-item.nav-project-item-prev a {
    margin-left: -30px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-prev a {
        margin-left: auto;
    }
}

.next-project .nav-project-item.nav-project-item-prev .text {
    left: 30px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-prev .text {
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.next-project .nav-project-item.nav-project-item-prev svg {
    margin-right: 15px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-prev svg {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.next-project .nav-project-item.nav-project-item-next a {
    margin-right: -30px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-next a {
        margin-right: auto;
    }
}

.next-project .nav-project-item.nav-project-item-next .text {
    right: 30px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-next .text {
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.next-project .nav-project-item.nav-project-item-next svg {
    margin-left: 15px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-next svg {
        margin-left: 0;
    }
}

.next-project .nav-project-item svg path {
    stroke: #fff;
    fill: #fff;
}

.next-project .nav-project-item a {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.next-project .nav-project-item a .img-box {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 160px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item a .img-box {
        width: 100%;
    }
}

.next-project .nav-project-item a .img-box::before {
    border-radius: 4px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item a .img-box::before {
        border-radius: 0;
    }
}

.next-project .nav-project-item a .img-box img {
    border-radius: 4px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item a .img-box img {
        border-radius: 0;
    }
}

.next-project .nav-project-item a .text {
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item a .text {
        position: absolute;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }
}

.next-project .nav-project-item a .text .btn-nav {
    display: inline-block;
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item a .text .btn-nav {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.next-project .all-work a {
    position: relative;
    width: 23px;
    height: 23px;
    margin: 6px auto;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.next-project .all-work a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 9px;
    height: 9px;
    background-color: #fff;
    -webkit-box-shadow: 12px 0 0 #fff, 0 12px 0 #fff, 12px 12px 0 #fff, 8px 0 0 transparent, 0 8px 0 transparent,
 8px 8px 0 transparent, 12px 8px 0 transparent, 8px 12px 0 transparent;
    box-shadow: 12px 0 0 #fff, 0 12px 0 #fff, 12px 12px 0 #fff, 8px 0 0 transparent, 0 8px 0 transparent,
 8px 8px 0 transparent, 12px 8px 0 transparent, 8px 12px 0 transparent;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.next-project .all-work a:hover span {
    width: 5px;
    height: 5px;
    -webkit-box-shadow: 16px 0 0 #fff, 0 16px 0 #fff, 16px 16px 0 #fff, 8px 0 0 #fff, 0 8px 0 #fff, 8px 8px 0 #fff,
 16px 8px 0 #fff, 8px 16px 0 #fff;
    box-shadow: 16px 0 0 #fff, 0 16px 0 #fff, 16px 16px 0 #fff, 8px 0 0 #fff, 0 8px 0 #fff, 8px 8px 0 #fff,
 16px 8px 0 #fff, 8px 16px 0 #fff;
}

.next-page .section-sub-title {
    padding-bottom: 120px;
}

.next-page .section-sub-title::before,
.next-page .section-sub-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1px;
    height: 100px;
    margin-left: -0.5px;
    background-color: #fff;
    opacity: .07;
}

.next-page .section-sub-title:after {
    opacity: 1;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-animation: line 2s cubic-bezier(0.4, 0, 0.4, 0.65) infinite both;
    animation: line 2s cubic-bezier(0.4, 0, 0.4, 0.65) infinite both;
}

.next-page .title {
    padding: 60px 15px;
}

@-webkit-keyframes line {
    10% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: center top;
        transform-origin: center top;
    }

    50% {
        -webkit-transform-origin: center top;
        transform-origin: center top;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    51% {
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    100% {
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

@keyframes line {
    10% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: center top;
        transform-origin: center top;
    }

    50% {
        -webkit-transform-origin: center top;
        transform-origin: center top;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    51% {
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    100% {
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

.next-project {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media only screen and (max-width: 575px) {
    .next-project {
        padding: 0;
    }
}

@media only screen and (max-width: 575px) {
    .next-project .col {
        margin: 0;
        padding: 0;
    }
}

@media only screen and (max-width: 768px) {
    .next-project .all-work-nav {
        display: none;
    }
}

.next-project .nav-project-item.nav-project-item-prev a {
    margin-left: -30px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-prev a {
        margin-left: auto;
    }
}

.next-project .nav-project-item.nav-project-item-prev .text {
    left: 30px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-prev .text {
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.next-project .nav-project-item.nav-project-item-prev svg {
    margin-right: 15px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-prev svg {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.next-project .nav-project-item.nav-project-item-next a {
    margin-right: -30px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-next a {
        margin-right: auto;
    }
}

.next-project .nav-project-item.nav-project-item-next .text {
    right: 30px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-next .text {
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.next-project .nav-project-item.nav-project-item-next svg {
    margin-left: 15px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item.nav-project-item-next svg {
        margin-left: 0;
    }
}

.next-project .nav-project-item svg path {
    stroke: #fff;
    fill: #fff;
}

.next-project .nav-project-item a {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.next-project .nav-project-item a .img-box {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 160px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item a .img-box {
        width: 100%;
    }
}

.next-project .nav-project-item a .img-box::before {
    border-radius: 4px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item a .img-box::before {
        border-radius: 0;
    }
}

.next-project .nav-project-item a .img-box img {
    border-radius: 4px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item a .img-box img {
        border-radius: 0;
    }
}

.next-project .nav-project-item a .text {
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item a .text {
        position: absolute;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }
}

.next-project .nav-project-item a .text .btn-nav {
    display: inline-block;
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media only screen and (max-width: 575px) {
    .next-project .nav-project-item a .text .btn-nav {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.next-project .all-work a {
    position: relative;
    width: 23px;
    height: 23px;
    margin: 6px auto;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.next-project .all-work a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 9px;
    height: 9px;
    background-color: #fff;
    -webkit-box-shadow: 12px 0 0 #fff, 0 12px 0 #fff, 12px 12px 0 #fff, 8px 0 0 transparent, 0 8px 0 transparent,
 8px 8px 0 transparent, 12px 8px 0 transparent, 8px 12px 0 transparent;
    box-shadow: 12px 0 0 #fff, 0 12px 0 #fff, 12px 12px 0 #fff, 8px 0 0 transparent, 0 8px 0 transparent,
 8px 8px 0 transparent, 12px 8px 0 transparent, 8px 12px 0 transparent;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.next-project .all-work a:hover span {
    width: 5px;
    height: 5px;
    -webkit-box-shadow: 16px 0 0 #fff, 0 16px 0 #fff, 16px 16px 0 #fff, 8px 0 0 #fff, 0 8px 0 #fff, 8px 8px 0 #fff,
 16px 8px 0 #fff, 8px 16px 0 #fff;
    box-shadow: 16px 0 0 #fff, 0 16px 0 #fff, 16px 16px 0 #fff, 8px 0 0 #fff, 0 8px 0 #fff, 8px 8px 0 #fff,
 16px 8px 0 #fff, 8px 16px 0 #fff;
}

.title-cover {
    position: absolute;
    width: 100%;
    font-family: "Cinzel", serif;
    font-size: 10vw;
    font-weight: 600;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    z-index: 1;
    text-transform: uppercase;
    pointer-events: none;
    overflow: hidden;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.title-cover:not(.text-left):not(.text-right) {
    text-align: center;
}

.half-bg-bottom,
.half-bg-top {
    position: absolute;
    left: 0;
    width: 100%;
}

.half-bg-bottom.half-bg-bottom,
.half-bg-top.half-bg-bottom {
    bottom: 0;
}

.half-bg-bottom.half-bg-top,
.half-bg-top.half-bg-top {
    top: 0;
}

.half-bg-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
}

.half-bg-center {
    position: absolute;
    left: 50%;
    top: 0;
    width: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.line-height {
    width: 2px;
    height: 25px;
    background-color: #f13c46;
    margin: 10px auto;
}

.bg-under-header .swiper-slide {
    height: 75vh;
    border-radius: 2px;
}

.bg-under-header .swiper-slide img {
    border-radius: 2px;
}

.accordion {
    line-height: 1.2;
}

.accordion__answer {
    display: none;
    max-width: 400px;
}

.accordion__answer.active {
    display: block;
}

@media only screen and (max-width: 768px) {
    .accordion__answer.active {
        margin-top: 15px;
    }
}

.accordion__item {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.5);
    padding-bottom: 30px;
}

@media only screen and (max-width: 768px) {
    .accordion__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.v-light .accordion__item {
    border: 1px solid #bebebe;
}

.accordion__item:last-of-type {
    margin-bottom: 0;
}

.accordion__question {
    padding: 8px 15px 0 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
}

@media only screen and (max-width: 768px) {
    .accordion__question {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.accordion__question:first-of-type {
    padding-top: 0;
}

.accordion__question .icon {
    width: 40px;
    margin-right: 20px;
}

.accordion__question h4 {
    margin-bottom: 0;
}

.accordion__question::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;
    border: solid #f13c46;
    border-width: 0 2px 2px 0;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.v-light .accordion__question::after {
    border-color: #e82a2a;
}

.expanded.accordion__question::after {
    content: "";
    border: solid #f13c46;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.v-light .expanded.accordion__question::after {
    border-color: #e82a2a;
}

.skills-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    text-align: left;
    padding-right: 15px;
}

.skills-item:nth-of-type(n + 3) {
    margin-top: 25px;
}

.skills-item h4 {
    color: #d7d7d7;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 10px;
}

.skills-item .bar {
    height: 4px;
    border-radius: 4px;
}

.skills-item .bar .fill {
    left: 0;
    width: 0;
    border-radius: 4px;
    -webkit-transition: width 3s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: width 3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: width 3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.skills-item .bar .fill:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 5px solid #fff;
    position: absolute;
    top: -10px;
    right: 0;
}

.lest-icon li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.lest-icon li:last-child {
    margin-bottom: 0;
}

.lest-icon li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    color: #f13c46;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
}

.project-info .sub-text-header li {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.5);
}

.project-info .sub-text-header li:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-info .sub-text-header .link-vist {
    left: auto;
    bottom: auto;
}

.project-info .box-info {
    padding: 60px 30px;
}

@media only screen and (max-width: 991px) {
    .project-info .box-info {
        margin-top: 30px;
        padding: 30px;
    }

    .project-info .box-info .title-block {
        margin-bottom: 20px;
    }
}

.project-info .box-info ul {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media only screen and (max-width: 991px) {
    .project-info .box-info ul {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .project-info .box-info ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.project-info .box-info ul li {
    display: inline-block;
    padding-right: 15px;
}

@media only screen and (max-width: 575px) {
    .project-info .box-info ul li {
        width: 100%;
        margin-top: 30px;
    }

    .project-info .box-info ul li:first-of-type {
        margin-top: 0;
    }
}

.project-info .box-info ul li:last-of-type {
    padding-right: 0;
}

.project-info .box-info ul li span {
    display: block;
    margin-bottom: 10px;
}

.project-info .box-info ul li span:last-of-type {
    margin-bottom: 0;
}

.intro-project {
    position: relative;
}

.intro-project .intro-text {
    position: relative;
}

.intro-project .title-cover {
    text-align: left;
}

.intro-project h2 {
    font-size: 40px;
    letter-spacing: 2px;
}

@media only screen and (max-width: 575px) {
    .intro-project h2 {
        font-size: 22px;
        letter-spacing: 0;
    }
}

.intro-project:not(.text-center) .inner {
    max-width: 750px;
}

.intro-project .inner > p {
    font-weight: bold;
    margin-top: 20px;
}

@media only screen and (max-width: 575px) {
    .intro-project .inner > p {
        font-size: 14px;
    }
}

.intro-project.text-center .intro-text {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 750px;
}

@media only screen and (max-width: 575px) {
    .intro-project.text-center .intro-text {
        max-width: 100%;
        overflow: hidden;
    }
}

.intro-project.text-center .intro-text .title-cover {
    text-align: center;
}

.intro-project.text-center .intro-text .intro-project-details {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.intro-about .intro-content-text {
    padding-right: 30px;
}

@media only screen and (max-width: 991px) {
    .intro-about .box-img {
        margin-top: 30px;
        height: auto;
    }
}

.intro-about .box-img .box-img-top {
    padding-left: 40px;
    height: 150px;
}

@media only screen and (max-width: 991px) {
    .intro-about .box-img .box-img-top {
        position: absolute;
        bottom: 30px;
        height: auto;
    }
}

.intro-about .box-img .box-img-top .exper {
    border: 1px solid rgba(112, 112, 112, 0.5);
    border-bottom: 3px solid #f13c46;
    padding: 40px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    z-index: 2;
}

.intro-about .box-img .box-img-top .exper .numb-ex > span {
    font-size: 42px;
    font-weight: 700;
    color: inherit;
}

.intro-about .box-img .box-img-top .box-img-sm {
    position: relative;
    width: 40%;
    top: 0;
}

.intro-about .box-img .box-img-top .box-img-sm img {
    height: 280px;
    z-index: 2;
}

.intro-about .box-img .box-img-top .text-box {
    padding-left: 25px;
}

.intro-about .box-img .box-img-top .text-box .sm-title-block {
    font-family: "Proxima Nova", sans-serif;
    font-weight: 600;
}

@media only screen and (max-width: 991px) {
    .intro-about .box-img .box-img-top .text-box .sm-title-block {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .intro-about .box-img .bg-section {
        height: 100%;
    }
}

.hero-about p {
    max-width: 940px;
}

.section-video {
    height: 75vh;
}

.section-video .bg-section {
    height: 75vh;
}

@media only screen and (max-width: 768px) {
    .service .half-bg-bottom {
        display: none;
    }
}

.service-item:nth-of-type(n + 4) {
    margin-top: 30px;
}

@media only screen and (max-width: 768px) {
    .service-item:nth-of-type(n + 2) {
        margin-top: 30px;
    }
}

.service-item .service-item-inner {
    border: 1px solid rgba(112, 112, 112, 0.5);
    border-bottom: 3px solid #f13c46;
    border-radius: 2px;
    padding: 60px 30px;
}

.service-item .service-item-inner .icon {
    padding: 15px 20px;
    border-radius: 5px;
}

.service-item .service-item-inner .icon img {
    width: 35px;
}

.our-work-main .work-item .item-info {
    padding-top: 0;
}

.our-work-main .work-item .img-next-box::after {
    display: none;
}

@media only screen and (max-width: 991px) {
    .our-work-main .work-item .item-info {
        position: relative;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        height: auto;
    }
}

@media only screen and (max-width: 768px) {
    .our-work-main .work-item .item-info {
        position: absolute;
        top: 0;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        padding-top: 30px;
    }
}

.our-work-main .nav-control {
    bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

.work-item .img-next-box {
    height: 90vh;
}

.work-item .img-next-box::after {
    counter-increment: workcounter;
    content: counters(workcounter, ".", decimal-leading-zero);
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    color: #f13c46;
    z-index: 2;
}

.work-item .img-next-box::before {
    bottom: 0;
}

.work-item img {
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.work-item a {
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.work-item a[data-dsn-grid="moveUp"] img {
    height: 120%;
}

.work-item .item-border {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: transform 0.6s, background-color 0.6s cubic-bezier(0.08, 0.03, 0.22, 0.87), -webkit-transform 0.6s;
    z-index: 1;
}

.work-item .item-info {
    min-height: 120px;
    padding: 30px;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.08, 0.03, 0.22, 0.87);
    transition: -webkit-transform 0.5s cubic-bezier(0.08, 0.03, 0.22, 0.87);
    -o-transition: transform 0.5s cubic-bezier(0.08, 0.03, 0.22, 0.87);
    transition: transform 0.5s cubic-bezier(0.08, 0.03, 0.22, 0.87);
    transition: transform 0.5s cubic-bezier(0.08, 0.03, 0.22, 0.87), -webkit-transform 0.5s cubic-bezier(0.08, 0.03, 0.22, 0.87);
    z-index: 2;
}

.v-light .work-item .item-info {
    background-color: #e6e6e6;
}

@media only screen and (max-width: 768px) {
    .work-item .item-info {
        padding: 30px 15px;
    }
}

.work-item .item-info h4 {
    -webkit-transition: margin-bottom 0.5s ease;
    -o-transition: margin-bottom 0.5s ease;
    transition: margin-bottom 0.5s ease;
}

.v-light .work-item .item-info h4 {
    color: #000;
}

.work-item .item-info p {
    margin-top: 10px;
}

.v-light .work-item .item-info p {
    color: #000;
}

.work-item:hover .item-border {
    background-color: rgba(0, 0, 0, 0.8);
}

.our-work {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    counter-reset: workcounter;
}

.our-work .our-work-nav {
    width: 30%;
    top: 0;
    right: 80px;
}

@media only screen and (max-width: 991px) {
    .our-work .our-work-nav {
        width: 40%;
    }
}

@media only screen and (max-width: 768px) {
    .our-work .our-work-nav {
        display: none;
    }
}

.our-work .our-work-nav .work-item {
    height: 65vh;
}

.our-work .our-work-nav .work-item .img-next-box::after {
    display: none;
}

.our-work .our-work-nav .item-info {
    position: absolute;
    bottom: 0;
    border-bottom: 3px solid #f13c46;
    border-radius: 0 0 2px 2px;
}

@media only screen and (max-width: 991px) {
    .our-work .our-work-nav .item-info {
        position: absolute;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

@media only screen and (max-width: 768px) {
    .our-work .our-work-nav .item-info {
        position: absolute;
        top: 0;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        padding-top: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonials .half-bg-right {
        display: none;
    }
}

.testimonials .box-title {
    padding-right: 30px;
}

.testimonials .box-title p {
    max-width: 500px;
}

.testimonials .nav-control {
    padding-left: 30px;
    padding-right: 30px;
}

@media only screen and (max-width: 768px) {
    .testimonials .nav-control {
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 30px;
    }
}

.testimonials .testimonials-inner {
    padding: 50px 30px;
}

@media only screen and (max-width: 991px) {
    .testimonials .testimonials-inner {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .testimonials .testimonials-inner {
        margin-top: 30px;
    }
}

.testimonials .testimonials-inner:after {
    content: "”";
    left: 15px;
    top: -50px;
    position: absolute;
    font-size: 200px;
    line-height: 10px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .testimonials .testimonials-inner:after {
        display: none;
    }
}

.testimonials .testimonial-item {
    border-radius: 2px;
}

.testimonials .testimonial-item .avatar-inner .avatar {
    margin-right: 15px;
}

.testimonials .testimonial-item .avatar-inner .avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonials .testimonial-item .avatar-inner .label h6 {
    font-family: "Proxima Nova", sans-serif;
    font-size: 14px;
    color: #d7d7d7;
}

.testimonials-2 .testimonial-item-inner {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media only screen and (max-width: 768px) {
    .testimonials-2 .testimonial-item-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .testimonials-2 .nav-control {
        width: 100%;
        margin-top: 30px;
    }
}

.testimonials-2 .bg {
    height: calc(100% - 40px);
    width: 50%;
    left: 25%;
    bottom: 0;
}

@media only screen and (max-width: 768px) {
    .testimonials-2 .bg {
        width: 100%;
        left: 0;
    }
}

.testimonials-2 .p-larg {
    /* color: #fff; */
    color: var(--ltblue);
}

.testimonials-2 .icon i {
    font-size: 40px;
}

.testimonials-2 .avatar-inner .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: -40px;
}

.testimonials-2 .avatar-inner .avatar img {
    border-radius: 50%;
}

.testimonials-2 .avatar-info {
    border-top: 1px solid rgba(112, 112, 112, 0.5);
    display: inline-block;
    padding: 25px 25px 0;
}

.testimonials-2 .avatar-info h6 {
    font-family: "Proxima Nova", sans-serif;
    font-size: 14px;
    color: #f13c46;
}

.wapper-client {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wapper-client .logo-box {
    position: relative;
    border: 1px solid rgba(112, 112, 112, 0.5);
    border-bottom: 3px solid #f13c46;
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(25% - 15px);
    padding: 15px;
    min-height: 240px;
    margin-right: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .wapper-client .logo-box {
        width: calc(50% - 15px);
    }
}

@media only screen and (max-width: 400px) {
    .wapper-client .logo-box {
        width: 100%;
    }
}

.wapper-client .logo-box .info {
    bottom: 0;
    left: 0;
    height: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    -o-transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
}

.wapper-client .logo-box .info a {
    color: #fff;
}

.wapper-client .logo-box .logo-box-inner {
    width: 180px;
    margin: auto;
}

.wapper-client .logo-box:hover .info {
    height: 100%;
}

@media only screen and (max-width: 991px) {
    .blog-item:nth-of-type(n + 3) {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .blog-item:nth-of-type(n + 2) {
        margin-top: 30px;
    }
}

.blog-item .blog-item-inner {
    border: 1px solid rgba(112, 112, 112, 0.5);
    border-radius: 2px;
}

.blog-item .blog-item-inner .content {
    padding: 30px 30px 50px;
}

@media only screen and (max-width: 991px) {
    .blog-item .blog-item-inner .content {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .blog-item .blog-item-inner .content .title-block {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .blog-item .blog-item-inner .content p {
        margin-top: 15px;
    }
}

.blog-item .blog-item-inner .entry-date {
    font-size: 14px;
}

.blog-item .blog-item-inner .category a {
    font-size: 14px;
    font-weight: 600;
    color: #f13c46;
}

.blog-item .blog-item-inner .load-more {
    position: relative;
    -webkit-transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    -o-transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
}

.blog-item .blog-item-inner .load-more::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #f9f9f9;
    -webkit-transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    -o-transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
}

.blog-item .blog-item-inner .load-more a {
    position: relative;
    padding: 15px 30px;
    color: #fff;
    z-index: 2;
    -webkit-transition: all 0.7s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    -o-transition: all 0.7s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    transition: all 0.7s cubic-bezier(0.5, 0.2, 0.1, 1.14);
}

.blog-item .blog-item-inner .load-more .link-vist-arrow svg {
    width: 20px;
    height: 20px;
    -webkit-transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    -o-transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    transition: all 0.6s cubic-bezier(0.5, 0.2, 0.1, 1.14);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.blog-item .blog-item-inner .load-more .link-vist-arrow svg * {
    fill: none;
    stroke: #fff;
    stroke-width: 2px;
}

.blog-item .blog-item-inner .load-more:hover::before {
    width: 100%;
}

.blog-item .blog-item-inner .load-more:hover a {
    color: #000;
}

.blog-item .blog-item-inner .load-more:hover .link-vist-arrow * {
    stroke: #000;
}

@media only screen and (max-width: 768px) {
    .team-item:nth-of-type(n + 2) {
        margin-top: 30px;
    }
}

.team-item .box-img {
    border-radius: 3px;
}

.team-item .box-img img {
    border-radius: 3px;
}

.team-item .box-info {
    border-bottom: 1px solid rgba(112, 112, 112, 0.5);
}

@media only screen and (max-width: 768px) {
    .team-item .box-info {
        border-bottom: 0;
        padding-bottom: 0;
    }
}

.team-item .box-info h5 {
    color: #f13c46;
    font-family: "Proxima Nova", sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
}

[data-dsn-grid="move-up"],
[data-dsn-grid="moveUp"] {
    position: relative;
    overflow: hidden;
    height: 90vh;
    will-change: transform;
    -webkit-transform: rotateX(2deg);
    transform: rotateX(2deg);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
}

.container [data-dsn-grid="move-up"],
.container[data-dsn-grid="moveUp"] {
    height: 80vh;
}

[data-dsn-grid="move-up"] img,
[data-dsn-grid="move-up"] video,
[data-dsn-grid="moveUp"] img,
[data-dsn-grid="moveUp"] video {
    position: relative;
    width: 100%;
    top: -30%;
    height: 130%;
    pointer-events: none;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

[data-dsn-grid="move-up"] img.has-bigger-scale,
[data-dsn-grid="move-up"] video.has-bigger-scale,
[data-dsn-grid="moveUp"] img.has-bigger-scale,
[data-dsn-grid="moveUp"] video.has-bigger-scale {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

[data-dsn-grid="move-up"] img.has-skew,
[data-dsn-grid="move-up"] video.has-skew,
[data-dsn-grid="moveUp"] img.has-skew,
[data-dsn-grid="moveUp"] video.has-skew {
    -webkit-transform-origin: 0 90%;
    -ms-transform-origin: 0 90%;
    transform-origin: 0 90%;
    -webkit-transform: skewX(5deg);
    -ms-transform: skewX(5deg);
    transform: skewX(5deg);
}

[data-dsn-grid="move-up"] img.has-opposite-direction,
[data-dsn-grid="move-up"] video.has-opposite-direction,
[data-dsn-grid="moveUp"] img.has-opposite-direction,
[data-dsn-grid="moveUp"] video.has-opposite-direction {
    height: 120%;
    top: 0;
}

[data-dsn-grid="move-up"] img[data-dsn-scale="1"],
[data-dsn-grid="move-up"] video[data-dsn-scale="1"],
[data-dsn-grid="moveUp"] img[data-dsn-scale="1"],
[data-dsn-grid="moveUp"] video[data-dsn-scale="1"] {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

@media only screen and (max-width: 768px) {
    [data-dsn-grid="move-up"].parallax-responsive,
    ata-dsn-grid="moveUp"].parallax-responsive {
        height: 70vh;
    }
}

@media only screen and (max-width: 575px) {
    [data-dsn-grid="move-up"].parallax-responsive,
    ata-dsn-grid="moveUp"].parallax-responsive {
        height: 50vh;
    }
}

[data-dsn-grid="move-up"].h-100,
[data-dsn-grid="moveUp"].h-100 {
    height: 100%;
}

@media only screen and (max-width: 768px) {
    .section-p {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.section-p h2 {
    max-width: 750px;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 auto;
}

@media only screen and (max-width: 991px) {
    .section-p h2 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 575px) {
    .section-p h2 {
        font-size: 18px;
    }
}

.section-p h2.title {
    font-size: 46px;
    margin-bottom: 30px;
    color: #f13c46;
    text-transform: uppercase;
}

.v-light .section-p h2.title {
    color: #e82a2a;
}

@media only screen and (max-width: 768px) {
    .section-p h2.title {
        font-size: 28px;
    }
}

.section-p .caption-p {
    margin-top: 15px;
    color: #fff;
}

.v-light .section-p .caption-p {
    color: #000;
}

.box-seat {
    position: relative;
}

.box-seat [data-overlay]:before {
    z-index: 1;
}

.box-seat .pro-text {
    position: absolute;
    padding: 80px;
    right: 80px;
    bottom: -50px;
}

@media only screen and (max-width: 991px) {
    .box-seat .pro-text {
        padding: 80px 50px;
    }
}

@media only screen and (max-width: 768px) {
    .box-seat .pro-text {
        padding: 80px 30px;
    }
}

@media only screen and (max-width: 575px) {
    .box-seat .pro-text {
        padding: 80px 15px;
    }
}

.box-seat .pro-text:not(.container) {
    max-width: 600px;
}

.box-seat .pro-text .title-cover {
    left: 0;
}

.v-light .box-seat .pro-text {
    background-color: #e6e6e6;
}

.v-light .box-seat .pro-text h3 {
    color: #fff;
}

.box-seat .pro-text p {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 2px solid #fff;
}

@media only screen and (max-width: 768px) {
    .box-seat .pro-text p {
        margin-top: 20px;
    }
}

.v-light .box-seat .pro-text p {
    color: #d7d7d7;
}

.box-separator {
    min-height: 100vh;
}

@media only screen and (max-width: 991px) {
    .box-separator {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .box-separator .col-lg-6 {
        padding-right: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .box-separator .container {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media only screen and (max-width: 991px) {
    .box-separator .pro-text {
        padding-bottom: 0;
    }
}

.box-separator .pro-text h6 {
    font-weight: 500;
    line-height: 1.7;
    padding: 0 30px;
}

@media only screen and (max-width: 991px) {
    .box-separator .pro-text h6 {
        padding: 0;
    }
}

.box-separator .pro-text h6::after {
    right: -70px;
    top: 18px;
    height: 2px;
    width: 100px;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .box-separator .pro-text h6::after {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .box-separator .pro-text h6 {
        font-size: 16px;
    }
}

.box-separator .pro-text .pro-text-inner {
    padding: 50px 30px;
}

@media only screen and (max-width: 991px) {
    .box-separator .pro-text .pro-text-inner {
        padding: 0;
        background-color: transparent;
    }
}

.box-separator .pro-text .pro-text-inner p {
    margin-bottom: 15px;
}

.box-separator .pro-text .pro-text-inner p:last-of-type {
    margin-bottom: 0;
}

.box-separator .container-img {
    width: 50%;
    top: 0;
    right: 0;
}

@media only screen and (max-width: 991px) {
    .box-separator .container-img {
        width: 100%;
        position: relative;
        opacity: 1;
    }
}

@media only screen and (max-width: 991px) {
    .box-separator .container-img > div {
        height: 80vh;
    }
}

.box-seat.box-seat-full {
    overflow: hidden;
}

.box-seat.box-seat-full .title-box {
    bottom: 0;
    right: 190px;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    width: 100vh;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    padding: 30px 0;
    text-align: center;
}

.box-seat.box-seat-full .title-box h2 {
    font-size: 5vw;
    color: transparent;
    -webkit-text-stroke: 1px #323232;
    white-space: nowrap;
}

@media only screen and (max-width: 991px) {
    .box-seat.box-seat-full .title-box {
        display: none;
    }
}

.box-seat.box-seat-full .pro-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 100px;
}

.box-seat.box-seat-full .pro-text:not(.background-theme) {
    background-color: rgba(241, 60, 70, 0.9);
}

.box-seat.box-seat-full .pro-text .lest-icon li::before {
    color: #fff;
}

.box-seat.box-seat-full .pro-text .dsn-btn,
.box-seat.box-seat-full .pro-text .dsn-btn::before {
    border-color: #fff;
}

@media only screen and (max-width: 991px) {
    .box-seat.box-seat-full .pro-text {
        right: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .box-seat.box-seat-full .pro-text {
        max-width: 100%;
        right: 0;
    }
}

.v-light .box-seat.box-seat-full .pro-text {
    background-color: rgba(0, 0, 0, 0.42);
}

@media only screen and (max-width: 991px) {
    .v-light .box-seat.box-seat-full .pro-text {
        background-color: black;
    }
}

.v-light .box-seat.box-seat-full .pro-text h3 {
    color: #fff;
}

.v-light .box-seat.box-seat-full .pro-text p {
    color: #d7d7d7;
}

.v-light .box-seat.box-seat-full .pro-text .link-custom a {
    color: #fff;
}

.v-light .box-seat.box-seat-full .pro-text .link-custom a:before {
    color: #000;
    background-color: #fff;
}

.box-seat.box-seat-bottom {
    margin-bottom: 0;
}

.box-seat.box-seat-bottom .pro-text {
    position: relative;
    width: 100%;
    bottom: 150px;
    text-align: center;
    margin-bottom: -150px;
    border-radius: 3px 3px 0 0;
    right: auto;
}

@media only screen and (max-width: 768px) {
    .box-seat.box-seat-bottom .pro-text {
        width: 100%;
    }
}

.v-light .box-seat.box-seat-bottom .pro-text h3 {
    color: #000;
}

.box-seat.box-seat-bottom .pro-text p {
    border: 0;
    padding-left: 0;
}

.v-light .box-seat.box-seat-bottom .pro-text p {
    color: #0009;
}

@media only screen and (max-width: 575px) {
    .box-seat.box-seat-center .inner-img {
        height: 80vh;
    }
}

.box-seat.box-seat-center .pro-text {
    max-width: 80%;
    right: 10%;
    bottom: unset;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: rgba(33, 33, 33, 0.7);
}

@media only screen and (max-width: 991px) {
    .box-seat.box-seat-center .pro-text {
        max-width: 100%;
        right: 0;
        padding: 40px 20px;
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .box-seat.box-seat-center .pro-text {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .box-seat.box-seat-center .pro-text {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .box-seat.box-seat-qute .pro-text {
        position: relative;
        margin-left: 0;
        margin-right: 0;
    }
}

.mask-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(70% + 20px);
    height: 100%;
    background-color: #212121;
    z-index: -1;
}

.v-light .mask-bg {
    background-color: #e6e6e6;
}

.slider-project {
    position: relative;
}

.slider-project .item-project {
    height: 85vh;
}

.slider-project .slick-list {
    cursor: -webkit-grab;
    cursor: grab;
}

.slider-project .slick-slide {
    overflow: hidden;
}

.slider-project .slick-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    -o-transition: transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
}

.slider-project .slick-slide.slick-current img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.slider-project.slider-project-3 .item-project {
    height: 75vh;
}

.slider-project.slider-project-3.slider-project-min-height .item-project {
    height: 55vh;
}

.slider-project.slider-project-3 .slick-list {
    padding: 0 20% 0 20%;
}

@media only screen and (max-width: 768px) {
    .slider-project.slider-project-3 .slick-list {
        padding: 0 10% 0 10%;
    }
}

@media only screen and (max-width: 575px) {
    .slider-project.slider-project-3 .slick-list {
        padding: 0 0 0 0;
    }
}

.slider-project.slider-project-3 .slick-slide {
    margin: 0 10px;
}

.slider-project.slider-project-3 .slick-slide img {
    padding-left: 30px;
    padding-right: 30px;
}

@media only screen and (max-width: 575px) {
    .slider-project.slider-project-3 .slick-slide img {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.box-gallery-vertical {
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 991px) {
    .box-gallery-vertical .bg-section {
        position: relative;
        height: auto;
    }
}

.box-gallery-vertical .title-cover {
    text-align: left;
}

.box-gallery-vertical.box-gallery-vertical-order .mask-bg {
    left: 0;
    right: auto;
}

.box-gallery-vertical.box-gallery-vertical-order .row .col-lg-6:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.box-gallery-vertical.box-gallery-vertical-order .box-info {
    padding-right: 50px;
    padding-left: 0;
}

@media only screen and (max-width: 991px) {
    .box-gallery-vertical.box-gallery-vertical-order .box-info {
        padding: 0 0 30px;
    }
}

.box-gallery-vertical.box-gallery-vertical-order .box-info .vertical-title::before {
    display: none;
}

.box-gallery-vertical [data-dsn-grid="moveUp"] {
    height: 100vh;
}

.box-gallery-vertical [data-dsn-grid="moveUp"].h-100 {
    height: 100%;
}

.box-gallery-vertical .vertical-title {
    position: relative;
}

.box-gallery-vertical .vertical-title::before {
    content: "";
    height: 1px;
    background: #fff;
    position: absolute;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    left: -25px;
    right: auto;
    width: 100px;
    top: 50%;
}

.v-light .box-gallery-vertical .vertical-title::before {
    background-color: var(--body-bg);
}

.box-gallery-vertical .box-info {
    position: relative;
    padding-left: 80px;
    padding-right: 30px;
    max-width: 570px;
}

.box-gallery-vertical h6 {
    font-family: "Proxima Nova", sans-serif;
    margin-bottom: 20px;
    line-height: 1.6;
}

.box-gallery-vertical .back_stage__subtitle {
    color: #fff;
    max-width: 270px;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
    .box-gallery-vertical {
        padding: 0;
    }

    .box-gallery-vertical .box-im {
        margin: 0;
        max-width: 100%;
    }

    .box-gallery-vertical .mask-bg {
        display: none;
    }

    .box-gallery-vertical [data-dsn-grid="moveUp"] {
        height: 80vh;
    }

    .box-gallery-vertical .box-info {
        padding: 30px;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 991px) and (max-width: 991px) {
    .box-gallery-vertical .box-info {
        padding: 80px 60px;
    }
}

@media only screen and (max-width: 991px) {
    .box-gallery-vertical .box-info .vertical-title:before {
        display: none;
    }

    .box-gallery-vertical .box-info .vertical-title p {
        font-size: 14px;
    }

    .box-gallery-vertical h6 {
        margin-bottom: 10px;
        font-weight: 600;
    }

    .box-gallery-vertical .link-custom {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .box-gallery-vertical .box-im {
        margin: 0;
        max-width: 100%;
    }

    .box-gallery-vertical .box-info {
        margin-bottom: 0;
    }

    .box-gallery-vertical .box-info .vertical-title h6 {
        font-size: 16px;
    }

    .box-gallery-vertical .box-info .vertical-title p {
        font-weight: 400;
    }
}

@media only screen and (max-width: 575px) {
    .box-gallery-vertical .box-info {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.box-gallery-vertical .mask-bg + div:not(.container) {
    overflow: hidden;
}

.box-gallery-vertical.box-gallery-content {
    padding: 0;
}

.box-gallery-vertical.box-gallery-content .mask-bg {
    display: none;
}

.box-gallery-vertical.box-gallery-content .bg-mask-content {
    position: relative;
}

@media only screen and (max-width: 991px) {
    .box-gallery-vertical.box-gallery-content .bg-mask-content {
        margin-bottom: 0;
    }
}

.box-gallery-vertical.box-gallery-content .bg-mask-content .mask-bg-2 {
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 50%;
    right: 50%;
    margin-left: -30vw;
    margin-right: -50vw;
    background-color: #212121;
    border-radius: 7px;
}

.v-light .box-gallery-vertical.box-gallery-content .bg-mask-content .mask-bg-2 {
    background-color: #e6e6e6;
}

@media only screen and (max-width: 991px) {
    .box-gallery-vertical.box-gallery-content .bg-mask-content .mask-bg-2 {
        display: none;
    }
}

.box-gallery-vertical.box-gallery-content .bg-mask-content h6,
.box-gallery-vertical.box-gallery-content .bg-mask-content p {
    position: relative;
}

.box-gallery-vertical.box-gallery-content.box-gallery-vertical-order .bg-mask-content {
    z-index: 1;
}

.box-gallery-vertical.box-gallery-content.box-gallery-vertical-order .bg-mask-content .mask-bg-2 {
    width: 58vw;
}

@media only screen and (min-width: 576px) {
    .fill-right-container {
        width: calc(100% - calc(-100vw / 2 + 100% / 2) - 15px);
    }
}

.full-width {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

@media only screen and (max-width: 768px) {
    .colection-image.background-theme {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 768px) {
    .colection-image .half-bg-bottom {
        display: none;
    }
}

.colection-image .project-image-collage {
    display: -ms-grid;
    display: grid;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.colection-image .project-image-collage.project-collage-one-col {
    display: block;
}

.colection-image .project-image-collage.project-collage-one-col a:nth-of-type(n + 2) {
    margin-top: 50px;
}

.colection-image .project-image-collage.project-collage-one-col a:nth-of-type(2),
.colection-image .project-image-collage.project-collage-one-col a:nth-of-type(6) {
    width: 60%;
    margin-left: auto;
}

@media only screen and (max-width: 575px) {
    .colection-image .project-image-collage.project-collage-one-col a:nth-of-type(2),
    ection-image .project-image-collage.project-collage-one-col a:nth-of-type(6) {
        width: 100%;
        margin-left: 0;
    }
}

.colection-image .project-image-collage.project-collage-one-col a:nth-of-type(3),
.colection-image .project-image-collage.project-collage-one-col a:nth-of-type(7) {
    width: 40%;
}

@media only screen and (max-width: 575px) {
    .colection-image .project-image-collage.project-collage-one-col a:nth-of-type(3),
    ection-image .project-image-collage.project-collage-one-col a:nth-of-type(7) {
        width: 100%;
    }
}

.colection-image .project-image-collage.project-collage-one-col a:nth-of-type(4),
.colection-image .project-image-collage.project-collage-one-col a:nth-of-type(8) {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 575px) {
    .colection-image .project-image-collage.project-collage-one-col a:nth-of-type(4),
    ection-image .project-image-collage.project-collage-one-col a:nth-of-type(8) {
        width: 100%;
        margin-left: 0;
    }
}

.colection-image .project-image-collage.project-collage-three-col {
    -ms-grid-columns: 33.33% 33.33% 33.33%;
    grid-template-columns: 33.33% 33.33% 33.33%;
}

@media only screen and (max-width: 768px) {
    .colection-image .project-image-collage.project-collage-three-col {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }

    .colection-image .project-image-collage.project-collage-three-col a img {
        height: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .colection-image .project-image-collage {
        -ms-grid-columns: unset;
        grid-template-columns: unset;
        grid-column-gap: 80px;
        grid-row-gap: 80px;
    }
}

.colection-image .project-image-collage[data-dsn-grid="moveUp"] {
    height: 70vh;
}

.colection-image .project-image-collage a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.colection-image .project-image-collage a img {
    height: 70vh;
}

@media only screen and (max-width: 768px) {
    .colection-image .project-image-collage a img {
        height: auto;
    }
}

@media only screen and (max-width: 768px) {
    .colection-image .project-image-collage a {
        height: auto;
    }
}

@media only screen and (max-width: 575px) {
    .colection-image .project-image-collage {
        -ms-grid-columns: unset;
        grid-template-columns: unset;
    }
}

.colection-image .project-image-collage.project-collage-two-left {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.colection-image .project-image-collage.project-collage-two-left a:first-of-type {
    padding-right: 10%;
}

@media only screen and (max-width: 768px) {
    .colection-image .project-image-collage.project-collage-two-left a:first-of-type {
        padding-right: 0;
    }
}

.colection-image .project-image-collage.project-collage-two-left a:first-of-type img {
    height: 70%;
}

@media only screen and (max-width: 768px) {
    .colection-image .project-image-collage.project-collage-two-left a:first-of-type img {
        height: auto;
    }
}

@media only screen and (max-width: 768px) {
    .colection-image .project-image-collage.project-collage-two-left {
        -ms-grid-columns: unset;
        grid-template-columns: unset;
        grid-column-gap: 80px;
        grid-row-gap: 80px;
        height: auto;
    }
}

.colection-image .project-image-collage.project-collage-two-right {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
}

.colection-image .project-image-collage.project-collage-two-right a:last-of-type {
    padding-left: 10%;
}

@media only screen and (max-width: 768px) {
    .colection-image .project-image-collage.project-collage-two-right a:last-of-type {
        padding-left: 0;
    }
}

.colection-image .project-image-collage.project-collage-two-right a:last-of-type img {
    height: 70%;
}

@media only screen and (max-width: 768px) {
    .colection-image .project-image-collage.project-collage-two-right a:last-of-type img {
        height: auto;
    }
}

@media only screen and (max-width: 768px) {
    .colection-image .project-image-collage.project-collage-two-right {
        -ms-grid-columns: unset;
        grid-template-columns: unset;
        grid-column-gap: 80px;
        grid-row-gap: 80px;
        height: auto;
    }
}

.gallery-col {
    position: relative;
    overflow: hidden;
}

.v-light .gallery-col {
    background-color: #e6e6e6;
}

.gallery-col .box-im {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.gallery-col .box-im a {
    height: 70vh;
}

@media only screen and (max-width: 991px) {
    .gallery-col .box-im {
        padding: 40px 40px 40px 60px;
    }
}

@media only screen and (max-width: 768px) {
    .gallery-col .box-im {
        padding: 80px 60px;
    }

    .gallery-col .box-im .caption {
        left: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .gallery-col .box-im {
        padding: 80px 20px;
    }

    .gallery-col .box-im .caption {
        left: -20px;
    }
}

.gallery-col .box-im:nth-child(even) {
    background-color: var(--body-bg);
}

.v-light .gallery-col .box-im:nth-child(even) {
    background-color: #f9f9f9;
}

.gallery-col .box-im .image-zoom {
    width: 100%;
    display: inline-block;
    position: relative;
    vertical-align: bottom;
    text-align: center;
}

.gallery-col .box-im .image-zoom img {
    max-width: 100%;
    -webkit-transition: all 750ms ease-in-out;
    -o-transition: all 750ms ease-in-out;
    transition: all 750ms ease-in-out;
}

.project-image-vertical {
    position: relative;
}

@media only screen and (max-width: 768px) {
    .project-image-vertical .row {
        display: -ms-grid;
        display: grid;
        grid-column-gap: 40px;
        grid-row-gap: 40px;
    }
}

.project-image-vertical .image-vertical-item {
    position: relative;
    margin-top: 30px;
}

.project-image-vertical .image-vertical-item:first-of-type {
    margin-top: 0;
}

.project-image-vertical .image-vertical-item .captions {
    background-color: #f13c46;
    padding: 30px 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    bottom: 0;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .project-image-vertical .image-vertical-item .captions {
        padding: 10px;
    }
}

.v-light .project-image-vertical .image-vertical-item .captions {
    color: #000;
}

.project-image-vertical .image-vertical-item a {
    width: 100%;
    height: 95vh;
}

@media only screen and (max-width: 991px) {
    .project-image-vertical .image-vertical-item a {
        height: 70vh;
    }
}

@media only screen and (max-width: 768px) {
    .project-image-vertical .image-vertical-item a {
        height: 50vh;
    }
}

.project-image-vertical .image-vertical-item:nth-of-type(odd) .captions {
    right: 2.5%;
}

@media only screen and (max-width: 768px) {
    .project-image-vertical .image-vertical-item:nth-of-type(odd) .captions {
        right: auto;
        left: 15px;
        bottom: 15px;
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
        writing-mode: inherit;
    }
}

@media only screen and (max-width: 768px) {
    .project-image-vertical .image-vertical-item:nth-of-type(even) a {
        padding-left: 0;
        margin-top: 0;
    }
}

.project-image-vertical .image-vertical-item:nth-of-type(even) .captions {
    left: 2.5%;
}

@media only screen and (max-width: 768px) {
    .project-image-vertical .image-vertical-item:nth-of-type(even) .captions {
        left: 15px;
        bottom: 15px;
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
        writing-mode: inherit;
    }
}

.slider-project-swiper {
    position: relative;
}

.slider-project-swiper[data-dsn-grid="moveUp"] {
    height: 70vh;
}

.slider-project-swiper .swiper-container {
    width: 100%;
    height: 100%;
}

.slider-project-swiper .swiper-slide {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 70%;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .slider-project-swiper .swiper-slide {
        width: 100%;
    }
}

.slider-project-swiper .swiper-slide img {
    width: auto;
}

.swiper-project .swiper-slide {
    width: 65%;
    height: 70vh;
    margin-right: 8vw;
}

@media only screen and (max-width: 768px) {
    .swiper-project .swiper-slide {
        width: 100%;
        margin-right: 0;
        height: 50vh;
    }
}

.bg-color-global {
    background-color: var(--body-bg);
}

.v-light .bg-color-global {
    background-color: #f9f9f9;
}

.wrapper > *:first-child.dsn-under-header.our-work .box-title {
    margin-top: 40px;
}

@media only screen and (max-width: 991px) {
    .wrapper > *:first-child.dsn-under-header.our-work .box-title {
        margin-top: 0;
        height: auto;
    }
}

@media only screen and (max-width: 991px) {
    .wrapper > *:first-child.dsn-under-header.our-work .box-title .section-title h2 {
        max-width: 550px;
    }
}

@media only screen and (max-width: 991px) {
    .wrapper > *:first-child.dsn-under-header.our-work .box-title .dsn-btn-inner {
        display: none;
    }
}

.wrapper > *:first-child.dsn-under-header.our-work .section-title {
    display: inherit;
}

.wrapper > *:first-child.dsn-under-header.our-work .our-work-nav {
    width: 100%;
    left: auto;
    margin-left: auto;
    right: 0;
}

@media only screen and (max-width: 991px) {
    .wrapper > *:first-child.dsn-under-header.our-work .our-work-nav {
        display: block;
    }
}

.wrapper > *:first-child.dsn-under-header.our-work .work-item {
    height: 50vh;
}

@media only screen and (min-width: 992px) {
    .wrapper > *:first-child.dsn-under-header {
        position: relative;
        margin-top: -80px;
        z-index: 2;
    }

    .wrapper > *:first-child.dsn-under-header .section-title,
    rapper > *:first-child.dsn-under-header .section-title-2 {
        display: none;
    }
}

.dsn-effect-scroll:not(.dsn-mobile) #dsn-scrollbar,
.sidebar-single,
.dsn-work-scrollbar {
    overflow: hidden;
    height: 100vh;
}

.dsn-effect-scroll:not(.dsn-mobile) #dsn-scrollbar .scrollbar-track,
.sidebar-single .scrollbar-track,
.dsn-work-scrollbar .scrollbar-track {
    background: none;
    width: 5px;
}

.dsn-effect-scroll:not(.dsn-mobile) #dsn-scrollbar .scrollbar-track .scrollbar-thumb,
.sidebar-single .scrollbar-track .scrollbar-thumb,
.dsn-work-scrollbar .scrollbar-track .scrollbar-thumb {
    background: #424242;
    width: 5px;
}

.admin-bar.dsn-effect-scroll:not(.dsn-mobile) #dsn-scrollbar,
.sidebar-single,
.dsn-work-scrollbar {
    height: calc(100vh - 46px);
}

@media screen and (min-width: 783px) {
    .admin-bar.dsn-effect-scroll:not(.dsn-mobile) #dsn-scrollbar,
    ebar-single,
    -work-scrollbar {
        height: calc(100vh - 32px);
    }
}

.locked-scroll #dsn-scrollbar {
    background-color: var(--body-bg);
}

/* --------------------------------------------------------------
## Header
-------------------------------------------------------------- */
/* -------------------------------------------------------
                   Header
-------------------------------------------------------- */
.black-background {
    position: absolute;
    top: 0;
    height: 100%;
    background-color: #111;
    z-index: 1;
    height: calc(100%);
    width: 30%;
}

@media only screen and (max-width: 991px) {
    .black-background {
        display: none;
    }
}

.header-project .link-vist {
    bottom: 30px;
    left: 80px;
    z-index: 2;
}

@media only screen and (max-width: 991px) {
    .header-project .link-vist {
        left: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .header-project .link-vist {
        left: 20px;
    }
}

.header-project .scroll-d {
    right: 80px;
}

@media only screen and (max-width: 991px) {
    .header-project .scroll-d {
        right: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .header-project .scroll-d {
        right: 20px;
    }
}

.header-project .metas span {
    background-color: #f13c46;
    padding: 5px 10px;
}

@media only screen and (max-width: 991px) {
    .header-project .content {
        padding-left: 0;
        padding-right: 0;
    }
}

.dsn-ajax-loader .title.line-before,
.dsn-ajax-loader .title.line-after,
.header-project .title.line-before,
.header-project .title.line-after,
.next-project .title.line-before,
.next-project .title.line-after {
    padding: 0 70px;
}

@media only screen and (max-width: 768px) {
    .dsn-ajax-loader .title.line-before,
    -ajax-loader .title.line-after,
    eader-project .title.line-before,
    eader-project .title.line-after,
    ext-project .title.line-before,
    ext-project .title.line-after {
        padding: 0;
    }
}

.dsn-ajax-loader .title.line-before:before,
.header-project .title.line-before:before,
.next-project .title.line-before:before {
    left: 0;
}

.dsn-ajax-loader .title.line-after:after,
.header-project .title.line-after:after,
.next-project .title.line-after:after {
    right: 0;
}

.dsn-header-half .bg-container {
    width: 65%;
}

@media only screen and (max-width: 768px) {
    .dsn-header-half .bg-container {
        width: 100%;
    }
}

.dsn-header-half .justify-content-end .content {
    padding-right: 20%;
}

.header-normal .content-hero {
    padding: 150px 0;
}

.header-normal .content-hero.content-hero-custom {
    width: calc(100% - 350px - 6vw);
    padding-left: 30px;
    padding-right: 30px;
}

@media only screen and (max-width: 991px) {
    .header-normal .content-hero.content-hero-custom {
        width: calc(100% - 250px - 6vw);
    }
}

@media only screen and (max-width: 768px) {
    .header-normal .content-hero.content-hero-custom {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.header-normal .content-hero.content-hero-custom p {
    max-width: 670px;
}

.header-normal .title span {
    color: #f13c46;
}

.header-normal .box-right {
    width: calc(350px + 6vw);
    top: 0;
    left: 0;
}

@media only screen and (max-width: 991px) {
    .header-normal .box-right {
        width: calc(250px + 6vw);
    }
}

@media only screen and (max-width: 768px) {
    .header-normal .box-right {
        display: none;
    }
}

.header-normal .box-right .bg-section {
    width: calc(100% - 6vw);
}

.header-normal .box-right .w-100 {
    width: 100%;
    padding-right: 30px;
}

.header-normal .box-right .box-text {
    position: absolute;
    left: 100%;
    bottom: 50%;
    z-index: 2;
    -webkit-transform: rotate(-90deg) translateX(-50%);
    -ms-transform: rotate(-90deg) translateX(-50%);
    transform: rotate(-90deg) translateX(-50%);
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    mix-blend-mode: difference;
}

.header-normal .box-right .box-text h3 {
    text-transform: uppercase;
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 3vw;
}

.header-normal .box-right .img-letter {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 6vw;
    height: 24vh;
    -o-object-fit: contain;
    object-fit: contain;
}

.header-normal .box-right .img-letter.left-img {
    right: 6vw;
}

.header-normal .box-right .img-letter.right-img {
    right: 0;
}

.header-page .content-hero {
    padding: 80px 0;
}

@media only screen and (max-width: 768px) {
    .header-page .content-hero {
        padding: 80px 15px;
    }
}

.header-page .content-hero .title span {
    color: #f13c46;
}

.header-page .section-sub-title,
.header-normal .section-sub-title {
    color: #f13c46;
}

.header-page.text-center .scroll-down a,
.header-normal.text-center .scroll-down a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.overlay-header:after {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--body-bg)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, var(--body-bg), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, var(--body-bg), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, var(--body-bg), rgba(0, 0, 0, 0));
    z-index: 1;
}

.v-light .overlay-header:after {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#f9f9f9), to(rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(bottom, #f9f9f9, rgba(255, 255, 255, 0));
    background-image: -o-linear-gradient(bottom, #f9f9f9, rgba(255, 255, 255, 0));
    background-image: linear-gradient(to top, #f9f9f9, rgba(255, 255, 255, 0));
}

.animate-text-section .dsn-text .animate-text-section .dsn-text {
    overflow: hidden;
    will-change: transform;
}

.animate-text-section .dsn-text .dsn-word-wrapper {
    opacity: 0;
    visibility: hidden;
    will-change: transform;
    -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
    -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
    transform: translateY(50%) rotate(15deg) scale(0.8);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-transition-delay: calc(50ms * var(--word-dsn-index) + 150ms);
    -o-transition-delay: calc(50ms * var(--word-dsn-index) + 150ms);
    transition-delay: calc(50ms * var(--word-dsn-index) + 150ms);
}

.animate-text-section .dsn-text.dsn-active .dsn-word-wrapper {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
    -ms-transform: translateY(0) rotate(0deg) scale(1);
    transform: translateY(0) rotate(0deg) scale(1);
}

/* --------------------------------------------------------------
## pages
-------------------------------------------------------------- */
/* -------------------------------------------------------
                   09 - Slider
-------------------------------------------------------- */
.main-slider.demo-2 .slide-inner,
.main-slider.demo-2 .dsn-slider-content {
    width: calc(100% - 280px);
    left: 140px;
}

@media only screen and (max-width: 991px) {
    .main-slider.demo-2 .slide-inner,
    n-slider.demo-2 .dsn-slider-content {
        width: calc(100% - 150px);
        left: 75px;
    }
}

@media only screen and (max-width: 768px) {
    .main-slider.demo-2 .slide-inner,
    n-slider.demo-2 .dsn-slider-content {
        width: 100%;
        left: 0;
    }
}

/* @media only screen and (max-width: 575px) {
    .dsn-slider-content  {
        width: 100%;
        left:auto;
        right: auto;
    }
} */

/* @media only screen and (min-width: 575px) { 
    .main-slider.demo-2 .slide-inner,
.main-slider.demo-2 .dsn-slider-content {
    width: calc(300% - 280px);
    left: 0;
}
 } */

.main-slider .dsn-slider-content {
    top: 0;
    z-index: 1;
    pointer-events: none;
}

.main-slider .dsn-slider-content .title {
    max-width: 750px;
}

.main-slider .dsn-slider-content .slide-content {
    color: #fff;
    text-align: center;
    padding: 15px;
}

.main-slider .dsn-slider-content .slide-content p {
    max-width: 500px;
    padding-left: 20px;
    border-left: 2px solid #fff;
}

.main-slider .dsn-slider-content .slide-content.dsn-active {
    z-index: 3;
}

.main-slider .dsn-slider-content .slide-content.dsn-active .metas,
.main-slider .dsn-slider-content .slide-content.dsn-active .dsn-btn,
.main-slider .dsn-slider-content .slide-content.dsn-active .description,
.main-slider .dsn-slider-content .slide-content.dsn-active .title {
    pointer-events: auto;
}

.main-slider .dsn-slider-content .slide-content.dsn-active.dsn-active-cat .metas,
.main-slider .dsn-slider-content .slide-content.dsn-active.dsn-active-cat .dsn-btn,
.main-slider .dsn-slider-content .slide-content.dsn-active.dsn-active-cat .description {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    visibility: visible;
}

.main-slider .dsn-slider-content .slide-content:not(.dsn-active) .title {
    opacity: 0;
    visibility: hidden;
}

.main-slider .dsn-slider-content .metas {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.main-slider .dsn-slider-content .dsn-btn,
.main-slider .dsn-slider-content .description {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
}

.main-slider .dsn-slider-content .metas,
.main-slider .dsn-slider-content .dsn-btn,
.main-slider .dsn-slider-content .description {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.main-slider .dsn-slider-content .dsn-btn {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.main-slider .dsn-slider-content .description {
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.main-slider .box-next,
.main-slider .description,
.main-slider .dsn-controls {
    z-index: 2;
}

.main-slider .nav-slider {
    bottom: 0;
    height: 100px;
    width: 300px;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .main-slider .nav-slider {
        display: none;
    }
}

.main-slider .nav-slider.box-next {
    right: 80px;
}

@media only screen and (max-width: 991px) {
    .main-slider .nav-slider.box-next {
        right: 15px;
    }
}

.main-slider .nav-slider.box-next .arrow {
    right: 0;
}

.main-slider .nav-slider.box-prev {
    left: 80px;
}

@media only screen and (max-width: 991px) {
    .main-slider .nav-slider.box-prev {
        left: 15px;
    }
}

.main-slider .nav-slider.box-prev .arrow {
    left: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.main-slider .nav-slider.box-prev .img-box-next > .image-bg,
.main-slider .nav-slider.box-prev .content-box-next {
    left: 60px;
    text-align: right;
}

.main-slider .nav-slider .img-box-next {
    width: 100%;
    left: 0;
}

.main-slider .nav-slider .img-box-next .arrow {
    position: absolute;
    height: 100%;
    width: 50px;
    padding: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #e6e6e6;
}

@media only screen and (max-width: 768px) {
    .main-slider .nav-slider .img-box-next .arrow {
        display: none;
    }
}

.main-slider .nav-slider .img-box-next svg {
    width: 25px;
    fill: #000;
    cursor: pointer;
}

.main-slider .nav-slider .img-box-next svg path {
    fill: #000;
}

.main-slider .nav-slider .content-box-next {
    position: absolute;
    padding: 20px;
    z-index: 2;
}

@media only screen and (max-width: 768px) {
    .main-slider .nav-slider .content-box-next {
        width: 100%;
        z-index: 2;
    }

    .main-slider .nav-slider .content-box-next .metas {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .main-slider .nav-slider .content-box-next {
        padding: 10px;
    }
}

.main-slider .nav-slider .content-box-next .metas span {
    font-size: 11px;
}

.main-slider .nav-slider .content-box-next .title-next {
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .main-slider .nav-slider .content-box-next .title-next {
        margin-bottom: 0;
    }
}

.main-slider .nav-slider .img-box-next > .image-bg,
.main-slider .nav-slider .content-box-next {
    width: calc(100% - 60px);
}

.main-slider .footer-slider {
    bottom: 20px;
    left: 0;
    z-index: 2;
}

.main-slider .swiper-pagination {
    bottom: 0;
}

.main-slider .metas span {
    background-color: #e82a2a;
    padding: 5px 10px;
}

/* -------------------------------------------------------
                   09 - portfolio
-------------------------------------------------------- */
.work-inner .title-cover {
    left: 0;
}

.work-inner .filterings {
    z-index: 2;
}

@media only screen and (max-width: 991px) {
    .work-inner .filterings {
        margin-bottom: 50px;
    }
}

.work-inner .filterings .filtering-wrap .filtering {
    overflow: auto;
}

.work-inner .filterings .filtering-wrap .filtering button {
    width: auto;
    margin: 0 30px 0 0;
    padding: 0 5px 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media only screen and (max-width: 575px) {
    .work-inner .filterings .filtering-wrap .filtering button {
        padding-top: 0;
        padding-bottom: 10px;
        margin: 0 10px 10px 0;
    }
}

.v-light .work-inner .filterings .filtering-wrap .filtering button {
    color: #000;
}

.work-inner .filterings .filtering-wrap .filtering button.active {
    font-weight: bold;
    border-bottom: solid 2px #f13c46;
}

.work-inner [data-dsn-grid="moveUp"] {
    height: 100%;
}

.work-inner [data-dsn="video"] {
    position: absolute;
    top: 0;
}

.work-inner .work-item {
    display: inline-block;
    padding-right: 15px;
    padding-left: 15px;
    width: 50%;
}

.work-inner .work-item--width100 {
    width: 100%;
}

.work-inner .work-item--width50 {
    width: 50%;
}

.work-inner .work-item:nth-child(n + 3) {
    margin-top: 30px;
}

@media only screen and (max-width: 575px) {
    .work-inner .work-item {
        width: 100%;
    }

    .work-inner .work-item:nth-child(n + 2) {
        margin-top: 30px;
    }
}

.work-inner .work-item .img-next-box {
    position: relative;
}

.work-inner .work-item .item-info {
    width: calc(100% - 30px);
    left: 15px;
    position: absolute;
    bottom: 0;
    border-bottom: 3px solid #f13c46;
    border-radius: 0 0 2px 2px;
}

/* -------------------------------------------------------
                   Blog
-------------------------------------------------------- */
.root-blog {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.root-blog .post-list-item {
    position: relative;
    margin-bottom: 120px;
}

@media only screen and (max-width: 991px) {
    .root-blog .post-list-item {
        margin-bottom: 80px;
    }
}

.root-blog .post-list-item figure {
    position: relative;
    width: 100%;
}

.root-blog .post-list-item figure a {
    width: 100%;
}

.root-blog .post-list-item figure img {
    position: relative;
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 80vh;
}

.root-blog .post-list-item .post-list-item-content {
    margin-top: 30px;
    width: 100%;
    position: relative;
}

.root-blog .post-list-item .post-list-item-content .post-info-date {
    margin-right: 20px;
}

@media only screen and (max-width: 575px) {
    .root-blog .post-list-item .post-list-item-content {
        padding-left: 0;
        padding-right: 0;
    }
}

.root-blog .post-list-item .post-list-item-content .post-info-top a {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.2px;
    word-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}

.v-light .root-blog .post-list-item .post-list-item-content .post-info-top a {
    color: var(--body-bg);
}

.root-blog .post-list-item .post-list-item-content .post-info-top > div {
    position: relative;
    display: inline-block;
}

.root-blog .post-list-item .post-list-item-content h3 {
    margin-bottom: 30px;
}

.root-blog .post-list-item .post-list-item-content .post-author {
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

.root-blog .post-list-item .post-list-item-content .post-author img {
    width: 60px;
    height: 60px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.root-blog .post-list-item .post-list-item-content .post-author span {
    font-weight: 300;
}

.root-blog .post-list-item .post-list-item-content .post-author span a {
    color: #fff;
    padding-left: 5px;
    letter-spacing: 2px;
}

.news-content {
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 991px) {
    .news-content {
        padding-left: 0;
        padding-right: 0;
    }
}

.news-content .news-content-inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.news-content .News-socials-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 23%;
    padding-right: 30px;
}

@media only screen and (max-width: 991px) {
    .news-content .News-socials-wrapper {
        width: 26%;
    }
}

@media only screen and (max-width: 768px) {
    .news-content .News-socials-wrapper {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.news-content .News-socials-wrapper .news-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.news-content .News-socials-wrapper .News-news-date {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.8;
}

.v-light .news-content .News-socials-wrapper .News-news-date {
    color: var(--body-bg);
}

.news-content .News-socials-wrapper .title-caption {
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .news-content .News-socials-wrapper .title-caption {
        display: inline-block;
        margin-bottom: 10px;
    }
}

.news-content .News-socials-wrapper .cat {
    display: block;
}

@media only screen and (max-width: 768px) {
    .news-content .News-socials-wrapper .cat {
        width: 100%;
        margin-bottom: 30px;
    }
}

.news-content .News-socials-wrapper .cat a {
    display: block;
    text-decoration: none;
}

@media only screen and (max-width: 768px) {
    .news-content .News-socials-wrapper .cat a {
        display: inline-block;
    }
}

.news-content .News-socials-wrapper .cat a span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background-color: #090909;
    padding: 5px 15px;
    margin: 0 5px 5px;
}

.v-light .news-content .News-socials-wrapper .cat a span {
    background-color: #e6e6e6;
    color: var(--body-bg);
}

.news-content .News-socials-wrapper .cat a span:first-child {
    margin-left: 0;
}

.news-content .News-socials-wrapper .cat a span::last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
    .news-content .News-socials-wrapper .post-share {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .news-content .News-socials-wrapper .post-share ul {
        display: inline-block;
    }
}

.news-content .News-socials-wrapper .post-share ul li {
    list-style: none;
    margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
    .news-content .News-socials-wrapper .post-share ul li {
        display: inline-block;
        margin-left: 10px;
    }
}

.news-content .News-socials-wrapper .post-share ul li:last-child {
    margin-bottom: 0;
}

.news-content .News-socials-wrapper .post-share ul li a {
    position: relative;
    text-decoration: none;
    -webkit-transition: color 670ms linear 417ms;
    -o-transition: color 670ms linear 417ms;
    transition: color 670ms linear 417ms;
}

.news-content .News-socials-wrapper .post-share ul li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 45%;
    left: -0.15em;
    right: -0.15em;
    background: rgba(82, 83, 85, 0.19);
    background-size: 100% 100%;
    -webkit-transition: 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1), 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(0.98, 0) translateZ(0);
    transform: scale(0.98, 0) translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: -1;
    background-repeat: repeat-x;
}

.news-content .News-socials-wrapper .post-share ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    left: -0.025em;
    right: -0.075em;
    background: rgba(82, 83, 85, 0.19);
    background-size: 100% 100%;
    -webkit-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
    -o-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
    transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.news-content .News-socials-wrapper .post-share ul li a:hover:before {
    -webkit-transform: scale(1, 1.0) translateZ(0);
    transform: scale(1, 1.0) translateZ(0);
}

.news-content .News-socials-wrapper .post-share ul li a:hover:after {
    opacity: 0;
    -webkit-transition: 126.66667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: 126.66667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 126.66667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-content .post-content {
    position: relative;
    display: block;
    width: 77%;
}

@media only screen and (max-width: 991px) {
    .news-content .post-content {
        width: 74%;
    }
}

@media only screen and (max-width: 768px) {
    .news-content .post-content {
        width: 100%;
    }
}

.news-content .post-content > * {
    margin-bottom: 30px;
}

.news-content .post-content > *:first-child,
.news-content .post-content:first-child {
    margin-top: 0;
}

.news-content .post-content > *:last-child,
.news-content .post-content:last-child {
    margin-bottom: 0;
}

.news-content .post-content p {
    letter-spacing: -0.6px;
}

.news-content .post-content p a {
    display: inline-block;
}

.news-content .post-content blockquote {
    font-size: 20px;
    font-family: serif;
    color: #fff;
    font-style: italic;
    padding: 10px 0 10px 15px;
    border-left: 1px solid #cacaca;
}

.v-light .news-content .post-content blockquote {
    color: var(--body-bg);
    border-left: 1px solid #bebebe;
}

.news-content .post-content a {
    position: relative;
    text-decoration: none;
    -webkit-transition: color 670ms linear 417ms;
    -o-transition: color 670ms linear 417ms;
    transition: color 670ms linear 417ms;
}

.news-content .post-content a:before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 45%;
    left: -0.15em;
    right: -0.15em;
    background: rgba(82, 83, 85, 0.19);
    background-size: 100% 100%;
    -webkit-transition: 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1), 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(0.98, 0) translateZ(0);
    transform: scale(0.98, 0) translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: -1;
    background-repeat: repeat-x;
}

.news-content .post-content a:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    left: -0.025em;
    right: -0.075em;
    background: rgba(82, 83, 85, 0.19);
    background-size: 100% 100%;
    -webkit-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
    -o-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
    transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.news-content .post-content a:hover:before {
    -webkit-transform: scale(1, 1.0) translateZ(0);
    transform: scale(1, 1.0) translateZ(0);
}

.news-content .post-content a:hover:after {
    opacity: 0;
    -webkit-transition: 126.66667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: 126.66667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 126.66667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-content .post-tags {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px 0 0;
}

@media only screen and (max-width: 768px) {
    .news-content .post-tags {
        padding: 30px 0 0;
    }
}

.news-content .post-tags a {
    color: #fff;
    margin-right: 30px;
    display: inline-block;
    line-height: 1;
    float: left;
}

.v-light .news-content .post-tags a {
    color: var(--body-bg);
}

.news-content .post-tags a:before {
    content: "#";
    position: relative;
    margin-right: 5px;
    font-size: 14px;
    background-color: transparent;
    border: 0;
}

.news-content .post-tags a::after {
    display: none;
}

/* -------------------------------------------------------
                  contact
-------------------------------------------------------- */
.box-contact-form {
    position: relative;
    padding: 40px;
}

@media only screen and (max-width: 768px) {
    .box-contact-form {
        padding: 30px 15px 0;
    }
}

.box-contact-form .form-group {
    width: 100%;
}

.box-contact-form .form-group .help-block {
    color: red;
    font-weight: 600;
    margin-top: 15px;
}

.box-contact-form .form-group li {
    list-style: none;
}

.form-group {
    width: 100%;
    margin-bottom: 25px;
}

.entry-box label {
    text-transform: uppercase;
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: 16px;
}

.v-light .entry-box label {
    color: #000;
}

.entry-box input,
.entry-box textarea {
    font-size: 14px;
    width: 100%;
    background-color: transparent;
    border: none;
    color: #d7d7d7;
    border: 1px solid rgba(112, 112, 112, 0.5);
    margin: 0;
    padding: 10px 15px;
    letter-spacing: 2px;
    margin-top: 15px;
}

.v-light .entry-box input,
.v-light.entry-box textarea {
    color: #000;
    border-color: #bebebe;
}

.entry-box input::-webkit-input-placeholder,
.entry-box textarea::-webkit-input-placeholder {
    color: #d7d7d7;
    font-size: 14px;
    letter-spacing: 2px;
}

.entry-box input:-ms-input-placeholder,
.entry-box textarea:-ms-input-placeholder {
    color: #d7d7d7;
    font-size: 14px;
    letter-spacing: 2px;
}

.entry-box input::-ms-input-placeholder,
.entry-box textarea::-ms-input-placeholder {
    color: #d7d7d7;
    font-size: 14px;
    letter-spacing: 2px;
}

.entry-box input::placeholder,
.entry-box textarea::placeholder {
    color: #d7d7d7;
    font-size: 14px;
    letter-spacing: 2px;
}

.v-light .entry-box input::-webkit-input-placeholder,
.v-light.entry-box textarea::-webkit-input-placeholder {
    color: #000;
}

.v-light .entry-box input:-ms-input-placeholder,
.v-light.entry-box textarea:-ms-input-placeholder {
    color: #000;
}

.v-light .entry-box input::-ms-input-placeholder,
.v-light.entry-box textarea::-ms-input-placeholder {
    color: #000;
}

.v-light .entry-box input::placeholder,
.v-light.entry-box textarea::placeholder {
    color: #000;
}

.entry-box textarea {
    height: 80px;
}

.entry-box input {
    height: 100%;
}

.root-contact .box-info {
    padding: 40px;
}

@media only screen and (max-width: 768px) {
    .root-contact .box-info {
        padding: 30px 15px;
    }
}

.root-contact .box-info .bg-box {
    top: 0;
    left: 0;
    z-index: -1;
}

.root-contact .box-info .info-item .icon {
    margin-right: 15px;
}

.root-contact .box-info .info-item .icon i {
    font-size: 30px;
    color: #f13c46;
}

.map-custom {
    min-height: 50vh;
}

#map .gm-fullscreen-control,
#map .gm-bundled-control,
#map .gm-bundled-control-on-bottom,
#map .gmnoprint,
#map .gm-style-cc {
    display: none !important;
}

/* --------------------------------------------------------------
## Comments
-------------------------------------------------------------- */
.comments-post {
    position: relative;
    width: 100%;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.comments-post .comments-title {
    margin-bottom: 70px;
}

@media only screen and (max-width: 991px) {
    .comments-post .comments-title {
        margin-bottom: 35px;
    }
}

.comments-post .comments-title .subtitle {
    margin-bottom: 0;
}

.comments-post .comments-area {
    position: relative;
}

.comments-post .comments-area .comment-list > li.comment:first-child {
    margin-top: 0;
}

.comments-post .comments-area .comment-list > li.comment:first-child > .comment-body {
    padding-top: 0;
}

.comments-post .comments-area .comment {
    list-style: none;
    margin-top: 20px;
}

.comments-post .comments-area .comment .comment-body {
    position: relative;
    padding-top: 30px;
}

.comments-post .comments-area .comment .comment-body .comment-author {
    position: relative;
    top: 10px;
    left: 0;
    width: 64px;
    height: 64px;
    display: block;
    float: left;
}

@media only screen and (max-width: 575px) {
    .comments-post .comments-area .comment .comment-body .comment-author {
        width: 30px;
        height: 30px;
    }
}

.comments-post .comments-area .comment .comment-body .comment-author img {
    display: block;
    height: auto;
    max-width: 100%;
    border-radius: 50%;
}

.comments-post .comments-area .comment .comment-body .comment-text {
    padding: 0 0 0 90px;
    min-height: 64px;
}

@media only screen and (max-width: 575px) {
    .comments-post .comments-area .comment .comment-body .comment-text {
        padding: 0 0 0 40px;
    }
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-date {
    float: right;
    margin: 3px 5px 0 0;
    font-size: 13px;
    color: #b0b0b0;
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-date:before {
    content: "/";
    display: inline-block;
    margin-right: 5px;
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-info {
    position: relative;
    display: inline-block;
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-info .comment-name {
    float: left;
    margin: 0;
    font-weight: 700;
    font-size: 17px;
}

.comments-post .comments-area .comment .comment-body .comment-text .text-holder p {
    margin: 7px 0 10px;
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link {
    position: relative;
    text-decoration: none;
    -webkit-transition: color 670ms linear 417ms;
    -o-transition: color 670ms linear 417ms;
    transition: color 670ms linear 417ms;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    color: #fff;
}

.v-light .comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link {
    color: var(--body-bg);
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 45%;
    left: -0.15em;
    right: -0.15em;
    background: rgba(82, 83, 85, 0.19);
    background-size: 100% 100%;
    -webkit-transition: 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1), 380ms -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(0.98, 0) translateZ(0);
    transform: scale(0.98, 0) translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: -1;
    background-repeat: repeat-x;
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    left: -0.025em;
    right: -0.075em;
    background: rgba(82, 83, 85, 0.19);
    background-size: 100% 100%;
    -webkit-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
    -o-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
    transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:hover:before {
    -webkit-transform: scale(1, 1.0) translateZ(0);
    transform: scale(1, 1.0) translateZ(0);
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:hover:after {
    opacity: 0;
    -webkit-transition: 126.66667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: 126.66667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 126.66667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
}

.comments-post .comments-area .comment .children {
    margin-left: 90px;
}

@media only screen and (max-width: 575px) {
    .comments-post .comments-area .comment .children {
        margin-left: 40px;
    }
}

@media only screen and (max-width: 400px) {
    .comments-post .comments-area .comment .children {
        margin-left: 20px;
    }
}

.comments-post .comments-form {
    position: relative;
    width: 100%;
    margin-top: 120px;
}

@media only screen and (max-width: 991px) {
    .comments-post .comments-form {
        margin-top: 80px;
    }
}

/* --------------------------------------------------------------
## Archives
-------------------------------------------------------------- */
/* 404 & Not found */
/* --------------------------------------------------------------
## Footer
-------------------------------------------------------------- */
/* -------------------------------------------------------
                   Footer
-------------------------------------------------------- */
.footer {
    padding: 60px 0;
}

@media only screen and (max-width: 575px) {
    .footer .footer-block {
        margin-top: 30px;
        text-align: center;
    }

    .footer .footer-block.footer-block-logo {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-top: 0;
    }

    .footer .footer-block.footer-block-scroll-top {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .footer .footer-block.footer-block-scroll-top .scroll-top {
        margin-right: auto;
    }
}

@media only screen and (max-width: 575px) {
    .footer .footer-block .social-network {
        margin: auto;
    }
}

.footer .footer-block .socials {
    padding-left: 0;
}

.footer .footer-block .socials::before {
    display: none;
}

.footer .footer-block .logo-footer {
    width: 180px;
}

.footer .footer-block .logo-footer img.logo-dark {
    display: block;
}

.footer .footer-block .logo-footer img.logo-light {
    display: none;
}

.footer .footer-block .nav-footer li {
    margin-right: 20px;
}

@media only screen and (max-width: 575px) {
    .footer .footer-block .nav-footer li {
        margin-right: 10px;
    }
}

.footer .footer-block .nav-footer li:last-of-type {
    margin-right: 0;
}

.footer .footer-block .scroll-top {
    width: 55px;
}

.footer .footer-block .scroll-top img {
    width: 55px;
}

.footer .footer-block .scroll-top i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.footer .copright-text {
    font-size: 14px;
    letter-spacing: 1.5px;
}

.cap {
    position: absolute;
    bottom: 30px;
    left: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(#0e0e0e5c), to(#1b1515));
    background-image: -webkit-linear-gradient(left, #0e0e0e5c 0%, #1b1515 100%);
    background-image: -o-linear-gradient(left, #0e0e0e5c 0%, #1b1515 100%);
    background-image: linear-gradient(to right, #0e0e0e5c 0%, #1b1515 100%);
    padding: 4px 15px;
    color: #fff;
    z-index: 10;
}

.cap span {
    font-family: "Cinzel", serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.caption {
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    color: #fff;
    letter-spacing: 2px;
    font-family: "Cinzel", serif;
    font-size: 12px;
    position: relative;
    margin-top: 15px;
    text-transform: uppercase;
}

.v-light .caption {
    color: var(--body-bg);
}

.section-dsn-color * {
    color: inherit !important;
}

.work-inner.work-masonry .work-item .item-info {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}



.callout {
    width: 40%;
}

@media only screen and (max-width: 575px) {
    .callout {
        width: 80%;
    }
}