@charset "UTF-8";
/*-----------------------------------------------------------
-------------------------------------------------------------*/

/*-----------------------------------------------------------

    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

-------------------------------------------------------------*/

:root,
:root .v-light,
:root .v-light-head {
    --bg-color: #f9f9f9;
    --assistant-color: #F1F1EF;
    --theme-color-font: #fff;
    --font-color: #757575;
    --heading-color: #000;
    --border-theme-color: #2828281a;
    --smooth-color: #141414;
    --reverse-color: #141414;
    --reverse-heading-color: #fff;
    --bg-btn: #f6fafd;
    /**
     Elementor color
  */
    --divider-color: var(--border-color);
}

:root.v-light .background-theme,
:root.background-theme,
:root .calendar_wrap table tr td#today,
:root .v-light.v-light .background-theme,
:root .v-light.background-theme,
:root .v-light .calendar_wrap table tr td#today,
:root .v-light-head.v-light .background-theme,
:root .v-light-head.background-theme,
:root .v-light-head .calendar_wrap table tr td#today {
    --heading-color: #fff;
    --font-color: #fff;
    color: var(--font-color);
}

:root .v-dark,
:root .v-dark-head {
    --bg-color: #131313;
    --assistant-color: #191919;
    --font-color: #ddd;
    --heading-color: #fff;
    --border-theme-color: #ffffff1a;
    --smooth-color: #f9f9f9;
    --reverse-color: #f9f9f9;
    --reverse-heading-color: #000;
    --bg-btn: #0a0909;
}

@media only screen and (max-width: 991px) {
    .v-dark-head-mobile {
        --bg-color: #131313;
        --assistant-color: #191919;
        --font-color: #ddd;
        --heading-color: #fff;
        --border-theme-color: #ffffff1a;
        --smooth-color: #f9f9f9;
        --reverse-color: #f9f9f9;
        --reverse-heading-color: #000;
        --bg-btn: #0a0909;
    }
}

:root {
    --body-font: "Poppins", sans-serif;
    --heading-font: "Poppins", sans-serif;
    --font-code: Menlo, monaco, Consolas, Lucida Console, monospace;
    --font-pre: "Courier 10 Pitch", Courier, monospace;
    --font-size-base: 15px;
    --font-size-h1: 40px;
    --font-size-h2: 35px;
    --font-size-h3: 30px;
    --font-size-h4: 25px;
    --font-size-h5: 22px;
    --font-size-h6: 16px;
    --menu-size: 12px;
    --line-height-base: 1.3;
    --line-height-content: 1.6;
    --font-weight-heading: 200;
    --font-weight-body: 400;
    --smooth-width: 4px;
    --theme-color: #ae926c;
    --width-wrapper: 100px;
    --height-wrapper: 100px;
    --bg-overlay: #000;
    --overlay-blend-mode: unset;
    /**
  Elementor
   */
    --container-default-padding-top: 0;
    --container-default-padding-right: 0;
    --container-default-padding-bottom: 0;
    --container-default-padding-left: 0;
    --content-width: min(100%, var(--container-max-width, 1140px));
}

@media only screen and (min-width: 1400px) {
    :root {
        --dsn-gap-container: 100px;
        --title-heading: 70px;
    }
    :root .container,
    :root .dsn-left-container,
    :root .dsn-right-container {
        --dsn-gap-container: 50px;
    }
}

@media only screen and (max-width: 1399px) {
    :root {
        --dsn-gap-container: 50px;
        --title-heading: 56px;
    }
}

@media only screen and (min-width: 992px) {
    :root {
        --margin-padding: 120px;
        --box-padding: 80px 40px;
    }
}

@media only screen and (max-width: 991px) {
    :root {
        --margin-padding: 25px;
        --box-padding: 60px var(--dsn-gap-container);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    :root {
        --dsn-gap-container: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    :root {
        --dsn-gap-container: 25px;
        --title-heading: 47px;
    }
}

@media only screen and (max-width: 575px) {
    :root {
        --dsn-gap-container: 15px;
        --title-heading: 47px;
    }
}

/* -------------------------------------------------------
                   Core
-------------------------------------------------------- */

html {
    font-size: var(--font-size-base);
}

body {
    background-color: var(--bg-color);
    color: var(--font-color);
    line-height: var(--line-height-base);
    font-family: var(--body-font);
    font-weight: var(--font-weight-body);
    margin: 0;
    text-rendering: optimizeLegibility;
    transition: 100ms;
    transition-property: background-color, color;
}

#dsn_cursor,
#dsn_cursor_inner {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99;
}

body:not(.dsn-cursor-effect) #dsn_cursor,
body:not(.dsn-cursor-effect) #dsn_cursor_inner {
    display: none;
}

@media only screen and (max-width: 991px) {
    #dsn_cursor,
    #dsn_cursor_inner {
        display: none;
    }
}

#dsn_cursor {
    width: 30px;
    height: 30px;
    border: 2px solid var(--theme-color);
}

#dsn_cursor path {
    display: none;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    stroke-width: 1;
}

#dsn_cursor_inner {
    width: 7px;
    height: 7px;
    background-color: var(--theme-color);
}

#dsn_preloader {
    position: fixed;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    z-index: 101;
    flex-direction: column;
    overflow: hidden;
    left: 0;
}

#dsn_preloader .bg-load {
    z-index: -1;
}

@media only screen and (min-width: 992px) {
    #dsn_preloader {
        --width-loading-circle: 25vw;
    }
}

@media only screen and (max-width: 991px) {
    #dsn_preloader {
        --width-loading-circle: 50vw;
    }
}

#dsn_preloader svg.v-middle,
#dsn_preloader .loading-circle {
    width: var(--width-loading-circle);
    height: var(--width-loading-circle);
}

#dsn_preloader .loading-circle {
    font-size: 25vw;
    letter-spacing: 0;
    opacity: 0.1;
}

#dsn_preloader .loading-text {
    position: absolute;
    color: var(--heading-color);
    left: var(--dsn-gap-container);
    bottom: 50px;
    letter-spacing: 2px;
}

.dsnload {
    top: 22px;
    left: var(--dsn-gap-container);
}

.dsnload .dsnload__img {
    display: block;
    transform-origin: bottom left;
    animation: moveIn 2s 0s cubic-bezier(0.36, 0, 0.06, 1) alternate infinite;
}

.dsnload .dsnload__img img {
    width: 96px;
}

.dsnload .dsnload__row:nth-child(1) {
    -webkit-clip-path: polygon(-10% 75%, 110% 75%, 110% 110%, -10% 110%);
    clip-path: polygon(-10% 75%, 110% 75%, 110% 110%, -10% 110%);
}

.dsnload .dsnload__row:nth-child(1) .dsnload__img {
    transform: translateY(-0.1em);
}

.dsnload .dsnload__row:nth-child(2) {
    -webkit-clip-path: polygon(-10% 50%, 110% 50%, 110% 75.3%, -10% 75.3%);
    clip-path: polygon(-10% 50%, 110% 50%, 110% 75.3%, -10% 75.3%);
}

.dsnload .dsnload__row:nth-child(2) .dsnload__img {
    transform: translateY(-0.3em) scaleY(1.1);
}

.dsnload .dsnload__row:nth-child(3) {
    -webkit-clip-path: polygon(-10% 25%, 110% 25%, 110% 50.3%, -10% 50.3%);
    clip-path: polygon(-10% 25%, 110% 25%, 110% 50.3%, -10% 50.3%);
}

.dsnload .dsnload__row:nth-child(3) .dsnload__img {
    transform: translateY(-0.5em) scaleY(1.2);
}

.dsnload .dsnload__row:nth-child(4) {
    -webkit-clip-path: polygon(-10% 0%, 110% 0%, 110% 25.3%, -10% 25.3%);
    clip-path: polygon(-10% 0%, 110% 0%, 110% 25.3%, -10% 25.3%);
}

.dsnload .dsnload__row:nth-child(4) .dsnload__img {
    transform: translateY(-0.7em) scaleY(1.3);
}

.dsnload .dsnload__row.dsnload__row--sibling {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-user-select: none;
    user-select: none;
}

@keyframes moveIn {
    50%,
    100% {
        transform: translateY(0em);
    }
    0% {
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#layout_option {
    position: fixed;
    z-index: 99999;
    right: 20px;
    bottom: 30px;
}

@media only screen and (max-width: 767px) {
    #layout_option {
        display: none;
    }
}

.day-night,
.smooth-scrollbar-option {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.day-night svg,
.smooth-scrollbar-option svg {
    width: 100%;
    height: 100%;
}

.smooth-scrollbar-option {
    margin-top: 10px;
    border: 1px solid var(--border-theme-color);
    background-color: var(--assistant-color);
    border-radius: 50%;
    padding: 5px;
}

.smooth-scrollbar-option svg {
    fill: var(--heading-color);
}

.day-night .night,
.day-night .moon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: opacity 0.8s;
    border-radius: 100%;
    opacity: 0;
}

.day-night .night {
    border: 1px solid var(--border-theme-color);
    background-color: #fff;
    opacity: 1;
}

.day-night .night svg {
    fill: #000;
}

.day-night .moon {
    border: 1px solid var(--border-theme-color);
    background-color: #000;
    opacity: 0;
}

.day-night .moon svg {
    transform: rotate(270deg);
    fill: #f0f0f0;
}

.v-light .day-night .night {
    opacity: 0;
}

.v-light .day-night .moon {
    opacity: 1;
}

#page_wrapper {
    position: relative;
    z-index: 1;
}

.elementor-widget-dsn_bg_mask.elementor-element.elementor-absolute,
.elementor-widget-dsn_bg_mask.elementor-element.elementor-fixed {
    z-index: 0;
}

.bg-load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.bg-load svg {
    fill: var(--dsn-color-icon, var(--theme-color));
    pointer-events: none;
    width: 100%;
    height: 150px;
}

.bg-load svg.dsn-separator-bottom {
    transform: translateY(148px);
}

.bg-load svg.dsn-separator-top {
    transform: translateY(-148px) rotate(180deg);
}

.dsn-bg-blur {
    background-color: #0F1117;
    filter: blur(3px);
}

.dsn-heading-title.p-10 {
    padding-top: 5px;
    padding-bottom: 5px;
    letter-spacing: 2px;
}

#line_head {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.2;
}

#line_head>.container {
    position: relative;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 1px solid var(--border-theme-color);
    border-right: 1px solid var(--border-theme-color);
}

#line_head>.container:before {
    content: "";
    display: block;
    position: relative;
    width: 1px;
    background-color: var(--border-theme-color);
    height: 100%;
    margin: 0 auto;
}

.dsn-separator:not(.dsn-duration) {
    display: none;
}

.footer-animate.svg-animate .dsn-separator {
    top: 0;
    fill: var(--dsn-color-icon, var(--theme-color));
    position: absolute;
    display: block;
    pointer-events: none;
    width: 100%;
    height: 150px;
    z-index: 10;
    left: 0;
    background-color: transparent;
}

@media only screen and (max-width: 991px) {
    .footer-animate.svg-animate .dsn-separator {
        height: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-animate.svg-animate .dsn-separator {
        height: 80px;
    }
}

@media only screen and (max-width: 400px) {
    .footer-animate.svg-animate .dsn-separator {
        height: 50px;
    }
}

.dsn-separator-up {
    top: -1px;
}

.aspect-ratio-1 .box-image-link {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

@media only screen and (max-width: 400px) {
    .aspect-ratio-1 .box-image-link {
        border-radius: 0;
        aspect-ratio: unset;
    }
}

.clip-path-circle .swiper-slide {
    -webkit-clip-path: circle(44% at 50% 50%);
    clip-path: circle(44% at 50% 50%);
}

.swiper-slide img {
    pointer-events: none;
}

.swiper-slide .box-image-link {
    pointer-events: none;
}

body.bg:not(.dsn-button-sidebar, .bg-load, .dsn-ajax-loader, .link-project, .comment-edit),
.background-main.bg:not(.dsn-button-sidebar, .bg-load, .dsn-ajax-loader, .link-project, .comment-edit),
.background-section.bg:not(.dsn-button-sidebar, .bg-load, .dsn-ajax-loader, .link-project, .comment-edit),
.background-theme.bg:not(.dsn-button-sidebar, .bg-load, .dsn-ajax-loader, .link-project, .comment-edit) {
    position: relative;
}

body.bg:not(.dsn-button-sidebar, .bg-load, .dsn-ajax-loader, .link-project, .comment-edit):before,
.background-main.bg:not(.dsn-button-sidebar, .bg-load, .dsn-ajax-loader, .link-project, .comment-edit):before,
.background-section.bg:not(.dsn-button-sidebar, .bg-load, .dsn-ajax-loader, .link-project, .comment-edit):before,
.background-theme.bg:not(.dsn-button-sidebar, .bg-load, .dsn-ajax-loader, .link-project, .comment-edit):before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.05;
    background-image: radial-gradient(var(--font-color) 0.25px, var(--bg-color) 0.25px);
    background-size: 5px 5px;
}

/**
dsn-bg-pattern bg-square
 */

.dsn-bg-pattern {
    --bg-offset: 50deg;
}

.dsn-bg-pattern:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: var(--bg-opacity, 0.2);
    background-position: center center;
    background-size: cover;
}

.dsn-bg-pattern.bg-offset>* {
    z-index: 1;
}

.dsn-bg-pattern.bg-offset:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center center;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(var(--bg-offset), var(--bg-color) 20%, transparent 40%);
}

.dsn-bg-pattern.bg-offset.background-section:after,
.background-section .dsn-bg-pattern.bg-offset:after {
    background-image: linear-gradient(var(--bg-offset), var(--assistant-color) 30%, transparent 85%);
}

.dsn-bg-pattern.bg-offset.background-theme:after,
.background-theme .dsn-bg-pattern.bg-offset:after {
    background-image: linear-gradient(var(--bg-offset), var(--assistant-color) 20%, transparent 100%);
}

.dsn-bg-pattern.bg-square:before {
    background-size: var(--bg-size, 130px 130px);
    background-image: linear-gradient(to right, var(--border-theme-color) 1px, transparent 1px), linear-gradient(to bottom, var(--border-theme-color) 1px, transparent 1px);
}

.dsn-bg-pattern.bg-line:before {
    background-image: url("../img/bg-line.png");
    background-repeat: no-repeat;
}

.dsn-fill.color-light span.word {
    -webkit-text-fill-color: rgba(255, 255, 255, 0.1);
}

.dsn-fill:not(.color-light) span.word {
    -webkit-text-fill-color: rgba(0, 0, 0, 0.1);
}

.dsn-fill span.word {
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-image: linear-gradient(var(--heading-color), var(--heading-color));
    background-size: 0 100%;
}

.bg-dots:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern),
.bg-dots .background-section:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern),
.bg-dots .background-main:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern),
.bg-dots .background-theme:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern) {
    background-image: url("../img/bg-dot.png");
}

.bg-dots.v-light:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern),
.bg-dots.v-light .background-section:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern),
.bg-dots.v-light .background-main:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern),
.bg-dots.v-light .background-theme:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern),
.v-light .bg-dots:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern),
.v-light .bg-dots .background-section:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern),
.v-light .bg-dots .background-main:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern),
.v-light .bg-dots .background-theme:not(.dsn-btn,
.service-item,
.service-item-inner,
.not-bg-dot,
.dsn-bg-pattern) {
    background-image: url("../img/bg-dot-light.png");
}

.dsn-grid-masonry .grid-item:hover .dsn-widget-rep-title {
    transform: translateY(-10px);
}

.dsn-grid-masonry .dsn-widget-rep-title {
    background-color: var(--assistant-color);
    margin-bottom: 15px;
    padding: 0.5rem 0.8rem;
    border-radius: 0.5rem;
    transition: 0.5s cubic-bezier(0.36, 0, 0.66, -0.56);
    border: 1px solid var(--theme-color);
}

.dsn-icon .elementor-shape svg {
    --dsn-icon-size: calc(100% + 1.3px);
}

.dsn-icon .elementor-shape svg path {
    fill: var(--dsn-color-icon, var(--theme-color));
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder,
.form-box input::placeholder,
.form-box textarea::placeholder {
    color: var(--font-color);
}

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;
}

.entry-form label {
    font-weight: 600;
    font-family: var(--heading-font);
    padding-bottom: 10px;
    display: block;
}

.entry-form input,
.entry-form textarea {
    font-family: var(--heading-font);
    font-size: 14px;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border-theme-color);
    color: var(--heading-color);
    padding: 10px;
    letter-spacing: 2px;
    background-color: var(--assistant-color);
}

.entry-form input::placeholder,
.entry-form textarea::placeholder {
    color: var(--heading-color);
    font-size: 14px;
    letter-spacing: 2px;
}

.entry-form textarea {
    min-height: 80px;
}

.dsn-def-btn.dsn-border .dsn-icon::before {
    border: 2px solid var(--border-theme-color);
}

.dsn-btn {
    position: relative;
    text-align: center;
}

.dsn-btn .btn-icon-left {
    margin-right: 10px;
}

.dsn-btn .btn-icon-right {
    margin-left: 10px;
}

.dsn-btn .title-btn {
    position: relative;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.dsn-default-btn .dsn-btn .dsn-icon {
    padding: 7px 17px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dsn-default-btn .dsn-btn .title-btn[data-animate-text],
.dsn-default-btn .dsn-btn .dsn-icon,
.dsn-normal-btn .dsn-btn .title-btn[data-animate-text],
.dsn-normal-btn .dsn-btn .dsn-icon {
    overflow: hidden;
}

.dsn-default-btn .dsn-btn .title-btn[data-animate-text]>span,
.dsn-default-btn .dsn-btn .title-btn[data-animate-text]:before,
.dsn-default-btn .dsn-btn .dsn-icon>span,
.dsn-default-btn .dsn-btn .dsn-icon:before,
.dsn-normal-btn .dsn-btn .title-btn[data-animate-text]>span,
.dsn-normal-btn .dsn-btn .title-btn[data-animate-text]:before,
.dsn-normal-btn .dsn-btn .dsn-icon>span,
.dsn-normal-btn .dsn-btn .dsn-icon:before {
    transition: transform 0.37s cubic-bezier(0.15, 0.7, 0.78, 1), opacity 0.37s linear;
    transform-origin: 0 0;
}

.dsn-default-btn .dsn-btn .title-btn[data-animate-text].dsn-icon>*:first-child,
.dsn-default-btn .dsn-btn .title-btn[data-animate-text]:before,
.dsn-default-btn .dsn-btn .dsn-icon.dsn-icon>*:first-child,
.dsn-default-btn .dsn-btn .dsn-icon:before,
.dsn-normal-btn .dsn-btn .title-btn[data-animate-text].dsn-icon>*:first-child,
.dsn-normal-btn .dsn-btn .title-btn[data-animate-text]:before,
.dsn-normal-btn .dsn-btn .dsn-icon.dsn-icon>*:first-child,
.dsn-normal-btn .dsn-btn .dsn-icon:before {
    position: absolute;
    opacity: 0;
}

.dsn-default-btn .dsn-btn .dsn-icon>*,
.dsn-normal-btn .dsn-btn .dsn-icon>* {
    transition: 0.2s;
}

.dsn-default-btn .dsn-btn .dsn-icon>*:first-child,
.dsn-normal-btn .dsn-btn .dsn-icon>*:first-child {
    transform: translateY(-50%);
}

.dsn-default-btn .dsn-btn .title-btn[data-animate-text]:before,
.dsn-normal-btn .dsn-btn .title-btn[data-animate-text]:before {
    content: attr(data-animate-text);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: translateY(100%);
}

.dsn-default-btn .dsn-btn:hover .title-btn[data-animate-text]:before,
.dsn-default-btn .dsn-btn:hover .dsn-icon>*:first-child,
.dsn-normal-btn .dsn-btn:hover .title-btn[data-animate-text]:before,
.dsn-normal-btn .dsn-btn:hover .dsn-icon>*:first-child {
    transform: none;
    opacity: 1;
}

.dsn-default-btn .dsn-btn:hover .dsn-icon>*:last-child,
.dsn-normal-btn .dsn-btn:hover .dsn-icon>*:last-child {
    transform: translateY(50%);
    opacity: 0;
}

.dsn-default-btn .dsn-btn:hover .title-btn[data-animate-text]>span,
.dsn-normal-btn .dsn-btn:hover .title-btn[data-animate-text]>span {
    transform: translateY(-100%);
    opacity: 0;
}

/**
    button init before circle
 */

.dsn-def-btn .dsn-btn,
.dsn-def-btn .dsn-icon:before,
.dsn-def-btn .dsn-icon i,
.dsn-def-btn .dsn-icon svg {
    transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition-property: width, padding, margin;
}

.dsn-def-btn .icon-circle {
    display: none;
}

.dsn-def-btn .dsn-icon {
    width: var(--dsn-icon-width, 50px);
    height: var(--dsn-icon-width, 50px);
    border-radius: var(--dsn-icon-width, 50px);
    z-index: 0;
}

.dsn-def-btn .dsn-icon>* {
    position: relative;
    z-index: 1;
}

.dsn-def-btn .dsn-icon>*:first-child {
    display: none;
}

.dsn-def-btn .dsn-icon:before {
    content: "";
    position: absolute;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    background-color: inherit;
}

.dsn-def-btn .dsn-icon.btn-icon-left:before {
    left: 0;
}

.dsn-def-btn .dsn-icon.btn-icon-right:before {
    right: 0;
}

.dsn-def-btn:not(.dsn-hover-icon) .dsn-btn:hover.has-icon-left {
    padding-right: calc(var(--dsn-icon-width, 50px) / 1.5);
}

.dsn-def-btn:not(.dsn-hover-icon) .dsn-btn:hover.has-icon-left .dsn-icon i,
.dsn-def-btn:not(.dsn-hover-icon) .dsn-btn:hover.has-icon-left .dsn-icon svg {
    margin-left: calc(var(--dsn-icon-width, 50px) / 2);
}

.dsn-def-btn:not(.dsn-hover-icon) .dsn-btn:hover.has-icon-right {
    padding-left: calc(var(--dsn-icon-width, 50px) / 1.5);
}

.dsn-def-btn:not(.dsn-hover-icon) .dsn-btn:hover.has-icon-right .dsn-icon i,
.dsn-def-btn:not(.dsn-hover-icon) .dsn-btn:hover.has-icon-right .dsn-icon svg {
    margin-right: calc(var(--dsn-icon-width, 50px) / 2);
}

.dsn-def-btn:not(.dsn-hover-icon) .dsn-btn:hover .dsn-icon:before {
    width: 100%;
}

.dsn-def-btn.dsn-hover-icon .title-btn {
    transition: margin-left 0.7s cubic-bezier(0.84, 0, 0.16, 1);
}

.dsn-def-btn.dsn-hover-icon .has-icon-right .title-btn {
    margin-left: calc(var(--dsn-icon-width, 50px) / 2);
}

.dsn-def-btn.dsn-hover-icon .has-icon-right .dsn-icon>* {
    transform: translateX(10px);
}

.dsn-def-btn.dsn-hover-icon .has-icon-left .title-btn {
    margin-left: -35px;
}

.dsn-def-btn.dsn-hover-icon .has-icon-left .dsn-icon>* {
    transform: translateX(-10px);
}

.dsn-def-btn.dsn-hover-icon .dsn-icon>* {
    opacity: 0;
    transition-timing-function: cubic-bezier(0.64, 0, 0.78, 0), linear;
    transition-property: transform, opacity;
    transition-delay: 0s, 0.034s;
    transition-duration: 0.32s, 0.28s;
}

.dsn-def-btn.dsn-hover-icon .dsn-icon:before {
    left: 0;
    transition: left 0.7s cubic-bezier(0.84, 0, 0.16, 1);
}

.dsn-def-btn.dsn-hover-icon .dsn-btn:hover .title-btn {
    margin-left: 0;
}

.dsn-def-btn.dsn-hover-icon .dsn-btn:hover .dsn-icon>* {
    opacity: 1;
    transform: none;
}

.dsn-def-btn.dsn-hover-icon .dsn-btn:hover.has-icon-right .dsn-icon:before {
    left: calc(100% - var(--dsn-icon-width, 50px));
}

.dsn-btn-play {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(251, 251, 251, 0.18);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dsn-btn-play i {
    font-size: 19px;
    margin-right: 10px;
}

.dsn-subscribe {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dsn-subscribe input {
    border-radius: 50px;
    display: inline-block;
    height: 50px;
    padding: 0 30px;
    border: 0;
    font-size: 13px;
    font-weight: 400;
    width: 100%;
}

.dsn-subscribe .submit {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    --dsn-color-icon: var(--heading-color);
    --dsn-icon-size: 30px;
    flex: 1 0 auto;
}

.dsn-subscribe .submit svg path {
    stroke: var(--heading-color);
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
    outline: 0;
    outline-style: none;
}

a:hover,
a:active {
    outline: 0;
    text-decoration: none;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: 22px;
    padding-bottom: 22px;
    transition-property: background-color, padding-top, padding-bottom, transform;
    transition-duration: 0.5s;
    z-index: 97;
    --backdrop-filter: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.site-header>.p-relative.dsn-container {
    padding: 0;
    display: flex;
    align-items: center;
}

.site-header .dsn-svg-transition {
    fill: var(--assistant-color);
}

.site-header .bg-load:not(.dsn-svg-transition) {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.site-header .bg-load {
    position: fixed;
    pointer-events: none;
}

.admin-bar .site-header {
    top: 46px;
}

@media screen and (min-width: 783px) {
    .admin-bar .site-header {
        top: 32px;
    }
}

.site-header .main-logo {
    position: relative;
    z-index: 1;
}

.site-header ul.primary-nav {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.site-header ul.primary-nav ul {
    position: absolute;
}

@media only screen and (min-width: 992px) {
    .site-header:not(.dsn-hamburger) .main-navigation {
        display: flex;
        flex-basis: auto;
        z-index: 1;
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav>li {
        transition-duration: 0.5s;
        transition-property: opacity, transform;
        transition-delay: calc(var(--dsn-li-index, 0) * 0.12s);
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav li {
        font-family: var(--body-font);
        font-weight: 600;
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav>li {
        font-size: 14px;
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav>li li.has-sub-menu:after {
        content: "";
        position: absolute;
        border: solid var(--theme-color);
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 3px;
        transform: translateY(-50%) rotate(45deg);
        margin: 0 0 2px 1px;
        right: 15px;
        top: calc(50% - 3px);
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav>li:not(:first-of-type) {
        margin-left: 30px;
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav>li:last-of-type ul {
        margin-left: -95px;
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav>li ul {
        min-width: 200px;
        padding: 10px 0;
        margin-top: 10px;
        margin-left: -20px;
        background-color: var(--assistant-color);
        transition-property: transform, opacity, visibility;
        transition-duration: 0.8s;
        border-radius: 7px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(35px);
        transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav>li ul li {
        position: relative;
        width: 100%;
        padding: 7px 20px;
        font-size: 13px;
        font-weight: 500;
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav>li ul li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 0;
        width: 1.5px;
        transition: 0.5s;
        background-color: var(--heading-color);
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav>li ul li:hover:before {
        height: 100%;
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav>li ul ul {
        right: 100%;
        top: -15px;
    }
    .site-header:not(.dsn-hamburger) ul.primary-nav li.has-sub-menu:hover>ul,
    .site-header:not(.dsn-hamburger) ul.primary-nav li.has-sub-menu:focus>ul {
        opacity: 1;
        transform: none;
        visibility: visible;
    }
    .site-header:not(.dsn-hamburger) .navbar-toggle,
    .site-header:not(.dsn-hamburger) .bg-load {
        display: none;
    }
    .site-header:not(.dsn-hamburger) .dsn-back {
        display: none;
    }
    .site-header:not(.dsn-hamburger) .menu-cover-title {
        display: none;
    }
}

.site-header.dsn-hamburger .main-navigation {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    padding-right: var(--dsn-gap-container);
    padding-left: var(--dsn-gap-container);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    display: flex;
}

@media only screen and (max-width: 991px) {
    .site-header.dsn-hamburger .main-navigation {
        flex-direction: column;
        overflow: auto;
    }
}

.site-header.dsn-hamburger ul.primary-nav {
    position: relative;
    top: 100px;
}

@media only screen and (min-width: 992px) {
    .site-header.dsn-hamburger ul.primary-nav {
        width: 70%;
        padding-right: var(--bs-gutter-x);
    }
}

.site-header.dsn-hamburger ul.primary-nav ul {
    width: 100%;
}

.site-header.dsn-hamburger ul.primary-nav,
.site-header.dsn-hamburger ul.primary-nav ul {
    counter-reset: var(--dsn-li-name);
    height: calc(100vh - 100px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
    font-weight: 500;
}

@media only screen and (min-width: 992px) {
    .site-header.dsn-hamburger ul.primary-nav,
    .site-header.dsn-hamburger ul.primary-nav ul {
        height: 110vh;
        padding: 80px 0;
    }
}

@media only screen and (max-width: 991px) {
    .site-header.dsn-hamburger ul.primary-nav,
    .site-header.dsn-hamburger ul.primary-nav ul {
        justify-content: start;
        padding: 120px;
        height: auto;
    }
}

.site-header.dsn-hamburger ul.primary-nav li,
.site-header.dsn-hamburger ul.primary-nav ul li {
    cursor: pointer;
    pointer-events: none;
}

@media only screen and (max-width: 575px) {
    .site-header.dsn-hamburger ul.primary-nav li,
    .site-header.dsn-hamburger ul.primary-nav ul li {
        font-size: 18px;
    }
}

.site-header.dsn-hamburger ul.primary-nav a,
.site-header.dsn-hamburger ul.primary-nav ul a {
    color: #cfc2c2;
    transform-origin: left top;
    transition: 500ms 0ms;
}

.site-header.dsn-hamburger ul.primary-nav a:hover,
.site-header.dsn-hamburger ul.primary-nav ul a:hover {
    transform: skewX(2deg);
    letter-spacing: 2.5px;
}

@media only screen and (min-width: 992px) {
    .site-header.dsn-hamburger ul.primary-nav li a span:before,
    .site-header.dsn-hamburger ul.primary-nav ul li a span:before {
        counter-increment: var(--dsn-li-name);
        content: counters(var(--dsn-li-name), ".", decimal-leading-zero) ". ";
        font-family: var(--border-theme-color);
        pointer-events: none;
        font-size: 14px;
        opacity: 0.3;
    }
}

.site-header.dsn-hamburger ul.primary-nav li {
    margin: 3px 0;
    width: 100%;
}

.site-header.dsn-hamburger ul.primary-nav a {
    position: relative;
    overflow: hidden;
}

.site-header.dsn-hamburger ul.primary-nav.h2 a {
    line-height: 1.2;
}

.site-header.dsn-hamburger ul.primary-nav .h3 a {
    line-height: var(--font-size-h3);
}

.site-header.dsn-hamburger .main-navigation ul {
    left: 0;
    top: 0;
    z-index: -1;
}

.site-header.dsn-hamburger .main-navigation ul>li>a>span,
.site-header.dsn-hamburger .main-navigation ul>li>span,
.site-header.dsn-hamburger .main-navigation ul .scroll-content>li>a>span,
.site-header.dsn-hamburger .main-navigation ul .scroll-content>li>span {
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-property: opacity, visibility, transform;
    transform-origin: center top;
    transition-delay: calc(0.1s * var(--dsn-li-index));
}

.site-header.dsn-hamburger .main-navigation ul.open {
    z-index: 9;
}

.site-header.dsn-hamburger .main-navigation ul.open>li>a,
.site-header.dsn-hamburger .main-navigation ul.open>li>span,
.site-header.dsn-hamburger .main-navigation ul.open .scroll-content>li>a,
.site-header.dsn-hamburger .main-navigation ul.open .scroll-content>li>span {
    pointer-events: auto !important;
}

.site-header.dsn-hamburger .main-navigation ul.open>li>a>span,
.site-header.dsn-hamburger .main-navigation ul.open>li>span,
.site-header.dsn-hamburger .main-navigation ul.open .scroll-content>li>a>span,
.site-header.dsn-hamburger .main-navigation ul.open .scroll-content>li>span {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.site-header.dsn-hamburger #navbar_toggle {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    cursor: pointer;
}

.site-header.dsn-hamburger #navbar_toggle .toggle-icon {
    --width-icon: 25px;
    margin-right: 10px;
}

.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line {
    position: relative;
    height: 2px;
    background-color: var(--bg-color);
    width: 25px;
    transition: 0.5s;
}

.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:not(:first-child) {
    margin-top: 5px;
}

.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(1),
.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(3) {
    transform: scaleX(0.5);
}

.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(2) {
    width: var(--width-icon);
}

.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(1) {
    transform-origin: left;
}

.site-header.dsn-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(3) {
    transform-origin: right;
}

.site-header.dsn-hamburger #navbar_toggle .toggle-text {
    position: relative;
    --animate-trans: translateY(5px) rotateX(75deg);
    min-width: 43px;
}

.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-open,
.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-close {
    position: absolute;
    top: 0;
    left: 0;
}

.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-open .char,
.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-close .char {
    opacity: 0;
    visibility: hidden;
    transform: var(--animate-trans);
}

.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-open,
.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-close,
.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-menu {
    overflow: hidden;
    will-change: transform;
}

.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-open .char,
.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-close .char,
.site-header.dsn-hamburger #navbar_toggle .toggle-text .text-menu .char {
    will-change: transform;
    transition-property: opacity, visibility, transform;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: calc(30ms * var(--char-index) + 1ms);
}

.site-header.dsn-hamburger #navbar_toggle:hover .toggle-line {
    --trans-icon: scale(0.2, 1.7);
}

.site-header.dsn-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(1),
.site-header.dsn-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(2),
.site-header.dsn-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(3) {
    transform: var(--trans-icon);
    border-radius: 3px;
}

.site-header.dsn-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(1) {
    transform: var(--trans-icon) translateY(4px);
}

.site-header.dsn-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(3) {
    transform: var(--trans-icon) translateY(-4px);
}

.site-header.dsn-hamburger #navbar_toggle:hover .text-menu .char {
    opacity: 0;
    visibility: hidden;
    transform: var(--animate-trans);
}

.site-header.dsn-hamburger #navbar_toggle:hover:not(.open) .text-open .char,
.site-header.dsn-hamburger #navbar_toggle:hover.open .text-close .char {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.site-header.dsn-hamburger .menu-cover-title {
    position: absolute;
    top: 50%;
    font-size: 20vw;
    font-weight: 600;
    line-height: 1.15;
    transform: translateY(-50%) rotateX(75deg);
    opacity: 0;
    padding-left: inherit;
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-property: opacity, transform;
    pointer-events: none;
}

@media only screen and (min-width: 992px) {
    .site-header.dsn-hamburger .menu-cover-title {
        left: -15px;
    }
}

@media only screen and (max-width: 991px) {
    .site-header.dsn-hamburger .menu-cover-title {
        left: 0;
        padding-right: inherit;
        width: 100%;
    }
}

.site-header.dsn-hamburger.dsn-open .menu-cover-title {
    transition-delay: 1s;
    opacity: 0.03;
    transform: translateY(-50%);
}

.site-header.dsn-hamburger.dsn-open .toggle-line:nth-of-type(2) {
    transform: scale(0) !important;
    display: none;
}

.site-header.dsn-hamburger.dsn-open .toggle-line:nth-of-type(1),
.site-header.dsn-hamburger.dsn-open .toggle-line:nth-of-type(3) {
    margin-top: 0 !important;
}

.site-header.dsn-hamburger.dsn-open .toggle-line:nth-of-type(1) {
    transform: scale(1) rotate(45deg) !important;
    transform-origin: bottom !important;
}

.site-header.dsn-hamburger.dsn-open .toggle-line:nth-of-type(3) {
    transform: scale(1) rotate(-45deg) !important;
    transform-origin: top !important;
}

.site-header.dsn-hamburger.dsn-open .main-navigation {
    opacity: 1;
    visibility: visible;
    transform: none;
}

@media only screen and (max-width: 991px) {
    .site-header.dsn-hamburger.dsn-open .main-navigation {
        text-align: center;
    }
    .site-header.dsn-hamburger.dsn-open .main-navigation ul {
        width: 100%;
    }
}

@keyframes draw {
    0% {
        stroke-dasharray: 10;
    }
    0% {
        stroke-dasharray: 280;
    }
    100% {
        stroke-dasharray: 10;
    }
}

.site-header.dsn-hamburger .dsn-back {
    /**
      Hover
   */
}

.site-header.dsn-hamburger .dsn-back svg {
    fill: none;
    stroke: var(--border-theme-color);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 10;
    stroke-dashoffset: 0;
    stroke-width: 13px;
    width: 22px;
    margin-right: 10px;
}

.site-header.dsn-hamburger .dsn-back>span {
    display: flex;
}

@media only screen and (max-width: 991px) {
    .site-header.dsn-hamburger .dsn-back>span {
        justify-content: center;
    }
}

.site-header.dsn-hamburger .dsn-back span {
    font-size: 15px;
}

.site-header.dsn-hamburger .dsn-back .text-toggle-back {
    position: relative;
}

.site-header.dsn-hamburger .dsn-back .text-toggle-back .text-back {
    position: absolute;
    left: 0;
}

.site-header.dsn-hamburger .dsn-back .text-toggle-back .char {
    margin-right: 5px;
    transform-origin: center top;
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) calc(50ms * var(--char-index));
}

.site-header.dsn-hamburger .dsn-back:hover svg {
    animation: draw 3s linear alternate infinite;
}

.site-header.dsn-hamburger .dsn-back:hover .text-toggle-back .text-back .char,
.site-header.dsn-hamburger .dsn-back .text-toggle-back .text-name .char {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.site-header.dsn-hamburger .dsn-back:hover .text-toggle-back .text-name .char,
.site-header.dsn-hamburger .dsn-back .text-toggle-back .text-back .char {
    transform: translateY(10px) rotateX(75deg);
    opacity: 0;
    visibility: hidden;
}

.site-header.dsn-hamburger .container-content {
    display: flex !important;
    position: relative;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (max-width: 991px) {
    .site-header.dsn-hamburger .container-content {
        display: none !important;
    }
}

.site-header.dsn-hamburger .container-content:after,
.site-header.dsn-hamburger .container-content {
    transition: 1s;
}

.site-header.dsn-hamburger .container-content:after {
    content: "";
    position: absolute;
    background-color: var(--border-theme-color);
}

@media only screen and (min-width: 992px) {
    .site-header.dsn-hamburger .container-content:after {
        left: calc(-1 * var(--dsn-gap-container));
        top: 0;
        width: 1px;
        height: 0;
    }
}

@media only screen and (max-width: 991px) {
    .site-header.dsn-hamburger .container-content:after {
        width: 0;
        height: 1px;
    }
}

.site-header.dsn-hamburger .container-content .sm-title-block {
    color: #a56433;
}

.site-header.dsn-hamburger .container-content .nav-social ul li {
    position: relative;
    color: var(--heading-color);
    display: inline-block;
    letter-spacing: 2px;
    font-size: 14px;
    margin-right: 15px;
    padding-right: 5px;
}

.site-header.dsn-hamburger.dsn-open .container-content {
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 992px) {
    .site-header.dsn-hamburger.dsn-open .container-content:after {
        height: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .site-header.dsn-hamburger.dsn-open .container-content:after {
        width: 100%;
        top: calc(-1 * var(--margin-padding) / 2);
    }
}

.site-header.dsn-hamburger.dsn-open .container-content:after,
.site-header.dsn-hamburger.dsn-open .container-content {
    transition-delay: 0.7s;
}

.site-header:not(.dsn-hamburger) .container-content {
    display: none;
}

.site-header.nav-bg {
    background-color: var(--heading-color);
    padding-top: 10px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
    .site-header.nav-bg {
        top: 0;
    }
}

.site-header.hide-nav:not(.dsn-open) {
    transform: translateY(-100%);
}

.site-header .ohixm-login {
    cursor: pointer;
    width: 32px;
    height: 19px;
}

.site-header .ohixm-login .dsn-icon {
    --dsn-color-icon: transparent;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--border-theme-color);
}

.site-header .ohixm-login .dsn-icon svg {
    stroke: var(--heading-color);
}

.site-header .ohixm-login .dsn-login {
    position: absolute;
    width: 300px;
    background: var(--assistant-color);
    padding: 35px 25px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 20px var(--bg-color), 0 6px 6px var(--assistant-color);
    top: 100px;
    right: 10px;
    transition: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0s;
    border-radius: 14px;
    cursor: default;
}

.site-header .ohixm-login .dsn-login,
.site-header .ohixm-login .dsn-login .dsn-login__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.site-header .ohixm-login .dsn-login .status-form {
    font-size: 13px;
    letter-spacing: 1px;
}

.site-header .ohixm-login .dsn-login .status-form.error {
    color: #e13f3f;
}

.site-header .ohixm-login .dsn-login input:not([type=checkbox]) {
    width: 100%;
    border: 0;
    padding-bottom: 5px;
    background-color: transparent;
    border-bottom: 2px solid var(--border-theme-color);
    color: var(--heading-color);
}

.site-header .ohixm-login .dsn-login input:not([type=checkbox])::placeholder {
    color: var(--font-color);
}

.site-header .ohixm-login .dsn-login .forget-me-not label {
    font-size: 14px;
    letter-spacing: 1px;
}

.site-header .ohixm-login .dsn-login .status-form:empty {
    display: none;
}

.site-header .ohixm-login .dsn-login .dsn-login__form {
    display: flex;
    flex-direction: column;
}

.site-header .ohixm-login .dsn-login .auth-btn button {
    padding: 7px 20px;
    border-radius: 7px;
    color: var(--heading-color);
    letter-spacing: 2px;
    font-size: 15px;
    cursor: pointer;
}

.site-header .ohixm-login .dsn-login .action-login a {
    font-size: 13px;
    letter-spacing: 1px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-theme-color);
}

.site-header .ohixm-login .dsn-login .title-login {
    font-weight: 500;
}

.site-header .ohixm-login.show .dsn-login {
    opacity: 1;
    visibility: visible;
    top: 50px;
}

.main-brand img,
.dsnload__img img {
    width: 130px;
    max-width: 100%;
    height: auto;
}

.v-light #site_menu_header .main-brand .logo-dark,
#dsn_footer.v-light .main-brand .logo-dark,
.main-brand .logo-dark,
.v-light #dsn_footer:not(.v-light,
.v-dark) .main-brand .logo-dark,
.v-light #site_menu_header .dsnload__img .logo-dark,
#dsn_footer.v-light .dsnload__img .logo-dark,
.dsnload__img .logo-dark,
.v-light #dsn_footer:not(.v-light,
.v-dark) .dsnload__img .logo-dark {
    display: block;
}

.v-light #site_menu_header .main-brand .logo-light,
#dsn_footer.v-light .main-brand .logo-light,
.main-brand .logo-light,
.v-light #dsn_footer:not(.v-light,
.v-dark) .main-brand .logo-light,
.v-light #site_menu_header .dsnload__img .logo-light,
#dsn_footer.v-light .dsnload__img .logo-light,
.dsnload__img .logo-light,
.v-light #dsn_footer:not(.v-light,
.v-dark) .dsnload__img .logo-light {
    display: none;
}

.v-dark #site_menu_header .main-brand .logo-dark,
#dsn_footer.v-dark .main-brand .logo-dark,
.v-dark #dsn_footer:not(.v-light,
.v-dark) .main-brand .logo-dark,
.v-dark #site_menu_header .dsnload__img .logo-dark,
#dsn_footer.v-dark .dsnload__img .logo-dark,
.v-dark #dsn_footer:not(.v-light,
.v-dark) .dsnload__img .logo-dark {
    display: none;
}

.v-dark #site_menu_header .main-brand .logo-light,
#dsn_footer.v-dark .main-brand .logo-light,
.v-dark #dsn_footer:not(.v-light,
.v-dark) .main-brand .logo-light,
.v-dark #site_menu_header .dsnload__img .logo-light,
#dsn_footer.v-dark .dsnload__img .logo-light,
.v-dark #dsn_footer:not(.v-light,
.v-dark) .dsnload__img .logo-light {
    display: block;
}

.social-side {
    position: fixed;
    bottom: 50px;
    z-index: 10;
    display: flex;
    mix-blend-mode: exclusion;
    --heading-color: #fff;
    color: var(--heading-color);
}

.social-side ul {
    padding-left: 0;
}

@media only screen and (min-width: 1400px) {
    .social-side {
        left: 25px;
    }
}

@media only screen and (max-width: 1399px) {
    .social-side {
        left: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .social-side {
        display: none;
    }
}

.social-side .icon {
    text-align: center;
    width: 30px;
    line-height: 30px;
    cursor: pointer;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    white-space: nowrap;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 12px;
}

.social-side .icon:before {
    content: "";
    position: relative;
    display: inline-block;
    border-left: 1px solid var(--heading-color);
    height: 50px;
    margin-bottom: 10px;
}

.socials {
    text-align: center;
    font-size: 14px;
}

.socials li a {
    position: relative;
    margin-bottom: 10px;
    margin-top: 5px;
    color: var(--heading-color);
}

.socials li a:after,
.socials li a span,
.socials li a:hover i {
    transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}

.socials li a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--heading-color);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
}

.socials li a i {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials li a span {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--heading-color);
    font-size: 13px;
    opacity: 0;
    transform-origin: center bottom;
    cursor: pointer;
    transform: translateX(0px) translateY(-50%);
}

.socials li a:hover i {
    transform: scale(0);
}

.socials li a:hover label {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 12, -8);
    transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.socials li a:hover:after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
    transition-delay: 0.2s;
}

.socials li a:hover span {
    opacity: 1;
    transform: translateX(10px) translateY(-50%);
}

.post-full-content ul.dsn-socials,
.widget_text ul.dsn-socials {
    list-style: none;
}

.post-full-content ul.dsn-socials li,
.widget_text ul.dsn-socials li {
    margin-bottom: 0;
}

.dsn-socials {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 10px;
    padding-left: 0;
}

.dsn-socials li a {
    position: relative;
    padding: 3px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
}

.dsn-socials li a a:not(.move-circle) {
    border-color: var(--border-theme-color);
}

.dsn-socials li a:after,
.dsn-socials li a span:not(.dsn-icon) {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}

.dsn-socials li a:after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--theme-color);
    transform: translate(-50%, -50%) scale(0.2);
}

.dsn-socials li a span:not(.dsn-icon) {
    color: var(--heading-color);
    font-weight: bold;
    font-size: 13px;
    transform-origin: center bottom;
    cursor: pointer;
}

.dsn-socials li a i,
.dsn-socials li a svg {
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsn-socials li a:hover i,
.dsn-socials li a:hover svg {
    transform: scale(0);
}

.dsn-socials li a:hover span:not(.dsn-icon) {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, -20);
    transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.dsn-socials li a:hover:after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
    transition-delay: 0.2s;
}

@media only screen and (max-width: 991px) {
    .dsn-socials li:not(:last-of-type) {
        margin-right: 5px;
    }
}

.elementor-align-right .dsn-socials .dsn-icon {
    margin: inherit;
}

/*--------------------------------------------------------------
## Next / Previous
--------------------------------------------------------------*/

.footer-content .dsn-heading-title {
    font-size: 130px;
    text-transform: uppercase;
    line-height: 100px;
}

.footer-content .content-column p {
    max-width: 350px;
}

.next-project .bg-container {
    height: 150px;
    left: 50%;
    transform: translate(-50%, 155px);
    mix-blend-mode: exclusion;
    transition: transform 0.8s;
}

.next-project .bg-container,
.next-project .bg-container img {
    width: auto;
}

.next-project .content-hero:hover .bg-container {
    transform: translate(-50%, 60px);
}

.type-p-nav {
    border-top: 1px solid var(--border-theme-color);
    padding-top: 50px;
}

.type-p-nav .dsn-pagination {
    flex-wrap: wrap;
}

.type-p-nav .dsn-pagination .page-numbers:not(.next):not(.prev) {
    position: relative;
    margin-right: 15px;
    transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
    padding: 10px;
    font-size: 20px;
    border: 1px solid var(--border-theme-color);
}

.type-p-nav .dsn-pagination .page-numbers:not(.next):not(.prev).current,
.type-p-nav .dsn-pagination .page-numbers:not(.next):not(.prev):hover {
    color: var(--theme-color-font, var(--heading-color));
    background-color: var(--assistant-color);
}

.type-p-nav .dsn-pagination .page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.type-p-nav .dsn-pagination .next,
.type-p-nav .dsn-pagination .prev {
    position: relative;
    text-align: center;
    width: 90px;
}

.type-p-nav .dsn-pagination .next:before,
.type-p-nav .dsn-pagination .prev:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--assistant-color);
    transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
    transform: scale(0.8);
}

.type-p-nav .dsn-pagination .next svg,
.type-p-nav .dsn-pagination .prev svg {
    width: 30px;
    position: absolute;
    top: 1px;
    fill: var(--heading-color);
    z-index: 1;
    height: 100%;
    opacity: 1;
    transition: all 0.3s ease-out;
}

.type-p-nav .dsn-pagination .next span,
.type-p-nav .dsn-pagination .prev span {
    position: relative;
    z-index: 2;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--heading-color);
    transition: all 0.3s ease-out;
}

.type-p-nav .dsn-pagination .next:hover:before,
.type-p-nav .dsn-pagination .prev:hover:before {
    transform: scale(0.7);
}

.type-p-nav .dsn-pagination .next:hover svg,
.type-p-nav .dsn-pagination .prev:hover svg {
    opacity: 0;
}

.type-p-nav .dsn-pagination .next:hover span,
.type-p-nav .dsn-pagination .prev:hover span {
    transform: translateX(0) translateY(2px);
}

.type-p-nav .dsn-pagination .next:hover,
.type-p-nav .dsn-pagination .prev:hover {
    background-color: transparent;
}

.type-p-nav .dsn-pagination .next {
    margin-left: 10px;
}

.type-p-nav .dsn-pagination .next svg {
    transform: translateX(20%);
    left: -10%;
}

.type-p-nav .dsn-pagination .next span {
    transform: translateX(20%) translateY(2px);
}

.type-p-nav .dsn-pagination .prev {
    margin-right: 25px;
}

.type-p-nav .dsn-pagination .prev svg {
    transform: translateX(-20%) rotate(180deg);
    right: -10%;
}

.type-p-nav .dsn-pagination .prev span {
    transform: translateX(-20%) translateY(2px);
}

.pagination-pages .post-page-numbers {
    margin: 0 10px;
}

.pagination-pages a {
    color: var(--theme-color);
}

.elementor-widget-dsn_arrow_nav {
    pointer-events: none;
}

.dsn-nav-arrow {
    --dsn-icon-size: 25px;
    pointer-events: none;
}

.dsn-nav-arrow .dsn-nav-left,
.dsn-nav-arrow .dsn-nav-right {
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

.dsn-nav-arrow .dsn-nav-left {
    margin-right: 15px;
}

.swiper-pagination-bullets,
.swiper-pagination-fraction,
.swiper-pagination-progressbar {
    position: relative;
    --swiper-pagination-color: var(--theme-color);
    --swiper-pagination-bullet-inactive-color: var(--theme-color);
}

@media only screen and (max-width: 767px) {
    .swiper-pagination-bullets,
    .swiper-pagination-fraction,
    .swiper-pagination-progressbar {
        display: none;
    }
}

.swiper-pagination-fraction {
    bottom: 0;
    width: auto;
    display: block;
}

.dsn-swiper .swiper-pagination-progressbar {
    position: relative;
    width: 30% !important;
    height: 1px !important;
    background-color: var(--border-theme-color);
    --swiper-pagination-color: var(--theme-color);
}

.dsn-swiper .swiper-pagination-progressbar span {
    transition-property: transform;
}

.dsn-swiper-circle .swiper-pagination-bullet {
    position: relative;
    background: transparent;
    --swiper-pagination-bullet-width: 20px;
    --swiper-pagination-bullet-height: 20px;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    margin: 5px;
    bottom: 0 !important;
}

.dsn-swiper-circle .swiper-pagination-bullet:not(.swiper-pagination-bullet-active,
.swiper-pagination-bullet-active-prev,
.swiper-pagination-bullet-active-next) {
    transform: scale(0.33);
}

.dsn-swiper-circle .swiper-pagination-bullet::before,
.dsn-swiper-circle .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.dsn-swiper-circle .swiper-pagination-bullet::before {
    background-color: var(--heading-color);
    transform: scale(0.7);
}

.dsn-swiper-circle .swiper-pagination-bullet::after {
    border: 1.5px solid var(--heading-color);
    transform: scale(0.7);
}

.dsn-swiper-circle .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    transform: scale(0.4);
}

.dsn-swiper-circle .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    transform: scale(1);
}

.dsn-swiper .swiper-container-vertical {
    height: 70vh;
}

.swiper-pagination:not(.dsn-swiper-circle,
.dsn-swiper-img) .swiper-pagination-bullet {
    --swiper-pagination-bullet-horizontal-gap: 2px;
    background-color: var(--heading-color);
    height: 5px;
    width: 35px;
    border-radius: 5px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: auto;
    bottom: 0;
}

.swiper-pagination-fraction {
    width: auto !important;
    position: relative !important;
    bottom: auto !important;
}

.dsn-swiper-paginate {
    align-items: center;
}

.dsn-swiper-paginate .swiper-pagination {
    padding: 10px 20px;
    border-radius: 30px;
}

.e-container>.elementor-element.elementor-absolute.elementor-widget-dsn_arrow_nav.container,
.elementor-widget-wrap>.elementor-element.elementor-absolute.elementor-widget-dsn_arrow_nav.container {
    left: 0;
    right: 0;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 0;
    transform: none;
}

.prev-paginate,
.next-paginate {
    position: relative;
    cursor: pointer;
}

.prev-paginate .dsn-icon,
.next-paginate .dsn-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.prev-paginate .dsn-icon svg,
.next-paginate .dsn-icon svg {
    height: var(--dsn-icon-size, 20px);
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition-property: opacity, left;
}

.prev-paginate .dsn-icon svg:first-child,
.next-paginate .dsn-icon svg:first-child {
    position: absolute;
    left: 35%;
    transform: translateX(-50%);
    opacity: 0;
}

.prev-paginate .dsn-icon svg:last-child,
.next-paginate .dsn-icon svg:last-child {
    position: relative;
    left: 0;
}

.prev-paginate .dsn-icon:hover svg:first-child,
.next-paginate .dsn-icon:hover svg:first-child {
    opacity: 1;
    left: 50%;
}

.prev-paginate .dsn-icon:hover svg:last-child,
.next-paginate .dsn-icon:hover svg:last-child {
    opacity: 0;
    left: 10%;
}

.prev-paginate.prev-paginate .dsn-icon,
.next-paginate.prev-paginate .dsn-icon {
    transform: rotate(180deg);
}

.prev-paginate:not(.dsn-slid-normal) .dsn-icon {
    margin-right: 12px;
}

.next-paginate:not(.dsn-slid-normal) .dsn-icon {
    margin-left: 12px;
}

.elementor-element .swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: auto;
}

.swiper-pagination.dsn-swiper-img .swiper-pagination-bullet {
    width: 45px;
    height: 45px;
    background: transparent;
    transform: none;
    margin: 0 0 0 -10px;
    opacity: 1;
}

.swiper-pagination.dsn-swiper-img .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    filter: brightness(50%);
}

.swiper-pagination.dsn-swiper-img .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    z-index: 2;
}

.swiper-pagination.dsn-swiper-img .swiper-pagination-bullet,
.swiper-pagination.dsn-swiper-img .swiper-pagination-bullet img {
    border-radius: 50%;
}

@media only screen and (max-width: 575px) {
    .prev-paginate:not(.dsn-slid-normal),
    .next-paginate:not(.dsn-slid-normal) {
        padding: 0;
        background-color: transparent;
        border: 0;
    }
    .prev-paginate:not(.dsn-slid-normal) .text-paginate,
    .next-paginate:not(.dsn-slid-normal) .text-paginate {
        display: none;
    }
}

.hide-slide-shadow .swiper-slide-shadow {
    display: none;
}

.paginate-border .dsn-swiper-paginate {
    padding-top: var(--pt-paginate, 30px);
    border-top: 1px solid var(--border-theme-color);
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/

/* -------------------------------------------------------
                   Header
-------------------------------------------------------- */

.link-project {
    right: 60px;
    bottom: 60px;
    z-index: 15;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    line-height: 120px;
    font-size: 13px;
    letter-spacing: 1px;
}

.link-project svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .link-project {
        display: none;
    }
}

#dsn_header {
    position: relative;
    overflow: hidden;
    --margin-padding: 120px;
}

#dsn_header .bg-blur-head:before {
    z-index: 1;
}

#dsn_header:not(.header-normal,
.header-padding,
.dsn-full-header) {
    min-height: 100vh;
}

#dsn_header:not(.header-normal,
.header-padding,
.dsn-full-header) #hero_content {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media only screen and (min-width: 768px) {
    #dsn_header:not(.header-normal,
    .header-padding,
    .dsn-full-header) .entry-header,
    #dsn_header:not(.header-normal,
    .header-padding,
    .dsn-full-header) #hero_content {
        min-height: calc(100vh - (var(--margin-padding) * 2));
    }
}

@media only screen and (max-width: 767px) {
    #dsn_header:not(.header-normal,
    .header-padding,
    .dsn-full-header) {
        padding: 0;
    }
    #dsn_header:not(.header-normal,
    .header-padding,
    .dsn-full-header) .entry-header,
    #dsn_header:not(.header-normal,
    .header-padding,
    .dsn-full-header) #hero_content {
        min-height: 100vh;
    }
}

#dsn_header.show-box-shadow:not(.header-normal) .entry-header:after {
    content: "";
    position: absolute;
    width: 100%;
}

#dsn_header:not(.header-normal):before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    height: 50%;
    background-color: var(--assistant-color);
}

#dsn_header .entry-header:after {
    left: 0;
    bottom: 0;
    box-shadow: 1px 0 31px 45px var(--assistant-color);
    z-index: 1;
}

#dsn_header.header-padding:not(.header-normal) .entry-header {
    padding: 120px 0;
}

#dsn_header #hero_image {
    top: 0;
    width: 100%;
    height: 100%;
}

#dsn_header #hero_content {
    z-index: 2;
    align-items: var(--dsn-ai, end);
    justify-content: var(--dsn-jc, start);
    text-align: var(--dsn-ta, left);
}

#dsn_header.header-normal {
    padding-top: 180px;
}

#dsn_header.dsn-full-header {
    padding: 0;
}

#dsn_header.dsn-full-header .entry-header,
#dsn_header.dsn-full-header #hero_content {
    min-height: 100vh;
}

#dsn_header.dsn-full-header #hero_content {
    padding-top: var(--margin-padding);
    padding-bottom: var(--margin-padding);
}

.dsn-scroll-bottom {
    position: absolute;
    right: 20px;
    bottom: 50px;
    z-index: 1;
    width: -webkit-fit-content;
    width: fit-content;
    min-width: 13px;
    font-size: 10px;
    letter-spacing: 5px;
    cursor: pointer;
}

.dsn-scroll-bottom:before,
.dsn-scroll-bottom:after {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    left: 50%;
    margin-bottom: 10px;
}

.dsn-scroll-bottom:before {
    position: relative;
    background-color: var(--bg-color);
}

.dsn-scroll-bottom:after {
    position: absolute;
    top: 0;
    background-color: var(--theme-color);
    transform: scale(0);
    transform-origin: top;
    animation: scroll-down 2.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

.dsn-scroll-bottom .text {
    writing-mode: vertical-lr;
}

@keyframes scroll-down {
    0% {
        transform: scale(0);
        transform-origin: top;
    }
    50% {
        transform: scale(1);
        transform-origin: top;
    }
    51% {
        transform: scale(1);
        transform-origin: bottom;
    }
    100% {
        transform: scale(0);
        transform-origin: bottom;
    }
}

@media only screen and (min-width: 768px) {
    #dsn_header.header-project #hero_image {
        height: 80vh;
    }
    #dsn_header.header-project .link-project {
        bottom: calc(80vh - 60px);
    }
}

@media only screen and (max-width: 767px) {
    #dsn_header.header-project #hero_image {
        height: 60vh;
    }
}

#dsn_header.header-project #hero_image {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

#dsn_header.header-project #hero_image img {
    position: relative;
    top: -30%;
    height: 130%;
}

#dsn_header.header-project #hero_content .intro-title {
    display: flex;
    flex-direction: column;
}

#dsn_header.header-project #hero_content .intro-title #dsn_metas {
    order: 2;
    margin-top: 30px;
}

.header-padding-top {
    padding-top: 160px;
}

.header-page .bottom-section,
.header-small .bottom-section {
    position: absolute;
    width: 100%;
    bottom: 40px;
    z-index: 2;
}

.header-page .bottom-section .button .button__icon,
.header-small .bottom-section .button .button__icon {
    margin-left: 0;
    margin-right: 10px;
    transform: rotate(90deg);
}

.header-small {
    position: relative;
}

.header-small .case {
    width: 160px;
    height: 160px;
    background-color: var(--theme-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: auto;
}

.header-small .case svg {
    fill: var(--heading-color);
    width: 16px;
    margin-left: 10px;
}

.header-small.header-personal .bg {
    background-image: url(../img/pattern-personal.webp);
    opacity: 0.06;
    height: 400px;
    width: 650px;
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
}

.header-small.header-personal .box-img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 30px;
    background: var(--color-gradient);
    padding: 15px;
}

.header-small.header-personal .box-img img {
    border-radius: 50%;
}

.header-small .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/lines.png);
    background-color: var(--assistant-color);
    background-repeat: no-repeat;
    background-size: cover;
}

.v-light .header-small .bg {
    opacity: 0.02;
}

.header-small .case {
    position: absolute;
    bottom: -130px;
    right: 0;
}

@media only screen and (max-width: 767px) {
    .header-small .case {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .header-small .box-bottom.mt-50 {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .header-small .title-lg {
        line-height: 1.2;
    }
}

.header-small .description h6 {
    margin-right: 30px;
}

@media only screen and (max-width: 767px) {
    .header-small .description {
        flex-direction: column;
    }
    .header-small .description p:last-of-type {
        margin-top: 30px;
    }
}

.header-personal .dsn-brand .brand-item-inner img {
    filter: invert(1) !important;
}

@media only screen and (min-width: 992px) {
    .header-architecture .content .title {
        font-size: 85px;
        line-height: 95px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-architecture .content .title {
        font-size: 70px;
        line-height: 80px;
    }
}

@media only screen and (min-width: 768px) {
    .header-architecture .content .dsn-btn.btn-circle {
        transform: translateY(100px);
    }
}

@media only screen and (max-width: 767px) {
    .header-architecture .content {
        padding-bottom: 0;
        padding-top: 170px;
    }
}

.header-architecture .dsn-btn.btn-circle {
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 50%;
}

@media only screen and (max-width: 767px) {
    .header-architecture .dsn-normal-btn.btn-circle-inner {
        position: relative;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .header-business .parallax-text {
        height: 120px !important;
    }
}

@media only screen and (max-width: 767px) {
    .header-business .parallax-text {
        height: 93px !important;
    }
}

@media only screen and (max-width: 575px) {
    .header-business .parallax-text {
        height: 73px !important;
    }
}

@media only screen and (min-width: 992px) {
    .header-business .dsn-heading-title {
        font-size: 230px;
        line-height: 170px;
    }
}

@media only screen and (max-width: 991px) {
    .header-business .dsn-heading-title {
        font-size: 160px;
        line-height: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .header-business .dsn-heading-title {
        font-size: 90px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .header-business .d-flex.justify-content-end {
        align-items: center;
        justify-content: center;
    }
}

.header-business p {
    margin-top: 30px;
    max-width: 400px;
    align-items: flex-end;
}

@media only screen and (max-width: 767px) {
    .header-business p {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

.header-photography {
    height: 87vh;
}

@media only screen and (max-width: 991px) {
    .header-photography {
        height: auto;
        padding-top: 150px;
    }
    .header-photography .footer-header {
        position: relative;
        margin-top: 30px;
    }
}

.header-photography .img-box-parallax {
    min-height: 70vh;
}

.header-photography .box-fact {
    position: absolute;
    left: -30px;
    bottom: 40px;
    width: 345px;
    display: flex;
    flex-direction: row;
    padding: 40px 25px;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .header-photography .box-fact {
        left: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .header-photography .box-fact {
        left: 10px;
    }
}

.header-normal {
    padding-top: 150px;
}

@media only screen and (max-width: 767px) {
    .header-normal .text-div {
        flex-direction: column;
        align-items: baseline;
    }
    .header-normal .text-div h3 {
        order: 2;
        margin-top: 20px;
    }
}

.header-normal h3 {
    margin-right: 30px;
}

@media only screen and (max-width: 767px) {
    .header-normal p.w-50 {
        width: 100%;
    }
}

.header-normal .btn-circle {
    width: 12vw;
    height: 12vw;
    line-height: 12vw;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 50% 50% 50% 50%;
}

.header-pages {
    padding-top: 160px;
    padding-bottom: 160px;
}

@media only screen and (max-width: 991px) {
    .header-pages .text-div {
        flex-direction: column;
        align-items: baseline;
        text-align: left;
    }
    .header-pages .text-div h3 {
        order: 2;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .header-pages .content {
        align-items: baseline;
    }
}

.header-pages .content .title {
    font-size: 95px;
    line-height: 100px;
}

@media only screen and (max-width: 767px) {
    .header-pages .content .title {
        font-size: 40px;
        line-height: 50px;
    }
}

.header-pages .content h3 {
    margin-right: 30px;
}

/* -------------------------------------------------------

-------------------------------------------------------- */

/*--------------------------------------------------------------
## pages
--------------------------------------------------------------*/

/* -------------------------------------------------------
                   09 - Slider
-------------------------------------------------------- */

.main-slider {
    --pt-slide: 100px;
    --pl-slide: 35vw;
    --pl-content: calc(var(--pl-slide) - 7vw);
    --swiper-wrapper-transition-timing-function: linear;
}

.main-slider .swiper-slide:not(.swiper-slide-active) .metas span,
.main-slider .swiper-slide:not(.swiper-slide-active) .word {
    opacity: 0 !important;
    transition: opacity 100ms, transform 1500ms !important;
}

.main-slider {
    height: 100vh;
}

.main-slider,
.main-slider .content-slider {
    position: relative;
    width: 100%;
}

.main-slider.hide-bg .bg-container {
    opacity: 0;
}

.box-shadow-head .main-slider .content-slider:after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    box-shadow: 1px 0 31px 45px var(--assistant-color);
    z-index: 1;
}

.main-slider .bg-three-js .swiper-container {
    opacity: 0;
}

.main-slider .bg-three-js.bg-container:after,
.main-slider .bg-three-js:before {
    z-index: 11;
    pointer-events: none;
}

.main-slider .bg-three-js canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.dsn-slider-width-circle .main-slider {
    overflow: hidden;
}

@media only screen and (min-width: 992px) {
    .dsn-slider-width-circle .main-slider:after {
        content: "";
        position: absolute;
        width: 70vw;
        height: 70vw;
        border: 2px solid var(--border-theme-color);
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 11;
        pointer-events: none;
        opacity: 0.25;
        max-width: calc(1200px + var(--dsn-gap-container));
        max-height: calc(1200px + var(--dsn-gap-container));
    }
}

@media only screen and (min-width: 992px) {
    .main-slider.has-paginate .dsn-slider-content {
        padding-left: var(--pl-content);
    }
}

@media only screen and (min-width: 992px) {
    .dsn-section-padding .main-slider .bg-container {
        width: calc(100% - var(--pl-slide));
        height: calc(100% - var(--pt-slide));
        right: 0;
        bottom: 0;
    }
    .dsn-section-padding .main-slider .dsn-slider-content {
        padding-top: calc(var(--pt-slide) + 80px);
    }
}

.main-slider .dsn-slider-content .swiper-slide {
    display: flex;
    align-items: center;
}

.main-slider .slider-nav-list {
    position: absolute;
    left: 0;
    top: calc(50% + (var(--pt-slide, 0) / 4));
    transform: translateY(-50%);
    height: 140px;
    width: calc(var(--pl-content) - 20px);
    z-index: 10;
    transition: 0.5s;
    text-align: left;
}

@media only screen and (max-width: 991px) {
    .main-slider .slider-nav-list {
        display: none;
    }
}

.main-slider .slider-nav-list>.swiper {
    height: 100%;
}

.main-slider .slider-nav-list>.swiper .swiper-slide {
    height: auto;
    transition: 0.3s;
}

.main-slider .slider-nav-list>.swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.6;
}

.main-slider .slider-nav-list>.swiper .swiper-slide:before {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(var(--dsn-gap-container) - 10px);
    height: 1px;
    background-color: var(--font-color);
    transition: 0.5s;
    -webkit-clip-path: inset(0 0 0 50px);
    clip-path: inset(0 0 0 50px);
}

.main-slider .slider-nav-list>.swiper .swiper-slide:not(.swiper-slide-active):before {
    -webkit-clip-path: inset(0 0 0 82%);
    clip-path: inset(0 0 0 82%);
}

.main-slider .slider-nav-list .title-nav {
    font-size: 15px;
    padding-left: var(--dsn-gap-container);
}

.main-slider .control-nav {
    position: absolute;
    width: 100%;
    max-width: 100%;
    z-index: 3;
    flex-wrap: wrap;
    background: transparent;
    bottom: 40px;
}

.main-slider .control-nav .prev-paginate {
    margin-right: 50px;
}

.main-slider .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.3s;
}

.main-slider .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    width: 100px;
}

.main-slider .swiper-pagination {
    position: absolute;
    --swiper-pagination-right: 0px;
}

.main-slider .swiper-pagination .swiper-pagination-bullet {
    counter-increment: workcounter;
    --swiper-pagination-bullet-vertical-gap: 10px;
    height: 30px;
    width: 100%;
    background-color: transparent;
}

.main-slider .swiper-pagination .swiper-pagination-bullet:before,
.main-slider .swiper-pagination .swiper-pagination-bullet:after {
    position: absolute;
}

.main-slider .swiper-pagination .swiper-pagination-bullet:before {
    content: "";
    width: 45px;
    height: 2px;
    background-color: var(--border-theme-color);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px 0 0 5px;
}

.main-slider .swiper-pagination .swiper-pagination-bullet:after {
    content: counters(workcounter, ".", decimal-leading-zero);
    line-height: 35px;
    font-size: 35px;
    font-weight: 500;
    left: 0;
    color: var(--heading-color);
    transition: 0.3s;
    font-family: fantasy;
}

.main-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    transform: scaleY(1.8);
}

.main-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-next-next,
.main-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-prev-prev {
    opacity: 0;
}

.main-slider .number-pagination {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.main-slider .number-pagination .swiper-pagination-bullet {
    height: 30px;
    width: 100%;
    background-color: transparent;
    margin: 10px 0;
}

/* -------------------------------------------------------
                   portfolio
-------------------------------------------------------- */

.work-hover .dsn-grid-layout {
    --dsn-width-item: 1;
    --dsn-col-item: 15px;
    --dsn-row-item: 30px;
}

.root-posts .pin-spacer {
    margin-left: 0 !important;
}

@media only screen and (max-width: 991px) {
    .dsn-style-list .root-posts .pin-spacer .post-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 30px;
        z-index: 3;
    }
    .dsn-style-list .root-posts .pin-spacer .post-content:before {
        text-align: right;
    }
}

.dsn-line-cat .dsn-posts .post-meta {
    border-bottom: 1px solid var(--border-theme-color);
    padding-bottom: 3px;
    margin-bottom: 15px;
}

.dsn-posts .dsn-def-btn.dsn-hover-icon .dsn-icon:before {
    border: 1px solid #ffffff5e;
}

.dsn-posts .container-img>.entry-date {
    position: absolute;
    right: 30px;
    writing-mode: vertical-rl;
    padding: 10px 7px;
    background-color: var(--bg-color);
    color: var(--heading-color);
    letter-spacing: 2px;
    font-weight: 400;
    z-index: 3;
    font-size: 13px;
}

.dsn-posts .box-image-link+.post-meta {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
    max-width: calc(100% - 60px);
}

.dsn-posts .box-image-link+.post-meta .dsn-category {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.dsn-line-cat .dsn-posts .box-image-link+.post-meta {
    width: calc(100% - 60px);
}

.dsn-posts .container-img .entry-date+.box-image-link+.post-meta {
    max-width: calc(100% - 110px);
}

.dsn-remove-last-border .dsn-posts .dsn-item-post:last-child .box-content {
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.dsn-posts .dsn-animate-up,
.dsn-posts .dsn-animate-down {
    font-size: 18vw;
    line-height: 18vw;
    opacity: 0.5;
}

.dsn-posts .dsn-animate-down {
    margin-left: 20px;
    text-align: right;
}

.dsn-bg-cat .dsn-posts .post-meta {
    width: -webkit-fit-content;
    width: fit-content;
    padding: 10px 0 0 10px;
    background: rgba(23, 28, 33, 0.82);
    border-radius: 5px;
}

.dsn-bg-cat .dsn-posts .post-meta .dsn-category {
    padding-right: 10px;
}

@media only screen and (min-width: 992px) {
    .dsn-posts.use-horizontal-scroll {
        flex-wrap: nowrap;
    }
    .use-flexible-scroll .dsn-posts {
        min-height: 80vh;
    }
    .use-flexible-scroll .dsn-posts .dsn-item-post:not(.align-self-center) {
        display: flex;
    }
    .use-flexible-scroll .dsn-posts .dsn-item-post:not(.align-self-center) .box-content {
        width: 100%;
    }
    .use-flexible-scroll .dsn-posts .dsn-item-post:not(.align-self-center):nth-child(3n) {
        align-items: end;
    }
    .use-flexible-scroll .dsn-posts .dsn-item-post:not(.align-self-center):nth-child(4n) {
        align-items: center;
    }
}

@media only screen and (max-width: 991px) {
    .dsn-posts.use-horizontal-scroll {
        padding-right: var(--dsn-gap-container);
        padding-left: var(--dsn-gap-container);
    }
    .dsn-posts.use-horizontal-scroll .start-section,
    .dsn-posts.use-horizontal-scroll .end-section {
        display: none;
    }
}

.dsn-posts .dsn-item-post:not(.background-section) .metas a {
    background-color: var(--assistant-color);
}

.dsn-posts .dsn-item-post.background-section .metas a {
    background-color: var(--bg-color);
}

.dsn-posts .metas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dsn-posts .metas a {
    margin: 0;
    border-radius: 30px;
    font-size: 13px;
    padding: 5px 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.dsn-style-cards .dsn-posts:not(.box-image-ohixm) .post-content {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    justify-content: end;
}

.dsn-style-cards .dsn-posts .box-image-link {
    width: 100%;
}

.dsn-style-cards .dsn-posts .dsn-item-post.box-hover-image {
    min-height: 350px;
}

.dsn-style-cards .dsn-posts.cards-odd .dsn-item-post:nth-of-type(odd) .box-image-bg {
    height: 50vh;
}

.dsn-style-cards .dsn-posts.cards-odd .swiper-wrapper {
    align-items: center;
}

.dsn-style-cards .dsn-posts .box-image-bg {
    height: 70vh;
}

.dsn-style-cards .dsn-posts .section_description {
    width: 90%;
}

.dsn-style-cards .dsn-posts .post-title,
.dsn-style-cards .dsn-posts .post-description-info {
    width: calc(100% - 50px);
}

.dsn-style-cards .dsn-posts .dsn-post-link {
    position: absolute;
    right: 30px;
    bottom: 25px;
    padding: 12px 10px;
    border-radius: 26px;
}

.dsn-style-cards .dsn-posts .dsn-post-link svg {
    fill: var(--heading-color);
}

.dsn-style-cards .dsn-posts .post-title {
    border-top: 2px dashed var(--border-theme-color);
    padding-top: 20px;
    width: calc(100% + 60px);
    margin-left: -30px;
    padding-left: 30px;
    text-transform: uppercase;
}

.dsn-style-classic .dsn-posts .box-content {
    flex-direction: column;
    border-style: var(--heading-color);
}

.dsn-style-classic .dsn-posts .box-content .box-image-link+.post-content {
    padding-top: 20px;
}

.dsn-style-classic .dsn-posts .box-content .box-image-bg {
    position: relative;
    overflow: hidden;
    max-height: 80vh;
}

@media only screen and (min-width: 768px) {
    .classic-2.dsn-style-classic .dsn-posts .post-content {
        flex-direction: row;
        justify-content: space-between;
    }
    .classic-2.dsn-style-classic .dsn-posts .post-content .post-title-info+.post-description-info {
        margin-left: 30px;
    }
    .classic-2.dsn-style-classic .dsn-posts .post-content .post-title-info+.post-description-info .section_description {
        margin-top: 0;
    }
    .classic-2.dsn-style-classic .dsn-posts .post-content .post-title-info {
        flex: 0 0 auto;
    }
}

.dsn-style-list .dsn-posts .box-content {
    border-style: var(--heading-color);
    padding: 10px 10px 10px 10px;
}

.dsn-style-list .dsn-posts .box-content .box-image-link {
    position: relative;
}

@media only screen and (min-width: 992px) {
    .dsn-style-list .dsn-posts .box-content {
        display: grid;
        grid-template-columns: 40% 60%;
        grid-column-gap: 50px;
    }
    .dsn-style-list .dsn-posts .box-content .post-content {
        align-self: center;
    }
}

@media only screen and (max-width: 991px) {
    .dsn-style-list .dsn-posts .box-content {
        flex-direction: column;
    }
    .dsn-style-list .dsn-posts .box-content .box-image-link+.post-content {
        padding-top: 30px;
    }
}

.dsn-style-hover-list .dsn-posts .hover-reveal {
    position: fixed;
    width: 250px;
    height: 320px;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1;
}

.dsn-style-hover-list .dsn-posts .hover-reveal__inner,
.dsn-style-hover-list .dsn-posts .hover-reveal__img {
    width: 100%;
    height: 100%;
    position: relative;
}

.dsn-style-hover-list .dsn-posts .hover-reveal__deco {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--theme-color);
}

.dsn-style-hover-list .dsn-posts .hover-reveal__img {
    background-size: cover;
    background-position: 50% 50%;
}

@media only screen and (min-width: 992px) {
    .dsn-style-list .dsn-posts .box-content {
        grid-column-gap: 0 !important;
    }
    .dsn-style-list .dsn-posts .box-content .post-content {
        padding: 30px;
        justify-content: space-between;
        height: 100%;
    }
}

.dsn-style-list.dsn-image-right .dsn-posts .box-image-link,
.dsn-style-list.dsn-image-odd .dsn-posts .dsn-item-post:nth-child(even) .box-image-link {
    order: 2;
}

@media only screen and (min-width: 992px) {
    .dsn-style-list.dsn-image-odd .dsn-posts .dsn-item-post:nth-child(even) .box-image-link {
        order: 2;
    }
    .dsn-style-list.dsn-image-odd .dsn-posts .dsn-item-post:nth-child(even) .post-content {
        justify-self: end;
    }
}

@media only screen and (max-width: 991px) {
    .dsn-style-list.dsn-image-odd .dsn-posts .dsn-item-post .box-image-link {
        order: 0 !important;
    }
}

.dsn-posts .dsn-link {
    position: relative;
    color: var(--heading-color);
    letter-spacing: 2px;
    padding: 0 5px 2px 5px;
    font-size: 14px;
}

.dsn-posts .dsn-link:before {
    position: absolute;
    content: "";
    background-image: url(../img/button-pattern.png);
    background-repeat: repeat;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    z-index: 0;
    transition: background-position 0.3s linear;
    opacity: 0.5;
}

.dsn-posts .dsn-link:hover:before {
    background-position: 20px 0;
}

.list-with-number.dsn-style-list .dsn-posts .box-content .post-content {
    justify-content: flex-end;
}

.list-with-number.dsn-style-list .dsn-posts .number-item::before {
    height: 100%;
    font-size: 75px;
    font-weight: 600;
}

.root-posts .dsn-posts-el.type-p-nav {
    padding-top: var(--dsn-row-item);
    margin-top: var(--dsn-row-item);
}

.root-posts .dsn-posts-el.type-p-nav .type-p-nav {
    padding: 0;
    border: 0;
}

.box-image-transform .grid-item>div,
.box-image-transform .box-image-link {
    position: relative;
    overflow: hidden;
}

.box-image-transform .grid-item>div .box-image-bg,
.box-image-transform .box-image-link .box-image-bg {
    transition: opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}

.box-image-transform .grid-item>div:hover .box-image-bg,
.box-image-transform .box-image-link:hover .box-image-bg {
    transform: scale(1.2);
    opacity: 1;
}

.dsn-filtering {
    display: flex;
}

.filtering-t {
    z-index: 2;
}

.filtering-t .filtering-wrap .filter-title {
    margin: 0 0 12px;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
}

.filtering-t .filtering-wrap .filtering button {
    color: var(--heading-color);
    width: auto;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.filtering-t .filtering-wrap .filtering button:not(:last-of-type):after {
    content: "/";
    position: absolute;
    margin: 0 2px;
    color: var(--heading-color);
}

.filtering-t .filtering-wrap .filtering button.active {
    color: var(--theme-color);
}

@media only screen and (max-width: 575px) {
    .filtering-t .filtering-wrap .filtering button {
        padding-top: 0;
        padding-bottom: 10px;
        margin: 0 10px 10px 0;
    }
}

.dsn-grid-layout.flexibly-hover {
    display: flex;
    row-gap: var(--dsn-row-item);
    column-gap: var(--dsn-col-item);
}

.dsn-grid-layout.flexibly-hover .grid-item {
    position: relative;
    flex-grow: 1;
    flex-basis: 0;
}

.dsn-grid-layout.flexibly-hover .grid-item,
.dsn-grid-layout.flexibly-hover .grid-item * {
    transition: 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.dsn-grid-layout.flexibly-hover .grid-item:not(:hover) .post-content {
    opacity: 0;
}

.dsn-grid-layout.flexibly-hover .grid-item:hover {
    flex-grow: 4.3;
}

.dsn-grid-layout.flexibly-grid {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--dsn-col-item);
    row-gap: var(--dsn-row-item);
}

.dsn-grid-layout.flexibly-grid .metas a {
    background-color: transparent;
    padding: 0;
}

.dsn-grid-layout.flexibly-grid .grid-item {
    counter-increment: menucounter;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    column-gap: var(--dsn-col-item);
}

.dsn-grid-layout.flexibly-grid .grid-item:not(:last-child):after {
    content: "";
    position: relative;
    width: 1px;
    height: 100%;
    background-color: var(--font-color);
    transform: rotate(35deg);
}

@media only screen and (max-width: 575px) {
    .dsn-grid-layout.flexibly-grid .grid-item:not(:last-child):after {
        display: none;
    }
}

.dsn-grid-layout.flexibly-grid .post-title,
.dsn-grid-layout.flexibly-grid .metas {
    padding-right: 35px;
}

@media only screen and (max-width: 575px) {
    .dsn-grid-layout.flexibly-grid .post-title,
    .dsn-grid-layout.flexibly-grid .metas {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 575px) {
    .dsn-grid-layout.flexibly-grid .post-title {
        font-size: 24px;
    }
}

.dsn-grid-layout.flexibly-grid .post-title:before {
    content: counters(menucounter, ".", decimal-leading-zero);
    position: absolute;
    right: 0;
    top: 10px;
    color: var(--font-color);
    font-size: 16px;
    font-weight: 500;
}

@media only screen and (max-width: 575px) {
    .dsn-grid-layout.flexibly-grid .post-title:before {
        display: none;
    }
}

.aspect-ratio-1 .dsn-posts .box-content .post-content {
    padding: 0px 0px 70px 0px;
}

.aspect-ratio-1 .post-title {
    width: auto !important;
    border-top: 0;
}

/* -------------------------------------------------------
                   Blog
-------------------------------------------------------- */

.root-blog {
    counter-reset: compteListe;
}

.root-blog .type-p-nav {
    margin-top: var(--blog-g, 50px);
}

.root-blog .blog-item {
    padding-left: 60px;
    padding-top: var(--blog-g, 50px);
    padding-bottom: var(--blog-g, 50px);
}

.root-blog .blog-item:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.root-blog .blog-item:first-of-type {
    padding-top: 0;
}

@media only screen and (min-width: 992px) {
    .root-blog .blog-item .blog-item-inner {
        display: flex;
    }
}

.root-blog .blog-item .blog-item-inner::before {
    counter-increment: compteListe 1;
    color: var(--heading-color);
    content: "/ " counter(compteListe);
    position: absolute;
    left: -60px;
    top: 5px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: bold;
}

@media only screen and (min-width: 992px) {
    .root-blog .blog-item .left-box {
        flex: 0 1 40%;
    }
}

@media only screen and (max-width: 991px) {
    .root-blog .blog-item .left-box {
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 992px) {
    .root-blog .blog-item .right-box {
        flex: 0 1 60%;
        padding-left: 30px;
    }
}

.post-tags {
    padding: 20px 0 0;
    clear: both;
}

.post-tags a {
    font-size: 13px;
    margin-right: 10px;
    padding-top: 10px;
    font-weight: 600;
}

.post-tags a:before {
    content: "#";
    position: relative;
    margin-right: 3px;
    font-size: 14px;
}

.post-tags a,
.post-tags a span {
    color: var(--heading-color);
}

.post-full-content.single-post>*:not(.gallery),
.post-full-content.single-post>*:not(.wp-block-quote)>p,
.widget_text.single-post>*:not(.gallery),
.widget_text.single-post>*:not(.wp-block-quote)>p {
    margin-bottom: 30px;
}

.post-full-content.single-post>*:not(.gallery).justified-gallery,
.post-full-content.single-post>*:not(.wp-block-quote)>p.justified-gallery,
.widget_text.single-post>*:not(.gallery).justified-gallery,
.widget_text.single-post>*:not(.wp-block-quote)>p.justified-gallery {
    margin-bottom: 15px;
}

.post-full-content.single-post>*:not(.gallery):last-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p:last-child,
.widget_text.single-post>*:not(.gallery):last-child,
.widget_text.single-post>*:not(.wp-block-quote)>p:last-child {
    margin-bottom: 0;
}

.post-full-content.single-post>*:not(.gallery):last-child.justified-gallery,
.post-full-content.single-post>*:not(.wp-block-quote)>p:last-child.justified-gallery,
.widget_text.single-post>*:not(.gallery):last-child.justified-gallery,
.widget_text.single-post>*:not(.wp-block-quote)>p:last-child.justified-gallery {
    margin-bottom: -30px;
}

.post-full-content.single-post>*:not(.gallery):last-child.wp-block-gallery,
.post-full-content.single-post>*:not(.wp-block-quote)>p:last-child.wp-block-gallery,
.widget_text.single-post>*:not(.gallery):last-child.wp-block-gallery,
.widget_text.single-post>*:not(.wp-block-quote)>p:last-child.wp-block-gallery {
    margin-bottom: -15px;
}

.post-full-content.single-post>*:not(.gallery).section-padding,
.post-full-content.single-post>*:not(.wp-block-quote)>p.section-padding,
.widget_text.single-post>*:not(.gallery).section-padding,
.widget_text.single-post>*:not(.wp-block-quote)>p.section-padding {
    padding-top: 30;
    padding-bottom: 30;
    margin: 0;
}

.post-full-content.single-post>*:not(.gallery).section-padding.dsn-normalize-block,
.post-full-content.single-post>*:not(.wp-block-quote)>p.section-padding.dsn-normalize-block,
.widget_text.single-post>*:not(.gallery).section-padding.dsn-normalize-block,
.widget_text.single-post>*:not(.wp-block-quote)>p.section-padding.dsn-normalize-block {
    padding-top: 0;
    padding-bottom: 0;
    margin: 30 0;
}

.post-full-content.single-post>*:not(.gallery).section-padding:not(.dsn-normalize-block),
.post-full-content.single-post>*:not(.wp-block-quote)>p.section-padding:not(.dsn-normalize-block),
.widget_text.single-post>*:not(.gallery).section-padding:not(.dsn-normalize-block),
.widget_text.single-post>*:not(.wp-block-quote)>p.section-padding:not(.dsn-normalize-block) {
    padding-top: 0;
}

.post-full-content.single-post>*:not(.gallery):first-child.section-padding,
.post-full-content.single-post>*:not(.wp-block-quote)>p:first-child.section-padding,
.widget_text.single-post>*:not(.gallery):first-child.section-padding,
.widget_text.single-post>*:not(.wp-block-quote)>p:first-child.section-padding {
    padding-top: 0;
    background-color: inherit;
}

.post-full-content.single-post>*:not(.gallery).wp-block-gallery,
.post-full-content.single-post>*:not(.wp-block-quote)>p.wp-block-gallery,
.widget_text.single-post>*:not(.gallery).wp-block-gallery,
.widget_text.single-post>*:not(.wp-block-quote)>p.wp-block-gallery {
    margin-bottom: 14px;
}

.post-full-content.single-post>*:not(.gallery).wp-block-gallery .blocks-gallery-image:last-child,
.post-full-content.single-post>*:not(.gallery).wp-block-gallery .blocks-gallery-item:last-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p.wp-block-gallery .blocks-gallery-image:last-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p.wp-block-gallery .blocks-gallery-item:last-child,
.widget_text.single-post>*:not(.gallery).wp-block-gallery .blocks-gallery-image:last-child,
.widget_text.single-post>*:not(.gallery).wp-block-gallery .blocks-gallery-item:last-child,
.widget_text.single-post>*:not(.wp-block-quote)>p.wp-block-gallery .blocks-gallery-image:last-child,
.widget_text.single-post>*:not(.wp-block-quote)>p.wp-block-gallery .blocks-gallery-item:last-child {
    margin-bottom: 16px;
}

.post-full-content.single-post>*:not(.gallery)>*:first-child,
.post-full-content.single-post>*:not(.gallery):first-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p>*:first-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p:first-child,
.widget_text.single-post>*:not(.gallery)>*:first-child,
.widget_text.single-post>*:not(.gallery):first-child,
.widget_text.single-post>*:not(.wp-block-quote)>p>*:first-child,
.widget_text.single-post>*:not(.wp-block-quote)>p:first-child {
    margin-top: 0;
}

.post-full-content.single-post>*:not(.gallery)>*:last-child,
.post-full-content.single-post>*:not(.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)>*:last-child,
.widget_text.single-post>*:not(.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;
}

.pagination-post {
    position: relative;
}

.pagination-post .pagination-item {
    border: 0;
}

.pagination-post a>span {
    letter-spacing: 2px;
}

@media only screen and (max-width: 767px) {
    .pagination-post {
        flex-direction: column;
    }
    .pagination-post .icon {
        display: none;
    }
    .pagination-post .pagination-item {
        text-align: left;
        border: 0;
    }
    .pagination-post .pagination-item:not(.text-right) {
        border-bottom: 1px solid var(--border-theme-color);
    }
    .pagination-post .pagination-item.border-left {
        border-top: 1px solid var(--border-theme-color);
    }
    .pagination-post .pagination-item.border-left a {
        display: flex;
        flex-direction: column-reverse;
    }
    .pagination-post .pagination-item.border-left a>span {
        margin-top: 10px;
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 768px) {
    .dsn-form .d-flex-form .form-group:not(:last-child) {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .dsn-form .d-flex-form {
        flex-direction: column;
    }
}

.dsn-form .form-group {
    width: 100%;
    margin-bottom: 30px;
}

.dsn-form .form-group label {
    font-weight: 600;
    color: var(--heading-color);
}

.dsn-form .entry-box .wpcf7-form-control-wrap {
    width: 100%;
}

.dsn-form .entry-box textarea,
.dsn-form .entry-box input:not([type=submit]) {
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    border: 1px solid var(--border-theme-color);
    padding: 10px 18px;
    color: var(--heading-color);
    margin-bottom: 0;
    background-color: transparent;
}

.dsn-form .entry-box textarea {
    min-height: 50px;
}

.dsn-form .dsn-btn {
    padding: 0;
    border: 1px solid var(--theme-color);
}

.dsn-form .dsn-def-btn .dsn-btn {
    border-radius: 7px;
}

.dsn-form .dsn-def-btn>.w-auto {
    justify-content: center;
}

.dsn-form input[type=submit] {
    position: relative;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--heading-color);
    padding: 20px 30px;
    cursor: pointer;
    z-index: 9;
    min-width: 150px;
}

.dsn-form .ajax-loader {
    position: absolute;
    right: 3px;
}

.dsn-form .wpcf7-not-valid-tip {
    margin-top: 20px;
}

.dsn-form .wpcf7 form.invalid .wpcf7-response-output,
.dsn-form .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: var(--border-theme-color);
}

.dsn-form .dsn-def-btn .icon-circle {
    display: inherit;
}

form:not(.submitting) .wpcf7-spinner {
    width: 0;
    padding: 0;
    margin: 0;
    transform: scale(0);
}

.wpcf7-spinner {
    transition: 0.5s linear;
    transition-property: transform, margin;
    z-index: 1;
    margin-left: 0;
    margin-right: 30px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

#comment_post .submit-form {
    color: var(--heading-color);
    border-radius: 30px;
    font-size: 15px;
    border: 2px solid var(--heading-color);
    padding: 20px 41px;
    cursor: pointer;
    min-height: 48px;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.comments-post .comments-title {
    margin-bottom: 30px;
}

.comments-post .comments-title.border-section-bottom {
    padding-bottom: 30px;
}

.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;
}

@media only screen and (min-width: 576px) {
    .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: 0;
    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(--assistant-color);
    color: var(--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(--assistant-color);
    margin-top: 50px;
}

.comment-list .comment-respond .entry-form input,
.comment-list .comment-respond .entry-form textarea {
    border: 1px solid var(--border-theme-color);
}

.comment-list .comment-respond .comment-form-cookies-consent {
    margin-bottom: 30px;
}

.comment-list .comment-respond .comments-title {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-theme-color);
    padding-bottom: 20px;
}

@media only screen and (max-width: 575px) {
    .comment-list .comment-respond {
        padding: 50px 15px;
    }
}

@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
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Error
--------------------------------------------------------------*/

body.error404 {
    overflow: hidden;
}

body.error404 .dsn-header-hero {
    height: 100vh;
}

.admin-bar body.error404 .dsn-header-hero {
    top: 46px;
    height: calc(100vh - 46px);
}

@media screen and (min-width: 783px) {
    .admin-bar body.error404 .dsn-header-hero {
        top: 32px;
        height: calc(100vh - 32px);
    }
}

body.error404 .hero-img {
    filter: blur(7px);
}

body.error404 .title-error {
    font-size: 10vw;
    padding: 0;
    margin-bottom: 30px;
    line-height: 1;
}

body.error404 .title-error:after,
body.error404 .title-error:before {
    background-color: var(--theme-color);
    display: none;
}

body.error404 .title-error span {
    color: transparent;
    -webkit-text-stroke-color: var(--heading-color);
    -webkit-text-stroke-width: 2px;
}

body.error404 .sm-title-block:before {
    border-bottom: 4px solid var(--theme-color);
    top: -30px;
    content: "";
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 155px;
}

body.error404 .sm-title-block span {
    margin-bottom: 30px;
    font-size: 14px;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/

/* -------------------------------------------------------
                   Footer
-------------------------------------------------------- */

#dsn_footer .menu-ohixm-footer-container .menu {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#dsn_footer .menu-ohixm-footer-container .menu li {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
}

#dsn_footer .footer-nav .menu-ohixm-footer-container .menu {
    flex-wrap: wrap;
    flex-direction: row;
}

@media only screen and (max-width: 991px) {
    .footer-content .box-text-lg .title {
        font-size: 80px;
        line-height: 74px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-content .box-text-lg .title {
        font-size: 60px;
        line-height: 74px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-content .box-text-lg .content-column {
        flex-direction: column;
        margin-top: 0;
    }
    .footer-content .box-text-lg .content-column p {
        order: 2;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-content .box-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-content .box-bottom .text {
        order: 2;
    }
    .footer-content .box-bottom .box-social-inner {
        order: 1;
    }
    .footer-content .box-bottom .menu-ohixm-footer-container {
        margin-bottom: 15px;
        order: 1;
    }
}

.elementor-social-icon i {
    --e-social-icon-icon-color: $heading-color;
}

.dsn-equal-height.h-100>.elementor-widget-container {
    height: 100%;
}

@media only screen and (max-width: 991px) {
    .dsn-equal-height.h-100.dsn-position-tablet-relative {
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .dsn-equal-height.h-100.dsn-position-mobile-relative {
        height: auto;
    }
}

/**
    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;
    }
}

.elementor-align-justify .dsn-heading-title.border-section-bottom {
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .elementor-tablet-align-center .dsn-heading-title.border-section-bottom,
    .elementor-tablet-align-right .dsn-heading-title.border-section-bottom,
    .elementor-tablet-align-left .dsn-heading-title.border-section-bottom {
        width: auto !important;
    }
    .elementor-tablet-align-justify .dsn-heading-title.border-section-bottom {
        width: 100% !important;
    }
}

@media only screen and (max-width: 767px) {
    .elementor-mobile-align-center .dsn-heading-title.border-section-bottom,
    .elementor-mobile-align-right .dsn-heading-title.border-section-bottom,
    .elementor-mobile-align-left .dsn-heading-title.border-section-bottom {
        width: auto !important;
    }
    .elementor-mobile-align-justify .dsn-heading-title.border-section-bottom {
        width: 100% !important;
    }
}

/**
    text align
 */

.elementor-align-center .line-under:after,
.elementor-align-center .img-box-parallax[data-dsn-grid],
.elementor-align-center .max-w570,
.elementor-align-center .dsn-icon,
.elementor-align-center .dsn-icon svg,
.elementor-align-center .max-w750,
.elementor-align-center .dsn-auto {
    margin-right: auto;
    margin-left: auto;
}

.elementor-align-right .line-under:after,
.elementor-align-right .img-box-parallax[data-dsn-grid],
.elementor-align-right .max-w570,
.elementor-align-right .dsn-icon,
.elementor-align-right .dsn-icon svg,
.elementor-align-right .max-w750,
.elementor-align-right .dsn-auto {
    margin-left: auto;
}

@media only screen and (max-width: 991px) {
    .elementor-tablet-align-center .line-under:after,
    .elementor-tablet-align-center .img-box-parallax[data-dsn-grid],
    .elementor-tablet-align-center .max-w570,
    .elementor-tablet-align-center .dsn-icon,
    .elementor-tablet-align-center .dsn-icon svg,
    .elementor-tablet-align-center .max-w750,
    .elementor-tablet-align-center .dsn-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .elementor-tablet-align-right .line-under:after,
    .elementor-tablet-align-right .img-box-parallax[data-dsn-grid],
    .elementor-tablet-align-right .max-w570,
    .elementor-tablet-align-right .dsn-icon,
    .elementor-tablet-align-right .dsn-icon svg,
    .elementor-tablet-align-right .max-w750,
    .elementor-tablet-align-right .dsn-auto {
        margin-left: auto !important;
        margin-right: 0 !important;
    }
    .elementor-tablet-align-left .line-under:after,
    .elementor-tablet-align-left .img-box-parallax[data-dsn-grid],
    .elementor-tablet-align-left .max-w570,
    .elementor-tablet-align-left .dsn-icon,
    .elementor-tablet-align-left .dsn-icon svg,
    .elementor-tablet-align-left .max-w750,
    .elementor-tablet-align-left .dsn-auto {
        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 .img-box-parallax[data-dsn-grid],
    .elementor-mobile-align-center .max-w570,
    .elementor-mobile-align-center .dsn-icon,
    .elementor-mobile-align-center .dsn-icon svg,
    .elementor-mobile-align-center .max-w750,
    .elementor-mobile-align-center .dsn-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .elementor-mobile-align-right .line-under:after,
    .elementor-mobile-align-right .img-box-parallax[data-dsn-grid],
    .elementor-mobile-align-right .max-w570,
    .elementor-mobile-align-right .dsn-icon,
    .elementor-mobile-align-right .dsn-icon svg,
    .elementor-mobile-align-right .max-w750,
    .elementor-mobile-align-right .dsn-auto {
        margin-left: auto !important;
        margin-right: 0 !important;
    }
    .elementor-mobile-align-left .line-under:after,
    .elementor-mobile-align-left .img-box-parallax[data-dsn-grid],
    .elementor-mobile-align-left .max-w570,
    .elementor-mobile-align-left .dsn-icon,
    .elementor-mobile-align-left .dsn-icon svg,
    .elementor-mobile-align-left .max-w750,
    .elementor-mobile-align-left .dsn-auto {
        margin-left: 0 !important;
        margin-right: auto !important;
    }
}

div.effect-popup,
.has-popup div.img-box-parallax,
.has-popup div.pop-up {
    cursor: pointer;
}

.dsn-bg-section.p-absolute.w-100.h-100.over-hidden.top-0.left-0 {
    z-index: -1;
    pointer-events: none;
}

.dsn-bg-section.p-absolute.w-100.h-100.over-hidden.top-0.left-0 [data-dsn-grid=moveUp].h-100 {
    height: 100%;
}

.dsn-right-container .dsn-bg-section.p-absolute.w-100.h-100.over-hidden.top-0.left-0 {
    width: calc(100% - var(--dsn-gap-container));
    left: var(--dsn-gap-container);
}

.elementor img.cover-bg-img {
    height: 100%;
}

.dsn-swiper-parallax-transform {
    transition-property: opacity, transform, visibility;
}

.dsn-mb-no-space {
    margin-bottom: 0 !important;
}

.dsn-bg-mask {
    position: absolute;
    width: calc(var(--width-mask, 100%) + var(--width-calc-mask, 0px));
    height: calc(var(--height-mask, 100%) + var(--height-calc-mask, 0px));
    top: var(--top-mask, 0px);
    left: var(--left-mask, 0px);
    margin-left: var(--margin-left-mask, 0px);
    margin-top: var(--margin-top-mask, 0px);
    z-index: 0;
}

.dsn-bg-mask.h-50 {
    height: 50%;
}

.filter-swiper-blur .swiper-slide:not(.swiper-slide-active) {
    filter: blur(3px);
}

ul.list-style-none {
    list-style: none;
}

#wp-admin-bar-elementor_edit_page .elementor-edit-link-title {
    display: initial;
}

.cover-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.dsn-column-gap-custom>div:not(.hdev-element-wrap) {
    display: grid !important;
    align-items: stretch;
}

@media only screen and (max-width: 575px) {
    .dsn-column-gap-custom>div:not(.hdev-element-wrap) {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.dsn-column-gap-custom>div:not(.hdev-element-wrap)>.elementor-widget {
    margin-bottom: 0 !important;
}

@media only screen and (min-width: 768px) {
    .dsn-isotope.dsn-masonry-grid .grid-item:nth-of-type(2) {
        margin-top: calc(80px + var(--dsn-col-item, 0px));
    }
}

@media only screen and (min-width: 992px) {
    .dsn-isotope.dsn-masonry-grid.dsn-masonry-grid-2 .grid-item:nth-of-type(3) {
        margin-top: calc(120px + var(--dsn-col-item, 0px));
    }
}

.move-circle:not(.p-absolute) {
    position: relative;
}

@media only screen and (min-width: 992px) {
    .move-circle {
        background-color: transparent;
        border-color: transparent !important;
    }
    .move-circle>*:not(.icon-circle) {
        position: relative;
        z-index: 1;
    }
}

.move-circle .icon-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: inherit;
}

.move-circle.background-main .icon-circle {
    background-color: var(--bg-color);
}

.move-circle.background-section .icon-circle {
    background-color: var(--assistant-color);
}

.move-circle.background-theme .icon-circle {
    background-color: var(--theme-color);
}

.move-circle.border-color-default .icon-circle {
    border-color: var(--border-theme-color);
}

.move-circle.border-color-main .icon-circle {
    border-color: var(--bg-color);
}

.move-circle.border-color-assistant .icon-circle {
    border-color: var(--assistant-color);
}

.move-circle.border-color-theme-color .icon-circle {
    border-color: var(--theme-color);
}

.move-circle.border-color-heading .icon-circle {
    border-color: var(--heading-color);
}

.move-circle.border-color-body .icon-circle {
    border-color: var(--font-color);
}

.move-circle.border-circle {
    border: 1px solid var(--heading-color);
}

.dsn-lazy-loading {
    filter: blur(13px);
}

img:not(.dsn-lazy-loading) {
    transition: filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.dsn-ajax-effect {
    overflow: hidden;
}

.dsn-icon:not(.d-block) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dsn-icon i {
    font-size: var(--dsn-icon-size, 16px);
    color: var(--dsn-color-icon, var(--theme-color));
}

.dsn-icon svg {
    width: var(--dsn-icon-size, 16px);
}

.dsn-icon svg,
.dsn-icon svg path {
    fill: var(--dsn-color-icon, var(--theme-color));
}

.text-center .dsn-icon {
    margin: 0 auto;
}

.dsn-icon-stroke .dsn-icon svg,
.dsn-icon-stroke .dsn-icon svg path {
    fill: transparent;
    stroke: var(--dsn-color-icon, var(--theme-color));
}

.dsn-icon-theme-color {
    --dsn-color-icon: var(--theme-color);
}

.dsn-icon-heading-color {
    --dsn-color-icon: var(--heading-color);
}

.dsn-icon-body-color {
    --dsn-color-icon: var(--font-color);
}

.dsn-icon-border-color {
    --dsn-color-icon: var(--border-theme-color);
}

.dsn-icon-assistant-color {
    --dsn-color-icon: var(--assistant-color);
}

.dsn-icon-main-color {
    --dsn-color-icon: var(--bg-color);
}

.button-load-more {
    transition-property: padding, border-radius, background;
    transition-duration: 1s;
    text-align: center;
    cursor: pointer;
    padding: 15px 40px;
    margin-top: var(--dsn-row-item);
    font-size: 14px;
    color: var(--heading-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
}

.button-load-more span:not(.icon-circle) {
    z-index: 1;
}

.button-load-more .dsn-load-progress-ajax,
.button-load-more .progress-no-more {
    display: none;
}

.button-load-more.dsn-loading {
    border-radius: 3px;
    padding: 10px 20px;
}

.button-load-more.dsn-loading .dsn-load-progress-ajax {
    display: block;
}

.button-load-more.dsn-loading .progress-text {
    display: none;
}

.dsn-grid-layout:not(.flexibly-hover,
.flexibly-grid) {
    --dsn-width-item: 1;
    --dsn-col-item: 30px;
    --dsn-row-item: 50px;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--dsn-col-item));
    margin-top: calc(-1 * var(--dsn-row-item));
}

@media only screen and (max-width: 575px) {
    .dsn-grid-layout:not(.flexibly-hover,
    .flexibly-grid):not(.dsn-n-default) {
        --dsn-width-item: 1 !important;
    }
}

.dsn-grid-layout:not(.flexibly-hover,
.flexibly-grid)>.grid-item {
    flex: 0 0 calc((100% / var(--dsn-width-item)) - var(--dsn-col-item));
    margin-left: var(--dsn-col-item);
    margin-top: var(--dsn-row-item);
}

.dsn-grid-layout:not(.flexibly-hover,
.flexibly-grid).full-width-last-item:not(.dsn-isotope)>.grid-item {
    flex-grow: 1;
}

.dsn-grid-layout:not(.flexibly-hover,
.flexibly-grid):not(.full-width-last-item)>.grid-item {
    max-width: calc((100% / var(--dsn-width-item)) - var(--dsn-col-item));
    width: 100%;
    overflow: hidden;
}

.list-with-number {
    counter-reset: workcounter;
}

.list-with-number .number-item {
    position: relative;
}

.list-with-number .number-item.with-dot:before {
    content: counters(workcounter, ".", decimal-leading-zero) ".";
}

.list-with-number .number-item:not(.with-dot):before {
    content: counters(workcounter, ".", decimal-leading-zero);
}

.list-with-number .number-item:before {
    counter-increment: workcounter;
    position: relative;
    line-height: initial;
    font-size: 20px;
    color: var(--theme-color);
    letter-spacing: 2px;
    font-weight: 500;
    margin-right: 5px;
}

ul.dsn-list {
    list-style: none;
    padding-left: 0;
}

ul.dsn-list li:not(:last-of-type) {
    margin-bottom: 15px;
}

ul.dsn-list li.with-border:not(:last-of-type) {
    border-bottom: 1px solid var(--border-theme-color);
    padding-bottom: 15px;
}

.section-move-image.move-top,
.section-move-image.move-bottom {
    flex-direction: column;
}

.dsn-equal-height .section-move-image.move-top,
.dsn-equal-height .section-move-image.move-bottom {
    position: absolute;
    height: 100%;
}

.section-move-image.move-top .grid-item,
.section-move-image.move-bottom .grid-item {
    flex: unset;
    overflow: initial;
    position: relative;
}

.section-move-image.move-top .grid-item .image-item,
.section-move-image.move-bottom .grid-item .image-item {
    width: 100%;
}

.custom-mr-lf-150 {
    margin-left: 150px;
}

.section-move .img-sm {
    width: 300px;
    height: 45vh;
}

@media only screen and (max-width: 991px) {
    .section-move .img-sm {
        display: none;
    }
}

.dsn-text-marquee {
    font-size: 7vw;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 7vw;
}

.dsn-text-marquee svg {
    width: 100px;
    height: 100px;
    margin-left: 60px;
    border-radius: 7px;
    border: 2px dotted var(--border-theme-color);
}

.about-us {
    position: relative;
}

@media only screen and (max-width: 991px) {
    .about-us .grid-1-half {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .about-us .grid-1-half {
        grid-template-columns: auto;
    }
}

.about-us .info-box .sub-title {
    background-image: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us .info-box .sub-title::before {
    background-color: var(--heading-color);
}

.about-us .info-box .title-lg {
    margin-left: -100px;
}

@media only screen and (max-width: 991px) {
    .about-us .info-box .title-lg {
        margin-left: 0;
        line-height: 1;
    }
}

.about-us .info-box .title-lg .strock {
    margin-left: 20px;
    color: transparent;
    -webkit-text-stroke: 1px var(--heading-color);
}

@media only screen and (max-width: 991px) {
    .about-us .info-box .title-lg .strock {
        margin-left: 0;
    }
}

.about-us .info-box p {
    margin-top: 25px;
    max-width: 250px;
}

@media only screen and (max-width: 991px) {
    .about-us .info-box p {
        max-width: 100%;
    }
}

.about-us .box-img {
    position: relative;
    padding-bottom: 120px;
    padding-left: 120px;
}

@media only screen and (max-width: 991px) {
    .about-us .box-img {
        padding-bottom: 0;
        padding-left: 0;
    }
}

.about-us .box-img .box-img-sm {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55%;
}

@media only screen and (max-width: 991px) {
    .about-us .box-img .box-img-sm {
        display: none;
    }
}

.about-us .box-img-3-col {
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
}

.about-us .box-img-3-col .box-img-item {
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.17);
}

.about-us .box-img-3-col .box-img-item:first-of-type {
    width: 215px;
}

.about-us .box-img-3-col .box-img-item:nth-of-type(2) {
    width: 245px;
}

.about-us .box-img-3-col .box-img-item:last-of-type {
    width: 310px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -140px;
}

.about-us .img {
    position: relative;
}

.about-us .img .img-item img {
    box-shadow: 0px 0px 15px 18px rgba(0, 0, 0, 0.02);
}

.about-us .img .img-item:first-of-type,
.about-us .img .img-item:last-of-type {
    position: absolute;
    left: 0;
    height: 35%;
}

@media only screen and (max-width: 991px) {
    .about-us .img .img-item:first-of-type,
    .about-us .img .img-item:last-of-type {
        display: none;
    }
}

.about-us .img .img-item:first-of-type {
    top: 0;
    width: 40%;
    z-index: 2;
}

.about-us .img .img-item:nth-of-type(2) {
    width: 85%;
    height: 70%;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .about-us .img .img-item:nth-of-type(2) {
        width: 100%;
        height: 50vh;
    }
}

.about-us .img .img-item:last-of-type {
    bottom: 0;
    width: 55%;
}

.about-us .number-grid {
    margin-top: 50px;
}

.about-us .number-grid .number-item {
    text-align: center;
}

.about-us .number-grid .number-item .title {
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--heading-color);
    font-weight: 500;
    -webkit-clip-path: inset(0 0 25% 0);
    clip-path: inset(0 0 25% 0);
    line-height: 0.9;
    font-size: 170px;
}

.about-us .number-grid .number-item h5 {
    font-size: 16px;
    font-weight: 400;
    margin-top: -30px;
}

@media only screen and (max-width: 575px) {
    .about-us .number-grid .number-item h5 {
        font-size: 20px;
        font-weight: 400;
        margin-top: -40px;
    }
    .about-us .number-grid .number-item:not(.about-us .number-grid .number-item:last-child) {
        padding-bottom: 30px;
        border-bottom: 1px solid var(--border-theme-color);
    }
}

@media only screen and (max-width: 991px) {
    .about-us .grid-md-3 .h-500 {
        height: auto;
        max-height: 80vh;
    }
}

@media only screen and (max-width: 767px) {
    .about-us .grid-md-3 .h-500:not(:first-child) {
        display: none;
    }
}

.hero-2 {
    position: relative;
}

@media only screen and (max-width: 991px) {
    .hero-2 .grid-1-half {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .hero-2 .grid-1-half {
        grid-template-columns: auto;
    }
}

.hero-2 .info-box .sub-title {
    background-image: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-2 .info-box .sub-title::before {
    background-color: var(--heading-color);
}

.hero-2 .info-box .title-lg {
    margin-left: -100px;
}

@media only screen and (max-width: 991px) {
    .hero-2 .info-box .title-lg {
        margin-left: 0;
        line-height: 1;
    }
}

.hero-2 .info-box .title-lg .strock {
    margin-left: 20px;
    color: transparent;
    -webkit-text-stroke: 1px var(--heading-color);
}

@media only screen and (max-width: 991px) {
    .hero-2 .info-box .title-lg .strock {
        margin-left: 0;
    }
}

.hero-2 .info-box p {
    margin-top: 25px;
    max-width: 250px;
}

@media only screen and (max-width: 991px) {
    .hero-2 .info-box p {
        max-width: 100%;
    }
}

.hero-2 .box-img {
    position: relative;
    padding-bottom: 120px;
    padding-left: 120px;
}

@media only screen and (max-width: 991px) {
    .hero-2 .box-img {
        padding-bottom: 0;
        padding-left: 0;
    }
}

.hero-2 .box-img .box-img-sm {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55%;
}

@media only screen and (max-width: 991px) {
    .hero-2 .box-img .box-img-sm {
        display: none;
    }
}

.hero-2 .box-img-3-col {
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
}

.hero-2 .box-img-3-col .box-img-item {
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.17);
}

.hero-2 .box-img-3-col .box-img-item:first-of-type {
    width: 215px;
}

.hero-2 .box-img-3-col .box-img-item:nth-of-type(2) {
    width: 245px;
}

.hero-2 .box-img-3-col .box-img-item:last-of-type {
    width: 310px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -140px;
}

.hero-2 .img {
    position: relative;
}

.hero-2 .img .img-item img {
    box-shadow: 0px 0px 15px 18px rgba(0, 0, 0, 0.02);
}

.hero-2 .img .img-item:first-of-type,
.hero-2 .img .img-item:last-of-type {
    position: absolute;
    left: 0;
    height: 35%;
}

@media only screen and (max-width: 991px) {
    .hero-2 .img .img-item:first-of-type,
    .hero-2 .img .img-item:last-of-type {
        display: none;
    }
}

.hero-2 .img .img-item:first-of-type {
    top: 0;
    width: 40%;
    z-index: 2;
}

.hero-2 .img .img-item:nth-of-type(2) {
    width: 85%;
    height: 70%;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .hero-2 .img .img-item:nth-of-type(2) {
        width: 100%;
        height: 50vh;
    }
}

.hero-2 .img .img-item:last-of-type {
    bottom: 0;
    width: 55%;
}

.hero-2 .number-grid {
    margin-top: 50px;
}

.hero-2 .number-grid .number-item {
    text-align: center;
}

.hero-2 .number-grid .number-item .title {
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--heading-color);
    font-weight: 500;
    -webkit-clip-path: inset(0 0 25% 0);
    clip-path: inset(0 0 25% 0);
    line-height: 0.9;
    font-size: 170px;
}

.hero-2 .number-grid .number-item h5 {
    font-size: 16px;
    font-weight: 400;
    margin-top: -30px;
}

@media only screen and (max-width: 575px) {
    .hero-2 .number-grid .number-item h5 {
        font-size: 20px;
        font-weight: 400;
        margin-top: -40px;
    }
    .hero-2 .number-grid .number-item:not(.hero-2 .number-grid .number-item:last-child) {
        padding-bottom: 30px;
        border-bottom: 1px solid var(--border-theme-color);
    }
}

@media only screen and (max-width: 991px) {
    .hero-2 .grid-md-3 .h-500 {
        height: auto;
        max-height: 80vh;
    }
}

@media only screen and (max-width: 767px) {
    .hero-2 .grid-md-3 .h-500:not(:first-child) {
        display: none;
    }
}

.counter-block {
    padding-top: 40px;
}

@media only screen and (max-width: 767px) {
    .counter-block {
        padding-top: 0;
        padding-bottom: 0;
        border-top: 0;
        border-bottom: 0;
    }
}

.counter-block .counter-wrapper {
    width: 100%;
    grid-column-gap: 100px;
}

.counter-block .counter-wrapper .counter {
    grid-column-gap: 20px;
}

@media only screen and (max-width: 767px) {
    .counter-block .counter-wrapper .counter {
        background-color: var(--assistant-color);
        padding: 30px;
    }
}

.counter-block .counter-wrapper .counter .counter-number {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
    color: var(--heading-color);
    font-size: 80px;
    font-weight: 200;
    line-height: 65px;
}

.counter-block .counter-wrapper .counter .counter-text {
    width: 100%;
    color: var(--heading-color);
    line-height: 27px;
}

.about-arc {
    position: relative;
}

.about-arc .box-img {
    position: relative;
}

.about-arc .box-img .box-img-inner {
    width: 100%;
    height: 100%;
}

.about-arc .box-img .img-lg {
    position: relative;
    height: calc(100% - 100px);
    width: calc(100% - 20px);
    margin-left: auto;
    z-index: 2;
}

@media only screen and (max-width: 991px) {
    .about-arc .box-img .img-lg {
        height: 61vh;
        width: 100%;
    }
}

.about-arc .box-img .img-lg>div {
    width: 100%;
    height: 100%;
}

.about-arc .box-img .collage-background {
    position: absolute;
    bottom: 0;
    top: 50px;
    right: 50px;
    left: 50px;
    z-index: 0;
}

@media only screen and (max-width: 991px) {
    .about-arc .box-img .collage-background {
        display: none;
    }
}

.about-arc .box-img .collage-background svg {
    width: 100%;
    height: 100%;
}

.about-arc .box-img .collage-background rect {
    fill: var(--assistant-color);
}

.about-arc .box-img .img-secondary {
    position: absolute;
    width: 70%;
    height: 200px;
    bottom: 60px;
    z-index: 3;
}

@media only screen and (max-width: 991px) {
    .about-arc .box-img .img-secondary {
        display: none;
    }
}

.about-arc .box-img .img-secondary img {
    height: 100%;
}

.about-arc .box-info {
    padding: 60px 30px;
}

@media only screen and (max-width: 991px) {
    .about-arc .box-info {
        padding: 0;
    }
}

@media only screen and (max-width: 575px) {
    .about-arc .box-info .exp-inner {
        flex-direction: column;
    }
}

.exp-inner {
    grid-column-gap: 50px;
}

.exp {
    display: flex;
    flex-direction: column;
    width: -webkit-max-content;
    width: max-content;
    position: relative;
    padding: 50px 60px;
    background-color: var(--assistant-color);
    text-align: right;
    z-index: 2;
}




@media only screen and (max-width: 767px) {
    .exp {
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 575px) {
    .exp {
        width: 100%;
           padding: 50px 6px;
    }
}

.exp h1 {
    font-weight: bold;
    font-size: 70px;
}

.exp h5 {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 300;
}

.exp .dsn-bg-mask {
    top: 30px;
    left: 30px;
    z-index: 0;
    opacity: 0.36;
    background-image: url(../img/bg-dot.png);
}

@media only screen and (max-width: 767px) {
    .exp .dsn-bg-mask {
        display: none;
    }
}

.about-photography {
    position: relative;
}

@media only screen and (max-width: 991px) {
    .about-photography {
        padding-top: var(--margin-padding);
    }
}

@media only screen and (max-width: 991px) {
    .about-photography.before-bg {
        display: none;
    }
}

.about-photography.before-bg::before {
    content: "";
    position: absolute;
    width: calc(960px + var(--dsn-gap-container) + var(--dsn-gap-container));
    left: 50%;
    transform: translateX(-50%);
    top: 120px;
    height: calc(100% - 240px);
    background-color: var(--assistant-color);
    z-index: 0;
}

.about-photography img {
    position: relative;
    height: 500px;
    z-index: 1;
}

.about-photography .box-left {
    margin-top: calc(-1 * var(--margin-padding));
}

@media only screen and (max-width: 991px) {
    .about-photography .box-left {
        margin-top: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 991px) {
    .about-photography .grid-1-half {
        grid-template-columns: unset;
    }
}

.about-personal {
    position: relative;
}

.about-personal .location {
    width: -webkit-max-content;
    width: max-content;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    padding: 16px 32px;
}

.about-personal .location .svg {
    background-color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 20px;
    width: 35px;
    height: 35px;
}

.about-personal .location .svg svg {
    width: 25px;
    height: 25px;
}

.about-personal .location .svg svg path {
    fill: var(--heading-color);
}

.about-personal .box-img {
    border-radius: 32px;
}

.about-personal .box-img .box-img-inner {
    padding: 20px;
    height: 320px;
}

.about-personal .box-img .box-img-inner img {
    border-radius: 20px;
}

.about-personal .box-img .here {
    border-top: 1px solid var(--border-theme-color);
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    padding: 20px 10px;
}

.about-personal .box-img .here .here-inner {
    position: relative;
    padding: 10px 20px;
    display: inline-block;
    background: linear-gradient(91.9520472216deg, rgba(204, 255, 220, 0.1) 0%, rgba(203, 255, 219, 0.1) 100%);
    padding: 8px 15px;
    border-radius: 50px;
}

.about-personal .box-img .here .here-inner h4 {
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    font-weight: 300;
}

.about-personal .box-img .here .here-inner h4::before,
.about-personal .box-img .here .here-inner h4::after {
    content: "";
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.about-personal .box-img .here .here-inner h4::before {
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #69ff971a;
}

.about-personal .box-img .here .here-inner h4::after {
    height: 10px;
    width: 10px;
    left: 5px;
    background-color: #69ff97;
}

@media only screen and (max-width: 991px) {
    .section-seat.pb-section-mobile {
        padding-bottom: var(--margin-padding);
    }
}

.section-seat .parallax-img-text {
    position: relative;
}

.section-seat .parallax-img-text .img-box-parallax {
    width: 30%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
}

.section-seat .parallax-img-text .custom {
    z-index: 1;
    mix-blend-mode: exclusion;
}

.section-seat .parallax-img-text .title {
    position: relative;
    font-size: 100px;
    line-height: 100px;
    z-index: 2;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .section-seat .parallax-img-text .title {
        font-size: 40px;
        line-height: 54px;
    }
}

@media only screen and (max-width: 767px) {
    .section-seat.has-img .title {
        font-size: 70px;
        line-height: 70px;
    }
}

@media only screen and (max-width: 575px) {
    .section-seat.has-img .title {
        font-size: 50px;
        line-height: 50px;
    }
}

.seat-section .dsn-bg-mask {
    --width-mask: 80%;
    --width-calc-mask: 85px;
    width: calc(var(--width-mask, 100%) + var(--width-calc-mask, 0px));
}

@media only screen and (max-width: 991px) {
    .seat-section .dsn-bg-mask {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .seat-section .seat-text {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 991px) {
    .seat-section.pb-section-mobile {
        padding-bottom: var(--margin-padding);
    }
}

.seat-section .ml-60 {
    margin-left: 60px;
}

@media only screen and (max-width: 991px) {
    .seat-section .box-img {
        height: 60vh;
    }
}

@media only screen and (max-width: 991px) {
    .seat-section .box-img .img-box-parallax-lg {
        position: relative;
        width: 100%;
    }
    .seat-section .box-img .img-box-parallax-lg div {
        margin-left: 0;
    }
}

.seat-section .img-move .img-box-parallax-sm {
    width: 200px;
}

@media only screen and (max-width: 991px) {
    .seat-section .img-move .img-box-parallax-sm {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .dsn-equal-height .h-v-70 {
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .section-info-personal .img-box-parallax {
        height: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .section-info-personal .ex-box {
        height: 50vh;
        order: -1;
    }
    .section-info-personal .ex-box .title {
        font-size: 97px;
        line-height: 100px;
        font-weight: 600;
    }
}

.number-section .item:not(:last-of-type) {
    border-right: 1px solid var(--border-theme-color);
    padding-right: 30px;
}

@media only screen and (max-width: 767px) {
    .number-section .item:not(:last-of-type) {
        border-bottom: 1px solid var(--border-theme-color);
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .number-section .item h5 {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .section-video .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .section-video h6 {
        display: none;
    }
}

.box-under-img {
    position: relative;
    overflow: hidden;
}

.box-under-img .content {
    margin-left: auto;
}

@media only screen and (min-width: 992px) {
    .box-under-img .content {
        width: 50%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .box-under-img .content {
        width: 65%;
    }
}

@media only screen and (min-width: 768px) {
    .box-under-img .content {
        right: 0;
    }
}

.dsn-background-inherit:not(.dsn-animate-skill),
.dsn-background-inherit .background-main:not(.dsn-animate-skill),
.dsn-background-inherit .background-section:not(.dsn-animate-skill),
.dsn-background-inherit .background-theme:not(.dsn-animate-skill),
.dsn-def-btn .dsn-icon:not(.dsn-animate-skill),
.dsn-def-btn .dsn-icon .background-main:not(.dsn-animate-skill),
.dsn-def-btn .dsn-icon .background-section:not(.dsn-animate-skill),
.dsn-def-btn .dsn-icon .background-theme:not(.dsn-animate-skill) {
    background-color: transparent;
}

.dsn-background-inherit .background-main .dsn-bg,
.dsn-background-inherit .background-main .dsn-bg-after:after,
.dsn-background-inherit .background-main .dsn-bg-before:before,
.dsn-background-inherit .background-main.dsn-bg-after:after,
.dsn-background-inherit .background-main.dsn-bg-before:before,
.dsn-background-inherit.background-main .dsn-bg,
.dsn-background-inherit.background-main .dsn-bg-after:after,
.dsn-background-inherit.background-main .dsn-bg-before:before,
.dsn-background-inherit.background-main.dsn-bg-after:after,
.dsn-background-inherit.background-main.dsn-bg-before:before,
.dsn-def-btn .dsn-icon .background-main .dsn-bg,
.dsn-def-btn .dsn-icon .background-main .dsn-bg-after:after,
.dsn-def-btn .dsn-icon .background-main .dsn-bg-before:before,
.dsn-def-btn .dsn-icon .background-main.dsn-bg-after:after,
.dsn-def-btn .dsn-icon .background-main.dsn-bg-before:before,
.dsn-def-btn .dsn-icon.background-main .dsn-bg,
.dsn-def-btn .dsn-icon.background-main .dsn-bg-after:after,
.dsn-def-btn .dsn-icon.background-main .dsn-bg-before:before,
.dsn-def-btn .dsn-icon.background-main.dsn-bg-after:after,
.dsn-def-btn .dsn-icon.background-main.dsn-bg-before:before {
    background-color: var(--bg-color);
}

.dsn-background-inherit .background-section .dsn-bg,
.dsn-background-inherit .background-section .dsn-bg-after:after,
.dsn-background-inherit .background-section .dsn-bg-before:before,
.dsn-background-inherit .background-section.dsn-bg-after:after,
.dsn-background-inherit .background-section.dsn-bg-before:before,
.dsn-background-inherit.background-section .dsn-bg,
.dsn-background-inherit.background-section .dsn-bg-after:after,
.dsn-background-inherit.background-section .dsn-bg-before:before,
.dsn-background-inherit.background-section.dsn-bg-after:after,
.dsn-background-inherit.background-section.dsn-bg-before:before,
.dsn-def-btn .dsn-icon .background-section .dsn-bg,
.dsn-def-btn .dsn-icon .background-section .dsn-bg-after:after,
.dsn-def-btn .dsn-icon .background-section .dsn-bg-before:before,
.dsn-def-btn .dsn-icon .background-section.dsn-bg-after:after,
.dsn-def-btn .dsn-icon .background-section.dsn-bg-before:before,
.dsn-def-btn .dsn-icon.background-section .dsn-bg,
.dsn-def-btn .dsn-icon.background-section .dsn-bg-after:after,
.dsn-def-btn .dsn-icon.background-section .dsn-bg-before:before,
.dsn-def-btn .dsn-icon.background-section.dsn-bg-after:after,
.dsn-def-btn .dsn-icon.background-section.dsn-bg-before:before {
    background-color: var(--assistant-color);
}

.dsn-background-inherit .background-theme .dsn-bg,
.dsn-background-inherit .background-theme .dsn-bg-after:after,
.dsn-background-inherit .background-theme .dsn-bg-before:before,
.dsn-background-inherit .background-theme.dsn-bg-after:after,
.dsn-background-inherit .background-theme.dsn-bg-before:before,
.dsn-background-inherit.background-theme .dsn-bg,
.dsn-background-inherit.background-theme .dsn-bg-after:after,
.dsn-background-inherit.background-theme .dsn-bg-before:before,
.dsn-background-inherit.background-theme.dsn-bg-after:after,
.dsn-background-inherit.background-theme.dsn-bg-before:before,
.dsn-def-btn .dsn-icon .background-theme .dsn-bg,
.dsn-def-btn .dsn-icon .background-theme .dsn-bg-after:after,
.dsn-def-btn .dsn-icon .background-theme .dsn-bg-before:before,
.dsn-def-btn .dsn-icon .background-theme.dsn-bg-after:after,
.dsn-def-btn .dsn-icon .background-theme.dsn-bg-before:before,
.dsn-def-btn .dsn-icon.background-theme .dsn-bg,
.dsn-def-btn .dsn-icon.background-theme .dsn-bg-after:after,
.dsn-def-btn .dsn-icon.background-theme .dsn-bg-before:before,
.dsn-def-btn .dsn-icon.background-theme.dsn-bg-after:after,
.dsn-def-btn .dsn-icon.background-theme.dsn-bg-before:before {
    background-color: var(--theme-color);
}

.background-revere {
    background-color: var(--assistant-color);
}

.background-section .background-revere {
    background-color: var(--bg-color);
}

.color-inherit-bg.theme-color:after,
.color-inherit-bg.theme-color:before,
.color-inherit-bg.theme-color span:before,
.color-inherit-bg.theme-color span:after {
    background-color: var(--theme-color);
}

.color-inherit-bg.body-color:after,
.color-inherit-bg.body-color:before,
.color-inherit-bg.body-color span:before,
.color-inherit-bg.body-color span:after {
    background-color: var(--font-color);
}

.color-inherit-bg.heading-color:after,
.color-inherit-bg.heading-color:before,
.color-inherit-bg.heading-color span:before,
.color-inherit-bg.heading-color span:after {
    background-color: var(--heading-color);
}

.color-inherit-bg.custom:after,
.color-inherit-bg.custom:before,
.color-inherit-bg.custom span:before,
.color-inherit-bg.custom span:after {
    background-color: var(--dsn-custom-color, var(--heading-color));
}

.background-section .dsn-revere-bg {
    background-color: var(--bg-color);
}

.background-main .dsn-revere-bg {
    background-color: var(--assistant-color);
}

.backdrop-filter:not(.dsn-open) {
    -webkit-backdrop-filter: blur(var(--backdrop-filter, 8px));
    backdrop-filter: blur(var(--backdrop-filter, 0px));
}

.backdrop-filter:not(.dsn-open)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: var(--bg-opacity, 0.3);
    border-radius: inherit;
}

.dsn-service .dsn-icon .icon-wrapper.background-transparent .dsn-bg {
    background-color: transparent;
}

.dsn-service .dsn-icon .dsn-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: inherit;
    border: inherit;
}

.dsn-service .dsn-icon svg {
    z-index: 1;
}

.list-with-number .dsn-service .number-item {
    margin-top: 45px;
    margin-right: 45px;
}

.list-with-number .dsn-service .number-item>* {
    z-index: 2;
}

.list-with-number .dsn-service .number-item:after,
.list-with-number .dsn-service .number-item:before {
    position: absolute;
    width: var(--width-wrapper);
    height: var(--height-wrapper);
}

.list-with-number .dsn-service .number-item:after {
    content: "";
    top: -15px;
    left: 30px;
    bottom: 30px;
    border: 1px dashed var(--border-theme-color);
    z-index: 0;
}

.list-with-number .dsn-service .number-item:before {
    top: -30px;
    right: -45px;
    width: 35px;
    height: 35px;
    font-size: 12px;
    font-weight: bold;
    font-family: var(--heading-font);
    color: var(--heading-color);
    z-index: 1;
    text-align: center;
    line-height: 35px;
    border-radius: inherit;
}

.dsn-service .service-item {
    border: 1px solid var(--border-theme-color);
    border-radius: 7px;
}

.dsn-service .service-item ul {
    list-style: none;
    line-height: 1.3;
    padding-left: 0;
}

.dsn-service .service-item ul li {
    margin-bottom: 5px;
}

.dsn-service .service-item ul.dsn-list li {
    display: inline-block;
    padding: 5px 15px;
    border: 1px dashed var(--border-theme-color);
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
}

.dsn-service .service-item .service-item-inner {
    padding: 25px 25px;
}

.icon-left .dsn-service .service-item .service-item-inner,
.icon-right .dsn-service .service-item .service-item-inner {
    display: flex;
}

.icon-left .dsn-service .service-item .service-item-inner .dsn-icon:not(.dsn-bg-before),
.icon-right .dsn-service .service-item .service-item-inner .dsn-icon:not(.dsn-bg-before) {
    flex-shrink: 0;
}

.icon-left .dsn-service .service-item .service-item-inner .dsn-icon:not(.dsn-bg-before) {
    margin-right: 20px;
}

.icon-top .dsn-service .service-item .service-item-inner .dsn-icon:not(.dsn-bg-before) {
    padding-bottom: 20px;
}

.icon-right .dsn-service .service-item .service-item-inner .dsn-icon:not(.dsn-bg-before) {
    order: 2;
    margin-left: 20px;
}

.dsn-service.service-no-space .service-item {
    border: 0;
}

.dsn-service.service-no-space .service-item .service-item-inner {
    padding: 0;
}

@media only screen and (min-width: 768px) {
    .dsn-service-list.dsn-service .service-item {
        border: 0;
    }
    .dsn-service-list.dsn-service .service-item .service-item-inner {
        display: grid;
        grid-template-columns: 30% auto;
        grid-column-gap: 20px;
        padding: 0 0 30px 0;
        border-bottom: 1px solid var(--border-theme-color);
    }
    .dsn-service-list.dsn-service .service-item .service-item-inner .service-content {
        display: flex;
        justify-content: space-between;
    }
    .dsn-service-list.dsn-service .service-item .service-item-inner .service-content>* {
        margin-top: 0;
    }
    .dsn-service-list.dsn-service .service-item .service-item-inner .service-content .dsn-list-icon {
        align-self: center;
        transform: translateY(105%);
        transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    .dsn-service-list.dsn-service .service-item .service-item-inner .service-content .dsn-list-icon a {
        width: 110px;
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    .dsn-service-list.dsn-service .service-item .service-item-inner .service-content .dsn-list-icon a svg {
        z-index: 1;
    }
    .dsn-service-list.dsn-service .service-item .service-item-inner .service-content .dsn-list-icon a .icon-circle {
        z-index: 0;
    }
    .dsn-service-list.dsn-service .service-item:hover .service-item-inner .service-content .dsn-list-icon {
        transform: none;
    }
}

@media only screen and (max-width: 767px) {
    .dsn-service-list.dsn-service .dsn-icon {
        margin-bottom: 20px;
    }
    .dsn-service-list.dsn-service .service-list {
        display: flex;
        flex-direction: column;
    }
    .dsn-service-list.dsn-service .service-list .dsn-icon {
        order: -1;
        margin-top: 0;
    }
    .dsn-service-list.dsn-service .dsn-list-icon>a {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 767px) and (max-width: 767px) {
    .dsn-service-list.dsn-service .dsn-list-icon>a {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .dsn-service-list.dsn-service .dsn-list-icon>a svg {
        width: 20px;
    }
}

.elementor-widget-dsn_service:not(.service-with-img) .box-img-shadow {
    display: none;
}

.box-hover-image .service-item-inner>*:not(.box-img-shadow,
.p-absolute) {
    position: relative;
}

.box-hover-image .box-img-shadow {
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0.65;
}

.box-hover-image .box-img-shadow,
.box-hover-image .box-img-shadow .img-box-parallax {
    width: 100%;
    height: 100%;
}

.box-hover-image .box-img-shadow:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(170deg, var(--assistant-color), transparent 75%);
    transform: skew(-10deg) translateX(50%);
    transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
}

.box-hover-image .box-img-shadow img {
    transition: opacity 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0.04;
}

.box-hover-image.background-section .box-img-shadow:after,
.box-hover-image.background-theme .box-img-shadow:after {
    background: linear-gradient(170deg, var(--bg-color), transparent 75%);
}

.box-hover-image:hover .box-img-shadow:after {
    transform: skew(-10deg) translateX(30%);
}

.box-hover-image:hover .box-img-shadow img {
    opacity: 0.5;
}

.background-transparent .dsn-swiper-paginate .dsn-revere-bg {
    background-color: var(--assistant-color);
}

.image-style-before .dsn-testimonials .testimonial-item {
    display: flex;
    flex-direction: column;
}

.image-style-before .dsn-testimonials .testimonial-item .mb-25 {
    margin-top: 25px;
    margin-bottom: 0;
}

.image-style-before .dsn-testimonials .testimonial-item .content-inner {
    order: -1;
}

.dsn-testimonials .testimonial-content.p-large {
    font-size: 18px;
}

.dsn-testimonials .testimonial-position {
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    text-transform: uppercase;
}

.dsn-testimonials .elementor-widget-dsn_testimonial:not(.image-left-style) .testimonial-name,
.dsn-testimonials .elementor-widget-dsn_testimonial:not(.image-left-style) .testimonial-position {
    padding-left: 0;
}

.dsn-testimonials .elementor-widget-dsn_testimonial:not(.image-left-style) .testimonial-name:before,
.dsn-testimonials .elementor-widget-dsn_testimonial:not(.image-left-style) .testimonial-position:before {
    content: none;
}

.dsn-testimonials .content-inner {
    display: flex;
}

.dsn-testimonials .testimonial-inner {
    position: relative;
}

.dsn-testimonials .testimonial-inner>svg {
    position: absolute;
    right: 0;
    top: 0;
    width: 247px;
    height: 192px;
    opacity: 0.3;
    fill: var(--assistant-color);
}

.background-section .dsn-testimonials .testimonial-inner>svg {
    fill: var(--bg-color);
}

[data-widget_type="dsn_testimonial.default"]:not(.quote-box-style) .dsn-testimonials .testimonial-inner>svg {
    display: none;
}

.elementor-widget-dsn_testimonial:not(.image-left-style) .dsn-testimonials .testimonial-inner .swiper-slide>.avatar {
    display: none;
}

.image-left-style .dsn-testimonials .testimonial-inner .testimonial-name,
.image-left-style .dsn-testimonials .testimonial-inner .testimonial-position {
    padding-left: 32px;
}

.image-left-style .dsn-testimonials .testimonial-inner .testimonial-name:before,
.image-left-style .dsn-testimonials .testimonial-inner .testimonial-position:before {
    width: 25px;
    height: 25px;
    background-color: var(--theme-color);
}

.image-left-style .dsn-testimonials .testimonial-inner .testimonial-position {
    margin-top: 0;
}

@media only screen and (min-width: 768px) {
    .image-left-style .dsn-testimonials .testimonial-inner .content-inner .avatar {
        display: none;
    }
    .image-left-style .dsn-testimonials .testimonial-inner .content-inner .avatar+.box-text {
        margin-left: 0;
        text-align: inherit;
    }
    .image-left-style .dsn-testimonials .testimonial-inner .swiper-slide {
        display: flex;
        align-items: center;
    }
    .image-left-style .dsn-testimonials .testimonial-inner .swiper-slide>.avatar {
        position: relative;
        height: 200px;
        width: 200px;
    }
    .image-left-style .dsn-testimonials .testimonial-inner .swiper-slide>.avatar svg {
        position: absolute;
        top: 0;
        width: 50px;
        right: 0;
        height: 50px;
        background: var(--heading-color);
        padding: 15px;
        border-radius: 50%;
        fill: var(--theme-color);
    }
    .image-left-style .dsn-testimonials .testimonial-inner .swiper-slide>.avatar,
    .image-left-style .dsn-testimonials .testimonial-inner .swiper-slide>.avatar img {
        border-radius: 50%;
    }
    .image-left-style .dsn-testimonials .testimonial-inner .swiper-slide>.avatar+.testimonial-item {
        width: calc(100% - 200px);
        margin-left: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .image-left-style .dsn-testimonials .testimonial-inner .swiper-slide>.avatar {
        display: none;
    }
}

.dsn-testimonials .content-inner .avatar {
    position: relative;
    width: 100px;
    height: 100px;
}

.dsn-testimonials .content-inner .avatar .icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -15px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--theme-color);
    border-radius: 50%;
}

.dsn-testimonials .content-inner .avatar .icon svg {
    fill: var(--heading-color);
    width: 17px;
}

.dsn-testimonials .content-inner .avatar,
.dsn-testimonials .content-inner .avatar img {
    border-radius: 50%;
}

.dsn-testimonials .content-inner .avatar+.box-text {
    margin-left: 30px;
    text-align: left;
}

.dsn-testimonials .content-inner .box-text .circle-before {
    padding-left: 0;
}

.dsn-testimonials .content-inner .box-text .circle-before:before {
    display: none;
}

.dsn-testimonials h4,
.dsn-testimonials h5 {
    font-family: var(--body-font);
}

.dsn-testimonials .testimonial-content h4.sm-title-block {
    letter-spacing: 1.2px;
    font-size: 18px;
}

.dsn-testimonials .testimonial-name,
.dsn-testimonials .testimonial-content h4.sm-title-block {
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .dsn-testimonials .testimonials-pagination {
        display: none;
    }
}

.dsn-testimonials .testimonials-pagination .testimonials-pagination-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px 30px;
    grid-auto-flow: row;
}

.image-left-style .dsn-testimonials {
    margin-left: -20%;
}

.image-left-style .dsn-testimonials .swiper-slide {
    padding: 60px 60px 60px 100px;
}

@media only screen and (max-width: 767px) {
    .image-left-style .dsn-testimonials .swiper-slide {
        padding: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-creative .grid-half-1 {
        display: block;
    }
    .testimonial-creative .grid-half-1 .dsn-testimonials {
        margin-left: 0;
    }
    .testimonial-creative .grid-half-1 .title-scroll {
        transform: none !important;
        margin-bottom: 50px;
    }
}

.dsn-accordion {
    line-height: 1.2;
}

.dsn-accordion .accordion__answer {
    display: none;
    max-width: 400px;
    padding-top: 15px;
    padding-left: 45px;
}

.dsn-accordion .accordion__answer.active {
    display: block;
}

.dsn-accordion .accordion__item:not(:last-of-type) {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-theme-color);
    padding-bottom: 30px;
}

.dsn-accordion .accordion__question {
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.dsn-accordion .accordion__question:not(:first-of-type) {
    padding: 8px 15px 0 0;
}

.dsn-accordion .accordion__question .dsn-icon {
    margin-right: 15px;
}

.dsn-accordion .accordion__question h4 {
    font-weight: 600;
    margin-bottom: 0;
}

.dsn-accordion .accordion__question:before {
    content: "";
    position: absolute;
    display: inline-block;
    border: solid var(--theme-color);
    top: 40%;
    right: 0;
    transition: transform 0.2s linear;
}

.dsn-accordion .accordion__question:not(.expanded):before {
    transform: rotate(45deg);
    border-width: 0 2px 2px 0;
    padding: 3px;
}

.dsn-accordion .accordion__question.expanded:before {
    border-width: 1px;
    width: 10px;
}

.dsn-accordion .number {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
    font-size: 14px;
}

.background-theme .dsn-accordion .number {
    background-color: var(--bg-color);
    color: var(--heading-color);
}

.dsn-brand {
    --dsn-icon-size: 175px;
}

.dsn-brand,
.dsn-brand .swiper-wrapper {
    align-items: center;
}

.dsn-brand .brand-item.has-padding {
    padding: 60px 40px 60px 40px;
}

.dsn-brand .brand-item-inner {
    margin: auto;
}

.dsn-brand .brand-item-inner img {
    width: var(--dsn-icon-size, 20px);
    margin: auto;
}

.dsn-brand .brand-link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.v-dark .brand-item-inner img,
.v-dark.dsn-brand .brand-item-inner img {
    filter: invert(1);
}

.v-light .brand-item-inner img,
.v-dark.dsn-brand .brand-item-inner img {
    filter: none;
}

.dsn-team .team-item-inner .box-img {
    position: relative;
    max-height: 450px;
    overflow: hidden;
    height: 390px;
}

.dsn-team .team-item-inner .box-img:before {
    z-index: 1;
}

.dsn-team .team-item-inner .box-img img {
    transition: transform 0.8s cubic-bezier(0.24, 0.87, 0.24, 0.89);
}

.dsn-team .team-item-inner .team-content {
    position: relative;
    margin-top: -58px;
    width: 100%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-theme-color);
    padding: 30px;
    z-index: 2;
}

.dsn-team .team-item-inner .text-name+.text-position {
    margin-top: 10px;
}

.dsn-team .team-item-inner .text-position,
.dsn-team .team-item-inner .text-name {
    transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.dsn-team .team-item-inner .text-position {
    font-weight: 400;
    transform: translateY(0);
}

.dsn-team .team-item-inner .team-socials {
    list-style: none;
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(-25px);
}

.dsn-team .team-item-inner .team-socials,
.dsn-team .team-item-inner .team-socials li a {
    transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.5s, opacity cubic-bezier(0.4, 0, 0.2, 1) 1s;
}

.dsn-team .team-item-inner .team-socials li a {
    position: relative;
    width: 50px;
    height: 50px;
}

.dsn-team .team-item-inner .team-socials li a:hover {
    border: 0;
}

.dsn-team .team-item-inner:hover img {
    transform: scale(1.2);
}

.dsn-team .team-item-inner:hover .text-name {
    transform: translateY(-10px);
}

.dsn-team .team-item-inner:hover .text-position {
    transform: translateY(-25px);
    opacity: 0;
}

.dsn-team .team-item-inner:hover .team-socials {
    opacity: 1;
    transform: translateY(-32px);
}

@media only screen and (min-width: 992px) {
    .hero-1 .container>.d-grid.grid-lg-3 {
        grid-template-columns: 342px auto 225px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-1 .box-img-lg {
        height: 60vh;
    }
}

.hero-1 .img-sm {
    width: 225px;
}

@media only screen and (max-width: 991px) {
    .hero-1 .img-sm {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .hero-1 .box-text {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero-2 .box-text {
        order: -1;
    }
}

@media only screen and (max-width: 767px) {
    .hero-2 .img .img-item .img-box-parallax {
        height: 100%;
    }
}

.dsn-skills-item {
    position: relative;
    width: 100%;
}

.dsn-skills-item .background-theme {
    --heading-color: inhert !important;
    --font-color: inhert !important;
}

.dsn-skills-item .head-content {
    gap: 10px;
}

.dsn-skills-item .head-content img {
    width: auto;
    height: 40px;
}

.dsn-skills-item .bar-progress {
    position: relative;
    width: 100%;
    height: 10px;
}

.dsn-skills-item .bar-progress::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--assistant-color);
    transform: translateY(-50%);
}

.background-section .dsn-skills-item .bar-progress::before {
    background-color: var(--bg-color);
}

.dsn-skills-item .bar-progress .fill {
    position: absolute;
    width: 0;
    height: 100%;
}

.dsn-skills-item .bar-progress .fill:not(.background-section):not(.background-main):not(.background-theme):not(.background-heading) {
    background-image: url("../img/patterns.png");
}

.dsn-skills-item .bar-progress .fill.background-heading {
    background-color: var(--heading-color);
}

.dsn-skills-item .bar-progress .fill .number {
    position: absolute;
    top: -10px;
    right: -15px;
    font-family: var(--heading-font);
    color: var(--heading-color);
    text-shadow: 1px 1px 7px var(--bg-color);
}

.dsn-skills-item .bar-svg {
    text-align: center;
}

.dsn-skills-item .bar-svg .fill-bar {
    width: 160px;
    height: 160px;
    margin: auto;
    background-color: transparent;
}

.dsn-skills-item .bar-svg .fill-bar:before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    background-color: var(--bg-color);
    opacity: 0.23;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.dsn-skills-item .bar-svg .fill-bar svg {
    transform: rotate(-90deg);
}

.dsn-skills-item .bar-svg .fill-bar .progress-bar__background {
    fill: none;
    stroke: var(--bg-color);
    stroke-width: 1.8;
    opacity: 0.23;
}

.dsn-skills-item .bar-svg .fill-bar .progress-bar__progress {
    fill: none;
    stroke-dasharray: 100 100;
    stroke-linecap: round;
    stroke-width: 1.8;
    stroke: var(--theme-color);
}

.dsn-skills-item .bar-svg .fill-bar.background-section .progress-bar__progress {
    stroke: var(--assistant-color);
}

.dsn-skills-item .bar-svg .fill-bar.background-main .progress-bar__progress {
    stroke: var(--bg-color);
}

.dsn-skills-item .bar-svg .fill-bar.background-heading .progress-bar__progress {
    stroke: var(--heading-color);
}

.dsn-skills-item .bar-svg .fill-bar .number.font-number {
    font-size: 30px;
}

.dsn-resume .resume-item {
    position: relative;
    padding-left: 20px;
}

@media only screen and (min-width: 992px) {
    .dsn-resume .resume-item:not(:last-of-type) {
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dsn-resume .resume-item:not(:last-of-type) {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .dsn-resume .resume-item:not(:last-of-type) {
        padding-bottom: 20px;
    }
}

.dsn-resume .resume-item:not(:last-of-type):after {
    top: 20px;
    left: 4px;
    width: 1px;
    height: calc(100% - 24px);
    background-color: var(--border-theme-color);
}

.dsn-resume .resume-item:before,
.dsn-resume .resume-item:after {
    content: "";
    position: absolute;
}

.dsn-resume .resume-item:before {
    top: 5px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--theme-color);
}

.dsn-resume .resume-item .resume-position {
    font-family: var(--body-font);
    line-height: 1.6;
    font-weight: 500;
    color: var(--font-color);
}

.circle-text-rotation {
    animation-name: circle-text-rotation;
    animation-duration: var(--duration, 28s);
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.circle-text-rotation text {
    transform: translate(8px, 0px);
}

.circle-text-rotation textPath {
    fill: var(--heading-color);
}

@keyframes circle-text-rotation {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0);
    }
}

#dsn_cart {
    display: flex;
    align-items: center;
    z-index: 2;
}

#dsn_cart .widget:not(:first-child) {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid var(--border-theme-color);
}

.dsn-hamburger #dsn_cart .widget:first-child {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid var(--border-theme-color);
}

#dsn_cart .title-s {
    display: none;
}

#dsn_cart .widget_polylang ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 19px;
    padding-left: 0;
}

#dsn_cart .widget_polylang ul .lang-item {
    transition: 0.5s;
}

#dsn_cart .widget_polylang ul .lang-item a {
    display: flex;
    align-items: center;
}

#dsn_cart .widget_polylang:not(:hover) .lang-item:not(.current-lang) {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

#dsn_cart .widget_search {
    position: relative;
    width: 40px;
    height: 19px;
}

#dsn_cart .widget_search * {
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#dsn_cart .widget_search .screen-reader-text {
    width: 30px;
    height: 100%;
    right: 0;
    top: 0;
    cursor: pointer;
    clip: unset;
    opacity: 0;
    margin: 0;
    -webkit-clip-path: none;
    clip-path: none;
}

#dsn_cart .widget_search,
#dsn_cart .widget_search form {
    display: flex;
    align-items: center;
}

#dsn_cart .widget_search .search-submit {
    display: none;
}

#dsn_cart .widget_search form {
    position: absolute;
    right: 0;
    text-align: right;
    background-color: var(--bg-color);
    top: 50%;
    transform: translateY(-50%);
}

#dsn_cart .widget_search form,
#dsn_cart .widget_search form input {
    height: var(--height-search, 30px);
    width: var(--width-search, 30px);
    border-radius: var(--border-width, 50%);
    transition: border-radius 0.2s ease-in-out 0.7s, width 0.8s cubic-bezier(0.36, 0, 0.66, -0.56);
}

#dsn_cart .widget_search form:after,
#dsn_cart .widget_search form:before {
    position: absolute;
    content: "";
    cursor: pointer;
    max-width: 15px;
    transition-delay: 0.8s;
}

#dsn_cart .widget_search form:before {
    width: var(--width-c, calc(100% - 20px));
    height: var(--height-c, calc(100% - 20px));
    border-radius: 50%;
    border: 2px solid var(--heading-color);
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
}

#dsn_cart .widget_search form:after {
    width: 2px;
    height: var(--height-line, 9px);
    background-color: var(--heading-color);
    right: 6px;
    bottom: 4px;
    transform: rotate(-45deg);
}

#dsn_cart .widget_search form input {
    opacity: 0;
    visibility: hidden;
    border: 0;
    background-color: transparent;
    padding-right: 30px;
}

.active-search #dsn_cart .widget_search {
    --width-search: 450px;
    --border-width: 7px;
    --width-c: 2px;
    --height-line: calc(100% - 10px);
    --height-c: calc(100% - 10px);
}

.active-search #dsn_cart .widget_search form,
.active-search #dsn_cart .widget_search form input {
    transition: border-radius 0.2s ease-in-out, width 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0.15s;
}

.active-search #dsn_cart .widget_search form:before,
.active-search #dsn_cart .widget_search form:after {
    transition-delay: 0s;
}

.active-search #dsn_cart .widget_search form:before {
    border: 0;
    background-color: var(--heading-color);
    right: 20px;
    transform: rotate(45deg);
    bottom: 4px;
}

.active-search #dsn_cart .widget_search form:after {
    right: 20px;
}

.active-search #dsn_cart .widget_search form input {
    opacity: 1;
    visibility: visible;
}

.active-search.site-header .primary-nav>li {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

ul.intro-project-list {
    list-style: none;
}

ul.intro-project-list li {
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
    .list-with-number ul.intro-project-list li {
        padding-left: 60px;
    }
}

@media only screen and (max-width: 991px) {
    .list-with-number ul.intro-project-list li {
        padding-left: 30px;
    }
}

ul.intro-project-list li .title-list-project {
    letter-spacing: 3px;
}

ul.intro-project-list li h5.title-list-project+p.description-list-project {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-theme-color);
}

.list-with-number ul.intro-project-list .number-item:before {
    left: 0;
    top: 0;
}

.blackdsn-media-swiper .content {
    width: 80px;
    z-index: 3;
}

.blackdsn-media-swiper .content a {
    border-radius: 50%;
}

.dsn-compare-container {
    position: relative;
    height: 500px;
}

.dsn-compare-container .img-comp-img,
.dsn-compare-container .img-overlay,
.dsn-compare-container .dsn-handle-slider,
.dsn-compare-container .dsn-handle-slider:after,
.dsn-compare-container .dsn-handle-slider:before,
.dsn-compare-container .dsn-circle,
.dsn-compare-container .dsn-circle:after,
.dsn-compare-container .dsn-circle:before {
    position: absolute;
}

.dsn-compare-container .img-comp-img,
.dsn-compare-container .dsn-handle-slider,
.dsn-compare-container .img-overlay {
    height: 100%;
}

.dsn-compare-container .img-comp-img {
    width: 100%;
    overflow: hidden;
}

.dsn-compare-container .img-comp-img img {
    display: block;
    vertical-align: middle;
}

.dsn-compare-container .dsn-handle-slider {
    top: 0;
    width: 35px;
    z-index: 40;
    pointer-events: none;
}

.dsn-compare-container .dsn-handle-slider:before,
.dsn-compare-container .dsn-handle-slider:after,
.dsn-compare-container .dsn-handle-slider .dsn-circle:before,
.dsn-compare-container .dsn-handle-slider .dsn-circle:after {
    content: "";
}

.dsn-compare-container .dsn-handle-slider:before,
.dsn-compare-container .dsn-handle-slider:after {
    background: white;
    width: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: calc(50% - 35px / 2);
}

.dsn-compare-container .dsn-handle-slider:before {
    top: 0;
}

.dsn-compare-container .dsn-handle-slider:after {
    bottom: 0;
}

.dsn-compare-container .dsn-handle-slider .dsn-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: all;
    cursor: pointer;
}

.dsn-compare-container .dsn-handle-slider .dsn-circle:before,
.dsn-compare-container .dsn-handle-slider .dsn-circle:after {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    top: 50%;
    margin-top: -6px;
}

.dsn-compare-container .dsn-handle-slider .dsn-circle:before {
    border-right: 6px solid #fff;
    left: 50%;
    margin-left: -17px;
}

.dsn-compare-container .dsn-handle-slider .dsn-circle:after {
    border-left: 6px solid #fff;
    right: 50%;
    margin-right: -17px;
}

.dsn-compare-container .img-overlay {
    width: 100%;
    left: 0;
    top: 0;
    z-index: 39;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: 0.5s;
}

.dsn-compare-container .img-overlay:after,
.dsn-compare-container .img-overlay:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.6);
    color: #000;
    line-height: 38px;
    padding: 0 20px;
    border-radius: 2px;
}

.dsn-compare-container .img-overlay:before {
    content: attr(data-before);
    left: 10px;
}

.dsn-compare-container .img-overlay:after {
    content: attr(data-after);
    right: 10px;
}

.dsn-compare-container:hover .img-overlay {
    opacity: 1;
}

.dsn-grid-masonry .box-item {
    transition: transform 0.3s;
}

.dsn-grid-masonry .box-item:hover {
    transform: translateY(-3px);
}

.dsn-grid-masonry .box-item,
.dsn-grid-masonry .box-item .img-box-parallax {
    position: relative;
}

.dsn-grid-masonry .box-item .img-box-parallax .cap {
    bottom: 2px;
}

.dsn-grid-masonry .dsn-title {
    margin-top: 15px;
}

.box-grid-number .dsn-grid-masonry {
    counter-reset: workcounter;
}

.box-grid-number .dsn-grid-masonry .box-item .dsn-title span:before {
    counter-increment: workcounter;
    content: counters(workcounter, ".", decimal-leading-zero);
    position: relative;
    display: inline-block;
    padding: 5px;
    background-color: var(--theme-color);
    color: var(--bg-color);
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    margin-right: 10px;
}

.dsn-tabs .tabs__button {
    background-color: var(--assistant-color);
    padding: 15px 0;
}

.dsn-tabs .tabs__button ul {
    list-style: none;
}

.dsn-tabs .tabs__button ul li {
    cursor: pointer;
    line-height: inherit;
    padding: 10px 20px;
    margin-bottom: 0;
    font-size: 14px;
}

.dsn-tabs .tabs__button ul li.active {
    background-color: var(--bg-color);
}

.dsn-tabs .tabs__button ul li:not(:last-child) {
    margin-right: 5px;
}

#dsn_cart .widget.woocommerce {
    position: relative;
    max-width: 450px;
    pointer-events: auto;
}

.v-light #dsn_cart {
    --theme-color: #b07634;
}

#dsn_cart .widget_shopping_cart ul.product_list_widget li .quantity {
    margin-top: 0;
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
}

#dsn_cart+.extend-container {
    padding-right: 40px;
}

#dsn_cart .woocommerce.widget_shopping_cart {
    cursor: pointer;
    width: 32px;
    height: 19px;
}

#dsn_cart .woocommerce.widget_shopping_cart .title-s {
    position: relative;
    color: transparent;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    display: flex;
    align-items: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    pointer-events: none;
    height: 19px;
}

#dsn_cart .woocommerce.widget_shopping_cart .title-s:before {
    content: "";
    color: var(--heading-color);
    font-size: 16px;
}

#dsn_cart .woocommerce.widget_shopping_cart .widget_shopping_cart_content {
    position: absolute;
    width: 350px;
    background: var(--assistant-color);
    padding: 20px;
    opacity: 0 !important;
    visibility: hidden;
    box-shadow: 0 10px 20px var(--bg-color), 0 6px 6px var(--assistant-color);
    top: 100px;
    right: 10px;
    transition: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0s;
}

#dsn_cart .woocommerce.widget_shopping_cart:hover .widget_shopping_cart_content {
    opacity: 1 !important;
    visibility: visible;
    top: 50px;
}

#dsn_cart .woocommerce ul.cart_list,
#dsn_cart .woocommerce ul.product_list_widget {
    margin-bottom: 20px;
    max-height: 350px;
    overflow-y: auto;
}

#dsn_cart .woocommerce ul.cart_list .scrollbar-track-y,
#dsn_cart .woocommerce ul.product_list_widget .scrollbar-track-y {
    right: -6px;
    left: auto;
}

#dsn_cart .woocommerce .widget_shopping_cart .total,
#dsn_cart .woocommerce.widget_shopping_cart .total {
    padding-top: 20px;
    padding-bottom: 10px;
    border-top: 1px solid var(--border-theme-color);
}

#dsn_cart .woocommerce .widget_shopping_cart .total strong,
#dsn_cart .woocommerce.widget_shopping_cart .total strong {
    color: var(--heading-color);
    margin-right: 10px;
    letter-spacing: 2px;
}

#dsn_cart .woocommerce .widget_shopping_cart .total .woocommerce-Price-amount.amount,
#dsn_cart .woocommerce.widget_shopping_cart .total .woocommerce-Price-amount.amount {
    color: var(--theme-color);
}

#dsn_cart .woocommerce .widget_shopping_cart .buttons,
#dsn_cart .woocommerce.widget_shopping_cart .buttons {
    display: flex;
    justify-content: space-between;
}

#dsn_cart .woocommerce .widget_shopping_cart .buttons:before,
#dsn_cart .woocommerce .widget_shopping_cart .buttons:after,
#dsn_cart .woocommerce.widget_shopping_cart .buttons:before,
#dsn_cart .woocommerce.widget_shopping_cart .buttons:after {
    display: none;
}

#dsn_cart .woocommerce .widget_shopping_cart .buttons a,
#dsn_cart .woocommerce.widget_shopping_cart .buttons a {
    background-color: transparent;
    color: var(--theme-color-font);
    padding: 10px 20px;
    border: 1px solid var(--heading-color);
    border-radius: 30px;
}

#dsn_cart .woocommerce .widget_shopping_cart .cart_list li:not(:last-child),
#dsn_cart .woocommerce.widget_shopping_cart .cart_list li:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted var(--border-theme-color);
}

#dsn_cart .woocommerce .widget_shopping_cart .cart_list li a:not(.remove_from_cart_button),
#dsn_cart .woocommerce.widget_shopping_cart .cart_list li a:not(.remove_from_cart_button) {
    color: var(--theme-color);
    letter-spacing: 1.5px;
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
    width: auto;
    max-width: 200px;
    height: 39px;
    background-color: transparent;
    border: 1px solid var(--border-theme-color);
    color: var(--heading-color);
    margin-right: 0;
}

#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
    border-color: var(--border-theme-color);
}

.woocommerce-cart .wc-proceed-to-checkout {
    text-align: right;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: inline-block;
    margin: 0;
    background-color: transparent !important;
    border: 1px solid var(--border-theme-color);
    border-radius: 40px;
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 18px;
}

[name=apply_coupon] {
    border-radius: 0 !important;
}

.woocommerce-page table.cart td.actions {
    padding: 20px 15px;
}

.dsn-effect-scroll:not(.dsn-mobile) #dsn-scrollbar,
.sidebar-single,
.dsn-work-scrollbar,
.contact-modal {
    overflow: hidden;
    height: 100vh;
}

.dsn-effect-scroll:not(.dsn-mobile) #dsn-scrollbar .scrollbar-track,
.sidebar-single .scrollbar-track,
.dsn-work-scrollbar .scrollbar-track,
.contact-modal .scrollbar-track {
    background: none;
    width: 4px;
    mix-blend-mode: exclusion;
    z-index: 11;
}

.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,
.contact-modal .scrollbar-track .scrollbar-thumb {
    background: #fff;
    width: var(--smooth-width);
}

@media only screen and (min-width: 992px) {
    .admin-bar.dsn-effect-scroll:not(.dsn-mobile) #main_content:after {
        content: "";
        display: block;
        height: 0.1px;
    }
}

.admin-bar.dsn-effect-scroll:not(.dsn-mobile) #dsn-scrollbar,
.sidebar-single,
.dsn-work-scrollbar,
.contact-modal {
    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,
    .contact-modal {
        height: calc(100vh - 32px);
    }
}

.locked-scroll #dsn-scrollbar {
    background-color: var(--bg-color);
}

.cap {
    position: absolute;
    bottom: 30px;
    left: 0;
    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;
}





/* //////////////////// */


/* Why Us Section */
.amari-why-us {
  padding: 60px 20px;
  background: #1d1a1b;
  text-align: center;
}

.amari-why-us-heading {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #f8f8f8;
      text-transform: uppercase;
      letter-spacing: 2px;
}

.amari-why-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.amari-why-us-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.amari-why-us-box {
  flex: 1 1 calc(20% - 30px); /* 5 icons in a row */
  min-width: 180px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.amari-why-us-box p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top:20px;
    color:rgb(250, 250, 250);
    font-family: var(--body-font);
    text-transform: uppercase;


}

/* Icon Style */
.amari-why-us-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  perspective: 1000px; /* For 3D flip */
}

.amari-why-us-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* Flip effect on hover */
.amari-why-us-box:hover .amari-why-us-icon img {
  transform: rotateY(180deg);
}

/* Hover lift effect */
.amari-why-us-box:hover {
  transform: translateY(-10px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .amari-why-us-box {
    flex: 1 1 calc(33.33% - 20px); /* 3 per row */
  }
}

@media (max-width: 600px) {
  .amari-why-us-box {
    flex: 1 1 calc(50% - 20px); /* 2 per row */
  }
  .amari-why-us-heading {
  font-size: 47px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #f8f8f8;
        text-transform: uppercase;
      letter-spacing: 2px;
}
}

@media (max-width: 400px) {
  .amari-why-us-box {
    flex: 1 1 40%; /* 1 per row */
  }

  .amari-why-us-box {
      min-width: 0px;
  }

  .amari-why-us-heading {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #f8f8f8;
        text-transform: uppercase;
      letter-spacing: 2px;
}
}





