@charset "UTF-8";
/*-----------------------------------------------------------

  Template Name: Daro - Ajax Portfolio Showcase HTML Template
  Template URI: http://theme.dsngrid.com/droow
  Description: Daro 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 {
  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 {
  --dsn-background_color: #111;
  --dsn-heading-color: #fff;
  --dsn-body-color: #d7d7d7;
  --dsn-assistant-background-color: #191919;
  --dsn-assistant-body-color: #65bc7b;
  --dsn-border-color: #242424;
  --dsn-background_color-light: #f9f9f9;
  --dsn-heading-color-light: #000;
  --dsn-body-color-light: #0009;
  --dsn-assistant-background-color-light: #e6e6e6;
  --dsn-assistant-body-color-light: #d90a2c;
  --dsn-border-color-light: #bebebe;
}

/**
  Dark Color
 */
/**
  End Dark Color
 */
.background-section, .dsn-button-2.background-section.parallax-icon .icon-circle {
  background-color: var(--dsn-assistant-background-color);
}
.v-light .background-section, .v-light .dsn-button-2.background-section.parallax-icon .icon-circle, .dsn-button-2.background-section.parallax-icon .v-light .icon-circle {
  background-color: var(--dsn-assistant-background-color-light);
}

.background-theme {
  background-color: var(--dsn-assistant-body-color);
  -webkit-transition-property: background-color, color;
  -o-transition-property: background-color, color;
  transition-property: background-color, color;
}
.v-light .background-theme {
  background-color: var(--dsn-assistant-body-color-light);
}

.container.before_background {
  padding-right: 40px;
}
@media only screen and (max-width: 767px) {
  .container.before_background {
    padding-right: 30px;
  }
}
.container.before_background::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50vw;
  height: 100%;
  left: -50vw;
  background-color: inherit;
}
@media only screen and (max-width: 991px) {
  .container.before_background::before {
    right: -25%;
    left: -25%;
  }
}

.theme-color {
  color: var(--dsn-assistant-body-color);
}
.v-light .theme-color {
  color: var(--dsn-assistant-body-color-light);
}

.text-color-heading, .main-slider .box-next .content-box-next .metas span, .dsn-button-2 {
  color: var(--dsn-heading-color);
}
.v-light .text-color-heading, .v-light .main-slider .box-next .content-box-next .metas span, .main-slider .box-next .content-box-next .metas .v-light span, .v-light .dsn-button-2 {
  color: var(--dsn-heading-color-light);
}

.body-dark-color {
  color: var(--dsn-body-color);
}

.background-main, .dsn-button-2.background-main.parallax-icon .icon-circle, .background-section .bar.background-section, .dsn-button-2.background-section.parallax-icon .icon-circle .bar.background-section, .dsn-button-2.background-section.parallax-icon .bar.icon-circle {
  background-color: var(--dsn-background_color);
}
.v-light .background-main, .v-light .dsn-button-2.background-main.parallax-icon .icon-circle, .dsn-button-2.background-main.parallax-icon .v-light .icon-circle, .v-light .background-section .bar.background-section, .dsn-button-2.background-section.parallax-icon .v-light .icon-circle .bar.background-section, .v-light .dsn-button-2.background-section.parallax-icon .bar.icon-circle, .dsn-button-2.background-section.parallax-icon .v-light .icon-circle .bar.icon-circle {
  background-color: var(--dsn-background_color-light);
}

/*! 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: 14px;
  /* 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: var(--dsn-heading-color);
  font-weight: 500;
  line-height: 1.2;
  font-family: "DM Sans", sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.v-light h1,
.v-light h2,
.v-light h3,
.v-light h4,
.v-light h5,
.v-light h6 {
  color: var(--dsn-heading-color-light);
}

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

h2 {
  font-size: 40px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 20px;
}

.title, .editor-post-title__input {
  position: relative;
  color: var(--dsn-heading-color);
  font-size: 58px;
  word-break: break-word;
  letter-spacing: 1px;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 767px) {
  .title, .editor-post-title__input {
    font-size: 55px;
  }
}
@media only screen and (max-width: 575px) {
  .title, .editor-post-title__input {
    font-size: 45px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 400px) {
  .title, .editor-post-title__input {
    font-size: 40px;
  }
}

.sub-text-header {
  max-width: 520px;
  color: var(--dsn-body-color);
}

.dsn-title .title-tag, .dsn-heading-title.title-tag {
  position: relative;
  font-size: 42px;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}
@media only screen and (max-width: 767px) {
  .dsn-title .title-tag, .dsn-heading-title.title-tag {
    font-size: 32px;
  }
}

.dsn-title p {
  position: relative;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.dsn-title .border-bottom-title {
  padding-left: 70px;
}
.dsn-title.text-center {
  padding: 0;
}
.dsn-title.text-center span {
  display: none;
}
.dsn-title.text-center p {
  margin-left: 0;
}

.sm-title-block {
  position: relative;
  letter-spacing: 1px;
  font-size: 20px;
}
.sm-title-block:not(.dsn-heading-title) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .sm-title-block:not(.dsn-heading-title) {
    margin-bottom: 15px;
  }
}

.xs-title-block {
  position: relative;
  letter-spacing: 2px;
  font-size: 18px;
}

.title-block {
  position: relative;
  letter-spacing: 1px;
  font-size: 26px;
  font-family: "DM Sans", sans-serif;
}
.title-block:not(.dsn-heading-title) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .title-block:not(.dsn-heading-title) {
    margin-bottom: 15px;
  }
}

.border-bottom-title::before, .border-bottom-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.border-bottom-title::after {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
}
.v-light .border-bottom-title::after {
  background-color: var(--dsn-background_color);
}
.border-bottom-title::before {
  width: 60px;
  height: 1px;
  background: -o-linear-gradient(left, #eeeeee 0, #bababa 35%, #999 65%, #212121 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #eeeeee), color-stop(35%, #bababa), color-stop(65%, #999), to(#212121));
  background: linear-gradient(to right, #eeeeee 0, #bababa 35%, #999 65%, #212121 100%);
}
.v-light .border-bottom-title::before {
  background: -o-linear-gradient(left, #212121 0, #373636 35%, #373737 65%, #eeeeee 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #212121), color-stop(35%, #373636), color-stop(65%, #373737), to(#eeeeee));
  background: linear-gradient(to right, #212121 0, #373636 35%, #373737 65%, #eeeeee 100%);
}
@media only screen and (max-width: 767px) {
  .border-bottom-title {
    letter-spacing: 0;
  }
}

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

.text-underline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}

.title-h2 {
  font-size: 38px;
  letter-spacing: 2px;
}
@media only screen and (max-width: 991px) {
  .title-h2 {
    font-size: 35px;
    line-height: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .title-h2 {
    font-size: 25px;
  }
}

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

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

.fz-16 {
  font-size: 16px;
}

.letter-s1 {
  letter-spacing: 1px;
}

.heading-color {
  color: var(--dsn-heading-color);
}
.v-light .heading-color {
  color: var(--dsn-heading-color-light);
}

@media only screen and (max-width: 767px) {
  .title br, .sub-text-header br, .dsn-heading-title br, .dsn-title br, .sm-title-block br, .xs-title-block br, .title-block br, .title-h2 br, .vertical-title br {
    display: none;
  }
}

.dsn-heading-title a {
  color: inherit;
}
.v-light .dsn-heading-title a {
  color: inherit;
}

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

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

span:not(.elementor-edit-link-title):not(.d-block), a {
  display: inline-block;
}

blockquote cite {
  font-style: normal;
  font-family: "DM Sans", sans-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;
}

u {
  text-decoration: underline;
}

big {
  font-size: 125%;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: underline;
}

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

body {
  background-color: var(--dsn-background_color);
  line-height: 1.2;
  color: var(--dsn-body-color);
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-transition: 100ms;
  -o-transition: 100ms;
  transition: 100ms;
  -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 {
  color: var(--dsn-body-color-light);
  background-color: var(--dsn-background_color-light);
}

.main-root {
  position: relative;
}

.btn-play-inner-small svg {
  width: 45px;
  height: 45px;
}
.btn-play-inner-small svg .stroke,
.btn-play-inner-small svg .circle {
  fill: none;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}
.btn-play-inner-small svg .stroke {
  stroke: rgba(255, 255, 255, 0.3);
}
.btn-play-inner-small svg .circle {
  stroke: #fff;
  stroke-dashoffset: 700;
  stroke-dasharray: 700;
  stroke-linecap: butt;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
.btn-play-inner-small svg g {
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
}
.btn-play-inner-small:hover .circle {
  stroke-dashoffset: 0;
  stroke-dasharray: 700;
  -webkit-transition: all 2s cubic-bezier(0.46, 0.08, 0.12, 0.91);
  -o-transition: all 2s cubic-bezier(0.46, 0.08, 0.12, 0.91);
  transition: all 2s cubic-bezier(0.46, 0.08, 0.12, 0.91);
}

.header-container {
  padding-right: 80px;
  padding-left: 80px;
}

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

@media (min-width: 992px) {
  .container {
    max-width: 100%;
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media (min-width: 1090px) {
  .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1367px) {
  .container {
    max-width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.section-padding {
  padding-top: 120px;
  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;
  }
}

.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;
  }
}

.subtitle {
  position: relative;
  padding-left: 15px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.subtitle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 4px;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.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);
  }
}
@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(--dsn-background_color);
}
.preloader .preloader-before {
  top: 0;
}
.preloader .preloader-after {
  bottom: 0;
}
.preloader .percent {
  position: absolute;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 16px;
  color: var(--dsn-assistant-body-color);
  top: -25px;
}
.preloader .title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 0.9;
  letter-spacing: 10px;
}
.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: var(--dsn-assistant-body-color);
}

.view-demo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 100vh;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .view-demo {
    display: block;
  }
}
.view-demo .half-left,
.view-demo .half-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.view-demo .half-left a,
.view-demo .half-right a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.view-demo .half-left a img,
.view-demo .half-right a img {
  margin: auto;
  width: 70%;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: 0 0 0 1px #ebebeb;
          box-shadow: 0 0 0 1px #ebebeb;
  border-radius: 4px;
}
.view-demo .half-left a:hover img,
.view-demo .half-right a:hover img {
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}
.view-demo .half-left h4,
.view-demo .half-right h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
}
.view-demo .half-left h4.text-dark,
.view-demo .half-right h4.text-dark {
  color: #333;
}
@media only screen and (max-width: 991px) {
  .view-demo .half-left h4.text-dark,
.view-demo .half-right h4.text-dark {
    color: #fff;
  }
}
@media only screen and (max-width: 991px) {
  .view-demo .half-left,
.view-demo .half-right {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 60px 15px;
  }
  .view-demo .half-left a img,
.view-demo .half-right a img {
    -webkit-box-shadow: 0 0 0 1px #161515;
            box-shadow: 0 0 0 1px #161515;
  }
}
.view-demo .overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .view-demo .overlay-bg {
    display: none;
  }
}
.view-demo .overlay-bg div {
  width: 50%;
  height: 100%;
}
.view-demo .overlay-bg .black {
  background-color: #110f10;
}
.view-demo .overlay-bg .white {
  background-color: #fff;
}

.before-Square {
  padding-left: 20px;
}
.before-Square:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--dsn-assistant-body-color);
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  left: 1.5px;
}
.v-light .before-Square:before {
  background-color: var(--dsn-assistant-body-color-light);
}

.dsn-arrow-slid {
  width: 22px;
  height: 22px;
  padding: 4px;
  fill: var(--dsn-heading-color);
  cursor: pointer;
}
.dsn-arrow-slid.arrow-down {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dsn-hover-circle {
  position: relative;
}
.dsn-hover-circle .icon-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--dsn-heading-color);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
}
.dsn-hover-circle:hover .icon-circle {
  opacity: 1;
}

.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: var(--dsn-assistant-body-color);
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}
.v-light .swiper-pagination-bullet::before {
  background: var(--dsn-assistant-body-color-light);
}
.swiper-pagination-bullet::after {
  border: 1.5px solid var(--dsn-assistant-body-color);
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}
.v-light .swiper-pagination-bullet::after {
  border-color: var(--dsn-assistant-body-color-light);
}
.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);
}

.swiper-pagination-progressbar {
  width: 30%;
  height: 3px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background: var(--dsn-assistant-body-color);
}
.v-light .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--dsn-assistant-body-color-light);
}

.background-section.section-half, .dsn-button-2.background-section.parallax-icon .section-half.icon-circle {
  width: calc(50vw + 20px) !important;
  max-width: calc(50vw + 20px);
}

@media only screen and (max-width: 767px) {
  header .social-network-box, .main-slider .social-network-box {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .dsn-custom-service .theme-color.sm-title-block {
    display: none;
  }
}

.dsn-clip-path-right, .dsn-clip-path-left {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.dsn-clip-path-right, .dsn-clip-path-left {
  -webkit-transition: -webkit-clip-path 0.5s;
  transition: -webkit-clip-path 0.5s;
  -o-transition: clip-path 0.5s;
  transition: clip-path 0.5s;
  transition: clip-path 0.5s, -webkit-clip-path 0.5s;
}

.dsn-clip-path-right {
  -webkit-clip-path: polygon(0 0, 0 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 100% 100%, 0% 100%);
}
.dsn-clip-path-right:hover {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.dsn-clip-path-left {
  -webkit-clip-path: polygon(0 0, 0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0 0, 100% 100%, 100% 0);
}
.dsn-clip-path-left:hover {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
}
.dsn-clip-path-left:hover + .dsn-clip-path-right {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 0% 100%);
}

.slick-dots {
  text-align: center;
  margin-top: 20px;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
  line-height: 1.2 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
}
.slick-dots li button {
  position: relative;
  background-color: var(--dsn-background_color-light);
  width: 20px;
  height: 2px;
  font-size: 0;
  opacity: 0.5;
}
.v-light .slick-dots li button {
  background-color: var(--dsn-background_color);
}
.slick-dots li.slick-active button {
  opacity: 1;
  width: 30px;
}

/**
  Start Line After Before
 */
.line-before, .line-after {
  position: relative;
}
.line-before:before, .line-before:after, .line-after:before, .line-after:after {
  position: absolute;
  width: 100px;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
}
.v-light .line-before:before, .v-light .line-before:after, .v-light .line-after:before, .v-light .line-after:after {
  background-color: var(--dsn-background_color);
}
@media only screen and (max-width: 991px) {
  .line-before:before, .line-before:after, .line-after:before, .line-after:after {
    display: none;
  }
}

.line-before:before {
  content: "";
  left: -120px;
  right: auto;
}

.line-after:after {
  content: "";
  right: -120px;
  left: auto;
}

.line-under:after {
  content: "";
  position: relative;
  display: block;
  margin-top: 20px;
  height: 2px;
  width: 100px;
  background-color: var(--dsn-assistant-body-color);
}
.v-light .line-under:after {
  background-color: var(--dsn-assistant-body-color-light);
}

.line-v-left {
  padding-left: 20px;
  border-left: 1px solid var(--dsn-assistant-body-color);
}
.v-light .line-v-left {
  border-color: var(--dsn-assistant-body-color-light);
}

/**
  End Start Line After Before
 */
.border-r7 {
  border-radius: 7px;
}

[data-mfp-src] {
  cursor: pointer;
}

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

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

@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 {
  position: absolute;
  left: 40px;
  bottom: 50%;
  color: #fff;
  -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;
  z-index: 3;
}
@media only screen and (max-width: 575px) {
  .social-network-box {
    display: none;
  }
}
.main-slider .social-network-box {
  left: 55px;
}
.social-network-box.social-network-box_right {
  -webkit-transform: rotate(90deg) translateX(-50%);
      -ms-transform: rotate(90deg) translateX(-50%);
          transform: rotate(90deg) translateX(-50%);
  left: auto;
  right: 40px;
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}
.main-slider .social-network-box.social-network-box_right {
  right: 55px;
}
.social-network-box .social-network ul li {
  display: inline-block;
  margin-right: 20px;
  padding: 0;
  list-style: none;
  overflow: hidden;
  vertical-align: top;
}
.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-family: "DM Sans", sans-serif;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
a.link-hover:before {
  content: attr(data-hover-text);
  position: absolute;
  left: 0;
  top: 100%;
  color: #fff;
}
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: 767px) {
  .link-vist {
    margin-top: 20px;
  }
}
.link-vist .link-vist-text {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--dsn-heading-color);
  text-transform: uppercase;
  padding-bottom: 3px;
  font-family: "DM Sans", sans-serif;
}
.link-vist .link-vist-text:before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: var(--dsn-heading-color);
  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);
}
.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: var(--dsn-heading-color);
  stroke-width: 2px;
}
.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: var(--dsn-heading-color-light);
}
.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 {
  bottom: 20px;
  right: 20px;
  width: 190px;
  pointer-events: none;
}
.shap-section svg {
  opacity: 0.15;
}
.shap-section svg path {
  fill: #fff;
}

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

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

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

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

.h-100 {
  height: 100%;
}

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

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

.d-grid {
  display: -ms-grid;
  display: grid;
}

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

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

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

.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-30 {
  margin-top: 30px;
}

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

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

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

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

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

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

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

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

.p-0 {
  padding: 0;
}

.box-after {
  position: relative;
  margin-bottom: 5px;
}
.box-after:after {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  height: 100%;
  display: block;
  background: var(--dsn-assistant-body-color);
  bottom: -5px;
  left: 10px;
  z-index: -1;
}

.custom-container {
  width: 120%;
}
@media only screen and (max-width: 400px) {
  .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;
}

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

.metas {
  font-family: "DM Sans", sans-serif;
}
.metas a {
  margin-right: 5px;
}
.metas.meta-personal span {
  background-color: rgba(var(--dsn-assistant-background-color), 0.5);
  padding: 5px 15px;
  color: var(--dsn-heading-color);
}
.metas span {
  position: relative;
  font-size: 16px;
  letter-spacing: 1px;
}
header .metas {
  color: var(--dsn-heading-color);
}

.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-relative-elementor-widget .elementor-widget-container {
  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;
}

.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;
}

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

.no-shadow, .service .services-item {
  -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: 767px) {
  .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: var(--dsn-assistant-body-color);
}
.embed-3d-dimensions .overlay-3d-dimensions .button-action {
  cursor: pointer;
  background-color: var(--dsn-background_color);
  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;
}

.z-index-0 {
  z-index: 0;
}

.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;
}

.background-theme-color {
  background-color: var(--dsn-assistant-body-color);
  color: #fff;
}
.v-light .background-theme-color {
  background-color: var(--dsn-assistant-body-color-light);
}

.bg-dark {
  background-color: var(--dsn-assistant-background-color);
}

.mb-70 {
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .mb-70.dsn-title, .mb-70.section-title-2 {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .mb-70.section-title {
    padding-top: 10px;
  }
}

.opacity-0 {
  opacity: 0;
}

.border-bottom {
  border-bottom: 1px solid #1e1e1e;
}

@media only screen and (min-width: 576px) {
  .container .fill-right-container {
    position: relative;
    width: calc(50vw + 50% - 15px) !important;
    margin-right: -50vw;
  }
}

.full-width {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.vertical-text {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
}

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

.mw-460 {
  max-width: 460px;
}

.clear {
  clear: both;
}
.clear:after, .clear:before {
  content: "";
  display: table;
  table-layout: fixed;
}

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::-moz-placeholder, textarea::-moz-placeholder, .form-control::-moz-placeholder, .form-box input::-moz-placeholder, .form-box textarea::-moz-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-light textarea::-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: var(--dsn-body-color-light);
}
.v-light input::-moz-placeholder, .v-light textarea::-moz-placeholder, .v-light .form-control::-moz-placeholder, .v-light .form-box input::-moz-placeholder, .v-light .form-box textarea::-moz-placeholder {
  color: var(--dsn-body-color-light);
}
.v-light input:-ms-input-placeholder, .v-light textarea:-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: var(--dsn-body-color-light);
}
.v-light input::-ms-input-placeholder, .v-light textarea::-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: var(--dsn-body-color-light);
}
.v-light input::placeholder,
.v-light textarea::placeholder,
.v-light .form-control::placeholder,
.v-light .form-box input::placeholder,
.v-light .form-box textarea::placeholder {
  color: var(--dsn-body-color-light);
}

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

fieldset {
  padding: 30px;
}
fieldset form > * {
  margin-bottom: 30px;
}
fieldset form:last-child {
  margin-bottom: 0;
}
fieldset form p {
  margin-top: 0;
}
fieldset form textarea,
fieldset form input {
  margin-bottom: 0;
  padding: 10px;
}

.dsn-no-results .dsn-search .search-form input {
  min-width: 460px;
}

.button,
button:not([aria-controls]):not([data-filter]):not(.mfp-arrow):not(.dsn-button-form):not(.mfp-close),
input[type=button],
input[type=reset],
input[type=submit]:not(.dsn-button-form) {
  position: relative;
  width: auto;
  font-size: 15px;
  border: 2px solid var(--dsn-heading-color);
  color: var(--dsn-heading-color);
  padding: 20px 41px;
  cursor: pointer;
  min-height: 48px;
  border-radius: 0;
  letter-spacing: 1px;
  font-weight: 600;
  background-color: var(--dsn-assistant-background-color);
}

.btn {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  padding: 20px 40px;
  text-transform: uppercase;
  word-spacing: 5px;
  font-family: "DM Sans", sans-serif;
  text-align: center;
}
.btn span {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .btn {
    padding: 15px 25px;
  }
}
.v-light .btn span {
  color: var(--dsn-heading-color-light);
}
.v-light .btn::before {
  background-color: var(--dsn-background_color);
}
.v-light .btn:hover {
  color: var(--dsn-heading-color);
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
      -ms-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  transition: transform 0.35s, -webkit-transform 0.35s;
}
.btn span {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.btn:hover span {
  color: var(--dsn-heading-color-light);
}
.v-light .btn:hover {
  color: var(--dsn-heading-color-light);
}
.v-light .btn:hover span {
  color: var(--dsn-heading-color);
}
.btn:hover:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0 50%;
      -ms-transform-origin: 0 50%;
          transform-origin: 0 50%;
}

.btn-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 48px;
  border-radius: 50px;
  letter-spacing: 1.2px;
  border: 1.5px solid var(--dsn-assistant-body-color);
  cursor: pointer;
  margin: auto;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}
.btn-form span {
  color: #fff;
}
.v-light .btn-form {
  border-color: var(--dsn-assistant-body-color-light);
}
.v-light .btn-form span {
  color: var(--dsn-heading-color-light);
}
.btn-form .label {
  font-weight: bold;
  min-width: 150px;
  padding-left: 30px;
  padding-right: 10px;
  text-align: center;
}
.btn-form .icon-c {
  width: 12px;
  height: 12px;
  background-color: var(--dsn-assistant-body-color);
  border-radius: 50%;
  margin-right: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.v-light .btn-form .icon-c {
  background-color: var(--dsn-assistant-body-color-light);
}
.btn-form:hover {
  background-color: var(--dsn-assistant-body-color);
}
.v-light .btn-form:hover {
  background-color: var(--dsn-assistant-body-color-light);
  color: var(--dsn-heading-color);
}
.btn-form:hover .icon-c {
  background-color: var(--dsn-background_color);
}

.link-custom {
  border-radius: 30px;
  height: 48px;
  padding-right: 40px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.link-custom .link-text {
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  z-index: 2;
}
.v-light .link-custom .link-text {
  color: var(--dsn-heading-color-light);
}
.link-custom .link-circle {
  -webkit-transition: width 200ms;
  -o-transition: width 200ms;
  transition: width 200ms;
  top: 0;
  right: 0;
  text-align: center;
  background: #fff;
  mix-blend-mode: exclusion;
  color: var(--dsn-heading-color-light);
  width: 48px;
  height: 48px;
  border-radius: 30px;
  z-index: 2;
}
.v-light .link-custom .link-circle {
  background-color: var(--dsn-assistant-background-color-light);
  z-index: 0;
}
.link-custom .link-circle i {
  position: absolute;
  width: 100%;
  right: 0;
  top: 17px;
  font-size: 12px;
}
.link-custom:hover {
  padding-left: 40px;
}
.link-custom:hover .link-text {
  -webkit-transform: translateX(-9px);
      -ms-transform: translateX(-9px);
          transform: translateX(-9px);
}
.link-custom:hover .link-circle {
  width: 100%;
}
.link-custom:hover .link-circle i {
  width: auto;
  right: 20px;
  -webkit-transform: translateX(-9px);
      -ms-transform: translateX(-9px);
          transform: translateX(-9px);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.link-custom.scroll-down i {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.link-custom.scroll-down:hover .link-text {
  -webkit-transform: translateX(-9px);
      -ms-transform: translateX(-9px);
          transform: translateX(-9px);
}
.link-custom.scroll-down:hover .link-circle i {
  -webkit-transform: translateX(-9px) translateY(2px) rotate(90deg);
      -ms-transform: translateX(-9px) translateY(2px) rotate(90deg);
          transform: translateX(-9px) translateY(2px) rotate(90deg);
}

.dsn-link a {
  color: inherit;
}

html.elementor-html .link-circle {
  pointer-events: none;
}

.dsn-button-2 {
  padding: 20px 40px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.dsn-button-2.background-section, .dsn-button-2.background-section.parallax-icon .dsn-button-2.icon-circle {
  -webkit-box-shadow: 0 2px 0 var(--dsn-assistant-background-color), 2px 4px 6px var(--dsn-background_color);
          box-shadow: 0 2px 0 var(--dsn-assistant-background-color), 2px 4px 6px var(--dsn-background_color);
}
.dsn-button-2.background-main, .dsn-button-2.background-main.parallax-icon .dsn-button-2.icon-circle {
  -webkit-box-shadow: 0 2px 0 var(--dsn-background_color), 2px 4px 6px var(--dsn-assistant-background-color);
          box-shadow: 0 2px 0 var(--dsn-background_color), 2px 4px 6px var(--dsn-assistant-background-color);
}
.dsn-button-2.parallax-icon {
  background: transparent;
}
.dsn-button-2.parallax-icon .icon-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 4px;
}

.dsn-button-border {
  border: 1px solid;
  margin-left: 1.5px;
  margin-top: 1.5px;
  border-color: rgba(112, 112, 112, 0.5);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-property: border, -webkit-box-shadow;
  transition-property: border, -webkit-box-shadow;
  -o-transition-property: border, box-shadow;
  transition-property: border, box-shadow;
  transition-property: border, box-shadow, -webkit-box-shadow;
}
.v-light .dsn-button-border {
  border-color: #bebebe;
}
.v-light .dsn-button-border, .v-light .dsn-button-border span {
  color: #000;
}
.dsn-button-border:after, .dsn-button-border:before {
  border-color: var(--dsn-assistant-body-color);
  border-radius: 1.5px;
}
.v-light .dsn-button-border:after, .v-light .dsn-button-border:before {
  border-color: var(--dsn-assistant-body-color-light);
}
.dsn-button-border:after, .dsn-button-border:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-width: 3px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.dsn-button-border:hover {
  border-color: transparent;
  background: transparent;
  -webkit-box-shadow: inset 0 0 20px rgba(var(--dsn-assistant-body-color), 0.3), 0 0 20px rgba(var(--dsn-assistant-body-color), 0.15);
          box-shadow: inset 0 0 20px rgba(var(--dsn-assistant-body-color), 0.3), 0 0 20px rgba(var(--dsn-assistant-body-color), 0.15);
}
.v-light .dsn-button-border:hover {
  -webkit-box-shadow: inset 0 0 20px rgba(var(--dsn-assistant-body-color-light), 0.3), 0 0 20px rgba(var(--dsn-assistant-body-color-light), 0.15);
          box-shadow: inset 0 0 20px rgba(var(--dsn-assistant-body-color-light), 0.3), 0 0 20px rgba(var(--dsn-assistant-body-color-light), 0.15);
}
.dsn-button-border:hover:after, .dsn-button-border:hover:before {
  width: 70%;
  height: 70%;
  border-width: 2px;
}
.dsn-button-border:hover:before {
  left: 0;
}
.dsn-button-border:hover:after {
  right: 0;
}
.dsn-button-border:before {
  left: -2.5px;
  top: -1.5px;
  border-top-style: solid;
  border-left-style: solid;
}
.dsn-button-border:after {
  right: -1.5px;
  bottom: -1.5px;
  border-right-style: solid;
  border-bottom-style: solid;
}

.dsn-button-normal {
  padding: 10px 30px 10px 0;
}
.dsn-button-normal:before, .dsn-button-normal:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  background-color: var(--dsn-assistant-body-color);
  z-index: -1;
  -webkit-transform: skew(-12deg);
      -ms-transform: skew(-12deg);
          transform: skew(-12deg);
}
.dsn-button-normal:before {
  width: 50%;
  left: 50%;
}
.dsn-button-normal:after {
  width: 10px;
  right: -15px;
}

.border-rdu {
  border: 3px solid var(--dsn-heading-color);
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 30px;
}
.v-light .border-rdu {
  border-color: var(--dsn-heading-color-light);
}

input[type=submit]:not(.dsn-button-form).dsn-button-comment {
  padding: 15px 40px;
  border-radius: 30px;
  background: transparent;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 9000;
  pointer-events: none;
}
.site-header a {
  color: inherit;
}
.site-header .light-logo {
  color: var(--dsn-heading-color);
}
.admin-bar .site-header {
  top: 46px;
}
@media screen and (min-width: 783px) {
  .admin-bar .site-header {
    top: 32px;
  }
}
.site-header .menu-cover-title {
  position: absolute;
  top: 50%;
  left: -12px;
  font-size: 20vw;
  font-weight: 600;
  line-height: 1.15;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.05;
}
@media only screen and (max-width: 991px) {
  .site-header .menu-cover-title {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.site-header .inner-header .main-logo {
  width: 96px;
  pointer-events: all;
}
.classic-menu .site-header .inner-header .main-logo {
  margin-bottom: 7px;
}
.site-header .inner-header .main-logo img {
  height: 40px;
}
.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: var(--dsn-assistant-body-color);
  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: -4px;
  width: 52px;
  color: #fff;
  opacity: 0.9;
  font-size: 13px;
}
.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 .container-content {
  width: 40%;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .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: var(--dsn-body-color);
}
.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: var(--dsn-assistant-body-color);
  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: "DM Sans", sans-serif;
  font-weight: 400;
  position: relative;
}
.site-header ul.extend-container {
  width: 100%;
  max-width: 100%;
  height: 80vh;
}
@media only screen and (max-width: 991px) {
  .site-header ul.extend-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.site-header .extend-container .main-navigation {
  position: fixed;
  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;
  overflow-y: auto;
  padding-top: 120px;
}
.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 {
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 10px;
  line-height: 1;
  font-family: "DM Sans", sans-serif;
}
.site-header .extend-container .main-navigation ul.extend-container li.dsn-active, .site-header .extend-container .main-navigation ul.extend-container li:hover {
  color: var(--dsn-assistant-body-color);
}
.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: 767px) {
  .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: 991px) {
  .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);
}
@media only screen and (max-width: 991px) {
  .site-header .extend-container .main-navigation ul.extend-container li.dsn-drop-down > a:after {
    display: none;
  }
}
.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;
}
.site-header .extend-container .main-navigation ul.extend-container > li:last-child {
  padding-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .site-header .extend-container .main-navigation ul.extend-container > li {
    font-size: 32px;
  }
}
.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;
  overflow: auto;
}
@media only screen and (max-width: 991px) {
  .site-header .extend-container .main-navigation ul.extend-container > li ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.site-header .extend-container .main-navigation ul.extend-container > li ul li {
  font-size: 32px;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site-header .extend-container .main-navigation ul.extend-container > li ul li:last-child {
  padding-bottom: 80px;
}
.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: var(--dsn-assistant-body-color);
    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, .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.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;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .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;
    min-width: 195px;
    width: inherit;
    height: auto;
    left: unset;
    top: unset;
    margin-top: 10px;
    padding: 10px;
    margin-left: -10px;
    background-color: var(--dsn-assistant-background-color);
    -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, .classic-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, .classic-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, .classic-menu .site-header .extend-container .main-navigation ul.extend-container > li:focus {
    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;
  }
}

.dsn-multi-lang {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100px;
  top: 35px;
  right: 165px;
  z-index: 999;
}
.admin-bar .dsn-multi-lang {
  top: 81px;
}
@media screen and (min-width: 783px) {
  .admin-bar .dsn-multi-lang {
    top: 67px;
  }
}
.dsn-multi-lang .extend-container-lang .menu-item > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 28px;
  cursor: pointer;
  padding: 6px 10px;
  background: var(--dsn-assistant-body-color);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 12px;
  z-index: 2;
  color: var(--dsn-heading-color);
  font-size: 11px;
  text-transform: uppercase;
}
.dsn-multi-lang .extend-container-lang .menu-item > a:before {
  -webkit-clip-path: ellipse(10px 46% at 50% 50%);
          clip-path: ellipse(10px 46% at 50% 50%);
  margin-right: 5px !important;
}
.dsn-multi-lang .extend-container-lang img {
  width: 15px;
  height: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.dsn-multi-lang .extend-container-lang span {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
}
.dsn-multi-lang .extend-container-lang:hover .sub-menu {
  top: 20px;
  opacity: 1;
  visibility: visible;
}
.dsn-multi-lang .sub-menu {
  position: absolute;
  top: -5px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  display: block;
  background: rgba(16, 15, 15, 0.9);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 0;
  overflow: hidden;
}
.dsn-multi-lang .sub-menu li:first-of-type {
  padding: 15px 0 0;
}
.dsn-multi-lang .sub-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 29px;
  padding: 6px 10px;
  line-height: 15px;
  border-radius: 0 !important;
}

@media only screen and (min-width: 992px) {
  .classic-menu .dsn-multi-lang {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
    right: 15px;
  }
}
@media only screen and (min-width: 992px) {
  body.classic-menu .site-header .extend-container .main-navigation {
    overflow: inherit;
    padding-top: 0;
  }
  body.classic-menu .site-header ul.extend-container {
    height: auto;
  }
  body.classic-menu .site-header .extend-container .main-navigation ul.extend-container > li ul {
    overflow: hidden;
  }
}
@media only screen and (max-width: 991px) {
  body.classic-menu .site-header .extend-container .main-navigation {
    padding-right: 0;
    padding-left: 0;
  }
}

/* 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-up.next-project {
  height: auto;
}
@media only screen and (max-width: 991px) {
  .next-up.next-project + .footer {
    position: relative;
    width: 100%;
    bottom: auto;
    z-index: 2;
  }
}
.next-up .next-up-inner {
  padding: 80px;
}
@media only screen and (max-width: 991px) {
  .next-up .next-up-inner {
    padding: 80px 40px;
  }
}
@media only screen and (max-width: 991px) {
  .next-up .next-up-inner {
    padding: 80px 30px;
  }
}
@media only screen and (max-width: 575px) {
  .next-up .next-up-inner {
    padding: 80px 15px;
  }
}
.next-up .next-up-inner h2 {
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1;
}
.v-light .next-up .next-up-inner h2 {
  color: var(--dsn-heading-color-light);
}
.next-up .next-up-inner .btn {
  text-align: center;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  width: 100%;
}
.v-light .next-up .next-up-inner .btn {
  color: var(--dsn-heading-color);
}
.next-up .next-up-inner .infos {
  margin-top: 30px;
  text-transform: uppercase;
}
.next-up .next-up-inner .infos .infos_content {
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--dsn-heading-color);
}
.v-light .next-up .next-up-inner .infos .infos_content {
  color: var(--dsn-heading-color-light);
}
.next-up .next-up-inner .infos a {
  padding: 8px 28px;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--dsn-background_color-light);
  color: var(--dsn-heading-color-light);
}

/* Next/Previous Page */
.contact-up .c-wapp:after, .contact-up .c-wapp:before {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 100%;
  top: 0;
  background-color: var(--dsn-assistant-background-color);
  left: -80px;
  right: -80px;
}
.v-light .contact-up .c-wapp:after, .v-light .contact-up .c-wapp:before {
  background-color: var(--dsn-assistant-background-color-light);
}
@media only screen and (max-width: 991px) {
  .contact-up .c-wapp:after, .contact-up .c-wapp:before {
    display: none;
  }
}
.contact-up .c-wapp .section-bg {
  top: 0;
  left: 0;
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.contact-up .c-wapp:after, .contact-up .c-wapp:before, .contact-up .c-wapp .section-bg {
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: width, transform;
  transition-property: width, transform;
  transition-property: width, transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
       -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
          transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
}
.contact-up .c-wapp:after {
  left: auto;
}
.contact-up .c-wapp:before {
  right: auto;
  -webkit-transition-delay: 0.35s;
       -o-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
@media only screen and (max-width: 767px) {
  .contact-up .c-wapp a {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}
.contact-up .c-wapp a .hiring {
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.contact-up .c-wapp a .hiring:after {
  content: attr(data-dsn-content);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  -webkit-transition: -webkit-clip-path 0.4s;
  transition: -webkit-clip-path 0.4s;
  -o-transition: clip-path 0.4s;
  transition: clip-path 0.4s;
  transition: clip-path 0.4s, -webkit-clip-path 0.4s;
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-clip-path: inset(0% 0% 0% 0%);
          clip-path: inset(0% 0% 0% 0%);
}
.v-light .contact-up .c-wapp a .hiring {
  -webkit-text-stroke: 1px var(--dsn-heading-color-light);
}
.v-light .contact-up .c-wapp a .hiring:after {
  color: var(--dsn-heading-color-light);
}
@media only screen and (max-width: 767px) {
  .contact-up .c-wapp a .hiring {
    display: block;
    text-align: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media only screen and (max-width: 400px) {
  .contact-up .c-wapp a .hiring {
    font-size: 28px;
  }
}
.contact-up .c-wapp a .career {
  position: relative;
  display: block;
  font-size: 16px;
  margin-top: 10px;
}
.v-light .contact-up .c-wapp a .career {
  color: var(--dsn-assistant-body-color-light);
}
@media only screen and (max-width: 767px) {
  .contact-up .c-wapp a .career {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
}
.contact-up .c-wapp:hover:after, .contact-up .c-wapp:hover:before, .contact-up .c-wapp:hover .section-bg {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}
.contact-up .c-wapp:hover:before {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.contact-up .c-wapp:hover:after {
  -webkit-transition-delay: 0.35s;
       -o-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.contact-up .c-wapp:hover a .hiring:after {
  -webkit-clip-path: inset(0% 0% 0% 100%);
          clip-path: inset(0% 0% 0% 100%);
}

.next-project a {
  color: inherit;
}
.next-project .img-next-box {
  top: 0;
}
.next-project .title, .next-project .metas {
  color: var(--dsn-heading-color);
}
.next-project .bg-title {
  top: 20px;
  left: 0;
  font-size: 8vw;
  line-height: 1;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  opacity: 0.1;
  z-index: -1;
}
@media only screen and (max-width: 575px) {
  .next-project .bg-title {
    display: none;
  }
}
.next-project .next-label {
  top: 0;
}
.next-project .next-inner {
  z-index: 2;
}
.next-project a.link {
  color: var(--dsn-heading-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 20px;
}
.next-project a.link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--dsn-background_color-light);
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.next-project a.link:hover::before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}
.next-project + .footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .next-project + .footer {
    padding-top: 30px;
  }
}
.v-light .next-project + .footer .column-left .footer-social a, .v-light .next-project + .footer .column-left .footer-social ul li {
  color: var(--dsn-heading-color);
}
.next-project + .footer .column-right {
  color: var(--dsn-heading-color);
}
.next-project + .footer .scroll-top img {
  -webkit-filter: none;
          filter: none;
}
.next-project + .footer .scroll-top i {
  color: var(--dsn-heading-color);
}

.dsn-pagination .page-numbers {
  width: 50px;
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid var(--dsn-border-color);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
}
.v-light .dsn-pagination .page-numbers {
  border-color: var(--dsn-body-color-light);
}
.dsn-pagination .page-numbers.current, .dsn-pagination .page-numbers.next, .dsn-pagination .page-numbers.prev, .dsn-pagination .page-numbers:hover {
  border-color: var(--dsn-assistant-body-color);
  border-width: 1px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.v-light .dsn-pagination .page-numbers.current, .v-light .dsn-pagination .page-numbers.next, .v-light .dsn-pagination .page-numbers.prev, .v-light .dsn-pagination .page-numbers:hover {
  border-color: var(--dsn-assistant-body-color-light);
}
.dsn-pagination .next,
.dsn-pagination .prev {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}
.dsn-pagination .next {
  margin-left: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.dsn-pagination .next svg {
  margin-left: 5px;
}
.dsn-pagination .prev {
  margin-right: 20px;
}
.dsn-pagination .prev svg {
  margin-right: 5px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.dsn-pagination svg {
  width: 20px;
}

.pagination-pages .post-page-numbers, .dsn-pagination-pages .post-page-numbers {
  margin-left: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid var(--dsn-border-color);
}

.dsn-box-experience {
  padding: 60px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .dsn-box-experience {
    padding: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .dsn-box-experience {
    padding: 30px 15px;
  }
}
.dsn-box-experience .numb-ex .word-text {
  font-size: 120px;
  font-weight: bold;
  color: var(--dsn-heading-color);
  line-height: 85px;
}
@media only screen and (max-width: 991px) {
  .dsn-box-experience .numb-ex .word-text {
    font-size: 80px;
    line-height: 1;
  }
}
.dsn-box-experience h4 {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--dsn-heading-color);
}
@media only screen and (min-width: 576px) {
  .dsn-box-experience h4 {
    margin-top: 20px;
  }
}

.dsn-icon {
  width: 30px;
  margin-right: 20px;
}
.dsn-icon i {
  font-size: 23px;
  color: var(--dsn-assistant-body-color);
}
.dsn-icon svg {
  width: 80%;
  height: auto;
}
.dsn-icon svg, .dsn-icon svg path {
  fill: var(--dsn-assistant-body-color);
}
.v-light .dsn-icon i {
  color: var(--dsn-assistant-body-color-light);
}
.v-light .dsn-icon svg, .v-light .dsn-icon svg path {
  fill: var(--dsn-assistant-body-color-light);
}
.text-center .dsn-icon {
  margin: 0 auto;
}

.dsn-accordion .accordion__item {
  padding: 20px 0;
  border-bottom: 1px solid var(--dsn-border-color);
}
.v-light .dsn-accordion .accordion__item {
  border-color: var(--dsn-border-color-light);
}
.dsn-accordion .accordion__item:first-child {
  padding-top: 0;
  margin-top: 0;
}
.dsn-accordion .accordion__question {
  padding-right: 15px;
  cursor: pointer;
}
.dsn-accordion .accordion__question .sm-title-block {
  margin-bottom: 0;
}
.dsn-accordion .accordion__question:before {
  content: "";
  display: inline-block;
  border: solid var(--dsn-assistant-body-color);
  border-width: 0 2px 2px 0;
  padding: 3px;
  position: absolute;
  top: 40%;
  right: 0;
  -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 .dsn-accordion .accordion__question:before {
  border-color: var(--dsn-assistant-body-color-light);
}
.dsn-accordion .accordion__answer {
  display: none;
  max-width: 510px;
  padding-top: 10px;
}
.dsn-accordion .accordion__answer.accordion-icon {
  padding-left: 50px;
}
.dsn-accordion .accordion__answer.active {
  display: block;
}
.dsn-accordion .expanded.accordion__question::before {
  content: "";
  border: solid var(--dsn-assistant-body-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  position: absolute;
  top: 50%;
  right: 0;
  -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 .dsn-accordion .expanded.accordion__question::before {
  border-color: var(--dsn-assistant-body-color-light);
}

.dsn-swiper [data-dsn-grid] img {
  top: -15%;
}
.dsn-swiper img {
  max-width: none;
  width: 100%;
}
.dsn-swiper.slider-project-swiper .swiper-container {
  width: 100%;
  height: 100%;
}
.dsn-swiper.slider-project-swiper .swiper-slide {
  width: auto;
  max-width: 70%;
}
@media only screen and (max-width: 767px) {
  .dsn-swiper.slider-project-swiper .swiper-slide {
    width: 100%;
    max-width: 100%;
  }
}
.dsn-swiper .dsn-our-work:not(.swiper-slide-active) .item-info {
  opacity: 0;
  visibility: hidden;
}
.dsn-swiper .dsn-our-work:not(.swiper-slide-active) img {
  -webkit-filter: grayscale(60%);
          filter: grayscale(60%);
}

.dsn-style-grid.dsn-grid-default .elementor-widget-wrap {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.dsn-style-grid.dsn-one-half .elementor-widget-wrap {
  -ms-grid-columns: 60% 1fr;
  grid-template-columns: 60% 1fr;
}
.dsn-style-grid.dsn-half-one .elementor-widget-wrap {
  -ms-grid-columns: 1fr 60%;
  grid-template-columns: 1fr 60%;
}
.dsn-style-grid.dsn-col-3 .elementor-widget-wrap {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
.dsn-style-grid.dsn-col-4 .elementor-widget-wrap {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.dsn-style-grid .elementor-widget-wrap {
  display: -ms-grid !important;
  display: grid !important;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .dsn-style-grid .elementor-widget-wrap {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
}
.dsn-style-grid.dsn-col-3 .elementor-widget-wrap, .dsn-style-grid.dsn-col-4 .elementor-widget-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media only screen and (max-width: 991px) {
  .dsn-style-grid.dsn-col-3 .elementor-widget-wrap, .dsn-style-grid.dsn-col-4 .elementor-widget-wrap {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

.project-image-vertical .image-vertical-item {
  padding-right: 6%;
}
@media only screen and (max-width: 767px) {
  .project-image-vertical .image-vertical-item {
    padding: 0 !important;
  }
}
.project-image-vertical .image-vertical-item:first-child {
  margin-top: 0;
}
.project-image-vertical .image-vertical-item .captions {
  letter-spacing: 1px;
  bottom: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
}
.v-light .project-image-vertical .image-vertical-item .captions {
  color: var(--dsn-heading-color-light);
}
@media only screen and (max-width: 767px) {
  .project-image-vertical .image-vertical-item .captions {
    right: auto;
    left: 15px;
    bottom: 15px;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
}
.project-image-vertical .image-vertical-item:nth-child(odd) {
  padding-right: 6%;
}
.project-image-vertical .image-vertical-item:nth-child(odd) .captions {
  right: 6%;
}
.project-image-vertical .image-vertical-item:nth-child(even) {
  padding-left: 6%;
  padding-right: 0;
}
.project-image-vertical .image-vertical-item:nth-child(even) .captions {
  left: 6%;
}

.dsn-bg-section {
  top: 0;
  left: 0;
  z-index: -1;
}
.dsn-bg-section [data-dsn-grid=moveUp] {
  height: 100%;
}
.dsn-bg-section [data-dsn-grid=moveUp]:before {
  z-index: 2;
}
.dsn-bg-section [data-dsn-grid=moveUp] img {
  z-index: 1;
}

.skills-item {
  z-index: 2;
}
.skills-item .dsn-heading-title {
  margin-bottom: 10px;
}
.skills-item .bar {
  height: 15px;
}
.skills-item .bar, .skills-item .bar .fill {
  border-radius: 25px;
}
.skills-item .bar .fill {
  width: 0;
  background-image: url("../img/pattern.png");
}
.skills-item .bar .fill .number {
  right: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: var(--dsn-heading-color);
}
.skills-item .bar .fill .number, .skills-item .bar .fill:after {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.skills-item .bar .fill:after {
  content: "";
  position: absolute;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 5px solid var(--dsn-heading-color);
  right: 5px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
      -ms-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.box-seat .title-cover, .box-seat .pro-text {
  padding: 80px;
}
@media only screen and (max-width: 767px) {
  .box-seat .title-cover, .box-seat .pro-text {
    padding: 80px 30px;
  }
}
@media only screen and (max-width: 575px) {
  .box-seat .title-cover, .box-seat .pro-text {
    padding: 80px 15px;
  }
}
.box-seat .pro-text {
  position: absolute;
  right: 80px;
  bottom: -50px;
  border-radius: 7px;
}
.box-seat .pro-text:not(.container) {
  max-width: 600px;
}

.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;
  background-color: rgba(13, 13, 13, 0.7);
  height: 80%;
  top: 10%;
}
.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: var(--dsn-heading-color);
}
.v-light .box-seat.box-seat-full .pro-text p {
  color: var(--dsn-body-color);
}
.v-light .box-seat.box-seat-full .pro-text .link-custom a {
  color: var(--dsn-heading-color);
}
.v-light .box-seat.box-seat-full .pro-text .link-custom a:before {
  color: #000;
  background-color: #fff;
}

.box-seat.box-seat-bottom .pro-text {
  position: relative;
  width: 100%;
  bottom: 150px;
  margin-bottom: -150px;
  border-radius: 7px 7px 0 0;
  right: auto;
}
.container .box-seat.box-seat-bottom .pro-text {
  width: 90%;
}
@media only screen and (max-width: 767px) {
  .box-seat.box-seat-bottom .pro-text {
    width: 100%;
  }
}

.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(var(--dsn-assistant-background-color), 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: 767px) {
  .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;
  }
}

.dsn-our-blog a, .dsn-our-work a {
  color: var(--dsn-heading-color);
}
.dsn-our-blog img, .dsn-our-work img {
  height: 100%;
}
.dsn-our-blog .link-vist, .dsn-our-work .link-vist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: auto;
  bottom: auto;
  margin-top: 20px;
}
.dsn-our-blog .link-vist .link-vist-text, .dsn-our-work .link-vist .link-vist-text {
  font-weight: bold;
}
.dsn-our-blog .link-vist .link-vist-text::before, .dsn-our-work .link-vist .link-vist-text::before {
  height: 1.5px;
}
.dsn-our-blog .entry-date, .dsn-our-work .entry-date {
  margin-bottom: 20px;
}
.dsn-our-blog .post-info-category, .dsn-our-work .post-info-category {
  margin-bottom: 5px;
}
.dsn-our-blog .post-info-category a, .dsn-our-work .post-info-category a {
  color: #fff;
  margin-bottom: 10px;
  margin-right: 5px;
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.9;
}
.dsn-our-blog .title-block, .dsn-our-work .title-block {
  font-size: 30px;
}

.dsn-our-work {
  color: var(--dsn-heading-color);
}
.dsn-our-work.work-item .title-block, .dsn-our-work.work-item p, .dsn-our-work.work-item a {
  color: inherit;
}
.dsn-our-work.work-item .item-info {
  z-index: 2;
  padding: 30px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.dsn-our-work.work-item .entry-date {
  margin-bottom: 10px;
}
.dsn-our-work.work-item .title-block {
  margin-bottom: 0;
  text-transform: inherit;
}
.dsn-our-work.work-item p {
  margin-top: 10px;
}
.v-light .dsn-our-work.work-item p {
  color: var(--dsn-body-color);
}
.dsn-our-work.work-item .link-vist {
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}
.dsn-our-work.work-item:hover .item-info {
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
}
.dsn-our-work.work-item:hover .link-vist {
  opacity: 1;
}

.v-light .dsn-our-blog a, .v-light .dsn-our-blog .link-vist .link-vist-text {
  color: var(--dsn-heading-color-light);
}
.dsn-our-blog.blog-classic-item .blog-item {
  padding: 80px 25px;
  border: 1.5px solid var(--dsn-border-color);
}
.v-light .dsn-our-blog.blog-classic-item .blog-item {
  border-color: var(--dsn-border-color-light);
}
@media only screen and (max-width: 991px) {
  .dsn-our-blog.blog-classic-item .blog-item {
    padding: 30px 25px;
  }
}
.dsn-our-blog.blog-classic-item .after-bg {
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.dsn-our-blog.blog-classic-item:hover .after-bg, .dsn-our-blog.blog-classic-item.swiper-slide-active .after-bg {
  opacity: 0.5;
}
.dsn-our-blog.blog-classic-item .box-content {
  z-index: 1;
}

.dsn-testimonials .dsn-title {
  top: -20px;
  padding-right: 70px;
  opacity: 0.7;
}
.dsn-testimonials .dsn-title .line-under:after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .dsn-testimonials .dsn-title {
    position: relative;
    text-align: center;
    top: 0;
    margin-bottom: 50px;
    padding-right: 0;
    opacity: 1;
  }
  .dsn-testimonials .dsn-title .line-under:after {
    display: inherit;
    margin-right: auto;
    margin-left: auto;
  }
}
.dsn-testimonials .testimonials-inner::after {
  content: "”";
  position: absolute;
  font-family: sans-serif;
  bottom: -70px;
  right: 30px;
  font-weight: 800;
  font-size: 165px;
  line-height: 100px;
  color: var(--dsn-heading-color);
}
.v-light .dsn-testimonials .testimonials-inner::after {
  color: var(--dsn-heading-color-light);
}
@media only screen and (max-width: 575px) {
  .dsn-testimonials .testimonials-inner::after {
    display: none;
  }
}
.dsn-testimonials .slick-list {
  padding: 0 !important;
}
@media only screen and (max-width: 767px) {
  .dsn-testimonials .testimonials-nav {
    margin-bottom: 30px;
  }
}
.dsn-testimonials .testimonials-nav:before {
  content: "";
  position: absolute;
  top: -8px;
  right: 80%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--dsn-assistant-background-color);
  border-radius: 50%;
}
.v-light .dsn-testimonials .testimonials-nav:before {
  border: 1px solid var(--dsn-assistant-background-color-light);
}
.dsn-testimonials .testimonials-nav .testimonials-nav-item {
  margin: 3px 0;
}
@media only screen and (max-width: 767px) {
  .dsn-testimonials .testimonials-nav:before {
    display: none;
  }
  .dsn-testimonials .testimonials-nav .testimonials-nav-item {
    margin: 0;
  }
}
.dsn-testimonials .testimonials-nav .testimonials-nav-item-inner {
  -webkit-transform: scale(0.99);
      -ms-transform: scale(0.99);
          transform: scale(0.99);
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  -o-transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
@media only screen and (min-width: 768px) {
  .dsn-testimonials .testimonials-nav .testimonials-nav-item-inner {
    margin-bottom: 10px;
  }
}
.dsn-testimonials .testimonials-nav .testimonials-nav-item-inner img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.dsn-testimonials .testimonials-nav .testimonials-nav-item-inner .info {
  margin-left: 10px;
}
.dsn-testimonials .testimonials-nav .testimonials-nav-item-inner .info h5 {
  font-size: 16px;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.dsn-testimonials .testimonials-nav .testimonials-nav-item-inner .info .dsn-testimonials-position {
  font-size: 13px;
  font-weight: 500;
}
.dsn-testimonials .testimonials-nav .slick-current .testimonials-nav-item-inner {
  -webkit-transform: translateX(39px);
      -ms-transform: translateX(39px);
          transform: translateX(39px);
}
@media only screen and (max-width: 991px) {
  .dsn-testimonials .testimonials-nav .slick-current .testimonials-nav-item-inner {
    -webkit-transform: translateX(58px);
        -ms-transform: translateX(58px);
            transform: translateX(58px);
  }
}
@media only screen and (max-width: 767px) {
  .dsn-testimonials .testimonials-nav .slick-current .testimonials-nav-item-inner {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.dsn-testimonials .testimonials-main-content {
  padding: 80px 40px;
  border-width: 3px;
}
@media only screen and (max-width: 767px) {
  .dsn-testimonials .testimonials-main-content {
    padding: 30px;
    border-width: 0;
  }
}
.dsn-testimonials .testimonials-main-content .top-box h5 {
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.dsn-testimonials .testimonials-main-content .top-box h5:after, .dsn-testimonials .testimonials-main-content .top-box h5:before {
  bottom: 3px;
  top: unset;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.dsn-testimonials .testimonials-main-content .top-box h5:before {
  width: 80px;
  bottom: 5px;
}
.dsn-testimonials .testimonials-main-content .top-box .p-larg {
  font-family: "DM Sans", sans-serif;
}
.dsn-testimonials .slick-arrow {
  position: absolute;
  display: block;
  bottom: -20px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
.dsn-testimonials .slick-arrow.fa-angle-right {
  left: 75px;
}

/***
    END Testimonials
 */
.brand-client .wrapper-client .logo-box {
  background-color: var(--dsn-assistant-background-color);
  border: 2px solid var(--dsn-border-color);
  width: calc(25% - 2px);
  padding: 15px;
  min-height: 240px;
  margin-right: 2px;
  margin-bottom: 2px;
  overflow: hidden;
}
.no-margin .brand-client .wrapper-client .logo-box {
  margin-right: 0;
}
.v-light .brand-client .wrapper-client .logo-box {
  border-color: var(--dsn-border-color-light);
}
.brand-client .wrapper-client .logo-box .after-bg {
  top: 0;
  left: 0;
  opacity: 0.11;
}
@media only screen and (max-width: 991px) {
  .brand-client .wrapper-client .logo-box {
    width: calc(33.333% - 2px);
  }
}
@media only screen and (max-width: 575px) {
  .brand-client .wrapper-client .logo-box {
    width: calc(50% - 2px);
  }
}
@media only screen and (max-width: 400px) {
  .brand-client .wrapper-client .logo-box {
    width: 100%;
  }
}
.brand-client .wrapper-client .logo-box img {
  max-width: 180px;
  margin: auto;
}
@media only screen and (max-width: 575px) {
  .brand-client .wrapper-client .logo-box img {
    max-width: 100%;
  }
}
.brand-client .wrapper-client .logo-box .info {
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.brand-client .wrapper-client .logo-box .info, .brand-client .wrapper-client .logo-box .info .entry {
  -webkit-transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, visibility, -webkit-transform;
  -o-transition-property: opacity, transform, visibility;
  transition-property: opacity, transform, visibility;
  transition-property: opacity, transform, visibility, -webkit-transform;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.brand-client .wrapper-client .logo-box .info .entry {
  padding: 10%;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
  -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);
}
.brand-client .wrapper-client .logo-box:hover .info {
  opacity: 1;
  visibility: visible;
}
.brand-client .wrapper-client .logo-box:hover .entry {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

/***
    END Brand
 */
.team img {
  height: 100%;
}
.team .team-item {
  border: 2px solid var(--dsn-border-color);
}
.v-light .team .team-item {
  border-color: var(--dsn-border-color-light);
}
.team .team-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-color: rgba(27, 26, 26, 0.7);
  -webkit-box-shadow: inset 0 -75px 60px -35px #171616;
          box-shadow: inset 0 -75px 60px -35px #171616;
  -webkit-transition: opacity 0.4s cubic-bezier(0.48, 0.83, 0.63, 0.91);
  -o-transition: opacity 0.4s cubic-bezier(0.48, 0.83, 0.63, 0.91);
  transition: opacity 0.4s cubic-bezier(0.48, 0.83, 0.63, 0.91);
}
.team .team-item .box-social {
  top: 30px;
  z-index: 1;
}
.team .team-item .box-social ul {
  visibility: hidden;
  list-style: none;
}
.team .team-item .box-social ul li {
  margin-left: 20px;
  margin-bottom: -30px;
  -webkit-transition-property: opacity, margin-bottom;
  -o-transition-property: opacity, margin-bottom;
  transition-property: opacity, margin-bottom;
  -webkit-transition-duration: 0.7s;
       -o-transition-duration: 0.7s;
          transition-duration: 0.7s;
  -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);
  -webkit-transition-delay: calc(100ms * var(--html-dsn-index));
       -o-transition-delay: calc(100ms * var(--html-dsn-index));
          transition-delay: calc(100ms * var(--html-dsn-index));
  opacity: 0;
}
.team .team-item .content {
  height: 420px;
}
.team .team-item .text-box {
  margin: 15px;
  padding: 18px 24px 15px;
  width: calc(100% - 30px);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .team .team-item .text-box {
    margin: 15px 20px;
  }
}
.team .team-item .text-box .item-position {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.team .team-item .text-box h3 {
  color: var(--dsn-heading-color);
  margin-bottom: 0;
  letter-spacing: 1px;
}
.v-light .team .team-item .text-box h3 {
  color: var(--dsn-heading-color-light);
}
.team .team-item:hover::after {
  opacity: 1;
}
.team .team-item:hover .box-social ul {
  visibility: visible;
}
.team .team-item:hover .box-social ul li {
  opacity: 1;
  margin-bottom: 10px;
}
.team .dsn-icon i {
  font-size: 18px;
  color: #fff;
}
.team .dsn-icon svg {
  width: 20px;
}
.team .dsn-icon svg path {
  fill: #fff;
}
.team .title-block {
  margin-bottom: 0;
}

.row.m-0 {
  margin: 0;
}

/***
    END Team
 */
.fact-item {
  border: 1px solid var(--dsn-assistant-body-color);
}
.v-light .fact-item {
  border-color: var(--dsn-assistant-body-color-light);
}
.fact-item .box-title {
  padding: 30px 20px;
}
@media only screen and (max-width: 767px) {
  .fact-item .box-title {
    padding: 30px 15px;
  }
}
.fact-item .box-title h5 {
  font-size: 16px;
  letter-spacing: 1px;
}
.fact-item .box-title:after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--dsn-assistant-body-color);
  position: absolute;
  left: 15px;
  top: 0;
}
.v-light .fact-item .box-title:after {
  background-color: var(--dsn-assistant-body-color-light);
}
.fact-item .box-number {
  padding: 30px 20px;
}
@media only screen and (max-width: 767px) {
  .fact-item .box-number {
    padding: 30px 15px;
  }
}
.fact-item .box-number .number {
  font-weight: bold;
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: 1px;
}
@media only screen and (max-width: 575px) {
  .fact-item .box-number .number {
    font-size: 42px;
  }
}

/***
    END Facts
 */
.service .services-item {
  padding: 30px;
  -webkit-box-shadow: 0 7px 9px rgba(0, 0, 0, 0.02);
          box-shadow: 0 7px 9px rgba(0, 0, 0, 0.02);
  border: 2px solid var(--dsn-border-color);
}
.v-light .service .services-item {
  border-color: var(--dsn-border-color-light);
}
@media only screen and (max-width: 991px) {
  .service .services-item {
    padding: 30px 25px;
  }
}
.service .services-item .after-bg {
  top: 0;
  left: 0;
  opacity: 0.01;
}
@media only screen and (max-width: 767px) {
  .service .services-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service .services-item span {
  font-size: 55px;
  font-weight: 100;
  font-family: "DM Sans", sans-serif;
  line-height: 95px;
  height: 60px;
  overflow: hidden;
}
.v-light .service .services-item span {
  color: var(--dsn-assistant-body-color-light);
}
@media only screen and (max-width: 991px) {
  .service .services-item span {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .service .services-item span {
    display: none;
  }
}
.service .services-item .dsn-icon {
  width: 60px;
  padding-bottom: 20px;
  line-height: 1;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.service .services-item .dsn-icon i {
  font-size: 35px;
}

.service.service-3 .services-item {
  padding: 15px;
}
.service.service-3 .services-item .bg-section img {
  height: 100%;
}
.service.service-3 .services-item .bg-section {
  left: 0;
}
.service.service-3 .services-item .bg-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  background-color: rgba(var(--dsn-assistant-background-color), 0.9);
  -webkit-box-shadow: inset 0 -75px 60px -35px var(--dsn-background_color);
          box-shadow: inset 0 -75px 60px -35px var(--dsn-background_color);
  -webkit-transition: opacity 0.4s cubic-bezier(0.48, 0.83, 0.63, 0.91);
  -o-transition: opacity 0.4s cubic-bezier(0.48, 0.83, 0.63, 0.91);
  transition: opacity 0.4s cubic-bezier(0.48, 0.83, 0.63, 0.91);
}
.v-light .service.service-3 .services-item .bg-section:after {
  background-color: rgba(var(--dsn-background_color-light), 0.9);
  -webkit-box-shadow: inset 0 -75px 60px -35px var(--dsn-background_color-light);
          box-shadow: inset 0 -75px 60px -35px var(--dsn-background_color-light);
}
.service.service-3 .services-item .title-block {
  margin-bottom: 0;
}
.service.service-3 .services-item .box-content {
  -webkit-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.service.service-3 .services-item .box-content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dsn-background_color);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.v-light .service.service-3 .services-item .box-content:after {
  background-color: var(--dsn-background_color-light);
}
.service.service-3 .services-item .box-content .content-inner {
  margin: auto;
  z-index: 2;
}
.service.service-3 .services-item .box-content .content-inner .content {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.service.service-3:not(.service-with-hover) .services-item .box-content {
  padding: 80px 15px;
}
.service.service-3:not(.service-with-hover) .services-item .dsn-icon {
  width: 70px;
}
@media only screen and (max-width: 767px) {
  .service.service-3:not(.service-with-hover) .services-item .box-content {
    padding: 50px 15px;
  }
  .service.service-3:not(.service-with-hover) .services-item .dsn-icon {
    width: 60px;
  }
}
.service.service-3:not(.service-with-hover) .services-item .box-description {
  margin-top: 20px;
}
.service.service-3.service-with-hover .services-item .box-description {
  position: absolute;
  opacity: 0;
  margin-top: 20px;
}
.service.service-3.service-with-hover .services-item:hover .dsn-icon {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}
.service.service-3.service-with-hover .services-item:hover .bg-section:after {
  opacity: 1;
}
.service.service-3.service-with-hover .services-item:hover .box-content:after {
  opacity: 0;
}
.service.service-3.service-with-hover .services-item:hover .box-content .content-inner .box-description {
  opacity: 0;
}
.service.service-3.service-with-hover .services-item:hover .box-content .content-inner .box-description {
  position: relative;
  opacity: 1;
  -webkit-transition-delay: 100ms;
       -o-transition-delay: 100ms;
          transition-delay: 100ms;
}
.service.service-3.service-with-hover .services-item:hover .box-content .content {
  margin-top: -80px;
}

.services-about .services-wp .box-title-service ul {
  list-style: none;
}
.services-about .services-wp .box-title-service ul li {
  padding: 15px 0;
  margin-bottom: 0;
  letter-spacing: 2px;
  color: var(--dsn-heading-color);
  cursor: pointer;
  -webkit-transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  line-height: 1.5;
  border-bottom: 1px solid rgba(var(--dsn-border-color), 0.3);
}
.v-light .services-about .services-wp .box-title-service ul li {
  color: var(--dsn-heading-color-light);
  border-color: var(--dsn-border-color-light);
}
@media only screen and (max-width: 991px) {
  .services-about .services-wp .box-title-service ul li {
    display: inline-block;
    margin-right: 15px;
    border-bottom: 0;
    padding: 0;
    font-size: 22px;
    margin-bottom: 5px;
  }
}
.services-about .services-wp .box-title-service ul li:first-of-type {
  padding-top: 0;
}
.services-about .services-wp .box-title-service ul li:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.services-about .services-wp .box-title-service ul li.active {
  color: var(--dsn-heading-color-light);
}
.v-light .services-about .services-wp .box-title-service ul li.active {
  color: var(--dsn-heading-color);
}
.services-about .services-wp .content .services-item-info {
  display: none;
}
.services-about .services-wp .content .services-item-info h5 {
  margin-bottom: 20px;
  font-size: 16px;
}
.services-about .services-wp .content .services-item-info ul {
  margin-top: 20px;
  list-style: none;
}
.services-about .services-wp .content .services-item-info ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.1;
}
.services-about .services-wp .content .services-item-info ul li:last-child {
  margin-bottom: 0;
}
.services-about .services-wp .content .services-item-info ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: var(--dsn-assistant-body-color);
}
.v-light .services-about .services-wp .content .services-item-info ul li:after {
  background-color: var(--dsn-assistant-body-color-light);
}
.services-about .services-wp .content .services-item-info:first-child {
  display: block;
}
@media only screen and (min-width: 992px) {
  .services-about .services-wp .box-title-service, .services-about .services-wp .content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .services-about .services-wp .box-title-service ul li, .services-about .services-wp .content {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .services-about .services-wp .box-title-service {
    padding: 50px 50px 45px 50px;
  }
  .services-about .services-wp .content {
    padding: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .services-about .services-wp .box-title-service {
    padding: 30px 30px 25px 30px;
  }
  .services-about .services-wp .content {
    padding: 30px;
  }
}

/***
    END Service
 */
[data-dsn-grid=move-up],
[data-dsn-grid=moveUp] {
  position: relative;
  overflow: hidden;
  height: 100vh;
  will-change: transform;
}
.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].h-100,
[data-dsn-grid=moveUp].h-100 {
  height: 100%;
}

.mask-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(70% + 20px);
  height: 100%;
  background-color: var(--dsn-assistant-background-color);
  z-index: -1;
}
.v-light .mask-bg {
  background-color: var(--dsn-assistant-background-color-light);
}

.dsn-equal-height.h-100 > .elementor-widget-container {
  height: 100%;
}

/**
    Position
 */
@media only screen and (min-width: 992px) {
  .dsn-p-relative {
    position: relative;
  }

  .dsn-p-absolute {
    position: absolute;
  }
}
@media only screen and (max-width: 991px) {
  .dsn-tablet-p-relative {
    position: relative;
  }

  .dsn-tablet-p-absolute {
    position: absolute;
  }
}
@media only screen and (max-width: 767px) {
  .dsn-mobile-p-relative {
    position: relative;
  }

  .dsn-mobile-p-absolute {
    position: absolute;
  }
}
/**
    text align
 */
.elementor-align-center .line-under:after, .elementor-align-center .service .dsn-icon {
  margin-right: auto;
  margin-left: auto;
}
.elementor-align-right .line-under:after, .elementor-align-right .service .dsn-icon {
  margin-left: auto;
}
@media only screen and (max-width: 991px) {
  .elementor-tablet-align-center .line-under:after, .elementor-tablet-align-center .service .dsn-icon {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .elementor-tablet-align-right .line-under:after, .elementor-tablet-align-right .service .dsn-icon {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .elementor-tablet-align-left .line-under:after, .elementor-tablet-align-left .service .dsn-icon {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .elementor-mobile-align-center .line-under:after, .elementor-mobile-align-center .service .dsn-icon {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .elementor-mobile-align-right .line-under:after, .elementor-mobile-align-right .service .dsn-icon {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .elementor-mobile-align-left .line-under:after, .elementor-mobile-align-left .service .dsn-icon {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

.bg-color-global {
  background-color: var(--dsn-background_color);
}
.v-light .bg-color-global {
  background-color: var(--dsn-background_color-light);
}

@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, .wrapper > *: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;
  left: auto;
  right: 0;
}

.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, .sidebar-single, .dsn-work-scrollbar {
    height: calc(100vh - 32px);
  }
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
/* -------------------------------------------------------
                   Header
-------------------------------------------------------- */
.intro-project-details {
  overflow: hidden;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 575px) {
  .intro-project-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 992px) {
  .intro-project-details .descrption-item {
    padding: 30px;
  }
}
@media only screen and (min-width: 576px) {
  .intro-project-details .descrption-item {
    padding: 30px 15px;
    border-right: 1px solid var(--dsn-background_color);
  }
  .intro-project-details .descrption-item:last-of-type {
    border-right-width: 0;
  }
}
@media only screen and (max-width: 575px) {
  .intro-project-details .descrption-item {
    margin-bottom: 15px;
  }
}
.intro-project-details .descrption-item h5 {
  position: relative;
  letter-spacing: 2px;
}
@media only screen and (min-width: 576px) {
  .intro-project-details .descrption-item h5 {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .intro-project-details .descrption-item h5, .intro-project-details .descrption-item p {
    display: inline-block;
    margin-right: 10px;
  }
}

[data-dsn-header=project],
[data-dsn-header=personal] {
  background-color: var(--dsn-background_color);
}
[data-dsn-header=project] .link-custom,
[data-dsn-header=personal] .link-custom {
  color: var(--dsn-heading-color);
}
[data-dsn-header=project] .link-custom .link-text,
[data-dsn-header=personal] .link-custom .link-text {
  color: var(--dsn-heading-color);
}
[data-dsn-header=project] .link-custom .link-circle,
[data-dsn-header=personal] .link-custom .link-circle {
  background: #fff;
  color: var(--dsn-heading-color-light);
}
[data-dsn-header=project] .link-custom .link-circle i,
[data-dsn-header=personal] .link-custom .link-circle i {
  color: var(--dsn-heading-color-light);
}

.header-project .intro-project:not(.w-100) {
  width: 60%;
}
@media only screen and (max-width: 991px) {
  .header-project .intro-project:not(.w-100) {
    width: 100% !important;
  }
}
.header-project .intro-project .title {
  color: var(--dsn-heading-color);
}
.header-project .intro-project #dsn-hero-description {
  font-size: 16px;
  color: var(--dsn-body-color);
}
.header-project .intro-project.text-center .description {
  margin-right: auto;
  margin-left: auto;
}
.header-project .intro-project.w-100 .description {
  max-width: 59%;
}
.header-project .desc-personal {
  margin-top: 25px;
}
@media only screen and (max-width: 991px) {
  .header-project .link-vist {
    left: 0;
  }
}
.header-project .v-middle-horizontal .intro-project {
  width: 100%;
}
.header-project.justify-content-center .intro-project, .header-project.text-center .intro-project {
  width: 100%;
}
.header-project .intro-project-details h5 {
  color: var(--dsn-heading-color);
}
.header-project .intro-project-details p {
  color: var(--dsn-body-color);
}
@media only screen and (min-width: 576px) {
  .header-project .intro-project-details {
    background-color: rgba(var(--dsn-assistant-background-color), 0.7);
  }
  .header-project .intro-project-details h5:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: var(--dsn-assistant-body-color);
  }
  .v-light .header-project .intro-project-details h5:after {
    background-color: var(--dsn-assistant-body-color-light);
  }
}
.header-project .intro-project.text-center .intro-project-details {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-project .intro-project.text-center .intro-project-details h5:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header-project .intro-project.text-right .intro-project-details {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.header-project .intro-project.text-right .intro-project-details h5:after {
  left: auto;
  right: 0;
}
.header-project .footer-header {
  left: 0;
  bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .header-project .footer-header {
    padding: 0 40px;
  }
}
.header-project .footer-header .scroll-d {
  margin-left: auto;
}
.header-project .footer-header .scroll-d img {
  -webkit-filter: none;
          filter: none;
}

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

@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  from {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/* -------------------------------------------------------

-------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .header-master #dsn-hero-parallax-title {
    padding: 0 20px;
  }
}

.title.color-white {
  color: var(--dsn-heading-color);
}

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

-------------------------------------------------------- */
header {
  overflow: hidden;
}
header.header-normal .cover-bg-img {
  top: 40%;
  opacity: 0.004;
  right: 0;
}
@media only screen and (min-width: 768px) {
  header .header-page.header-page-work-space {
    padding-bottom: 200px;
  }
}
header .header-page .content-hero {
  padding: 150px 0;
}
header .header-page .metas:before, header .header-page .metas:after {
  opacity: 0.35;
  width: 60px;
}
header .header-page .metas:before {
  left: -80px;
}
header .header-page .metas:after {
  right: -80px;
}
header .header-page .description {
  max-width: 730px;
  border-width: 3px;
}

header .blog-post-cat a {
  position: relative;
  text-transform: lowercase;
  margin-right: 5px;
  padding-bottom: 8px;
  color: var(--dsn-heading-color);
}
header .blog-post-cat a:last-of-type {
  margin-right: 0;
}
header .blog-post-cat a:last-of-type::after {
  display: none;
}

header .header-master.header-half {
  height: 80vh;
}
header .header-master.header-half .social-network-box {
  width: 80vh;
}

@media only screen and (min-width: 991px) {
  .hero-personal[data-dsn-header=personal].dsn-end-animate .header-project .intro-project {
    left: 40%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .hero-personal[data-dsn-header=personal].dsn-end-animate #dsn-hero-parallax-img {
    width: 40%;
  }
}

@media only screen and (min-width: 991px) {
  [data-dsn-header=project].dsn-end-animate #dsn-hero-parallax-img {
    left: 60%;
    width: 40%;
  }
}

header .text-right .description, header .text-right .sub-text-header, header .header-page .text-right .description, header .header-page .text-right .sub-text-header {
  margin-left: auto;
}
header .text-center .description, header .text-center .sub-text-header, header .header-page .text-center .description, header .header-page .text-center .sub-text-header {
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
## pages
--------------------------------------------------------------*/
/* -------------------------------------------------------
                   09 - Slider
-------------------------------------------------------- */
.main-slider {
  background-color: var(--dsn-background_color);
}
header .main-slider {
  height: 100vh;
}
.admin-bar header .main-slider {
  height: calc(100vh - 46px);
}
@media screen and (min-width: 783px) {
  .admin-bar header .main-slider {
    height: calc(100vh - 32px);
  }
}
.main-slider h1.title {
  line-height: 56px;
}
@media only screen and (min-width: 768px) {
  .main-slider:not(.demo-2) .bg-container {
    width: calc(80% - 80px);
    margin-left: auto;
  }
}
.main-slider.demo-3 .bg-container .swiper-slide {
  height: 60%;
}
.main-slider.demo-3 .box-next {
  display: none;
}
.main-slider .slide-item {
  overflow: hidden;
}
.main-slider .box-next,
.main-slider .dsn-controls {
  z-index: 2;
}
.main-slider .box-next {
  height: 120px;
  width: 40%;
  max-width: 350px;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .main-slider .box-next {
    display: none;
  }
}
.main-slider .box-next {
  cursor: pointer;
}
.main-slider .box-next .img-box-next {
  position: absolute;
  right: 0;
  width: 70%;
  z-index: 0;
}
.main-slider .box-next .img-box-next .bg-container {
  width: 100%;
}
.main-slider .box-next .content-box-next {
  width: 70%;
  padding: 20px 10px 20px 20px;
  z-index: 1;
  text-align: left;
}
.main-slider .box-next .content-box-next .metas {
  margin-bottom: 0;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .main-slider .box-next .content-box-next {
    width: 100%;
    z-index: 2;
  }
  .main-slider .box-next .content-box-next .metas {
    display: none;
  }
}
.v-light .main-slider .box-next .content-box-next > span {
  color: var(--dsn-heading-color);
}
.main-slider .dsn-controls {
  right: 20px;
  top: 25%;
  height: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-slider .dsn-controls .dsn-progress {
  background: rgba(255, 255, 255, 0.34);
  width: 2px;
  height: calc(100% - 100px);
}
.main-slider .dsn-controls .dsn-progress .dsn-progress-indicator {
  left: 0;
  top: 0;
  height: 70%;
  background-color: #fff;
}
.main-slider .dsn-controls .dsn-progress .dsn-progress-indicator .num-progress {
  color: var(--dsn-body-color);
  letter-spacing: 2px;
  font-weight: 600;
  top: 100%;
  left: -30px;
  bottom: 0;
}
.main-slider .dsn-controls .dsn-progress .dsn-progress-indicator .num-progress:after {
  content: "";
  position: absolute;
  left: 27px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--dsn-background_color-light);
  top: 0;
}
.main-slider .dsn-slider-content {
  top: 0;
  z-index: 1;
  pointer-events: none;
}
.main-slider .dsn-slider-content .metas,
.main-slider .dsn-slider-content .dsn-button-link,
.main-slider .dsn-slider-content .description,
.main-slider .dsn-slider-content .sub-text-header {
  -webkit-clip-path: inset(100% 0% 0% 0%);
          clip-path: inset(100% 0% 0% 0%);
  -webkit-transition: -webkit-clip-path 0.5s;
  transition: -webkit-clip-path 0.5s;
  -o-transition: clip-path 0.5s;
  transition: clip-path 0.5s;
  transition: clip-path 0.5s, -webkit-clip-path 0.5s;
}
.main-slider .dsn-slider-content .slide-content .title {
  color: var(--dsn-heading-color);
}
.main-slider .dsn-slider-content .slide-content.dsn-active {
  z-index: 3;
}
.main-slider .dsn-slider-content .slide-content.dsn-active .title a,
.main-slider .dsn-slider-content .slide-content.dsn-active .metas,
.main-slider .dsn-slider-content .slide-content.dsn-active .dsn-button-link a,
.main-slider .dsn-slider-content .slide-content.dsn-active .description,
.main-slider .dsn-slider-content .slide-content.dsn-active .sub-text-header {
  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-button-link,
.main-slider .dsn-slider-content .slide-content.dsn-active.dsn-active-cat .description,
.main-slider .dsn-slider-content .slide-content.dsn-active.dsn-active-cat .sub-text-header {
  -webkit-clip-path: inset(0% 0% 0% 0%);
          clip-path: inset(0% 0% 0% 0%);
}
.main-slider .dsn-slider-content .slide-content:not(.dsn-active) .title {
  opacity: 0;
  visibility: hidden;
}
.main-slider .header-container {
  padding-top: 50px;
  padding-bottom: 50px;
}
.main-slider .title-next {
  color: var(--dsn-heading-color);
}

.nav-slider .metas span {
  font-size: 15px;
  font-weight: 300;
  color: var(--dsn-heading-color) !important;
}

@media only screen and (max-width: 991px) {
  .main-slider:not(.has-horizontal) > .bg-container:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
  }
}
.content-box-next > span, .num-progress-content {
  opacity: 0.09;
  font-size: 80px;
  color: transparent !important;
  -webkit-text-stroke: 1px var(--dsn-heading-color);
  letter-spacing: 2px;
  left: 15px;
}

.num-progress-content {
  font-size: 58px;
  line-height: 50px;
  margin-bottom: 15px;
}

.filtering-posts {
  position: absolute;
  top: 0;
  right: -80px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .filtering-posts {
    position: relative;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    right: auto;
    left: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .filtering-posts {
    margin-left: 15px;
  }
}
.filtering-posts .filterings-icon {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 20px;
}
.filtering-posts .filterings-icon:before, .filtering-posts .filterings-icon:after {
  content: "";
  position: absolute;
  right: 0;
  height: 2px;
  background-color: #fff;
}
.v-light .filtering-posts .filterings-icon:before, .v-light .filtering-posts .filterings-icon:after {
  background-color: var(--dsn-heading-color-light);
}
.filtering-posts .filterings-icon:before {
  top: 14px;
  width: 20px;
}
.filtering-posts .filterings-icon:after {
  height: 2px;
  top: 5px;
  width: 28px;
}
.filtering-posts span {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-left: 15px;
  color: var(--dsn-heading-color);
  -webkit-transition: letter-spacing 0.5s ease-in-out;
  -o-transition: letter-spacing 0.5s ease-in-out;
  transition: letter-spacing 0.5s ease-in-out;
}
.v-light .filtering-posts span {
  color: var(--dsn-heading-color-light);
}
.filtering-posts:hover span {
  letter-spacing: 3px;
}

.filters-content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-left: 8.82353%;
  padding-right: 8.82353%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.filters-content .filtering {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.filters-content .filtering button {
  color: #fff;
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "DM Sans", sans-serif;
}
.filters-content .filtering button.active {
  color: var(--dsn-assistant-body-color);
  font-weight: 800;
  letter-spacing: 4px;
}
.filters-content .filtering button span.counter {
  position: absolute;
  right: -20px;
  top: -10px;
  font-size: 12px;
  font-weight: 600;
}
.filters-content .filtering button:not(:last-child) {
  margin-bottom: 30px;
}

.close-wind {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(var(--dsn-background_color), 0.85);
  cursor: pointer;
}

.button-loadmore {
  cursor: pointer;
  font-size: 14px;
  -webkit-transition-property: padding, border-radius, background;
  -o-transition-property: padding, border-radius, background;
  transition-property: padding, border-radius, background;
  -webkit-transition-duration: 1s;
       -o-transition-duration: 1s;
          transition-duration: 1s;
}
.button-loadmore.dsn-loading {
  border-radius: 7px;
  padding: 10px 20px;
}
.button-loadmore .dsn-load-progress-ajax {
  left: 0;
  top: 0;
  width: 0;
  background-color: #212121;
  color: #fff;
  z-index: -1;
}
.button-loadmore .progress-no-more {
  display: none;
}

.our-work .work-item .item-info {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* -------------------------------------------------------
                   Blog
-------------------------------------------------------- */
.root-blog .post-info-category:before {
  content: "/";
  display: inline-block;
  margin-right: 10px;
}
.root-blog .post-list-item figure img {
  max-height: 80vh;
}
.root-blog .post-list-item .section-title-2 {
  margin-bottom: 0;
}
.root-blog .post-list-item .post-list-item-content .post-info-date {
  margin-right: 5px;
}
.root-blog .post-list-item .post-list-item-content .post-info-top a {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--dsn-heading-color);
  margin-right: 5px;
}
.v-light .root-blog .post-list-item .post-list-item-content .post-info-top a {
  color: var(--dsn-background_color);
}

.news-content .post-tags {
  padding: 20px 0 0;
  clear: both;
}
.news-content .post-tags a {
  margin-right: 10px;
  margin-top: 10px;
  line-height: 1;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
  color: inherit;
}
.news-content .post-tags a:before {
  content: "#";
  position: relative;
  margin-right: 5px;
  font-size: 14px;
  background-color: transparent;
  border: 0;
}

.post-full-content.single-post > *:not(.gallery):not(.wp-block-gallery), .post-full-content.single-post > *:not(.wp-block-quote) > p,
.widget_text.single-post > *:not(.gallery):not(.wp-block-gallery),
.widget_text.single-post > *:not(.wp-block-quote) > p {
  margin-bottom: 30px;
}
.post-full-content.single-post > *:not(.gallery):not(.wp-block-gallery):last-child, .post-full-content.single-post > *:not(.gallery):not(.wp-block-gallery) > *:last-child, .post-full-content.single-post > *:not(.wp-block-quote) > p:last-child, .post-full-content.single-post > *:not(.wp-block-quote) > p > *:last-child,
.widget_text.single-post > *:not(.gallery):not(.wp-block-gallery):last-child,
.widget_text.single-post > *:not(.gallery):not(.wp-block-gallery) > *:last-child,
.widget_text.single-post > *:not(.wp-block-quote) > p:last-child,
.widget_text.single-post > *:not(.wp-block-quote) > p > *:last-child {
  margin-bottom: 0;
}

.root-posts a {
  color: inherit;
}
.v-light .root-posts a {
  color: inherit;
}

/* -------------------------------------------------------
                  contact
-------------------------------------------------------- */
.entry-form {
  width: 100%;
  margin-bottom: 30px;
}
.entry-form input,
.entry-form textarea {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1.5px solid var(--dsn-assistant-body-color);
  padding-bottom: 20px;
  color: #eee;
  margin-top: 10px;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}
.v-light .entry-form input,
.v-light .entry-form textarea {
  border-color: var(--dsn-assistant-body-color-light);
  color: var(--dsn-body-color-light);
}
.entry-form input::-webkit-input-placeholder, .entry-form textarea::-webkit-input-placeholder {
  font-size: 16px;
}
.entry-form input::-moz-placeholder, .entry-form textarea::-moz-placeholder {
  font-size: 16px;
}
.entry-form input:-ms-input-placeholder, .entry-form textarea:-ms-input-placeholder {
  font-size: 16px;
}
.entry-form input::-ms-input-placeholder, .entry-form textarea::-ms-input-placeholder {
  font-size: 16px;
}
.entry-form input::placeholder,
.entry-form textarea::placeholder {
  font-size: 16px;
}

.entry-form input {
  height: 100%;
}

label {
  color: var(--dsn-assistant-body-color);
  font-size: 15px;
  font-weight: 600;
}
.v-light label {
  color: var(--dsn-assistant-body-color-light);
}

#map .gm-fullscreen-control,
#map .gm-bundled-control,
#map .gm-bundled-control-on-bottom,
#map .gmnoprint,
#map .gm-style-cc {
  display: none !important;
}

.root-contact .wpcf7-form-control-wrap {
  width: 100%;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-post .comments-title {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .comments-post .comments-title {
    margin-bottom: 35px;
  }
}
.comments-post .comments-area .comment-list > li.comment:first-child {
  margin-top: 0;
}
.comments-post .comments-area .comment-list > li.comment:first-child > .pingback {
  padding-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 > .pingback {
  padding-top: 10px;
}
.comments-post .comments-area .comment > .pingback .edit-link {
  margin-top: 10px;
}
.comments-post .comments-area .comment .children {
  margin-left: 90px;
}
@media only screen and (max-width: 575px) {
  .comments-post .comments-area .comment .children {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 400px) {
  .comments-post .comments-area .comment .children {
    margin-left: 20px;
  }
}
.comments-post .comment-body .comment-author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
@media only screen and (min-width: 576px) {
  .comments-post .comment-body .comment-author img {
    float: left;
  }
}
.comments-post .comment-body .comment-text {
  min-height: 64px;
}
@media only screen and (min-width: 576px) {
  .comments-post .comment-body .comment-text {
    padding: 0 0 0 90px;
  }
}
.comments-post .comment-body .comment-text .comment-date {
  float: right;
  margin: 3px 5px 0 0;
  font-size: 14px;
}
.comments-post .comment-body .comment-text .comment-date:before {
  content: "/";
  display: inline-block;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .comments-post .comment-body .comment-text .comment-date {
    float: inherit;
    margin-bottom: 15px;
  }
  .comments-post .comment-body .comment-text .comment-date:before {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .comments-post .comment-body .comment-text .comment-date {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .comments-post .comment-body .comment-text .comment-info {
    margin-bottom: 8px;
  }
}
.comments-post .comment-body .comment-text .comment-info .comment-edit {
  right: -12px;
  top: 5px;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 15px;
}
.comments-post .comment-body .comment-text .comment-info .comment-edit .comment-edit-link i {
  font-size: 9px;
}
.comments-post .comment-body .comment-text .comment-info .comment-name {
  float: left;
  margin: 0;
}
.comments-post .comment-body .comment-text .reply {
  font-size: 14px;
  margin-top: 15px;
}
.comments-post .comment-body .comment-text .reply a {
  padding: 10px 15px;
  border-radius: 30px;
  background-color: var(--dsn-assistant-background-color);
  color: var(--dsn-heading-color);
  line-height: 1;
}
.comments-post .comment-body .comment-text .text-holder p {
  margin: 7px 0 10px;
}
.comments-post .comment-body .comment-text .comment-reply-link {
  line-height: 20px;
}
.comments-post .comments-form {
  position: relative;
  width: 100%;
}
.comments-post .comments-form .comment-form-cookies-consent {
  width: 100%;
  margin-bottom: 30px;
}

.comment-list .comment-respond {
  padding: 50px;
  background-color: var(--dsn-assistant-background-color);
  margin-top: 50px;
}
.comment-list .comment-respond .comments-title {
  margin-bottom: 50px;
}
@media only screen and (max-width: 575px) {
  .comment-list .comment-respond {
    padding: 50px 15px;
  }
}
.comment-list .comment-respond input[type=submit] {
  background-color: var(--dsn-background_color);
  border-width: 0;
}
.v-light .comment-list .comment-respond {
  background-color: var(--dsn-assistant-background-color-light);
}
@media only screen and (max-width: 575px) {
  .comment-list .comment-respond .dsn_root_form textarea:placeholder-shown ~ label, .comment-list .comment-respond .dsn_root_form textarea {
    padding: 0 0 15px 0;
  }
}

.logged-in-as {
  margin-bottom: 30px;
}

.no-comments {
  margin-top: 30px;
}

a#cancel-comment-reply-link {
  position: absolute;
  right: 0;
  top: -6px;
}
a#cancel-comment-reply-link .dsn-cancel-comment {
  position: relative;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 15px;
}

/*--------------------------------------------------------------
## Archives
--------------------------------------------------------------*/
/* 404 & Not found */
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
/* -------------------------------------------------------
                   Footer
-------------------------------------------------------- */
.footer-1 p {
  font-size: 16px;
}
.footer-1 .sidebar-single-content {
  padding-bottom: 0;
}
.footer-1 .footer-links {
  padding: 50px 0;
}
@media only screen and (max-width: 991px) {
  .footer-1 .footer-links .footer-block-inner:nth-of-type(n + 3) {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-1 .footer-links .footer-block-inner:nth-of-type(n + 2) {
    margin-top: 30px;
  }
}
.v-light .footer-1 .footer-links .link-hover {
  color: var(--dsn-heading-color-light);
}
.v-light .footer-1 .footer-links .link-hover:before {
  color: var(--dsn-heading-color-light);
}
.footer-1 .footer-links .footer-title {
  position: relative;
  color: var(--dsn-assistant-body-color);
  text-transform: uppercase;
  font-size: 17px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.v-light .footer-1 .footer-links .footer-title {
  color: var(--dsn-assistant-body-color-light);
}
.footer-1 .footer-links .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 15px;
  height: 2px;
  background-color: #fff;
}
.v-light .footer-1 .footer-links .footer-title::after {
  background-color: var(--dsn-border-color-light);
}
.footer-1 .footer-links .col-menu ul li {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}
.footer-1 .footer-links .col-menu ul li:last-of-type {
  margin-bottom: 0;
}
.footer-1 .footer-links .col-menu ul li a {
  text-transform: uppercase;
}
.footer-1 .footer-links .col-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-1 .footer-links .col-contact p:last-of-type {
  margin-bottom: 0;
}
.footer-1 .footer-links .col-contact p strong {
  color: var(--dsn-heading-color);
}
.v-light .footer-1 .footer-links .col-contact p strong {
  color: var(--dsn-heading-color-light);
}
.footer-1 .footer-links .col-contact p span {
  margin-right: 5px;
  margin-left: 5px;
}
.footer-1 .footer-links .footer-social ul {
  margin: 0;
}
.footer-1 .footer-links .footer-social ul li {
  color: var(--dsn-heading-color);
  font-size: 14px;
  margin-right: 15px;
  padding-right: 5px;
}
.v-light .footer-1 .footer-links .footer-social ul li {
  color: var(--dsn-heading-color-light);
}
@media only screen and (max-width: 575px) {
  .footer-1 .footer-links .footer-social ul li {
    font-size: 13px;
    margin-right: 3px;
    padding-right: 3px;
  }
}
.footer-1 .footer-links .footer-social ul li:first-of-type {
  padding-left: 0;
}
.footer-1 .footer-links .footer-social ul li a {
  color: #fff;
  display: inline-block;
  letter-spacing: 2px;
  line-height: 1.6;
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
  position: relative;
  text-transform: capitalize;
}
.v-light .footer-1 .footer-links .footer-social ul li a {
  color: var(--dsn-heading-color-light);
}
.footer-1 .footer-links .footer-logo {
  width: 70px;
}
.footer-1 .footer-links .footer-logo img.logo-dark {
  display: block;
}
.v-light .footer-1 .footer-links .footer-logo img.logo-dark {
  display: none;
}
.footer-1 .footer-links .footer-logo img.logo-light {
  display: none;
}
.v-light .footer-1 .footer-links .footer-logo img.logo-light {
  display: block;
}
.footer-1 .footer-links .description-logo {
  margin-top: 20px;
}
.footer-1 .footer-nav {
  position: relative;
  padding: 30px 0;
  text-align: center;
}
.footer-1 .footer-nav .footer-title::after {
  display: none;
}
@media only screen and (max-width: 575px) {
  .footer-1 .footer-nav {
    padding: 25px 0;
  }
}
.footer-1 .footer-nav ul li {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  margin: 0 18px;
}
@media only screen and (max-width: 575px) {
  .footer-1 .footer-nav ul li {
    font-size: 13px;
    margin: 5px;
  }
}
.footer-1 .footer-nav ul li a {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  color: #fff;
}
.v-light .footer-1 .footer-nav ul li a {
  color: var(--dsn-heading-color-light);
}
.footer-1 .copyright {
  padding: 30px 0;
  font-size: 14px;
  letter-spacing: 2.67px;
}
.footer-1 .copyright p {
  text-transform: uppercase;
}
.footer-1 .copyright .copright-text {
  color: #e6e6e6;
  margin-top: 5px;
}
.v-light .footer-1 .copyright .copright-text {
  color: var(--dsn-heading-color-light);
}
.footer-1 .copyright .copright-text a {
  color: var(--dsn-assistant-body-color);
  font-weight: 700;
}
.v-light .footer-1 .copyright .copright-text a {
  color: var(--dsn-assistant-body-color-light);
}

.footer-1 .scroll-top, .footer .scroll-top {
  width: 60px;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .footer-1 .scroll-top.m-auto, .footer .scroll-top.m-auto {
    margin: 0;
  }
}
.footer-1 .scroll-top .icon-circle, .footer .scroll-top .icon-circle {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border-radius: 50%;
  display: none;
  background-color: rgba(var(--dsn-assistant-body-color), 0.3);
}
.footer-1 .scroll-top:hover .icon-circle, .footer .scroll-top:hover .icon-circle {
  display: inherit;
}
.footer-1 .scroll-top img, .footer .scroll-top img {
  width: 60px;
}
.v-light .footer-1 .scroll-top img, .v-light .footer .scroll-top img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.footer-1 .scroll-top i, .footer .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: var(--dsn-heading-color);
  cursor: pointer;
}
.v-light .footer-1 .scroll-top i, .v-light .footer .scroll-top i {
  color: var(--dsn-heading-color-light);
}
.footer-1 .link-hover, .footer .link-hover {
  text-transform: initial;
}
.v-light .footer-1 .link-hover, .v-light .footer .link-hover {
  color: var(--dsn-heading-color-light);
}
.footer-1 .love, .footer .love {
  color: #fd4145;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 16px;
  font-weight: bold;
}
.footer-1 .column-right, .footer .column-right {
  font-size: 16px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .footer-1 .column-right, .footer .column-right {
    text-align: left;
  }
}
.footer-1 .column-right a, .footer .column-right a {
  color: var(--dsn-assistant-body-color);
}
.v-light .footer-1 .column-right a, .v-light .footer .column-right a {
  color: var(--dsn-assistant-body-color-light);
}

.footer .footer-container {
  padding: 0 50px 30px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-container {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 575px) {
  .footer .footer-container {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-container > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .column-left,
.footer .column-right {
  width: calc(50% - 35px);
}
@media only screen and (max-width: 767px) {
  .footer .column-left,
.footer .column-right {
    width: 100%;
    text-align: center;
  }
}
.footer .column-left .logo-footer img {
  width: 75px;
}
.footer .column-left .footer-social ul {
  margin: 0;
}
.footer .column-left .footer-social ul li {
  color: var(--dsn-heading-color);
  font-size: 14px;
  font-weight: 500;
  margin-right: 15px;
  padding-right: 5px;
}
@media only screen and (max-width: 575px) {
  .footer .column-left .footer-social ul li {
    font-size: 13px;
    margin-right: 3px;
    padding-right: 3px;
  }
}
.footer .column-left .footer-social ul li:first-of-type {
  padding-left: 0;
}
.footer .column-left .footer-social ul li a {
  color: #fff;
  display: inline-block;
  letter-spacing: 2px;
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  position: relative;
}
.v-light .footer .column-left .footer-social ul li a {
  color: var(--dsn-heading-color-light);
}
@media only screen and (max-width: 767px) {
  .footer .column-right {
    text-align: center;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .scroll-top {
    position: absolute;
    right: 15px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media only screen and (max-width: 575px) {
  .footer .scroll-top {
    position: relative;
    margin-top: 20px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

footer .sidebar-single-content .widget {
  margin-top: 30px;
}
footer .sidebar-single-content .widget:first-child {
  margin-top: 0;
}

.cap {
  position: absolute;
  bottom: 30px;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#0e0e0e5c), to(#1b1515));
  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-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-size: 14px;
  font-weight: 600;
  position: relative;
  margin-top: 15px;
}
.v-light .caption {
  color: var(--dsn-background_color);
}

.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;
}

.elementor-page .root-page.section-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.elementor img.cover-bg-img {
  height: 100%;
}

.main-slider a, .v-light .main-slider a, .v-light .post-full-content a.btn {
  color: #fff;
}

.dsn_root_form .wpcf7-submit {
  cursor: pointer;
}
.dsn_root_form input:not([type=submit]):not([type=checkbox]), .dsn_root_form textarea {
  border-color: var(--dsn-border-color);
  background-color: var(--dsn-assistant-background-color);
  border-width: 2px;
  outline: 0;
  margin: 0;
  padding: 10px 15px;
  font-size: 12px;
}
.dsn_root_form input:not([type=submit]):not([type=checkbox]):focus, .dsn_root_form textarea:focus {
  border-color: var(--dsn-assistant-background-color-light);
}
.dsn_root_form input:not([type=submit]):not([type=checkbox])::-webkit-input-placeholder, .dsn_root_form textarea::-webkit-input-placeholder {
  color: transparent;
}
.dsn_root_form input:not([type=submit]):not([type=checkbox])::-moz-placeholder, .dsn_root_form textarea::-moz-placeholder {
  color: transparent;
}
.dsn_root_form input:not([type=submit]):not([type=checkbox]):-ms-input-placeholder, .dsn_root_form textarea:-ms-input-placeholder {
  color: transparent;
}
.dsn_root_form input:not([type=submit]):not([type=checkbox])::-ms-input-placeholder, .dsn_root_form textarea::-ms-input-placeholder {
  color: transparent;
}
.dsn_root_form input:not([type=submit]):not([type=checkbox])::placeholder, .dsn_root_form textarea::placeholder {
  color: transparent;
}
.v-light .dsn_root_form input:not([type=submit]):not([type=checkbox]), .v-light .dsn_root_form textarea {
  background-color: var(--dsn-assistant-background-color-light);
  border-color: var(--dsn-border-color-light);
}
.dsn_root_form input:not([type=submit]):not([type=checkbox]):placeholder-shown ~ label, .dsn_root_form textarea:placeholder-shown ~ label {
  top: 11px;
  font-size: 16px;
}
.comments-form .dsn_root_form input:not([type=submit]):not([type=checkbox]):placeholder-shown ~ label, .comments-form .dsn_root_form textarea:placeholder-shown ~ label {
  display: block;
}
.dsn_root_form input:not([type=submit]):not([type=checkbox]):focus ~ label, .dsn_root_form textarea:focus ~ label {
  top: -20px;
  font-size: 13px;
}
.comments-form .dsn_root_form input:not([type=submit]):not([type=checkbox]):focus ~ label, .comments-form .dsn_root_form textarea:focus ~ label {
  display: none;
}
.dsn_root_form .entry-form label {
  position: absolute;
  display: block;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  z-index: 1;
  padding: 0 15px;
  top: -20px;
  font-size: 12px;
  pointer-events: none;
}
.comments-form .dsn_root_form .entry-form label {
  display: none;
}

[for=wp-comment-cookies-consent] {
  color: inherit;
}

.dsn-heading-title a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */