:root {
    --dt-base-color: #666666;
    --dt-pri-color: #f31717;
    --dt-sec-color: #161C2D;
    --dt-whi-color: #ffffff;
    --dt-gray-high: #f8f9fa;
    --dt-base-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --dt-title-font: "Quicksand", sans-serif;
    --dt-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

::selection {
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
}

::-webkit-input-placeholder {
    color: #d1d1d1;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

:-moz-placeholder {
    color: #d1d1d1;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

::-moz-placeholder {
    color: #d1d1d1;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

:-ms-input-placeholder {
    color: #d1d1d1;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

*:focus::-webkit-input-placeholder {
    opacity: 0;
}

*:focus:-moz-placeholder {
    opacity: 0;
}

*:focus::-moz-placeholder {
    opacity: 0;
}

*:focus:-ms-input-placeholder {
    opacity: 0;
}

/* --- Scrollbar Colors --- */

::-webkit-scrollbar {
    width: 1rem;
    height: 1rem;
    background-color: #f2f2f2;
}

::-webkit-scrollbar-thumb {
    background-color: #c2c2c2;
    border-radius: 1rem;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #b1b1b1;
}

::-webkit-scrollbar-corner {
    background-color: #f2f2f2;
}

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

*,
*::after,
*::before {
    box-sizing: inherit;
    -webkit-box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    word-wrap: break-word;
}

*:not(table *) {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

@media (max-width: 75em) {
    html {
        font-size: 62.5%;
    }
}

@media (max-width: 61.938em) {
    html {
        font-size: 53%;
    }
}

@media (max-width: 35.938em) {
    html {
        font-size: 55%;
    }
}

@media (min-width: 120.063em) {
    html {
        font-size: 75%; 
    }
}

body {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: var(--dt-base-font);
    color: var(--dt-base-color);
    letter-spacing: .01em;
    background-color: var(--dt-white);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body:not(.admin-bar) {
    position: relative;
}

a {
    color: var(--dt-pri-color);
    text-decoration: underline;
    text-underline-offset: 0.1em;
    outline: none;
}

a:hover,
a:active,
a:focus {
    color: var(--dt-pri-color);
    text-decoration: underline;
}

button[type=submit], button, input[type="button"],
input[type="reset"], input[type="submit"], .dt-btn, .button:not(.add_to_cart_button), .wp-block-loginout a, .wp-block-read-more {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 0.8rem 2.4rem;
    line-height: 1.875;
    letter-spacing: .03rem;
    border-width: 0.2rem;
    border-style: solid;
    border-radius: 0.5rem;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    text-transform: initial;
    font-family: inherit;
    text-decoration: none;
    position: relative;
    z-index: 0;
}

button[type=button].mfp-close,
button[type=button].mfp-arrow {
    background-color: transparent;
}

a.dt-btn:hover, a.dt-btn:focus,
.contact__body a:hover, .contact__body a:focus {
    text-decoration: none;
}

button[type=submit], button, input[type="button"],
input[type="reset"], input[type="submit"],
.dt-btn-primary, .wp-block-button__link, .wp-block-loginout a, .wp-block-read-more {
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
    border-color: var(--dt-pri-color);
}

.dt-btn-primary.dt-btn-border {
    color: var(--dt-pri-color);
    background-color: transparent;
    border-color: var(--dt-pri-color);
}

.dt-btn-primary.dt-btn-border:hover, .dt-btn-primary.dt-btn-border:focus,
.dt-btn-primary:hover, .dt-btn-primary:focus {
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
    border-color: var(--dt-pri-color);
}

.dt-btn-secondary {
    color: var(--dt-whi-color);
    background-color: var(--dt-sec-color);
    border-color: var(--dt-sec-color);
}

.dt-btn-secondary.dt-btn-border {
    color: var(--dt-sec-color);
    background-color: transparent;
    border-color: var(--dt-sec-color);
}

.dt-btn-secondary.dt-btn-border:hover, .dt-btn-secondary.dt-btn-border:focus,
.dt-btn-secondary:hover, .dt-btn-secondary:focus {
    color: var(--dt-whi-color);
    background-color: var(--dt-sec-color);
    border-color: var(--dt-sec-color);
}

.dt-btn-white {
    color: var(--dt-sec-color);
    background-color: var(--dt-whi-color);
    border-color: var(--dt-whi-color);
}

.dt-btn-white.dt-btn-border {
    color: var(--dt-whi-color);
    background-color: transparent;
    border-color: var(--dt-whi-color);
	box-shadow: 0 0 2rem rgba(0, 0, 0, 0.05);
}

.dt-btn-white:hover, .dt-btn-white:focus,
.dt-btn-white.dt-btn-border:hover, .dt-btn-white.dt-btn-border:focus {
    color: var(--dt-pri-color);
    background-color: var(--dt-whi-color);
    border-color: var(--dt-whi-color);
}

.dt-btn-play,
a.dt-btn-play {
    position: relative;
    display: inline-block;
    width: 7.8rem;
    height: 7.8rem;
    line-height: 7.8rem;
    background-color: var(--dt-pri-color);
    color: var(--dt-whi-color);
    font-size: 2.2rem;
    border-radius: 100%;
    text-align: center;
    z-index: 0;
}

.dt-btn-play:before,
.dt-btn-play:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.6;
}

.dt-btn-play:before {
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}

.dt-btn-play:after {
    -webkit-animation: ripple 2s linear 1s infinite;
    animation: ripple 2s linear 1s infinite;
}

/* Button Effects */

.btn--effect-two .button:not(.add_to_cart_button),
.btn--effect-two .dt-btn,
.btn--effect-one .button:not(.add_to_cart_button),
.btn--effect-one .dt-btn {
    border-width: 0.1rem;
    overflow: hidden;
}

.btn--effect-one .button:not(.submit-btn, .add_to_cart_button):before,
.btn--effect-one .dt-btn:not(.submit-btn):before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 100%;
    height: 0%;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform: translate(-50%, -50%) rotate(55deg) !important;
    transform: translate(-50%, -50%) rotate(0deg) !important;
    z-index: -1;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.btn--effect-one .button:not(.submit-btn, .add_to_cart_button):hover:before,
.btn--effect-one .button:not(.submit-btn, .add_to_cart_button):focus:before,
.btn--effect-one .dt-btn:not(.submit-btn):hover:before,
.btn--effect-one .dt-btn:not(.submit-btn):focus:before {
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    height: 100%;
}

.btn--effect-two .button:not(.submit-btn, .add_to_cart_button):before,
.btn--effect-two .dt-btn:not(.submit-btn):before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30rem;
    height: 20rem;
    background-color: #000;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.1);
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0;
    z-index: -1;
    -webkit-transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
    transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}

.btn--effect-two .dt-btn-border:not(.submit-btn):before {
    background-color: inherit;
}

.btn--effect-two .button:not(.submit-btn, .add_to_cart_button):hover:before,
.btn--effect-two .button:not(.submit-btn, .add_to_cart_button):focus:before,
.btn--effect-two .dt-btn:not(.submit-btn):hover:before,
.btn--effect-two .dt-btn:not(.submit-btn):focus:before {
    opacity: 0.3;
    -webkit-transform-origin: 10rem 10rem;
    transform-origin: 10rem 10rem;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.btn--effect-three .button:not(.submit-btn, .add_to_cart_button),
.btn--effect-three .dt-btn:not(.submit-btn),
.btn--effect-four .button:not(.submit-btn, .add_to_cart_button),
.btn--effect-four .dt-btn:not(.submit-btn) {
    overflow: hidden;
}

.btn--effect-three .button:not(.submit-btn, .add_to_cart_button):before,
.btn--effect-three .dt-btn:not(.submit-btn):before {
    content: "";
    background-color: var(--dt-whi-color);
    height: 15rem;
    left: -7.5rem;
    position: absolute;
    top: -3.5rem;
    transform: rotate(35deg);
    width: 4rem;
    opacity: 0;
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn--effect-three .button:not(.submit-btn, .add_to_cart_button):hover:before,
.btn--effect-three .button:not(.submit-btn, .add_to_cart_button):focus:before,
.btn--effect-three .dt-btn:not(.submit-btn):hover:before,
.btn--effect-three .dt-btn:not(.submit-btn):focus:before {
    left: 120%;
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.btn--effect-four .button:not(.submit-btn, .add_to_cart_button),
.btn--effect-four .dt-btn:not(.submit-btn) {
    padding-right: 5.1rem;
}

.btn--effect-four .dt-btn:not(.dt-btn-border) {
    border: none;
}

.btn--effect-four .button:not(.submit-btn, .add_to_cart_button):before,
.btn--effect-four .dt-btn:not(.submit-btn):before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2.8rem;
    height: 100%;
    background-color: var(--dt-sec-color);
    z-index: -1;
    border-radius: 5.6rem 0.5rem 0.5rem 5.6rem;
    -webkit-transition: all .2s cubic-bezier(.645,.045,.355,1);
    transition: all .2s cubic-bezier(.645,.045,.355,1);
}

.btn--effect-four .dt-btn.dt-btn-secondary:not(.submit-btn):before {
    background-color: var(--dt-pri-color);
}

.btn--effect-four .button:not(.submit-btn, .add_to_cart_button):hover:before,
.btn--effect-four .button:not(.submit-btn, .add_to_cart_button):focus:before,
.btn--effect-four .dt-btn:not(.submit-btn):hover:before,
.btn--effect-four .dt-btn:not(.submit-btn):focus:before {
	width: 100%;
    border-radius: inherit;
}

.btn--effect-four .button:not(.submit-btn, .add_to_cart_button):after,
.btn--effect-four .dt-btn:not(.submit-btn):after {
    content: "\f061";
    position: absolute;
    top: 50%;
	transform: translate(-1rem, -50%);
	opacity: 0;
    font-size: 1.55rem;
    color: inherit;
    z-index: -1;
	font-family: FontAwesome;
    -webkit-transition: all .2s cubic-bezier(.645,.045,.355,1);
    transition: all .2s cubic-bezier(.645,.045,.355,1);
}

.btn--effect-four .button:not(.submit-btn, .add_to_cart_button):hover:after,
.btn--effect-four .button:not(.submit-btn, .add_to_cart_button):focus:after,
.btn--effect-four .dt-btn:not(.submit-btn):hover:after,
.btn--effect-four .dt-btn:not(.submit-btn):focus:after {
	transform: translate(1rem, -50%);
	opacity: 1;
}

.btn--effect-four .button:not(.submit-btn, .add_to_cart_button):hover,
.btn--effect-four .button:not(.submit-btn, .add_to_cart_button):focus,
.btn--effect-four .dt-btn:not(.submit-btn):hover,
.btn--effect-four .dt-btn:not(.submit-btn):focus {
    box-shadow: 0 0 2rem 0.4rem rgba(255, 255, 255, 0.16);
}

button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

button[type="submit"]:focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
.dt-btn:focus {
    outline-width: 0.1rem;
    outline-offset: -0.3rem;
    outline-style: dotted;
}

a,
area,
button,
input,
label,
select,
summary,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
    display: block;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: var(--dt-title-font);
    color: var(--dt-sec-color);
    word-break: break-word;
}

h1,
.h1 {
    font-size: 4.4rem;
}

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

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

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

h5,
.h5 {
    font-size: 2.2rem;
}

h6,
.h6 {
    font-size: 1.9rem;
}

em,
cite,
q {
    color: var(--dt-pri-color);
    font-style: italic;
    font-weight: bold;
}

code,
kbd,
tt,
var,
samp,
pre {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    background-color: var(--dt-sec-color);
    color: var(--dt-whi-color);
    padding: 0.1rem 0.5rem;
    border-radius: 0;
    font-size: 88%;
}

pre {
    display: block;
    margin: 0 0 1rem;
    font-size: 1.3rem;
    word-break: break-all;
    word-wrap: break-word;
    border: 0.1rem solid #ccc;
    border-radius: 0;
    overflow: auto;
}

table {
    border: 0.1rem solid #e9e9e9;
    background-color: #fcfcfc;
    border-spacing: 0;
    letter-spacing: 0.05rem;
    margin: 0 0 2rem;
    text-align: left;
    table-layout: fixed;
    border-collapse: collapse;
}

table th {
    border: 0.1rem solid rgba(0, 0, 0, 0.25);
}

table td {
    border: 0.1rem solid #e9e9ea;
}

table th,
table td {
    padding: 1.5rem;
}

table th {
    background: var(--dt-pri-color);
    color: var(--dt-whi-color);
}

p {
    margin: 0 0 1.6rem;
    word-break: break-word;
}

.widget_media_image > .wp-block-image,
figure {
    margin: 0;
}

address,
table,
pre {
    width: 100%;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    font-weight: 600;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.4rem;
}

sup {
    top: -0.8rem;
}

fieldset {
    border: 0.1rem solid #e9e9ea;
    margin: 2.4rem 0.2rem;
    padding: 1rem 2.5rem 2rem;
    border-radius: 0;
}

iframe {
    max-width: 100%;
     
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
    appearance: button;
    -moz-appearance: button;
    -webkit-appearance: button;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    outline: 0.1rem dotted;
    outline-offset: -0.2rem;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    position: relative;
    border-radius: 0.5rem;
    display: block;
    line-height: 1.5;
    font-size: 1.6rem;
    font-weight: 500;
    max-height: 5rem;
    padding: 1.3rem 1.6rem;
    vertical-align: middle;
    width: 100%;
    background-color: #f14802;
    border: 0.1rem solid rgba(189, 189, 189, 0.2);
    outline: none;
    letter-spacing: 0.05rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    border-color: var(--dt-pri-color);
    background-color: var(--dt-whi-color);
}

button[type="submit"]:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button[type="submit"]:focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
}

[type="search"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline-offset: -0.2rem;
}

select {
    background-clip: padding-box;
    border: 0.1rem solid rgba(189, 189, 189, 0.2);
    border-radius: 0;
    display: block;
    font-size: 92%;
    font-weight: 400;
    padding: 0.6rem 1.2rem;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: auto !important;
    outline: 0;
    background-image: linear-gradient(#242424, #242424), linear-gradient(#e9e9ea, #e9e9ea);
    background-size: 0 0.1rem, 100% 0.1rem;
    background-repeat: no-repeat;
    background-position: center bottom, center calc(100% - -0.1rem);
    background-color: #f6f6f6;
    -moz-transition: background 0s ease-out;
    -webkit-transition: background 0s ease-out;
    -o-transition: background 0s ease-out;
    transition: background 0s ease-out;
}

textarea {
    height: 13.2rem;
    overflow: auto;
    resize: vertical;
    max-height: 100%;
}

input[type="checkbox"],
input[type="radio"],
form[id*="give-form"] #give-gateway-radio-list>li input[type="radio"],
form[id*="give-form"] #give-gateway-radio-list>li input[type="checkbox"],
div.wpforms-container-full .wpforms-form input[type="radio"],
div.wpforms-container-full .wpforms-form input[type="checkbox"] {
    border: 2px solid var(--dt-pri-color);
    background: var(--dt-whi-color);
    color: #555;
    clear: none;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
    height: 20px;
    margin: -3px 3px 0 0;
    outline: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    width: 20px !important;
    max-width: 20px;
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    transition: 0.05s border-color ease-in-out;
}

input[type="radio"] {
    border-radius: 50%;
    margin-right: 4px;
    line-height: 12px;
}

input[type="checkbox"]:checked:before,
input[type="radio"]:checked:before {
    display: inline-block;
    vertical-align: middle;
    speak: none;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

input[type="radio"]:checked:before {
    content: "⬤";
    text-indent: -9999px;
    border-radius: 50px;
    font-size: 24px;
    width: 8px;
    height: 8px;
    margin: 4px;
    line-height: 20px;
    background: var(--dt-pri-color);
}

input[type="checkbox"]:checked:before {
    content: "✔";
    font-weight: 900;
    color: var(--dt-pri-color);
}

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

/* Grid List Two Column Like Table List */
.dt-grid-list dt {
    padding: 0.8rem 0 0.8rem 0;
    font-weight: 600;
}

.dt-grid-list dd {
    margin: 0;
    padding: 0.8rem 0 0.8rem 0;
}

@media (min-width: 34.375em) {
    .dt-grid-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .dt-grid-list dt {
        grid-column-start: 1;
    }

    .dt-grid-list dd {
        grid-column-start: 2;
    }

    .dt-grid-list dt+dd {}
}
/* ---//--- */

.dt-d-none,
div.dt-d-none {
    display: none;
}

.dt-d-block,
div.dt-d-block {
    display: block;
}

.dt-d-inline,
div.dt-d-inline {
    display: inline;
}

.dt-d-inline-block,
div.dt-d-inline-block {
    display: inline-block;
}

.dt-container,
.dt-container-fluid {
    width: 100%;
    padding-right: 1.6rem;
    padding-left: 1.6rem;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 35.938em) {
    .dt-container,
    .dt-container-fluid,
    .dt__slider-main div.owl-dots {
        padding-right: 2.4rem;
        padding-left: 2.4rem;
    }
}

.dt-row {
    --dt-gutter-x: 2.4rem;
    --dt-gutter-y: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--dt-gutter-y) * -1);
    margin-right: calc(var(--dt-gutter-x)/ -2);
    margin-left: calc(var(--dt-gutter-x)/ -2);
}

.dt-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--dt-gutter-x)/ 2);
    padding-left: calc(var(--dt-gutter-x)/ 2);
    margin-top: var(--dt-gutter-y);
}

.dt-g-0,
.dt-gx-0 {
    --dt-gutter-x: 0rem;
}

.dt-g-0,
.dt-gy-0 {
    --dt-gutter-y: 0rem;
}

.dt-g-1,
.dt-gx-1 {
    --dt-gutter-x: 0.4rem;
}

.dt-g-1,
.dt-gy-1 {
    --dt-gutter-y: 0.4rem;
}

.dt-g-2,
.dt-gx-2 {
    --dt-gutter-x: 0.8rem;
}

.dt-g-2,
.dt-gy-2 {
    --dt-gutter-y: 0.8rem;
}

.dt-g-3,
.dt-gx-3 {
    --dt-gutter-x: 1.6rem;
}

.dt-g-3,
.dt-gy-3 {
    --dt-gutter-y: 1.6rem;
}

.dt-g-4,
.dt-gx-4 {
    --dt-gutter-x: 2.4rem;
}

.dt-g-4,
.dt-gy-4 {
    --dt-gutter-y: 2.4rem;
}

.dt-g-5,
.dt-gx-5 {
    --dt-gutter-x: 4.8rem;
}

.dt-g-5,
.dt-gy-5 {
    --dt-gutter-y: 4.8rem;
}

.dt-col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.dt-col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.dt-col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.dt-col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.dt-col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.dt-col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.dt-col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.dt-col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.dt-col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.dt-col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.dt-col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.dt-col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

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

.dt-mt-auto {
    margin-top: auto;
}

.dt-mr-auto {
    margin-right: auto;
}

.dt-mb-auto {
    margin-bottom: auto;
}

.dt-ml-auto {
    margin-left: auto;
}

.dt-my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.dt-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.dt-mt-1 {
    margin-top: 0.4rem;
}

.dt-mt-2 {
    margin-top: 0.8rem;
}

.dt-mt-3 {
    margin-top: 1.6rem;
}

.dt-mt-4 {
    margin-top: 2.4rem;
}

.dt-mt-5 {
    margin-top: 3.2rem;
}

.dt-mt-6 {
    margin-top: 4.8rem;
}

.dt-mr-0 {
    margin-right: 0;
}

.dt-mr-1 {
    margin-right: 0.4rem;
}

.dt-mr-2 {
    margin-right: 0.8rem;
}

.dt-mr-3 {
    margin-right: 1.6rem;
}

.dt-mr-4 {
    margin-right: 2.4rem;
}

.dt-mr-5 {
    margin-right: 3.2rem;
}

.dt-mr-6 {
    margin-right: 4.8rem;
}

.dt-mb-0 {
    margin-bottom: 0;
}

.dt-mb-1 {
    margin-bottom: 0.4rem;
}

.dt-mb-2 {
    margin-bottom: 0.8rem;
}

.dt-mb-3 {
    margin-bottom: 1.6rem;
}

.dt-mb-4 {
    margin-bottom: 2.4rem;
}

.dt-mb-5 {
    margin-bottom: 3.2rem;
}

.dt-mb-6 {
    margin-bottom: 4.8rem;
}

.dt-ml-0 {
    margin-left: 0;
}

.dt-ml-1 {
    margin-left: 0.4rem;
}

.dt-ml-2 {
    margin-left: 0.8rem;
}

.dt-ml-3 {
    margin-left: 1.6rem;
}

.dt-ml-4 {
    margin-left: 2.4rem;
}

.dt-ml-5 {
    margin-left: 3.2rem;
}

.dt-ml-6 {
    margin-left: 4.8rem;
}

.dt-my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.dt-my-1 {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

.dt-my-2 {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}

.dt-my-3 {
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
}

.dt-my-4 {
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
}

.dt-my-5 {
    margin-top: 3.2rem;
    margin-bottom: 3.2rem;
}

.dt-my-6 {
    margin-top: 4.8rem;
    margin-bottom: 4.8rem;
}

.dt-mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.dt-mx-1 {
    margin-left: 0.4rem;
    margin-right: 0.4rem;
}

.dt-mx-2 {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
}

.dt-mx-3 {
    margin-left: 1.6rem;
    margin-right: 1.6rem;
}

.dt-mx-4 {
    margin-left: 2.4rem;
    margin-right: 2.4rem;
}

.dt-mx-5 {
    margin-left: 3.2rem;
    margin-right: 3.2rem;
}

.dt-mx-6 {
    margin-left: 4.8rem;
    margin-right: 4.8rem;
}

.dt-pt-0 {
    padding-top: 0;
}

.dt-pt-1 {
    padding-top: 0.4rem;
}

.dt-pt-2 {
    padding-top: 0.8rem;
}

.dt-pt-3 {
    padding-top: 1.6rem;
}

.dt-pt-4 {
    padding-top: 2.4rem;
}

.dt-pt-5 {
    padding-top: 3.2rem;
}

.dt-pt-6 {
    padding-top: 4.8rem;
}

.dt-pr-0 {
    padding-right: 0;
}

.dt-pr-1 {
    padding-right: 0.4rem;
}

.dt-pr-2 {
    padding-right: 0.8rem;
}

.dt-pr-3 {
    padding-right: 1.6rem;
}

.dt-pr-4 {
    padding-right: 2.4rem;
}

.dt-pr-5 {
    padding-right: 3.2rem;
}

.dt-pr-6 {
    padding-top: 4.8rem;
}

.dt-pb-0 {
    padding-bottom: 0;
}

.dt-pb-1 {
    padding-bottom: 0.4rem;
}

.dt-pb-2 {
    padding-bottom: 0.8rem;
}

.dt-pb-3 {
    padding-bottom: 1.6rem;
}

.dt-pb-4 {
    padding-bottom: 2.4rem;
}

.dt-pb-5 {
    padding-bottom: 3.2rem;
}

.dt-pb-6 {
    padding-top: 4.8rem;
}

.dt-pl-0 {
    padding-left: 0;
}

.dt-pl-1 {
    padding-left: 0.4rem;
}

.dt-pl-2 {
    padding-left: 0.8rem;
}

.dt-pl-3 {
    padding-left: 1.6rem;
}

.dt-pl-4 {
    padding-left: 2.4rem;
}

.dt-pl-5 {
    padding-left: 3.2rem;
}

.dt-pl-6 {
    padding-top: 4.8rem;
}

.dt-p-0 {
    padding: 0;
}

.dt-py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.dt-py-1 {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.dt-py-2 {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.dt-py-3 {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
}

.dt-py-4 {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
}

.dt-py-5 {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
}

.dt-py-6 {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
}

.dt-px-0 {
    padding-left: 0;
    padding-right: 0;
}

.dt-px-1 {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

.dt-px-2 {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}

.dt-px-3 {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
}

.dt-px-4 {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

.dt-px-5 {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
}

.dt-px-6 {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
}

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

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

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

.dt-flex-10 {
    -ms-flex: 1 1 10%;
    flex: 1 1 10%;
}

.dt-flex-15 {
    -ms-flex: 1 1 15%;
    flex: 1 1 15%;
}

.dt-flex-20 {
    -ms-flex: 1 1 20%;
    flex: 1 1 20%;
}

.dt-flex-25 {
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
}

.dt-flex-30 {
    -ms-flex: 1 1 30%;
    flex: 1 1 30%;
}

.dt-flex-35 {
    -ms-flex: 1 1 35%;
    flex: 1 1 35%;
}

.dt-flex-40 {
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
}

.dt-flex-45 {
    -ms-flex: 1 1 45%;
    flex: 1 1 45%;
}

.dt-flex-50 {
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
}

.dt-flex-55 {
    -ms-flex: 1 1 55%;
    flex: 1 1 55%;
}

.dt-flex-60 {
    -ms-flex: 1 1 60%;
    flex: 1 1 60%;
}

.dt-flex-65 {
    -ms-flex: 1 1 65%;
    flex: 1 1 65%;
}

.dt-flex-70 {
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
}

.dt-flex-75 {
    -ms-flex: 1 1 75%;
    flex: 1 1 75%;
}

.dt-flex-80 {
    -ms-flex: 1 1 80%;
    flex: 1 1 80%;
}

.dt-flex-85 {
    -ms-flex: 1 1 85%;
    flex: 1 1 85%;
}

.dt-flex-90 {
    -ms-flex: 1 1 90%;
    flex: 1 1 90%;
}

.dt-flex-95 {
    -ms-flex: 1 1 95%;
    flex: 1 1 95%;
}

.dt-flex-100 {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.dt-flex-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.dt-float-right {
    float: right;
}

.dt-float-left {
    float: left;
}

.dt-float-none {
    float: none;
}

.dt-order-1 {
    order: 1;
}

.dt-order-2 {
    order: 2;
}

.dt-order-3 {
    order: 3;
}

.dt-order-4 {
    order: 4;
}

.dt-order-5 {
    order: 5;
}

.dt-order-6 {
    order: 6;
}

.dt-order-7 {
    order: 7;
}

.dt-order-8 {
    order: 8;
}

.dt-order-9 {
    order: 9;
}

.dt-order-10 {
    order: 10;
}

.dt-order-11 {
    order: 11;
}

.dt-order-12 {
    order: 12;
}

/* Masonry container */
.dt-masonry {
    width: 100%;
    -webkit-column-gap: 2.4rem;
    -moz-column-gap: 2.4rem;
    column-gap: 2.4rem;
    -moz-column-gap: 2.4rem;
    -webkit-column-gap: 2.4rem;
    column-gap: 2.4rem;
}

.dt-masonry-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
}

.dt-masonry-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.dt-masonry-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

@media only screen and (max-width: 47.938em) {
    .dt-masonry[class*="dt-masonry-"] {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 62em) and (max-width: 64em) {
    .dt-masonry[class*="dt-masonry-"] {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media only screen and (min-width: 48em) and (max-width: 61.938em) {
    .dt-masonry[class*="dt-masonry-"] {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}
/* ---//--- */

/* Small Screen */
@media (min-width: 36em) {

    .dt-container,
    .dt-container-sm,
    .dt__slider-main .owl-dots {
        max-width: 63.68rem;/*54rem*/
    }

    .dt-g-sm-0,
    .dt-gx-sm-0 {
        --dt-gutter-x: 0rem;
    }

    .dt-g-sm-0,
    .dt-gy-sm-0 {
        --dt-gutter-y: 0rem;
    }

    .dt-g-sm-1,
    .dt-gx-sm-1 {
        --dt-gutter-x: 0.4rem;
    }

    .dt-g-sm-1,
    .dt-gy-sm-1 {
        --dt-gutter-y: 0.4rem;
    }

    .dt-g-sm-2,
    .dt-gx-sm-2 {
        --dt-gutter-x: 0.8rem;
    }

    .dt-g-sm-2,
    .dt-gy-sm-2 {
        --dt-gutter-y: 0.8rem;
    }

    .dt-g-sm-3,
    .dt-gx-sm-3 {
        --dt-gutter-x: 1.6rem;
    }

    .dt-g-sm-3,
    .dt-gy-sm-3 {
        --dt-gutter-y: 1.6rem;
    }

    .dt-g-sm-4,
    .dt-gx-sm-4 {
        --dt-gutter-x: 2.4rem;
    }

    .dt-g-sm-4,
    .dt-gy-sm-4 {
        --dt-gutter-y: 2.4rem;
    }

    .dt-g-sm-5,
    .dt-gx-sm-5 {
        --dt-gutter-x: 4.8rem;
    }

    .dt-g-sm-5,
    .dt-gy-sm-5 {
        --dt-gutter-y: 4.8rem;
    }

    .dt-col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .dt-col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .dt-col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .dt-col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .dt-col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .dt-col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .dt-col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .dt-col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .dt-col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .dt-col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .dt-col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .dt-col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .dt-d-sm-none,
    div.dt-d-sm-none {
        display: none;
    }

    .dt-d-sm-block,
    div.dt-d-sm-block {
        display: block;
    }

    .dt-d-sm-inline,
    div.dt-d-sm-inline {
        display: inline;
    }

    .dt-d-sm-inline-block,
    div.dt-d-sm-inline-block {
        display: inline-block;
    }

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

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

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

    .dt-mt-sm-auto {
        margin-top: auto;
    }

    .dt-mr-sm-auto {
        margin-right: auto;
    }

    .dt-mb-sm-auto {
        margin-bottom: auto;
    }

    .dt-ml-sm-auto {
        margin-left: auto;
    }

    .dt-my-sm-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .dt-mx-sm-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .dt-m-sm-0 {
        margin: 0;
    }

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

    .dt-mt-sm-1 {
        margin-top: 0.4rem;
    }

    .dt-mt-sm-2 {
        margin-top: 0.8rem;
    }

    .dt-mt-sm-3 {
        margin-top: 1.6rem;
    }

    .dt-mt-sm-4 {
        margin-top: 2.4rem;
    }

    .dt-mt-sm-5 {
        margin-top: 3.2rem;
    }

    .dt-mt-sm-6 {
        margin-top: 4.8rem;
    }

    .dt-mr-sm-0 {
        margin-right: 0;
    }

    .dt-mr-sm-1 {
        margin-right: 0.4rem;
    }

    .dt-mr-sm-2 {
        margin-right: 0.8rem;
    }

    .dt-mr-sm-3 {
        margin-right: 1.6rem;
    }

    .dt-mr-sm-4 {
        margin-right: 2.4rem;
    }

    .dt-mr-sm-5 {
        margin-right: 3.2rem;
    }

    .dt-mr-sm-6 {
        margin-right: 4.8rem;
    }

    .dt-mb-sm-0 {
        margin-bottom: 0;
    }

    .dt-mb-sm-1 {
        margin-bottom: 0.4rem;
    }

    .dt-mb-sm-2 {
        margin-bottom: 0.8rem;
    }

    .dt-mb-sm-3 {
        margin-bottom: 1.6rem;
    }

    .dt-mb-sm-4 {
        margin-bottom: 2.4rem;
    }

    .dt-mb-sm-5 {
        margin-bottom: 3.2rem;
    }

    .dt-mb-sm-6 {
        margin-bottom: 4.8rem;
    }

    .dt-ml-sm-0 {
        margin-left: 0;
    }

    .dt-ml-sm-1 {
        margin-left: 0.4rem;
    }

    .dt-ml-sm-2 {
        margin-left: 0.8rem;
    }

    .dt-ml-sm-3 {
        margin-left: 1.6rem;
    }

    .dt-ml-sm-4 {
        margin-left: 2.4rem;
    }

    .dt-ml-sm-5 {
        margin-left: 3.2rem;
    }

    .dt-ml-sm-6 {
        margin-left: 4.8rem;
    }

    .dt-my-sm-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .dt-my-sm-1 {
        margin-top: 0.4rem;
        margin-bottom: 0.4rem;
    }

    .dt-my-sm-2 {
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .dt-my-sm-3 {
        margin-top: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .dt-my-sm-4 {
        margin-top: 2.4rem;
        margin-bottom: 2.4rem;
    }

    .dt-my-sm-5 {
        margin-top: 3.2rem;
        margin-bottom: 3.2rem;
    }

    .dt-my-sm-6 {
        margin-top: 4.8rem;
        margin-bottom: 4.8rem;
    }

    .dt-mx-sm-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .dt-mx-sm-1 {
        margin-left: 0.4rem;
        margin-right: 0.4rem;
    }

    .dt-mx-sm-2 {
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }

    .dt-mx-sm-3 {
        margin-left: 1.6rem;
        margin-right: 1.6rem;
    }

    .dt-mx-sm-4 {
        margin-left: 2.4rem;
        margin-right: 2.4rem;
    }

    .dt-mx-sm-5 {
        margin-left: 3.2rem;
        margin-right: 3.2rem;
    }

    .dt-mx-sm-6 {
        margin-left: 4.8rem;
        margin-right: 4.8rem;
    }

    .dt-p-sm-0 {
        padding: 0;
    }

    .dt-pt-sm-0 {
        padding-top: 0;
    }

    .dt-pt-sm-1 {
        padding-top: 0.4rem;
    }

    .dt-pt-sm-2 {
        padding-top: 0.8rem;
    }

    .dt-pt-sm-3 {
        padding-top: 1.6rem;
    }

    .dt-pt-sm-4 {
        padding-top: 2.4rem;
    }

    .dt-pt-sm-5 {
        padding-top: 3.2rem;
    }

    .dt-pt-sm-6 {
        padding-top: 4.8rem;
    }

    .dt-pr-sm-0 {
        padding-right: 0;
    }

    .dt-pr-sm-1 {
        padding-right: 0.4rem;
    }

    .dt-pr-sm-2 {
        padding-right: 0.8rem;
    }

    .dt-pr-sm-3 {
        padding-right: 1.6rem;
    }

    .dt-pr-sm-4 {
        padding-right: 2.4rem;
    }

    .dt-pr-sm-5 {
        padding-right: 3.2rem;
    }

    .dt-pr-sm-6 {
        padding-top: 4.8rem;
    }

    .dt-pb-sm-0 {
        padding-bottom: 0;
    }

    .dt-pb-sm-1 {
        padding-bottom: 0.4rem;
    }

    .dt-pb-sm-2 {
        padding-bottom: 0.8rem;
    }

    .dt-pb-sm-3 {
        padding-bottom: 1.6rem;
    }

    .dt-pb-sm-4 {
        padding-bottom: 2.4rem;
    }

    .dt-pb-sm-5 {
        padding-bottom: 3.2rem;
    }

    .dt-pb-sm-6 {
        padding-top: 4.8rem;
    }

    .dt-pl-sm-0 {
        padding-left: 0;
    }

    .dt-pl-sm-1 {
        padding-left: 0.4rem;
    }

    .dt-pl-sm-2 {
        padding-left: 0.8rem;
    }

    .dt-pl-sm-3 {
        padding-left: 1.6rem;
    }

    .dt-pl-sm-4 {
        padding-left: 2.4rem;
    }

    .dt-pl-sm-5 {
        padding-left: 3.2rem;
    }

    .dt-pl-sm-6 {
        padding-top: 4.8rem;
    }

    .dt-py-sm-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .dt-py-sm-1 {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .dt-py-sm-2 {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .dt-py-sm-3 {
        padding-top: 1.6rem;
        padding-bottom: 1.6rem;
    }

    .dt-py-sm-4 {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }

    .dt-py-sm-5 {
        padding-top: 3.2rem;
        padding-bottom: 3.2rem;
    }

    .dt-py-sm-6 {
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
    }

    .dt-px-sm-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .dt-px-sm-1 {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .dt-px-sm-2 {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .dt-px-sm-3 {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .dt-px-sm-4 {
        padding-left: 2.4rem;
        padding-right: 2.4rem;
    }

    .dt-px-sm-5 {
        padding-left: 3.2rem;
        padding-right: 3.2rem;
    }

    .dt-px-sm-6 {
        padding-left: 4.8rem;
        padding-right: 4.8rem;
    }

    .dt-float-sm-right {
        float: right;
    }

    .dt-float-sm-left {
        float: left;
    }

    .dt-float-sm-none {
        float: none;
    }

    .dt-order-sm-1 {
        order: 1;
    }

    .dt-order-sm-2 {
        order: 2;
    }

    .dt-order-sm-3 {
        order: 3;
    }

    .dt-order-sm-4 {
        order: 4;
    }

    .dt-order-sm-5 {
        order: 5;
    }

    .dt-order-sm-6 {
        order: 6;
    }

    .dt-order-sm-7 {
        order: 7;
    }

    .dt-order-sm-8 {
        order: 8;
    }

    .dt-order-sm-9 {
        order: 9;
    }

    .dt-order-sm-10 {
        order: 10;
    }

    .dt-order-sm-11 {
        order: 11;
    }

    .dt-order-sm-12 {
        order: 12;
    }
}
/* ---//--- */

/* Medium Screen */
@media (min-width: 48em) {

    .dt-container,
    .dt-container-md,
    .dt-container-sm,
    .dt__slider-main .owl-dots {
        max-width: 84.907rem;/*72rem*/
    }

    .dt-g-md-0,
    .dt-gx-md-0 {
        --dt-gutter-x: 0rem;
    }

    .dt-g-md-0,
    .dt-gy-md-0 {
        --dt-gutter-y: 0rem;
    }

    .dt-g-md-1,
    .dt-gx-md-1 {
        --dt-gutter-x: 0.4rem;
    }

    .dt-g-md-1,
    .dt-gy-md-1 {
        --dt-gutter-y: 0.4rem;
    }

    .dt-g-md-2,
    .dt-gx-md-2 {
        --dt-gutter-x: 0.8rem;
    }

    .dt-g-md-2,
    .dt-gy-md-2 {
        --dt-gutter-y: 0.8rem;
    }

    .dt-g-md-3,
    .dt-gx-md-3 {
        --dt-gutter-x: 1.6rem;
    }

    .dt-g-md-3,
    .dt-gy-md-3 {
        --dt-gutter-y: 1.6rem;
    }

    .dt-g-md-4,
    .dt-gx-md-4 {
        --dt-gutter-x: 2.4rem;
    }

    .dt-g-md-4,
    .dt-gy-md-4 {
        --dt-gutter-y: 2.4rem;
    }

    .dt-g-md-5,
    .dt-gx-md-5 {
        --dt-gutter-x: 4.8rem;
    }

    .dt-g-md-5,
    .dt-gy-md-5 {
        --dt-gutter-y: 4.8rem;
    }

    .dt-col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .dt-col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .dt-col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .dt-col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .dt-col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .dt-col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .dt-col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .dt-col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .dt-col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .dt-col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .dt-col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .dt-col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .dt-d-md-none,
    div.dt-d-md-none {
        display: none;
    }

    .dt-d-md-block,
    div.dt-d-md-block {
        display: block;
    }

    .dt-d-md-inline,
    div.dt-d-md-inline {
        display: inline;
    }

    .dt-d-md-inline-block,
    div.dt-d-md-inline-block {
        display: inline-block;
    }

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

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

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

    .dt-mt-md-auto {
        margin-top: auto;
    }

    .dt-mr-md-auto {
        margin-right: auto;
    }

    .dt-mb-md-auto {
        margin-bottom: auto;
    }

    .dt-ml-md-auto {
        margin-left: auto;
    }

    .dt-my-md-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .dt-mx-md-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .dt-m-md-0 {
        margin: 0;
    }

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

    .dt-mt-md-1 {
        margin-top: 0.4rem;
    }

    .dt-mt-md-2 {
        margin-top: 0.8rem;
    }

    .dt-mt-md-3 {
        margin-top: 1.6rem;
    }

    .dt-mt-md-4 {
        margin-top: 2.4rem;
    }

    .dt-mt-md-5 {
        margin-top: 3.2rem;
    }

    .dt-mt-md-6 {
        margin-top: 4.8rem;
    }

    .dt-mr-md-0 {
        margin-right: 0;
    }

    .dt-mr-md-1 {
        margin-right: 0.4rem;
    }

    .dt-mr-md-2 {
        margin-right: 0.8rem;
    }

    .dt-mr-md-3 {
        margin-right: 1.6rem;
    }

    .dt-mr-md-4 {
        margin-right: 2.4rem;
    }

    .dt-mr-md-5 {
        margin-right: 3.2rem;
    }

    .dt-mr-md-6 {
        margin-right: 4.8rem;
    }

    .dt-mb-md-0 {
        margin-bottom: 0;
    }

    .dt-mb-md-1 {
        margin-bottom: 0.4rem;
    }

    .dt-mb-md-2 {
        margin-bottom: 0.8rem;
    }

    .dt-mb-md-3 {
        margin-bottom: 1.6rem;
    }

    .dt-mb-md-4 {
        margin-bottom: 2.4rem;
    }

    .dt-mb-md-5 {
        margin-bottom: 3.2rem;
    }

    .dt-mb-md-6 {
        margin-bottom: 4.8rem;
    }

    .dt-ml-md-0 {
        margin-left: 0;
    }

    .dt-ml-md-1 {
        margin-left: 0.4rem;
    }

    .dt-ml-md-2 {
        margin-left: 0.8rem;
    }

    .dt-ml-md-3 {
        margin-left: 1.6rem;
    }

    .dt-ml-md-4 {
        margin-left: 2.4rem;
    }

    .dt-ml-md-5 {
        margin-left: 3.2rem;
    }

    .dt-ml-md-6 {
        margin-left: 4.8rem;
    }

    .dt-my-md-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .dt-my-md-1 {
        margin-top: 0.4rem;
        margin-bottom: 0.4rem;
    }

    .dt-my-md-2 {
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .dt-my-md-3 {
        margin-top: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .dt-my-md-4 {
        margin-top: 2.4rem;
        margin-bottom: 2.4rem;
    }

    .dt-my-md-5 {
        margin-top: 3.2rem;
        margin-bottom: 3.2rem;
    }

    .dt-my-md-6 {
        margin-top: 4.8rem;
        margin-bottom: 4.8rem;
    }

    .dt-mx-md-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .dt-mx-md-1 {
        margin-left: 0.4rem;
        margin-right: 0.4rem;
    }

    .dt-mx-md-2 {
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }

    .dt-mx-md-3 {
        margin-left: 1.6rem;
        margin-right: 1.6rem;
    }

    .dt-mx-md-4 {
        margin-left: 2.4rem;
        margin-right: 2.4rem;
    }

    .dt-mx-md-5 {
        margin-left: 3.2rem;
        margin-right: 3.2rem;
    }

    .dt-mx-md-6 {
        margin-left: 4.8rem;
        margin-right: 4.8rem;
    }

    .dt-p-md-0 {
        padding: 0;
    }

    .dt-pt-md-0 {
        padding-top: 0;
    }

    .dt-pt-md-1 {
        padding-top: 0.4rem;
    }

    .dt-pt-md-2 {
        padding-top: 0.8rem;
    }

    .dt-pt-md-3 {
        padding-top: 1.6rem;
    }

    .dt-pt-md-4 {
        padding-top: 2.4rem;
    }

    .dt-pt-md-5 {
        padding-top: 3.2rem;
    }

    .dt-pt-md-6 {
        padding-top: 4.8rem;
    }

    .dt-pr-md-0 {
        padding-right: 0;
    }

    .dt-pr-md-1 {
        padding-right: 0.4rem;
    }

    .dt-pr-md-2 {
        padding-right: 0.8rem;
    }

    .dt-pr-md-3 {
        padding-right: 1.6rem;
    }

    .dt-pr-md-4 {
        padding-right: 2.4rem;
    }

    .dt-pr-md-5 {
        padding-right: 3.2rem;
    }

    .dt-pr-md-6 {
        padding-top: 4.8rem;
    }

    .dt-pb-md-0 {
        padding-bottom: 0;
    }

    .dt-pb-md-1 {
        padding-bottom: 0.4rem;
    }

    .dt-pb-md-2 {
        padding-bottom: 0.8rem;
    }

    .dt-pb-md-3 {
        padding-bottom: 1.6rem;
    }

    .dt-pb-md-4 {
        padding-bottom: 2.4rem;
    }

    .dt-pb-md-5 {
        padding-bottom: 3.2rem;
    }

    .dt-pb-md-6 {
        padding-top: 4.8rem;
    }

    .dt-pl-md-0 {
        padding-left: 0;
    }

    .dt-pl-md-1 {
        padding-left: 0.4rem;
    }

    .dt-pl-md-2 {
        padding-left: 0.8rem;
    }

    .dt-pl-md-3 {
        padding-left: 1.6rem;
    }

    .dt-pl-md-4 {
        padding-left: 2.4rem;
    }

    .dt-pl-md-5 {
        padding-left: 3.2rem;
    }

    .dt-pl-md-6 {
        padding-top: 4.8rem;
    }

    .dt-py-md-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .dt-py-md-1 {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .dt-py-md-2 {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .dt-py-md-3 {
        padding-top: 1.6rem;
        padding-bottom: 1.6rem;
    }

    .dt-py-md-4 {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }

    .dt-py-md-5 {
        padding-top: 3.2rem;
        padding-bottom: 3.2rem;
    }

    .dt-py-md-6 {
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
    }

    .dt-px-md-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .dt-px-md-1 {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .dt-px-md-2 {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .dt-px-md-3 {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .dt-px-md-4 {
        padding-left: 2.4rem;
        padding-right: 2.4rem;
    }

    .dt-px-md-5 {
        padding-left: 3.2rem;
        padding-right: 3.2rem;
    }

    .dt-px-md-6 {
        padding-left: 4.8rem;
        padding-right: 4.8rem;
    }

    .dt-float-md-right {
        float: right;
    }

    .dt-float-md-left {
        float: left;
    }

    .dt-float-md-none {
        float: none;
    }

    .dt-order-md-1 {
        order: 1;
    }

    .dt-order-md-2 {
        order: 2;
    }

    .dt-order-md-3 {
        order: 3;
    }

    .dt-order-md-4 {
        order: 4;
    }

    .dt-order-md-5 {
        order: 5;
    }

    .dt-order-md-6 {
        order: 6;
    }

    .dt-order-md-7 {
        order: 7;
    }

    .dt-order-md-8 {
        order: 8;
    }

    .dt-order-md-9 {
        order: 9;
    }

    .dt-order-md-10 {
        order: 10;
    }

    .dt-order-md-11 {
        order: 11;
    }

    .dt-order-md-12 {
        order: 12;
    }
}
/* ---//--- */

/* Large Screen */
@media (min-width: 62em) {

    .dt-container,
    .dt-container-lg,
    .dt-container-md,
    .dt-container-sm,
    .dt__slider-main .owl-dots {
        max-width: 106.668rem;/*96rem*/
    }

    .dt-g-lg-0,
    .dt-gx-lg-0 {
        --dt-gutter-x: 0rem;
    }

    .dt-g-lg-0,
    .dt-gy-lg-0 {
        --dt-gutter-y: 0rem;
    }

    .dt-g-lg-1,
    .dt-gx-lg-1 {
        --dt-gutter-x: 0.4rem;
    }

    .dt-g-lg-1,
    .dt-gy-lg-1 {
        --dt-gutter-y: 0.4rem;
    }

    .dt-g-lg-2,
    .dt-gx-lg-2 {
        --dt-gutter-x: 0.8rem;
    }

    .dt-g-lg-2,
    .dt-gy-lg-2 {
        --dt-gutter-y: 0.8rem;
    }

    .dt-g-lg-3,
    .dt-gx-lg-3 {
        --dt-gutter-x: 1.6rem;
    }

    .dt-g-lg-3,
    .dt-gy-lg-3 {
        --dt-gutter-y: 1.6rem;
    }

    .dt-g-lg-4,
    .dt-gx-lg-4 {
        --dt-gutter-x: 2.4rem;
    }

    .dt-g-lg-4,
    .dt-gy-lg-4 {
        --dt-gutter-y: 2.4rem;
    }

    .dt-g-lg-5,
    .dt-gx-lg-5 {
        --dt-gutter-x: 4.8rem;
    }

    .dt-g-lg-5,
    .dt-gy-lg-5 {
        --dt-gutter-y: 4.8rem;
    }

    .dt-col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .dt-col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .dt-col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .dt-col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .dt-col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .dt-col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .dt-col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .dt-col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .dt-col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .dt-col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .dt-col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .dt-col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .dt-d-lg-none,
    div.dt-d-lg-none {
        display: none;
    }

    .dt-d-lg-block,
    div.dt-d-lg-block {
        display: block;
    }

    .dt-d-lg-inline,
    div.dt-d-lg-inline {
        display: inline;
    }

    .dt-d-lg-inline-block,
    div.dt-d-lg-inline-block {
        display: inline-block;
    }

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

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

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

    .dt-mt-lg-auto {
        margin-top: auto;
    }

    .dt-mr-lg-auto {
        margin-right: auto;
    }

    .dt-mb-lg-auto {
        margin-bottom: auto;
    }

    .dt-ml-lg-auto {
        margin-left: auto;
    }

    .dt-my-lg-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .dt-mx-lg-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .dt-m-lg-0 {
        margin: 0;
    }

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

    .dt-mt-lg-1 {
        margin-top: 0.4rem;
    }

    .dt-mt-lg-2 {
        margin-top: 0.8rem;
    }

    .dt-mt-lg-3 {
        margin-top: 1.6rem;
    }

    .dt-mt-lg-4 {
        margin-top: 2.4rem;
    }

    .dt-mt-lg-5 {
        margin-top: 3.2rem;
    }

    .dt-mt-lg-6 {
        margin-top: 4.8rem;
    }

    .dt-mr-lg-0 {
        margin-right: 0;
    }

    .dt-mr-lg-1 {
        margin-right: 0.4rem;
    }

    .dt-mr-lg-2 {
        margin-right: 0.8rem;
    }

    .dt-mr-lg-3 {
        margin-right: 1.6rem;
    }

    .dt-mr-lg-4 {
        margin-right: 2.4rem;
    }

    .dt-mr-lg-5 {
        margin-right: 3.2rem;
    }

    .dt-mr-lg-6 {
        margin-right: 4.8rem;
    }

    .dt-mb-lg-0 {
        margin-bottom: 0;
    }

    .dt-mb-lg-1 {
        margin-bottom: 0.4rem;
    }

    .dt-mb-lg-2 {
        margin-bottom: 0.8rem;
    }

    .dt-mb-lg-3 {
        margin-bottom: 1.6rem;
    }

    .dt-mb-lg-4 {
        margin-bottom: 2.4rem;
    }

    .dt-mb-lg-5 {
        margin-bottom: 3.2rem;
    }

    .dt-mb-lg-6 {
        margin-bottom: 4.8rem;
    }

    .dt-ml-lg-0 {
        margin-left: 0;
    }

    .dt-ml-lg-1 {
        margin-left: 0.4rem;
    }

    .dt-ml-lg-2 {
        margin-left: 0.8rem;
    }

    .dt-ml-lg-3 {
        margin-left: 1.6rem;
    }

    .dt-ml-lg-4 {
        margin-left: 2.4rem;
    }

    .dt-ml-lg-5 {
        margin-left: 3.2rem;
    }

    .dt-ml-lg-6 {
        margin-left: 4.8rem;
    }

    .dt-my-lg-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .dt-my-lg-1 {
        margin-top: 0.4rem;
        margin-bottom: 0.4rem;
    }

    .dt-my-lg-2 {
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .dt-my-lg-3 {
        margin-top: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .dt-my-lg-4 {
        margin-top: 2.4rem;
        margin-bottom: 2.4rem;
    }

    .dt-my-lg-5 {
        margin-top: 3.2rem;
        margin-bottom: 3.2rem;
    }

    .dt-my-lg-6 {
        margin-top: 4.8rem;
        margin-bottom: 4.8rem;
    }

    .dt-mx-lg-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .dt-mx-lg-1 {
        margin-left: 0.4rem;
        margin-right: 0.4rem;
    }

    .dt-mx-lg-2 {
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }

    .dt-mx-lg-3 {
        margin-left: 1.6rem;
        margin-right: 1.6rem;
    }

    .dt-mx-lg-4 {
        margin-left: 2.4rem;
        margin-right: 2.4rem;
    }

    .dt-mx-lg-5 {
        margin-left: 3.2rem;
        margin-right: 3.2rem;
    }

    .dt-mx-lg-6 {
        margin-left: 4.8rem;
        margin-right: 4.8rem;
    }

    .dt-p-lg-0 {
        padding: 0;
    }

    .dt-pt-lg-0 {
        padding-top: 0;
    }

    .dt-pt-lg-1 {
        padding-top: 0.4rem;
    }

    .dt-pt-lg-2 {
        padding-top: 0.8rem;
    }

    .dt-pt-lg-3 {
        padding-top: 1.6rem;
    }

    .dt-pt-lg-4 {
        padding-top: 2.4rem;
    }

    .dt-pt-lg-5 {
        padding-top: 3.2rem;
    }

    .dt-pt-lg-6 {
        padding-top: 4.8rem;
    }

    .dt-pr-lg-0 {
        padding-right: 0;
    }

    .dt-pr-lg-1 {
        padding-right: 0.4rem;
    }

    .dt-pr-lg-2 {
        padding-right: 0.8rem;
    }

    .dt-pr-lg-3 {
        padding-right: 1.6rem;
    }

    .dt-pr-lg-4 {
        padding-right: 2.4rem;
    }

    .dt-pr-lg-5 {
        padding-right: 3.2rem;
    }

    .dt-pr-lg-6 {
        padding-top: 4.8rem;
    }

    .dt-pb-lg-0 {
        padding-bottom: 0;
    }

    .dt-pb-lg-1 {
        padding-bottom: 0.4rem;
    }

    .dt-pb-lg-2 {
        padding-bottom: 0.8rem;
    }

    .dt-pb-lg-3 {
        padding-bottom: 1.6rem;
    }

    .dt-pb-lg-4 {
        padding-bottom: 2.4rem;
    }

    .dt-pb-lg-5 {
        padding-bottom: 3.2rem;
    }

    .dt-pb-lg-6 {
        padding-top: 4.8rem;
    }

    .dt-pl-lg-0 {
        padding-left: 0;
    }

    .dt-pl-lg-1 {
        padding-left: 0.4rem;
    }

    .dt-pl-lg-2 {
        padding-left: 0.8rem;
    }

    .dt-pl-lg-3 {
        padding-left: 1.6rem;
    }

    .dt-pl-lg-4 {
        padding-left: 2.4rem;
    }

    .dt-pl-lg-5 {
        padding-left: 3.2rem;
    }

    .dt-pl-lg-6 {
        padding-top: 4.8rem;
    }

    .dt-py-lg-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .dt-py-lg-1 {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .dt-py-lg-2 {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .dt-py-lg-3 {
        padding-top: 1.6rem;
        padding-bottom: 1.6rem;
    }

    .dt-py-lg-4 {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }

    .dt-py-lg-5 {
        padding-top: 3.2rem;
        padding-bottom: 3.2rem;
    }

    .dt-py-lg-6 {
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
    }

    .dt-px-lg-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .dt-px-lg-1 {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .dt-px-lg-2 {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .dt-px-lg-3 {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .dt-px-lg-4 {
        padding-left: 2.4rem;
        padding-right: 2.4rem;
    }

    .dt-px-lg-5 {
        padding-left: 3.2rem;
        padding-right: 3.2rem;
    }

    .dt-px-lg-6 {
        padding-left: 4.8rem;
        padding-right: 4.8rem;
    }

    .dt-float-lg-right {
        float: right;
    }

    .dt-float-lg-left {
        float: left;
    }

    .dt-float-lg-none {
        float: none;
    }

    .dt-order-lg-1 {
        order: 1;
    }

    .dt-order-lg-2 {
        order: 2;
    }

    .dt-order-lg-3 {
        order: 3;
    }

    .dt-order-lg-4 {
        order: 4;
    }

    .dt-order-lg-5 {
        order: 5;
    }

    .dt-order-lg-6 {
        order: 6;
    }

    .dt-order-lg-7 {
        order: 7;
    }

    .dt-order-lg-8 {
        order: 8;
    }

    .dt-order-lg-9 {
        order: 9;
    }

    .dt-order-lg-10 {
        order: 10;
    }

    .dt-order-lg-11 {
        order: 11;
    }

    .dt-order-lg-12 {
        order: 12;
    }
}
/* ---//--- */

/* Extra Large Screen */
@media (min-width: 75em) {

    .dt-container,
    .dt-container-lg,
    .dt-container-md,
    .dt-container-sm,
    .dt-container-xl,
    .dt__slider-main .owl-dots {
        max-width: 124.2rem;/*114rem*/
    }

    .dt-g-xl-0,
    .dt-gx-xl-0 {
        --dt-gutter-x: 0rem;
    }

    .dt-g-xl-0,
    .dt-gy-xl-0 {
        --dt-gutter-y: 0rem;
    }

    .dt-g-xl-1,
    .dt-gx-xl-1 {
        --dt-gutter-x: 0.4rem;
    }

    .dt-g-xl-1,
    .dt-gy-xl-1 {
        --dt-gutter-y: 0.4rem;
    }

    .dt-g-xl-2,
    .dt-gx-xl-2 {
        --dt-gutter-x: 0.8rem;
    }

    .dt-g-xl-2,
    .dt-gy-xl-2 {
        --dt-gutter-y: 0.8rem;
    }

    .dt-g-xl-3,
    .dt-gx-xl-3 {
        --dt-gutter-x: 1.6rem;
    }

    .dt-g-xl-3,
    .dt-gy-xl-3 {
        --dt-gutter-y: 1.6rem;
    }

    .dt-g-xl-4,
    .dt-gx-xl-4 {
        --dt-gutter-x: 2.4rem;
    }

    .dt-g-xl-4,
    .dt-gy-xl-4 {
        --dt-gutter-y: 2.4rem;
    }

    .dt-g-xl-5,
    .dt-gx-xl-5 {
        --dt-gutter-x: 4.8rem;
    }

    .dt-g-xl-5,
    .dt-gy-xl-5 {
        --dt-gutter-y: 4.8rem;
    }

    .dt-col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .dt-col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .dt-col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .dt-col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .dt-col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .dt-col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .dt-col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .dt-col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .dt-col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .dt-col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .dt-col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .dt-col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .dt-d-xl-none,
    div.dt-d-xl-none {
        display: none;
    }

    .dt-d-xl-block,
    div.dt-d-xl-block {
        display: block;
    }

    .dt-d-xl-inline,
    div.dt-d-xl-inline {
        display: inline;
    }

    .dt-d-xl-inline-block,
    div.dt-d-xl-inline-block {
        display: inline-block;
    }

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

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

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

    .dt-mt-xl-auto {
        margin-top: auto;
    }

    .dt-mr-xl-auto {
        margin-right: auto;
    }

    .dt-mb-xl-auto {
        margin-bottom: auto;
    }

    .dt-ml-xl-auto {
        margin-left: auto;
    }

    .dt-my-xl-auto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .dt-mx-xl-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .dt-m-xl-0 {
        margin: 0;
    }

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

    .dt-mt-xl-1 {
        margin-top: 0.4rem;
    }

    .dt-mt-xl-2 {
        margin-top: 0.8rem;
    }

    .dt-mt-xl-3 {
        margin-top: 1.6rem;
    }

    .dt-mt-xl-4 {
        margin-top: 2.4rem;
    }

    .dt-mt-xl-5 {
        margin-top: 3.2rem;
    }

    .dt-mt-xl-6 {
        margin-top: 4.8rem;
    }

    .dt-mr-xl-0 {
        margin-right: 0;
    }

    .dt-mr-xl-1 {
        margin-right: 0.4rem;
    }

    .dt-mr-xl-2 {
        margin-right: 0.8rem;
    }

    .dt-mr-xl-3 {
        margin-right: 1.6rem;
    }

    .dt-mr-xl-4 {
        margin-right: 2.4rem;
    }

    .dt-mr-xl-5 {
        margin-right: 3.2rem;
    }

    .dt-mr-xl-6 {
        margin-right: 4.8rem;
    }

    .dt-mb-xl-0 {
        margin-bottom: 0;
    }

    .dt-mb-xl-1 {
        margin-bottom: 0.4rem;
    }

    .dt-mb-xl-2 {
        margin-bottom: 0.8rem;
    }

    .dt-mb-xl-3 {
        margin-bottom: 1.6rem;
    }

    .dt-mb-xl-4 {
        margin-bottom: 2.4rem;
    }

    .dt-mb-xl-5 {
        margin-bottom: 3.2rem;
    }

    .dt-mb-xl-6 {
        margin-bottom: 4.8rem;
    }

    .dt-ml-xl-0 {
        margin-left: 0;
    }

    .dt-ml-xl-1 {
        margin-left: 0.4rem;
    }

    .dt-ml-xl-2 {
        margin-left: 0.8rem;
    }

    .dt-ml-xl-3 {
        margin-left: 1.6rem;
    }

    .dt-ml-xl-4 {
        margin-left: 2.4rem;
    }

    .dt-ml-xl-5 {
        margin-left: 3.2rem;
    }

    .dt-ml-xl-6 {
        margin-left: 4.8rem;
    }

    .dt-my-xl-0 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .dt-my-xl-1 {
        margin-top: 0.4rem;
        margin-bottom: 0.4rem;
    }

    .dt-my-xl-2 {
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .dt-my-xl-3 {
        margin-top: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .dt-my-xl-4 {
        margin-top: 2.4rem;
        margin-bottom: 2.4rem;
    }

    .dt-my-xl-5 {
        margin-top: 3.2rem;
        margin-bottom: 3.2rem;
    }

    .dt-my-xl-6 {
        margin-top: 4.8rem;
        margin-bottom: 4.8rem;
    }

    .dt-mx-xl-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .dt-mx-xl-1 {
        margin-left: 0.4rem;
        margin-right: 0.4rem;
    }

    .dt-mx-xl-2 {
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }

    .dt-mx-xl-3 {
        margin-left: 1.6rem;
        margin-right: 1.6rem;
    }

    .dt-mx-xl-4 {
        margin-left: 2.4rem;
        margin-right: 2.4rem;
    }

    .dt-mx-xl-5 {
        margin-left: 3.2rem;
        margin-right: 3.2rem;
    }

    .dt-mx-xl-6 {
        margin-left: 4.8rem;
        margin-right: 4.8rem;
    }

    .dt-p-xl-0 {
        padding: 0;
    }

    .dt-pt-xl-0 {
        padding-top: 0;
    }

    .dt-pt-xl-1 {
        padding-top: 0.4rem;
    }

    .dt-pt-xl-2 {
        padding-top: 0.8rem;
    }

    .dt-pt-xl-3 {
        padding-top: 1.6rem;
    }

    .dt-pt-xl-4 {
        padding-top: 2.4rem;
    }

    .dt-pt-xl-5 {
        padding-top: 3.2rem;
    }

    .dt-pt-xl-6 {
        padding-top: 4.8rem;
    }

    .dt-pr-xl-0 {
        padding-right: 0;
    }

    .dt-pr-xl-1 {
        padding-right: 0.4rem;
    }

    .dt-pr-xl-2 {
        padding-right: 0.8rem;
    }

    .dt-pr-xl-3 {
        padding-right: 1.6rem;
    }

    .dt-pr-xl-4 {
        padding-right: 2.4rem;
    }

    .dt-pr-xl-5 {
        padding-right: 3.2rem;
    }

    .dt-pr-xl-6 {
        padding-top: 4.8rem;
    }

    .dt-pb-xl-0 {
        padding-bottom: 0;
    }

    .dt-pb-xl-1 {
        padding-bottom: 0.4rem;
    }

    .dt-pb-xl-2 {
        padding-bottom: 0.8rem;
    }

    .dt-pb-xl-3 {
        padding-bottom: 1.6rem;
    }

    .dt-pb-xl-4 {
        padding-bottom: 2.4rem;
    }

    .dt-pb-xl-5 {
        padding-bottom: 3.2rem;
    }

    .dt-pb-xl-6 {
        padding-top: 4.8rem;
    }

    .dt-pl-xl-0 {
        padding-left: 0;
    }

    .dt-pl-xl-1 {
        padding-left: 0.4rem;
    }

    .dt-pl-xl-2 {
        padding-left: 0.8rem;
    }

    .dt-pl-xl-3 {
        padding-left: 1.6rem;
    }

    .dt-pl-xl-4 {
        padding-left: 2.4rem;
    }

    .dt-pl-xl-5 {
        padding-left: 3.2rem;
    }

    .dt-pl-xl-6 {
        padding-top: 4.8rem;
    }

    .dt-py-xl-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .dt-py-xl-1 {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .dt-py-xl-2 {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .dt-py-xl-3 {
        padding-top: 1.6rem;
        padding-bottom: 1.6rem;
    }

    .dt-py-xl-4 {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }

    .dt-py-xl-5 {
        padding-top: 3.2rem;
        padding-bottom: 3.2rem;
    }

    .dt-py-xl-6 {
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
    }

    .dt-px-xl-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .dt-px-xl-1 {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .dt-px-xl-2 {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .dt-px-xl-3 {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .dt-px-xl-4 {
        padding-left: 2.4rem;
        padding-right: 2.4rem;
    }

    .dt-px-xl-5 {
        padding-left: 3.2rem;
        padding-right: 3.2rem;
    }

    .dt-px-xl-6 {
        padding-left: 4.8rem;
        padding-right: 4.8rem;
    }

    .dt-float-xl-right {
        float: right;
    }

    .dt-float-xl-left {
        float: left;
    }

    .dt-float-xl-none {
        float: none;
    }

    .dt-order-xl-1 {
        order: 1;
    }

    .dt-order-xl-2 {
        order: 2;
    }

    .dt-order-xl-3 {
        order: 3;
    }

    .dt-order-xl-4 {
        order: 4;
    }

    .dt-order-xl-5 {
        order: 5;
    }

    .dt-order-xl-6 {
        order: 6;
    }

    .dt-order-xl-7 {
        order: 7;
    }

    .dt-order-xl-8 {
        order: 8;
    }

    .dt-order-xl-9 {
        order: 9;
    }

    .dt-order-xl-10 {
        order: 10;
    }

    .dt-order-xl-11 {
        order: 11;
    }

    .dt-order-xl-12 {
        order: 12;
    }
}
/* ---//--- */

/* Extra Big Screen */
@media (min-width: 87.5em) {

    .dt-container,
    .dt-container-lg,
    .dt-container-md,
    .dt-container-sm,
    .dt-container-xl,
    .dt-container-xxl,
    .dt__slider-main .owl-dots {
        max-width: 132rem;
    }
}
/* ---//--- */


/* Classes */

.dt__tabs .tabs {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
    text-align: center;
    margin-bottom: 3.5rem;
    border-bottom: none;
}

.dt__tabs .tabs li {
    margin-right: -2rem;
}

.dt__tabs .tabs .dt-btn-tab {
    position: relative;
    display: inline-block;
    border: none;
    border-radius: 0.5rem;
    padding: 0.6rem 2.8rem;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dt-sec-color);
    line-height: 3rem;
    text-align: center;
    text-decoration: none;
    background-color: var(--dt-gray-high);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    -webkit-box-shadow: inset 0 1px 0 rgba(189, 189, 189, 0.2);
    box-shadow: inset 0 1px 0 rgba(189, 189, 189, 0.2);
    z-index: 0;
}

.dt__tabs .tabs .dt-btn-tab.active {
    background-color: var(--dt-pri-color);
    border-color: var(--dt-pri-color);
    color: var(--dt-whi-color);
    z-index: 1;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}

.fade:not(.show) {
    opacity: 0;
}

.fade {
    transition: opacity 0.15s linear;
}

.dt-my-default {
    margin-top: 11rem;
    margin-bottom: 11rem;
}

.dt-mt-default {
    margin-top: 11rem;
}

.dt-mb-default {
    margin-bottom: 11rem;
}

.dt-py-default {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.dt-pt-default {
    padding-top: 11rem;
}

.dt-pb-default {
    padding-bottom: 11rem;
}

.off--layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: #000000;
    opacity: 0.5;
    z-index: 0;
    -webkit-transition: all .3s ease-in .6s;
    transition: all .3s ease-in .6s;
}

.overlay--enabled {
    overflow: hidden;
}

.text-primary {
    color: var(--dt-pri-color);
}

.bg-primary {
    background-color: var(--dt-pri-color);
}

.bg-secondary {
    background-color: var(--dt-sec-color);
} 

.bg-gray-high {
    background-color: var(--dt-gray-high);
}

.svg--shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}

.svg--shape.top {
    top: -2px!important;
}

.svg--shape.bottom {
    bottom: -1px;
}

.svg--shape.bottom:not([data-negative=true]) svg {
    z-index: -1;
}

.svg--shape[data-negative=false].bottom,
.svg--shape[data-negative=true].top {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.svg--shape svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.svg--shape .svg--shape-fill {
    fill: var(--dt-whi-color);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.read-more {
    padding: 1.1rem 2.2rem 0.8rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--dt-whi-color);
    background-color: var(--dt-sec-color);
    text-decoration: none;
    display: inline-block;
}

.read-more:hover,
.read-more:focus {
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
}

.media {
    display: flex;
    align-items: center;
}

.media-body {
    flex: 1;
}

.media .media-icon {
    margin-right: 2.5rem;
    flex-shrink: 0;
    color: var(--dt-pri-color);
    align-self: center;
    text-align: center;
}

.media .media-icon img,
.media .media-icon i {
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.media:hover .media-icon img,
.media:hover .media-icon i,
.media:focus-within .media-icon img,
.media:focus-within .media-icon i {
    -webkit-animation: icon-push 0.4s linear 1;
    animation: icon-push 0.4s linear 1;
}

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

/* Preloader */

.prealoader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dt-whi-color);
    z-index: 999999;
}

.spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7rem;
    text-align: center;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.spinner > div {
    width: 1.8rem;
    height: 1.8rem;
    background-color: var(--dt-sec-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: preloader 1.4s infinite ease-in-out both;
    animation: preloader 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

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


/* @keyframes */

@keyframes preloader {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes rubber_band {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes icon-push {
    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@keyframes hamburger {
    0% {
        width: 100%;
    }
    50% {
        width: 50%;
    }
    100% {
        width: 100%;
    }
}

@keyframes is_sticky_on {
    0% {
        margin-top: -15rem;
        opacity: 0
    }
    50% {
        margin-top: -9rem;
        opacity: 0.5
    }
    100% {
        margin-top: 0;
        opacity: 1
    }
}

@keyframes rightCaret {
    0% {
        -ms-transform: translateX(-1px);
        -webkit-transform: translateX(-1px);
        transform: translateX(-1px);
    }
    50% {
        -ms-transform: translateX(2px);
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100% {
        -ms-transform: translateX(-1px);
        -webkit-transform: translateX(-1px);
        transform: translateX(-1px);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.5);
        opacity: 0.3;
    }
    to {
        transform: scale(1.75);
        opacity: 0;
    }
}

@keyframes ripple_small {
    0% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.75);
        opacity: 0.3;
    }
    to {
        transform: scale(2.25);
        opacity: 0;
    }
}

@keyframes rotate-in-2-fwd {
    0% {
        -webkit-transform:translateZ(-20rem) rotate(-45deg);
        transform:translateZ(-20rem) rotate(-45deg);opacity:0
    }
    100% {
        -webkit-transform:translateZ(0) rotate(0);
        transform:translateZ(0) rotate(0);opacity:1
    }
}

@keyframes floating--updown {
    0%, 100% {
        -webkit-transform: translateY(-3rem);
        transform: translateY(-3rem);
    }

    50% {
        -webkit-transform: translateY(-1.5rem);
        transform: translateY(-1.5rem);
    }
}

@keyframes dance_hover {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes leftani {
    0% {
        transform:translateX(-15px)
    }
    50% {
        transform:translateX(15px)
    }
    100% {
        transform:translateX(-15px)
    }
}

@keyframes floating--rotate {
    from {
        transform:rotate(0)
    }
    to {
        transform:rotate(360deg)
    }
}

@keyframes floating--area {
    0% {
        transform:translate(0) rotate(0deg)
    }
    20% {
        transform:translate(73px,-1px) rotate(36deg)
    }
    40% {
        transform:translate(141px,72px) rotate(72deg)
    }
    60% {
        transform:translate(83px,122px) rotate(108deg)
    }
    80% {
        transform:translate(-40px,72px) rotate(144deg)
    }
    to {
        transform:translate(0) rotate(0deg)
    }
}

/* Owl Dot */

.owl-carousel .owl-dots button {
    outline: none;
}

.dt__dotstyle--three.owl-carousel .owl-dots,
.dt__dotstyle--two.owl-carousel .owl-dots,
.dt__dotstyle--one.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 3rem;
}

.dt__dotstyle--one.owl-carousel .owl-dots button {
    border-radius: 50%;
    background: transparent;
    width: 2rem;
    height: 2rem;
    margin: 0.5rem;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0);
    -webkit-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
}

.dt__dotstyle--one.owl-carousel .owl-dots button:hover,
.dt__dotstyle--one.owl-carousel .owl-dots button.active {
    border: none;
    border-radius: 50%;
    background: transparent;
    -webkit-box-shadow: 0 0 0 0.2rem var(--dt-pri-color);
    box-shadow: 0 0 0 0.2rem var(--dt-pri-color);
}

.dt__dotstyle--one.owl-carousel .owl-dots button span {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 50%;
    background-color: rgba(189, 189, 189, 0.6);
    text-indent: -999em;
    cursor: pointer;
    position: absolute;
    -webkit-transition: background-color 0.3s ease,-webkit-transform 0.3s ease;
    transition: background-color 0.3s ease,transform 0.3s ease;
}

.dt__dotstyle--one.owl-carousel .owl-dots button:hover span,
.dt__dotstyle--one.owl-carousel .owl-dots button.active span {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    background-color: var(--dt-pri-color);
}

.dt__dotstyle--two.owl-carousel .owl-dots .owl-dot {
    position: relative;
    border-radius: 50%;
    background-color: rgba(0,0,0,0);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--dt-pri-color);
}

.dt__dotstyle--two.owl-carousel .owl-dots .owl-dot+.owl-dot {
    margin-left: 1rem;
}

.dt__dotstyle--two.owl-carousel .owl-dots .owl-dot:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: var(--dt-pri-color);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.dt__dotstyle--two.owl-carousel .owl-dots .owl-dot:hover:after,
.dt__dotstyle--two.owl-carousel .owl-dots .owl-dot.active:after {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.dt__dotstyle--three.owl-carousel .owl-dots .owl-dot {
    width: 7px;
    height: 7px;
    margin: 0 7px;
    border-radius: 50%;
    background-color: var(--dt-pri-color);
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.dt__dotstyle--three.owl-carousel .owl-dots .owl-dot.active {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
}


/* Owl Nav */

.owl-carousel.owl-theme .owl-nav button {
    width: 5rem;
    height: 5rem;
    border-radius: 0.5rem;
    font-size: 2.3rem;
    outline: none;
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
    border: 1px solid rgba(189, 189, 189, 0.2);
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.owl-carousel.owl-theme .owl-nav button:hover {
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
    border-color: var(--dt-pri-color);
}

.dt__slider--thumbnav .owl-carousel.owl-theme .owl-nav button {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-blend-mode: multiply;
}

.dt__slider--thumbnav .owl-carousel.owl-theme .owl-nav button:not(:hover) {
    background-color: rgba(0, 0, 0, 0.6);
    border-color: rgba(189, 189, 189, 0.2);
}

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


/*===== Widget Commmon =====*/

.widget .widget-title {
    position: relative;
    font-size: 2.2rem;
    line-height: 3rem;
    margin-bottom: 1.6rem;
}

.widget--left,
.widget--right,
.widget--center {
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 5.2rem;
    display: inline-flex;
    align-items: center;
}

.widget--left {
    justify-content: flex-start;
}

.widget--center {
    justify-content: center;
}

.widget--right {
    justify-content: flex-end;
}

.widget--right li a {
    margin-left: auto;
}

.widget--left li a {
    margin-right: auto;
}

.widget--right .widget,
.widget--left .widget {
    padding: 0 1.5rem;
    position: relative;
}

/*.widget--left .widget:nth-child(2n+3),*/
.widget--left .widget:first-child{
    padding-left: 0;
}

.widget--right .widget:nth-child(n+2) {
    padding: 0 1.5rem;
}

.widget--right .widget:nth-child(2n+4),
.widget--right .widget:first-child {
    padding-left: 0;
}

.widget--right .widget:last-child:not(:first-child) {
    padding-right: 0;
}

.widget_recent_comments ol,
.widget > ul,
.widget div > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget li {
    list-style: none;
    position: relative;
    z-index: 0;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.widget ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a {
    position: relative;
    z-index: 0;
    display: inline-block;
    outline: none;
}

.widget:not(.widget_payment):not(.widget_social) li a:not(:hover, :focus) {
    text-decoration: none;
    color: inherit;
}

.widget li a:before,
.widget li a:after {
    font-family: FontAwesome;
    position: absolute;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.widget li a:hover,
.widget li a:focus {
    color: var(--dt-pri-color);
}

/*===== Widget Social =====*/

.widget.widget_social {
    position: relative;
    z-index: 0;
}

.widget_social ul {
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_social li {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: visible;
    list-style: none;
    margin: 0;
    margin-left: 1rem;
    overflow: visible;
    list-style: none;
}

body .widget_social li:first-child {
    margin-left: 0;
}

body .widget_social li {
    margin-top: 1rem;
}

body .widget_social ul {
    margin-top: -1rem;
}

.widget_social li a {
    width: 4rem;
    height: 4rem;
    text-align: center;
    font-size: 1.6rem;
    position: relative;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: var(--dt-pri-color);
    color: var(--dt-whi-color);
    text-decoration: none;
}

.widget_social li a i {
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.widget_social li a:focus i,
.widget_social li a:hover i {
    color: var(--dt-whi-color);
    -webkit-animation: rubber_band 1s both 1;
    animation: rubber_band 1s both 1;
}

.widget_payment ul,
.widget_payment li {
    list-style: none;
    padding: 0;
    line-height: 0;
}

.widget_payment li a {
    line-height: 0;
    font-size: 2.2rem;
}

.widget_payment li:not(:last-child) a {
    margin-right: 1rem;
    border-right: 0.1rem solid rgba(68, 68, 68, 0.75);
    padding-right: 1.5rem;
}

.widget_payment li a i::before,
.widget_payment li a i {
    line-height: 0.5;
}

.widget_payment li,
.widget_social li {
    display: inline-block;
}

/*=============== Contact List Start =============*/

.widget.widget_contact {
    margin-top: -1rem;
}

.contact__list {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.contact__list i,
.contact__list img {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 2rem;
    width: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 1.5rem;
    position: relative;
    color: var(--dt-pri-color);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0);
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

.dt__contactoffice-item:hover .icon img,
.dt__contactoffice-item:focus-within .icon img,
.dt__contactinfo:hover i::before,
.dt__contactinfo:hover img,
.dt__contactinfo:focus-within i::before,
.dt__contactinfo:focus-within img,
.contact__list:hover i::before,
.contact__list:focus-within i::before,
.contact__list:hover img,
.contact__list:focus-within img {
    -webkit-animation: icon-push 0.4s linear 1;
    animation: icon-push 0.4s linear 1;
}

.contact__body {
    text-decoration: none;
    display: inline-block;
    text-align: left;
    color: inherit;
}

.contact__body > * {
    display: block;
    line-height: normal;
}

.contact__body a {
    text-decoration: none;
}

.contact__body a:not(:hover, :focus) {
    color: inherit;
}

.contact__body .title {
    line-height: 1.2;
    margin-bottom: 0;
}

.contact__body .description {
    font-size: 1.6rem;
    margin: 0;
    word-break: break-word;
    margin-top: 0.1rem;
}

/* --/-- */

/* dt_latest_post_widget */

.dt__recent-post {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.dt__recent-post+.dt__recent-post {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(189, 189, 189, 0.2);
}

.dt__recent-post .dt__recent-post-img {
    flex-shrink: 0;
    height: 6.8rem;
    width: 5.8rem;
    margin-right: 1.2rem;
}

.dt__recent-post .dt__recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dt__recent-post .dt__recent-post-text h5 {
    font-size: 1.6rem;
}

.dt__recent-post .dt__recent-post-text h5 a {
    outline: none;
}

.dt__recent-post .dt__recent-post-text h5 a:not(:hover, :focus) {
    text-decoration: none;
    color: inherit;
}

.dt__recent-post .dt__recent-post-text span {
    margin-top: 0.4rem;
    display: block;
    font-size: 1.4rem;
}

.dt__recent-post .dt__recent-post-text span i {
    color: var(--dt-pri-color);
    margin-right: 0.5rem;
}

/* --/-- */

/* Mailchimp */

.email-form-one,
.email-form-two,
.email-form-three,
.email-form-four {
    position: relative;
}

.mc4wp-form .form-group {
    position: relative;
    margin: 0;
    width: 100%;
}

.email-form-one .form-group {
    padding-right: 4rem;
}

.email-form-two .form-group {
    padding-right: 6rem;
}

.mc4wp-form .form-group input[type="text"],
.mc4wp-form .form-group input[type="email"] {
    line-height: 4.3rem;
    display: block;
    font-size: 1.4rem;
    height: 6rem;
    width: 100%;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    border: none;
    border-radius: 0;
    padding: 1rem 1.5rem 1rem 2rem;
}

.email-form-one .form-group input[type="text"],
.email-form-one .form-group input[type="email"] {
    border-radius: 5rem;
    padding: 1rem 1.5rem 1rem 3rem;
    z-index: 1;
}

.email-form-three .form-group input[type="text"],
.email-form-three .form-group input[type="email"] {
    min-height: 5.8rem;
}

.mc4wp-form .form-group .submit-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 5rem;
    border: none;
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dt-whi-color);
    line-height: 5rem;
    transition: var(--dt-transition);
    -webkit-transition: var(--dt-transition);
    background-color: var(--dt-pri-color);
}

.email-form-one .form-group .submit-btn {
    width: 7rem;
    text-align: right;
    padding: 0 1.8rem 0 0;
    border-radius: 0 5rem 5rem 0;
}

.email-form-two .form-group .submit-btn {
    text-align: center;
    padding: 0;
    border-radius: 0;
}

.email-form-three .form-group .submit-btn {
    right: 1rem;
    top: 50%;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    padding: 0;
    border-radius: 0;
    transform: translateY(-50%);
}

.form-group .submit-btn.fa {
    font-family: 'FontAwesome';
}

.mc4wp-form .email-form-four .form-group input[type="text"],
.mc4wp-form .email-form-four .form-group input[type="email"] {
    width: 78%;
    border-radius: 0.5rem;
}

.mc4wp-form .email-form-four .form-group .submit-btn {
    padding: 0;
}

/* --/-- */


/*-------------------------------------------------------------- # AS Main CSS Style :) --------------------------------------------------------------*/

.dt__header {
    position: relative;
    color: var(--dt-sec-color);
    background-color: var(--dt-whi-color);
    z-index: 9;
}

.dt__header-topbar {
    font-size: 1.45rem;
    background: var(--dt-gray-high);
    border-bottom: 0.1rem solid rgba(189, 189, 189, 0.2);
}

.header--two .dt__logobar {
    max-height: 90px;
}

@media (min-width: 75em) {
    .dt__header-topbar {
        font-size: 1.6rem;
    }
}

.dt__header .dt-col-2.dt-my-auto {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 19.666667%;
    max-width: 19.666667%;
}

.dt__header .dt-col-2.dt-my-auto+.dt-col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 80.333333%;
    max-width: 80.333333%;
}

.dt__header-widget .widget--left .widget:not(:last-child):after {
    position: absolute;
    right: 0;
    top: 30%;
    content: "";
    min-height: 5.2rem;
    width: 0.1rem;
    transform: translateY(-30%);
    background: rgba(189, 189, 189, 0.2);
}

.dt__header-widget a:not(:hover, :focus) {
    color: inherit;
}

.header .widget:not(.widget_social, .widget_nav_menu) li,
.widget_tag_cloud a,
.wp-block-tag-cloud a {
    display: inline-block;
    padding: 0;
}

.header .widget:not(.widget_nav_menu, .widget_social) li {
    margin: 0 1rem 0.5rem 0;
}

.header .widget.widget_nav_menu .menu > li {
    display: inline-block;
    margin: 0 1rem 0 0;
}

.header .widget.widget_nav_menu .menu > li ul a {
    display: block;
}

.header .widget.widget_nav_menu a img {
    display: inline-block;
    margin-right: 0.2rem;
}

.header .widget.widget_nav_menu a:not(:hover, :focus) {
    color: var(--dt-sec-color);
}

.header .widget.widget_nav_menu .menu > li.pll-parent-menu-item {
    padding-left: 3.4rem;
}

.header .widget.widget_nav_menu .menu > li.pll-parent-menu-item:before {
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: var(--dt-pri-color);
    border-radius: 10rem;
}

.header .widget.widget_nav_menu .menu > li.pll-parent-menu-item:after {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    top: 0;
    left: 0.5rem;
    bottom: 0;
    margin: auto;
    background: var(--dt-whi-color);
    border-radius: 10rem;
}

.header .widget.widget_nav_menu .menu > li.pll-parent-menu-item a::after {
    font-weight: 600;
}

.header .widget:not(.widget_social) li:last-child,
.widget_tag_cloud a:last-child,
.wp-block-tag-cloud a:last-child {
    margin: 0;
}

.dt__header-widget ul li span, .dt__header-widget a {
    display: inline-block;
}

.dt__header-widget ul li span, .dt__header-widget a,
.contact__body > * {
    text-decoration: none;
    position: relative;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.dt__header-widget a:hover span.title,
.dt__header-widget a:focus span.title {
    color: var(--dt-pri-color);
}

.dt__header-widget .widget:not(.widget_social) li a {
    width: max-content;
}

.dt__header-widget .widget_nav_menu i {
    font-size: 2rem;
    margin-right: 0.3rem;
    color: var(--dt-pri-color);
    vertical-align: middle;
}

.dt__header-widget .widget:not(.widget_social, .widget_contact) i,
.dt__header-widget .widget:not(.widget_social, .widget_contact, .widget-media-gallery, .widget_media_image) img {
    display: inline-block;
}

.dt__header-widget .widget:not(.widget_media_gallery, .widget_social, .widget_contact, .widget-media-gallery, .widget_media_image) img {
    height: 2rem;
    object-fit: cover;
}

.header .widget li:last-child {
    margin-right: 0;
}

.dt__header-widget .gallery .gallery-item a {
    display: block;
    height: 7rem;
}

.dt__header-widget .widget img {
    width: 5rem;
}

.dt__header-widget .gallery {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.dt__header-widget .gallery .gallery-item {
    -ms-flex: 1;
    flex: 1;
    margin: 0 0.6rem 0 0;
    padding: 0;
}

.dt__header-widget .widget_media_video {
    display: block;
    width: 100%;
}

.dt__header-widget .widget_media_video .wp-video .mejs-container {
    width: 100% !important;
    max-height: 17rem;
}

.dt__header-widget .widget_media_video .wp-video-shortcode video,
.dt__header-widget .widget_media_video video.wp-video-shortcode {
    max-height: 17rem;
}

.dt__header-widget .widget .title {
    font-size: inherit;
    color: inherit;
    font-weight: 600;
}

.dt__header-widget .widget_meta a {
    font-size: 1.2rem;
}

.dt__header-widget .widget_social li a {
    width: 3.4rem;
    height: 3.4rem;
    font-size: inherit;
    color: var(--dt-whi-color);
}

.dt__mobilenav,
.dt__header-navwrapper,
.dt__navbar {
    width: 100%;
}

.dt__header-navwrapper {
    position: relative;
}

.dt__header-navwrapperinner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}

.dt__header-navwrapperinner,
.dt__navbar-menu {
    min-height: 9rem;
}

.dt__header-widget .contact__list i,
.dt__header-widget .contact__list img {
    width: auto;
    margin-right: 0.8rem;
}

/*=============== Desktop Menu =============*/

.site--logo img {
	width: 100%;
    max-width: 15.8rem;
}

.site--logo a {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: normal;
    width: 100%;
    max-width: max-content;
    height: auto;
    margin: auto 0;
    z-index: 9;
}

.site--logo a:not(:hover, :focus) {
    color: inherit;
    text-decoration: none;
}

.is--sticky.on {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 99;
    background-color: var(--dt-whi-color);
    -webkit-animation: is_sticky_on 1s ease-out;
    animation: is_sticky_on 1s ease-out;
    -webkit-box-shadow: 0 0.8rem 2.5rem 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0.8rem 2.5rem 0 rgba(0, 0, 0, 0.05);
}

.dt__navbar-wrapper.is--sticky.on {
    padding: 0 0;
}

.dt__navbar-menu {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
    align-self: stretch;
    width: 100%;
    height: 100%;
}

.dt__navbar-nav {
    text-align: right;
    position: relative;
}

.dt__navbar-mainmenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

.dt__navbar-nav .dt__navbar-mainmenu {
    display: inline-block;
}

.dt__navbar-mainmenu li {
    list-style: none;
    position: relative;
}

.dt__navbar-nav .dt__navbar-mainmenu > li {
    display: inline-block;
    margin: 0 -0.3rem;
}

.dt__navbar-mainmenu > li > a,
.dropdown-menu li a {
    position: relative;
    display: block;
    z-index: 0;
    font-family: var(--dt-title-font);
    font-weight: 700;
    line-height: 2;
    white-space: normal;
}

.dt__navbar-mainmenu .dropdown-menu li a {
    color: var(--dt-sec-color);
}

.dt__navbar-mainmenu li > a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

.dt__navbar-mainmenu li > a:focus {
    text-decoration: underline;
    text-underline-offset: 0.1rem;
}

.dt__navbar-mainmenu > li > a {
    white-space: normal;
    border: 0;
    border-radius: 0;
}

.dt__navbar-nav .dt__navbar-mainmenu > li > a {
    margin: 0 1.2rem;
	line-height: 9rem;
    display: inline-flex;
}

.header .widget_nav_menu .menu-item-has-children > a,
.footer .widget_nav_menu .menu-item-has-children > a,
.footer .dt__navbar-mainmenu > .menu-item-has-children > a,
.dt__navbar-nav .dt__navbar-mainmenu > .menu-item-has-children > a {
    padding-right: 1.6rem !important;
}

.header .widget_nav_menu .menu-item-has-children > a:after,
.footer .widget_nav_menu .menu-item-has-children > a:after,
.footer .dt__navbar-mainmenu .menu-item-has-children > a:after,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu .menu-item-has-children > a:after,
.dt__navbar-nav .dt__navbar-mainmenu .menu-item-has-children > a:after {
    content: '\f107';
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: inherit;
    font-size: 120%;
    font-weight: 500;
    text-shadow: 0 0 black;
}

.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu .menu-item-has-children > a {
    padding-right: 3rem;
}

.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu .menu-item-has-children > a:after {
    content: '\f105';
    right: 1.6rem;
}

.menu-wrap .dropdown-menu li a sup,
.menu-wrap .dropdown-menu li a sub,
.dt__mobilenav .dt__navbar-mainmenu li.active > a,
.dt__mobilenav .dt__navbar-mainmenu li.focus > a,
.dt__mobilenav .dt__navbar-mainmenu li:hover > a,
.dt__navbar-nav .dt__navbar-mainmenu li.active > a,
.dt__navbar-nav .dt__navbar-mainmenu > li.focus > a,
.dt__navbar-nav .dt__navbar-mainmenu > li:hover > a {
    color: var(--dt-pri-color);
}

/* Menu Active Style */

.menu__active-one .dt__navbar-nav .dt__navbar-mainmenu > li > a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 0.4rem;
    background-color: var(--dt-pri-color);
    opacity: 0;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.menu__active-one .dt__navbar-nav .dt__navbar-mainmenu > li.active > a:before,
.menu__active-one .dt__navbar-nav .dt__navbar-mainmenu > li.focus > a:before,
.menu__active-one .dt__navbar-nav .dt__navbar-mainmenu > li:hover > a:before {
    opacity: 1;
    width: 100%;
}

.menu__active-two .dt__mobilenav-right > ul,
.menu__active-two .dt__navbar-right > ul {
    padding-left: 1.8rem;
}

.menu__active-two .dt__navbar-list-right > li:not(:last-child) {
    margin-right: 2rem;
}

.menu__active-two .dt__navbar-nav .dt__navbar-mainmenu > li > a {
    margin: 0 0.62rem;
    padding: 0 1.4rem;
    line-height: 4rem;
}

.menu__active-two .dt__navbar-nav .dt__navbar-mainmenu > li > a:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 3.5rem;
	border-radius: 0.5rem;
    background-color: var(--dt-pri-color);
    z-index: -1;
    opacity: 0;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.menu__active-two .dt__navbar-nav .dt__navbar-mainmenu > li.menu-item-has-children > a:before {
    width: calc(100% + 0.8rem);
}

.menu__active-two .dt__navbar-nav .dt__navbar-mainmenu > li.active > a:before,
.menu__active-two .dt__navbar-nav .dt__navbar-mainmenu > li.focus > a:before,
.menu__active-two .dt__navbar-nav .dt__navbar-mainmenu > li:hover > a:before {
    opacity: 0.15;
}

/* // */

.footer-copyright .widget_nav_menu .sub-menu,
.footer .dt__navbar-mainmenu .dropdown-menu,
.dt__navbar-cart-item .dt__navbar-shopcart,
.header .widget_nav_menu .sub-menu,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu {
    position: absolute;
    text-align: left;
    color: var(--dt-sec-color);
    background-color: var(--dt-whi-color);
    width: 22.5rem;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform-origin: center top 0;
    -webkit-transform-origin: center top 0;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
    -webkit-box-shadow: 0 1.6rem 5rem rgba(0, 0, 0, 0.08);
    box-shadow: 0 1.6rem 5rem rgba(0, 0, 0, 0.08);
}

.dt__navbar-cart-item .dt__navbar-shopcart,
.header .widget_nav_menu .sub-menu,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu {
    top: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;
    z-index: 9;
}

.footer-copyright .widget_nav_menu .sub-menu,
.footer .dt__navbar-mainmenu .dropdown-menu {
    top: auto;
    right: auto;
    bottom: 100%;
    left: auto;
    margin: 0 auto;
}

.dt__navbar-cart-item:hover .dt__navbar-shopcart,
.dt__navbar-cart-item:focus-within .dt__navbar-shopcart,
.footer-copyright .widget_nav_menu .menu-item:hover > .sub-menu,
.footer-copyright .widget_nav_menu .menu-item.focus > .sub-menu,
.header .widget_nav_menu .menu-item:hover > .sub-menu,
.header .widget_nav_menu .menu-item.focus > .sub-menu,
.footer .dt__navbar-mainmenu .menu-item:hover > .dropdown-menu,
.footer .dt__navbar-mainmenu .menu-item.focus > .dropdown-menu,
.dt__navbar-nav .dt__navbar-mainmenu .menu-item:hover > .dropdown-menu,
.dt__navbar-nav .dt__navbar-mainmenu .menu-item.focus > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
}

.footer-copyright .widget_nav_menu .sub-menu li > a,
.header .widget_nav_menu .sub-menu li > a,
.footer .dt__navbar-mainmenu .dropdown-menu li > a,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li > a {
    padding: 1rem 1.8rem;
    border-bottom: 0.1rem solid rgba(241,241,241,1);
    position: relative;
}

.footer-copyright .widget_nav_menu .sub-menu li:last-child > a,
.header .widget_nav_menu .sub-menu li:last-child > a,
.footer .dt__navbar-mainmenu .dropdown-menu li:last-child > a,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li:last-child > a {
    border-bottom: 0;
}

.footer .dt__navbar-mainmenu .dropdown-menu li.active > a,
.footer .dt__navbar-mainmenu .dropdown-menu li:hover > a,
.footer .dt__navbar-mainmenu .dropdown-menu li.focus > a,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li.active > a,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li:hover > a,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li.focus > a {
    color: var(--dt-whi-color);
    padding-left: 2.15rem;
}

.footer .dt__navbar-mainmenu .dropdown-menu li a:before,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-color: var(--dt-pri-color);
    z-index: -1;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.footer .dt__navbar-mainmenu .dropdown-menu li.active > a:before,
.footer .dt__navbar-mainmenu .dropdown-menu li:hover > a:before,
.footer .dt__navbar-mainmenu .dropdown-menu li.focus > a:before,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li.active > a:before,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li:hover > a:before,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li.focus > a:before {
    height: 100%;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.footer .dt__navbar-mainmenu .menu-item .dropdown-menu .dropdown-menu,
.dt__navbar-nav .dt__navbar-mainmenu .menu-item .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    -webkit-transform: none;
    transform: none;
}

.header .widget_nav_menu .sub-menu li .sub-menu li .sub-menu,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li .dropdown-menu li .dropdown-menu {
    left: auto;
    right: 100%;
}

.header .widget_nav_menu .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
    right: auto;
    left: 100%;
}

.header .widget_nav_menu .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu,
.dt__navbar-nav .dt__navbar-mainmenu .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
    right: auto;
    left: 100%;
}

/* --/-- */

/*=============== Mobile Menu =============*/

button.hamburger {
    background-color: transparent;
    outline-offset: 5px;
    outline-color: transparent;
}

button.hamburger:focus {
    outline-color: var(--dt-sec-color);
}

.hamburger {
    width: 2.8rem;
    height: 2.6rem;
    vertical-align: middle;
    overflow: hidden;
    display: block;
    padding: 0;
    border: none;
    border-radius: 0;
}

.hamburger span {
    height: 2px;
    width: 100%;
    display: block;
    margin: 0 0 6px;
    background-color: var(--dt-sec-color);
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.hamburger span:nth-child(2) {
    width: 75%;
}

.hamburger span:first-child {
    margin-top: 0;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.hamburger:hover span,
.hamburger:focus span {
    background-color: var(--dt-pri-color);
}

.hamburger:not(.active):hover span:first-child,
.hamburger:not(.active):focus span:first-child {
    -webkit-animation: hamburger 0.8s infinite ease-in-out alternate;
    animation: hamburger 0.8s infinite ease-in-out alternate;
}

.hamburger:not(.active):hover span:nth-child(2),
.hamburger:not(.active):focus span:nth-child(2) {
    -webkit-animation: hamburger 0.8s infinite ease-in-out alternate forwards 150ms;
    animation: hamburger 0.8s infinite ease-in-out alternate forwards 150ms;
}

.hamburger:not(.active):hover span:last-child,
.hamburger:not(.active):focus span:last-child {
    -webkit-animation: hamburger 0.8s infinite ease-in-out alternate forwards 300ms;
    animation: hamburger 0.8s infinite ease-in-out alternate forwards 300ms;
}

.hamburger.active span {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
}

.hamburger.active span:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.hamburger.active span:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.dt__mobilenav-menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 0;
}

.dt__mobilenav-menu ul, .dt__mobilenav-menu ul li {
    padding: 0;
    list-style: none;
    position: relative;
    border: 0;
}

.dt__mobilenav-logo {
    text-align: left;
	max-width: 26rem;
}

.dt__mobilenav-toggles {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.dt__mobilenav-right .dt__navbar-list-right {
    padding-left: 0;
    padding-right: 1.6rem;
}

.dt__mobilenav-topbar-toggle {
    display: inline-block;
    position: relative;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    padding: 0;
    cursor: pointer;
    font-size: 2rem;
    margin: 0.6rem 0;
    border: 0.1rem solid rgba(189, 189, 189, 0.2);
    border-radius: 100%;
    overflow: hidden;
    z-index: 0;
}

button.dt__mobilenav-topbar-toggle {
    color: var(--dt-sec-color);
    outline-offset: -0.4rem;
    background-color: var(--dt-gray-high);
}

button.dt__mobilenav-topbar-toggle.active {
    background-color: var(--dt-whi-color);
}

.dt__mobilenav-topbar-toggle i {
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

button.dt__mobilenav-topbar-toggle.active i {
    color: var(--dt-pri-color);
}

.dt__mobilenav-topbar-toggle.active i {
    -webkit-transform: rotate(180deg) translateY(0.2rem);
    transform: rotate(180deg) translateY(0.2rem);
}

.dt__mobilenav-mainmenu-content {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    overflow: hidden;
    z-index: 99999;
}

.dt__mobilenav-mainmenu-content:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: inherit;
    z-index: -1;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.dt__mobilenav-mainmenu-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    max-width: 50rem;
    height: 100%;
    padding-top: 6.8rem;
    padding-bottom: 2rem;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: left;
    color: var(--dt-sec-color);
    background: var(--dt-whi-color);
    -webkit-transform: translateX(-150%);
    transform: translateX(-150%);
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
}

@media (max-width: 25.875em) {
    .dt__mobilenav-mainmenu-inner {
        width: 100%;
    }
}

.dt__mobilenav-mainmenu--active .dt__mobilenav-mainmenu-inner {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.dt__mobilenav-mainmenu-inner .dt__navbar-mainmenu {
    height: 100%;
    overflow-x: hidden;
    overflow-y: overlay;
    -ms-touch-action: overlay;
    touch-action: auto;
}

.dt__mobilenav-mainmenu-inner > ul > li:first-child {
    border-top: 0.1rem solid rgba(189, 189, 189, 0.2);
}

.dt__mobilenav-mainmenu-inner > ul > li {
    border-bottom: 0.1rem solid rgba(189, 189, 189, 0.2);
}

.dt__mobilenav-mainmenu-inner .dt__navbar-mainmenu > li a {
    width: 100%;
    padding: 0;
    padding-left: 1.5rem;
}

.dt__mobilenav-mainmenu-inner ul li.menu-item-has-children {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.dt__mobilenav-mainmenu-inner .dropdown-menu li:not(:last-child) {
    border-bottom: 0.1rem solid rgba(189, 189, 189, 0.2);
}

.dt__mobilenav-mainmenu-inner li.menu-item-has-children ul.dropdown-menu li > a {
    padding-left: 2.5rem;
    width: 100%;
}

.dt__mobilenav-mainmenu-inner .menu-item-has-children > a {
    flex: 1;
}

.dt__mobilenav-mainmenu-inner .dropdown-menu {
    margin: 0;
    float: none;
    clear: both;
    display: none;
    background: none;
    border-top: 0.1rem solid rgba(189, 189, 189, 0.2);
    width: 100%;
    padding: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dt__mobilenav-mainmenu-inner .menu-item a {
    display: inline-block;
    letter-spacing: 0.05rem;
    line-height: 4.3rem;
}

.dt__mobilenav-mainmenu-inner .menu-item-has-children.current > a {
    margin: 0;
    color: var(--sp-primary);
}

.site--close {
    padding: 0;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    display: inline-block;
    border-width: 0;
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
}

button.site--close {
    background-color: var(--dt-sec-color);
}

.site--close:before,
.site--close:after {
    transform: rotate(-45deg);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -0.1rem;
    margin-left: -1.1rem;
    display: block;
    height: 2px;
    width: 2.2rem;
    background-color: var(--dt-whi-color);
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.site--close:after {
    transform: rotate(-135deg);
}

.site--close:hover:before,
.site--close:hover:after,
.site--close:focus:before,
.site--close:focus:after {
    transform: rotate(0deg);
}

.dt__mobilenav-dropdown-toggle {
    width: 100%;
    max-width: 4.4rem;
    text-align: center;
}

.dt__mobilenav-mainmenu-content .dt__mobilenav-dropdown-toggle button {
    cursor: pointer;
    flex-basis: 10%;
    width: 100%;
    text-align: center;
    line-height: 4.4rem;
    font-size: 1.8rem;
    font-weight: 900;
    padding: 0 0.72rem;
    border: 0;
    border-radius: 0;
    color: var(--dt-sec-color);
    background: none;
    border-left: 0.1rem solid rgba(189, 189, 189, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.dt__mobilenav-mainmenu-content .dt__mobilenav-dropdown-toggle button:before {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    display: block;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.dt__mobilenav-mainmenu-content .menu-item-has-children.current > .dt__mobilenav-dropdown-toggle > button:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.footer .dt__mobilenav-dropdown-toggle {
    display: none;
}

@media (min-width: 62em) {
    .dt__mobilenav-dropdown-toggle {
        display: none;
    }
}

.dt__mobilenav-topbar {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background-color: var(--dt-pri-color);
}

.dt__mobilenav-topbar-content {
    display: none;
    width: 100%;
    height: auto;
    padding: 1.7rem 0 1.8rem;
    text-align: left;
    color: var(--dt-sec-color);
    background-color: var(--dt-whi-color);
    border-bottom: 0.1rem solid rgba(189, 189, 189, 0.2);
}

.dt__mobilenav-topbar-content .dt__header-widget+.dt__header-widget {
    display: none;
}

.dt__mobilenav-topbar-content .dt__header-widget > .dt-container {
    padding: 0;
}

.dt__mobilenav-topbar-content .dt__header-widget .widget {
    margin-bottom: 1.6rem;
}

.dt__mobilenav-topbar-content .widget--right .widget:last-child {
    margin-bottom: 0;
}

.dt__mobilenav-topbar-content .widget--right .widget.widget_social:first-child:before {
    background: none;
}

.dt__mobilenav-topbar-content .dt__header-widget .widget .contact__list {
    padding-left: 0;
}

@media (max-width: 61.938em) {
    .dt__mobilenav-topbar-content .widget--left,
    .dt__mobilenav-topbar-content .widget--right,
    .dt__mobilenav-topbar-content .widget--center {
        justify-content: center;
        text-align: center;
    }
    .dt__mobilenav-topbar-content .dt__header-widget .widget {
        margin-bottom: 0;
    }
    .dt__mobilenav-topbar-content .dt__header-widget .widget--left .widget:not(:last-child):after {
        display: none;
    }
}

@media (max-width: 35.938em) {
    .dt__mobilenav-topbar-content .widget--left,
    .dt__mobilenav-topbar-content .widget--right,
    .dt__mobilenav-topbar-content .widget--center {
        flex-wrap: wrap;
    }
    .dt__mobilenav-topbar-content .dt__header-widget .widget .contact__list {
        justify-content: center;
    }
    .dt__mobilenav-topbar-content .widget--right .widget,
    .dt__mobilenav-topbar-content .widget--left .widget {
        width: 100%;
        padding: 0;
    }
    .dt__mobilenav-topbar-content .dt__header-widget .widget {
        margin-bottom: 1.6rem;
    }
}

/* --/-- */

/*=============== Menu Right =============*/

@media (max-width: 28.75em) {
    .dt__mobilenav-right {
     
    }
}

.widget_shopping_cart ul.product_list_widget,
.dt__navbar-shopcart ul,
.dt__mobilenav-right > ul,
.dt__navbar-right > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dt__mobilenav-right > ul,
.dt__navbar-right > ul {
    padding-left: 2.2rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

@media (min-width: 62em) and (max-width: 74.938em) {
    .dt__mobilenav-right > ul,
    .dt__navbar-right > ul {
        padding-left: 1.2rem;
    }
    .dt__navbar-nav .dt__navbar-mainmenu > li > a {
        margin: 0 1rem;
    }
}

.dt__navbar-list-right > li:not(:last-child) {
    margin-right: 2.5rem;
}

.dt__mobilenav-right .dt__navbar-list-right > li:not(:last-child) {
    margin-right: 1rem;
}

/* Cart */

.dt__navbar-cart-item {
    position: relative;
    z-index: 0;
}

.dt__navbar-cart-item .dt__navbar-shopcart {
    width: 30.6rem;
    padding: 2rem;
    top: 96%;
    right: 0;
}

.widget_shopping_cart ul.product_list_widget {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 50rem;
    max-height: 50vh;
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li,
.widget_shopping_cart ul.product_list_widget li {
    display: block;
    list-style: none;
    margin: 0;
    padding: 1rem 0 0.5rem 7.5rem !important;
    padding-right: 3rem;
    min-height: 8rem;
    position: relative;
    overflow: hidden;
    vertical-align: top;
    line-height: 1.33;
    border-bottom: none;
}

.dt__navbar-list-right ul.product_list_widget li {
    margin-right: 0;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove,
a.remove {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.5rem !important;
    line-height: 2.4rem !important;
    border-radius: 100%;
    color: #ccc !important;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: 0.1rem solid currentColor;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove:hover,
.woocommerce .widget_shopping_cart .cart_list li a.remove:focus,
.woocommerce.widget_shopping_cart .cart_list li a.remove:hover,
.woocommerce.widget_shopping_cart .cart_list li a.remove:focus,
a.remove:hover,
a.remove:focus {
    color: var(--dt-sec-color) !important;
    background-color: transparent;
}

.quantity {
    opacity: 1;
    display: inline-block;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1.6rem;
    white-space: nowrap;
    vertical-align: top;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove,
.widget_shopping_cart ul.product_list_widget li a.remove {
    position: absolute;
    right: 0;
    left: auto;
    top: auto;
    z-index: 9;
}

.widget_shopping_cart ul.product_list_widget li a:not(.remove) {
    display: block;
    margin-bottom: 0.5rem;
    padding: 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    line-height: 1.3;
    text-decoration: none;
    color: var(--dt-sec-color);
}

.woocommerce .widget_shopping_cart .cart_list li a:not(.remove),
.woocommerce.widget_shopping_cart .cart_list li a:not(.remove) {
    position: unset;
}

.widget_shopping_cart ul.product_list_widget li a:not(.remove):hover,
.widget_shopping_cart ul.product_list_widget li a:not(.remove):focus {
    color: var(--dt-pri-color);
}

body.woocommerce .widget_shopping_cart ul.cart_list li img,
body.woocommerce .widget_shopping_cart ul.product_list_widget li img,
.widget_shopping_cart ul.product_list_widget li img {
    top: 1rem;
    position: absolute;
    left: 0;
    width: 6rem;
    height: 6rem;
    float: none;
    margin-right: 0;
    margin-bottom: 0.5rem;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.widget_shopping_cart ul.product_list_widget li .quantity {
    display: block;
    margin-top: 0.3rem;
    font-size: .85em;
    opacity: .6;
}

span.amount {
    white-space: nowrap;
    color: var(--dt-sec-color);
    font-weight: bold;
}

.woocommerce .widget_shopping_cart .cart_list li+li,
.woocommerce.widget_shopping_cart .cart_list li+li,
.widget_shopping_cart ul.product_list_widget li+li {
    border-top: 0.1rem solid rgba(189, 189, 189, 0.2) !important;
}

.widget_shopping_cart p.total {
    text-align: center;
    padding: 1rem 0 !important;
    border-top: 0.1rem solid rgba(189, 189, 189, 0.2) !important;
    border-bottom: 0.2rem solid rgba(189, 189, 189, 0.2);
    margin-bottom: 0.8rem;
}

.widget_shopping_cart .button:not(.add_to_cart_button) {
    width: 100%;
    margin: 0.8rem 0 0;
    text-align: center;
    text-decoration: none;
}

.widget_shopping_cart .button:not(.checkout):not(.add_to_cart_button) {
    border-color: var(--dt-sec-color);
    background-color: var(--dt-sec-color);
    color: var(--dt-whi-color);
}

.widget_shopping_cart .button.checkout {
    border-color: var(--dt-pri-color);
    background-color: var(--dt-pri-color);
    color: var(--dt-whi-color);
}

.widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
    margin: 0;
}

.cart--icon strong {
    border-radius: 0;
    font-weight: bold;
    margin: 0.3rem 0;
    border: 0.2rem solid var(--dt-sec-color);
    color: var(--dt-sec-color);
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.3rem;
    line-height: 1.7;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.dt__navbar-cart-item:hover .cart--icon strong,
.dt__navbar-cart-item:focus-within .cart--icon strong {
    background-color: var(--dt-sec-color);
    color: var(--dt-whi-color);
}

.cart--icon strong:after {
    bottom: 100%;
    margin-bottom: 0;
    margin-left: -0.7rem;
    height: 0.8rem;
    width: 1.4rem;
    left: 50%;
    content: " ";
    position: absolute;
    pointer-events: none;
    border: 0.2rem solid var(--dt-sec-color);
    border-top-left-radius: 9.9rem;
    border-top-right-radius: 9.9rem;
    border-bottom: 0;
    -webkit-transition: height .1s ease-out;
    transition: height .1s ease-out;
}

.dt__navbar-cart-item:hover .cart--icon strong:after,
.dt__navbar-cart-item:focus-within .cart--icon strong:after {
    height: 1rem;
}

/* Search Popup */

button.dt__navbar-search-toggle {
    border: 0;
    padding: 0;
    font-size: 1.8rem;
    color: #000;
    background-color: transparent;
}

button.dt__navbar-search-toggle:hover,
button.dt__navbar-search-toggle:focus {
    color: var(--dt-pri-color);
}

.search--header {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -54rem;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.dt__header-search--active .search--header {
    transform: translateY(0%);
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.search--header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 56rem;
    background-image: url("");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0;
    background-color: rgba(0,0,0,0.85);
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
    transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
}

.dt__header-search--active .search--header:before {
    transform: scale(1,1);
}

.search--header .dt__search-close {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -20rem;
    border-radius: 50%;
    text-align: center;    
    width: 7rem;
    height: 7rem;
    font-size: 3.2rem;
    line-height: 7rem;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search--header .dt__search-close i {
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
    width: 100%;
    height: 100%;
    border-radius: inherit;
    line-height: 6.5rem;
    font-weight: 400;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.search--header .dt__search-close:hover i,
.search--header .dt__search-close:focus i {
    background-color: var(--dt-whi-color);
    color: var(--dt-pri-color);
}

.dt__header-search--active .search--header .dt__search-close {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition-delay: 1500ms;
}

.search--header .dt__search-form {
    position: absolute;
    max-width: 70rem;
    top: 50%;
    left: 1.5rem;
    right: 1.5rem;
    overflow: hidden;
    margin: -3.5rem auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: var(--dt-sec-color);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.dt__header-search--active .search--header .dt__search-form {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transition-delay: 1200ms;
}

.search--header .dt__search-form input[type=text],
.search--header .dt__search-form input[type=search] {
    position: relative;
    display: block;
    font-size: 1.8rem;
    line-height: 5rem;
    color: var(--dt-sec-color);
    height: 6rem;
    min-height: 6rem;
    width: 100%;
    padding: 1rem 3rem;
    font-weight: 500;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search--header .dt__search-form input[type=submit],
.search--header .dt__search-form button {
    position: absolute;
    right: 0;
    top: 50%;
    width: 6rem;
    height: 6rem;
    background: transparent;
    text-align: center;
    font-size: 2rem;
    padding: 0;
    cursor: pointer;
    border: none;
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
    border-radius: 0 0.5rem 0.5rem 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search--header .dt__search-form button i {
    color: var(--dt-whi-color);
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.search--header .dt__search-form button:focus i,
.search--header .dt__search-form button:hover i {
    color: var(--dt-whi-color);
}

/* Sidebar */

.dt__sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .3s ease-in .6s;
    transition: all .3s ease-in .6s;
}

.sidebar--active .dt__sidebar {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .6s ease-in .0s;
    transition: all .6s ease-in .0s;
}

.dt__sidebar .off--layer {
    left: 100%;
}

.sidebar--active .dt__sidebar .off--layer {
    left: 0%;
    -webkit-transition: all .8s ease-out 0s;
    transition: all .8s ease-out 0s;
}

.dt__sidebar .dt__sidebar-wrapper {
    position: relative;
    max-width: 34.5rem;
    margin-left: auto;
    padding: 4rem 3rem;
    height: 100%;
    color: var(--dt-sec-color);
    background-color: var(--dt-whi-color);
    -webkit-transform: translate3d(52rem, 0, 0);
    transform: translate3d(52rem, 0, 0);
    -webkit-transition: all 0.4s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    transition: all 0.4s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
}

.sidebar--active .dt__sidebar .dt__sidebar-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.6s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
    transition: all 0.6s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
}

.dt__sidebar .dt__sidebar-wrapper .dt__sidebar-content {
    width: 100%;
    height: 100%;
    padding: 1.8rem 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.dt__sidebar .dt__sidebar-wrapper .dt__sidebar-content .widget+.widget {
    margin-top: 3rem;
}

.dt__sidebar .dt__sidebar-wrapper .dt__sidebar-content .widget .textwidget {
    text-align: center;
}

.dt__sidebar .dt__sidebar-wrapper .dt__sidebar-content .widget .textwidget img {
    border-radius: 1.5rem;
}

.dt__sidebar .dt__sidebar-wrapper .dt__sidebar-content .widget .textwidget p {
    margin-top: 1.6rem;
}

.dt__sidebar .dt__sidebar-wrapper .dt__sidebar-content .widget .widget-title {
    padding-left: 2.2rem;
}

.dt__sidebar .dt__sidebar-wrapper .dt__sidebar-content .widget .widget-title:before {
    content: "";
    width: 0.3rem;
    position: absolute;
    bottom: 0;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%) rotate(21deg);
    -moz-transform: translateY(-50%);
    margin-left: 0.5rem;
    height: 66%;
    background-color: var(--dt-pri-color);
}

/* Slider */

.dt__slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: var(--dt-gray-high);
    z-index: 0;
}

.dt__slider-main,
.dt__slider-item,
.dt__slider-innercell,
.dt__slider-item > img {
    width: 100%;
    height: 100%;
    min-height: 48rem;
    object-fit: cover;
}

@media (min-width: 36em) {
    .dt__slider-main,
    .dt__slider-item,
    .dt__slider-innercell,
    .dt__slider-item > img {
        min-height: 54rem;
    }
}

@media (min-width: 62em) {
    .dt__slider-main,
    .dt__slider-item,
    .dt__slider-innercell,
    .dt__slider-item > img {
        max-height: 68rem;
        min-height: 68rem;
    }
}

@media (min-width: 87.5em) {
    .dt__slider-main,
    .dt__slider-item,
    .dt__slider-innercell,
    .dt__slider-item > img {
        max-height: 72rem;
        min-height: 72rem;
    }
}

.dt__slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0);
}

.dt__slider-inner {
    overflow: hidden;
    display: table;
    width: 100%;
    height: 100%;
}

.dt__slider-innercell {
    display: table-cell;
    vertical-align: middle;
}

.dt__slider-content {
    position: relative;
    max-width: 63.5rem;
	margin-bottom: 4rem;
    width: 100%;
    z-index: 0;
}

.dt__slider-content.dt-text-left {
    margin-right: auto;
}

.dt__slider-content.dt-text-center {
    margin: auto;
	margin-bottom: 4rem;
}

.dt__slider-content.dt-text-right {
    margin-left: auto;
}

.dt__slider-content h3 {
    width: max-content;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: block;
}

.dt__slider-content h1 {
    font-size: 7rem;
    line-height: 1.15;
    margin-bottom: 1.8rem;
}

@media screen and (min-width: 62em) and (max-width: 87.438em) {
    .dt__slider-content h1 {
        font-size: 6rem;
    }
}

@media (max-width: 61.938em) {
    body .dt__slider .dt__slider-content h1 {
        font-size: 3.2rem;
        margin-bottom: 1.2rem;
    }
}

.dt__slider-content p {
    font-size: 1.8rem;
    margin-bottom: 2.2rem;
}

@media (max-width: 35.938em) {
    .dt__slider-content h3,
    .dt__slider-content h1,
    .dt__slider-content p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.dt__slider-content.dt-text-center h3 {
    margin-left: auto;
    margin-right: auto;
}

.dt__slider-content.dt-text-right h3 {
    margin-right: 0;
    margin-left: auto;
}

.dt__slider-content .dt-btn:not(:last-child) {
    margin-right: 2.1rem;
}

@media (max-width: 61.938em) {
    .dt__slider-content .dt-btn {
        margin-bottom: 1rem;
    }

    .dt__slider-content .dt-btn:not(:last-child) {
        margin-right: 1rem;
    }
}

/* Dots */

.dt__slider-main .owl-dots {
    position: absolute;
    bottom: 12rem;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    padding-right: var(--dt-gutter-x, 1.2rem);
    padding-left: var(--dt-gutter-x, 1.2rem);
    z-index: 0;
}

.dt__slider--two .dt__slider-main.owl-carousel .owl-dots {
    text-align: left;
    margin-top: 0;
}

@media (max-width: 74.938em) {
    .dt__slider-main .owl-dots {
        bottom: 5.6rem;
    }
}

.dt__slider--reverse .first {
    order: 1;
}

/* Nav */

.dt__slider-main .owl-nav button {
    position: absolute;
    top: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 0;
}

.dt__slider-main .owl-nav .owl-prev {
    left: 0;
}

.dt__slider-main .owl-nav .owl-next {
    right: 0;
}

.dt__slider-main:hover .owl-nav .owl-prev {
    left: 3rem;
    opacity: 1;
    visibility: visible;
}

.dt__slider-main:hover .owl-nav .owl-next {
    right: 3rem;
    opacity: 1;
    visibility: visible;
}

.dt__slider-main.owl-carousel.owl-theme .owl-nav button.disabled {
    opacity: 0;
    visibility: hidden;
}

/* Slider Kenburn */

.dt__slider--kenburn .dt__slider-item {
    overflow: hidden;
}

.dt__slider--kenburn .owl-item .dt__slider-item > img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transform-style: flat;
    transform-style: flat;
    -webkit-transition: all 20s;
    transition: all 20s;
    transition-timing-function: linear;
}

.dt__slider--kenburn .owl-item:nth-child(even) .dt__slider-item > img {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
}

.dt__slider--kenburn .owl-item:nth-child(odd) .dt__slider-item > img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.dt__slider--kenburn .owl-item.active:nth-child(even) .dt__slider-item > img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.dt__slider--kenburn .owl-item.active:nth-child(odd) .dt__slider-item > img {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

/* Slider--One */

.dt__slider.dt__slider--one {
    color: var(--dt-whi-color);
}

.dt__slider.dt__slider--four .dt__slider-content h3,
.dt__slider.dt__slider--one .dt__slider-content h3 {
    color: var(--dt-pri-color);
    position: relative;
    padding-left: 2rem;
    padding-right: 2rem;
}

.dt__slider.dt__slider--four .dt__slider-content h3:before,
.dt__slider.dt__slider--four .dt__slider-content h3:after,
.dt__slider.dt__slider--one .dt__slider-content h3:before,
.dt__slider.dt__slider--one .dt__slider-content h3:after {
    content: "";
    width: 0.3rem;
    height: 2.3rem;
    background-color: var(--dt-pri-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
}

.dt__slider.dt__slider--four .dt__slider-content h3:before,
.dt__slider.dt__slider--one .dt__slider-content h3:before {
    left: 0.5rem;
}

.dt__slider.dt__slider--four .dt__slider-content h3:after,
.dt__slider.dt__slider--one .dt__slider-content h3:after {
    right: 0.5rem;
}

.dt__slider.dt__slider--one .dt__slider-content h1,
.dt__slider.dt__slider--one .dt__slider-content p {
    color: inherit;
}

.dt__slider.dt__slider--one .dt__slider-wrapper {
    background-color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 62em) {
    .dt__slider.dt__slider--one .dt__slider-content.dt-text-center,
    .dt__slider.dt__slider--one .dt__slider-content {
        margin-bottom: 10rem;
    }
}

@media (min-width: 75em) {
    .dt__slider.dt__slider--one .dt__slider-wrapper:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 57.2rem;
        height: 15rem;
        background-color: var(--dt-pri-color);
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='888' height='234' viewBox='0 0 888 234' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 1.292c0 2.289 8.586 26.9 12.981 37.208C54.307 135.434 140.316 205.915 243 226.991c23.086 4.738 38.795 6.28 64 6.28s40.914-1.542 64-6.28C473.684 205.915 559.693 135.434 601.019 38.5 605.414 28.192 614 3.581 614 1.292 614 .239 557.212 0 307 0S0 .239 0 1.292Zm696.834 45.206c-37.713 7.162-64.303 37.561-66.478 76.002-1.793 31.708 16.631 62.99 45.144 76.648 12.137 5.813 21.866 8.008 35.5 8.008 31.699 0 58.819-17.051 72.695-45.705C805.82 115.765 780.441 60.592 731.5 47.98c-10.593-2.729-24.88-3.34-34.666-1.482ZM852.5 169.88c-13.485 3.56-21.437 13.99-21.478 28.174-.026 8.945 2.852 15.872 8.744 21.046 8.701 7.639 21.527 9.438 31.725 4.448 17.128-8.38 21.341-31.677 8.208-45.387-6.472-6.756-18.78-10.504-27.199-8.281Z' fill='currentColor'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg width='888' height='234' viewBox='0 0 888 234' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 1.292c0 2.289 8.586 26.9 12.981 37.208C54.307 135.434 140.316 205.915 243 226.991c23.086 4.738 38.795 6.28 64 6.28s40.914-1.542 64-6.28C473.684 205.915 559.693 135.434 601.019 38.5 605.414 28.192 614 3.581 614 1.292 614 .239 557.212 0 307 0S0 .239 0 1.292Zm696.834 45.206c-37.713 7.162-64.303 37.561-66.478 76.002-1.793 31.708 16.631 62.99 45.144 76.648 12.137 5.813 21.866 8.008 35.5 8.008 31.699 0 58.819-17.051 72.695-45.705C805.82 115.765 780.441 60.592 731.5 47.98c-10.593-2.729-24.88-3.34-34.666-1.482ZM852.5 169.88c-13.485 3.56-21.437 13.99-21.478 28.174-.026 8.945 2.852 15.872 8.744 21.046 8.701 7.639 21.527 9.438 31.725 4.448 17.128-8.38 21.341-31.677 8.208-45.387-6.472-6.756-18.78-10.504-27.199-8.281Z' fill='currentColor'/%3E%3C/svg%3E");
        -webkit-mask-position: center top;
        mask-position: center top;
        -webkit-mask-size: cover;
        mask-size: cover;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
		z-index: -1;
        visibility: hidden; /* Hide Effect */
    }
}

/* Slider--Two */
.dt__slider.dt__slider--two {
    color: var(--dt-sec-color);
}
.dt__slider.dt__slider--two .dt__slider-wrapper {
    background-color: rgba(0, 0, 0, 0);
}

/* Slider--Three */

.dt__slider--three .dt__slider-content h3 {
    font-size: 1.8rem;
    border-radius: 0.5rem;
    padding: 1rem 1.8rem;
    background-color: var(--dt-pri-color);
    color: var(--dt-whi-color);
}

.dt__slider--three .dt__slider-content h1 {
    font-size: 5.7rem;
}

.dt__slider--three .dt__slider-rightimg img {
    box-shadow: rgba(0, 0, 0, 0.30) 0 2.2rem 3rem 0;
    border-radius: 2.5rem;
}


/* Footer */

.dt__footer {
    padding: 3rem 0;
    position: relative;
    z-index: 0;
}

.dt__footer--one:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dt-pri-color);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='1920' height='1280' viewBox='0 0 1920 1280' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='a' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='1920' height='1280'%3E%3Cpath fill='%23D9D9D9' d='M0 0h1920v1280H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)' fill='currentColor'%3E%3Ccircle opacity='.1' cx='81' cy='229' r='81'/%3E%3Ccircle opacity='.5' cx='1774' cy='72' r='29'/%3E%3Ccircle cx='1803' cy='177' r='14'/%3E%3Ccircle cx='1880.5' cy='1272.5' r='312.5'/%3E%3Ccircle cx='28' cy='1164' r='20'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='1920' height='1280' viewBox='0 0 1920 1280' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='a' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='1920' height='1280'%3E%3Cpath fill='%23D9D9D9' d='M0 0h1920v1280H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)' fill='currentColor'%3E%3Ccircle opacity='.1' cx='81' cy='229' r='81'/%3E%3Ccircle opacity='.5' cx='1774' cy='72' r='29'/%3E%3Ccircle cx='1803' cy='177' r='14'/%3E%3Ccircle cx='1880.5' cy='1272.5' r='312.5'/%3E%3Ccircle cx='28' cy='1164' r='20'/%3E%3C/g%3E%3C/svg%3E");
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    z-index: -1;
}

.dt__footer--one {    
    color: var(--dt-whi-color);
    background-color: var(--dt-sec-color);
}

.dt__footer .widget_social li a:not(:hover, :focus) {
    background-color: rgba(189, 189, 189, 0.40);
}

.dt__footer .widget .wp-block-image a {
    display: inline-block;
    vertical-align: middle;
    font-size: 2.625rem;
    font-weight: 500;
}

.dt__footer .widget .wp-block-image a:not(:hover, :focus) {
    text-decoration: none;
}

/* Footer Top */

.dt__footer--one .dt__footer-top {
    margin-top: -10rem;
}

.dt__footer--one .dt__footer-top .widget {
    position: relative;
}

.dt__footer--one .dt__footer-top .widget:before {
    position: absolute;
    content: '';
    left: 1.5rem;
    top: -1rem;
    right: 1.5rem;
    bottom: -10px;
    background: #e7e7e7;
    opacity: .3;
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
}

.dt__footer--one .dt__footer-top .widget .contact__list {
    position: relative;
    padding: 4rem 4rem 3.2rem;
    min-height: 16rem;    
    color: var(--dt-sec-color);
    background-color: var(--dt-whi-color);
    -webkit-box-shadow: 0 0 5rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5rem 0 rgba(0, 0, 0, 0.1);
}

.dt__footer--one .dt__footer-top .widget .contact__list i,
.dt__footer--one .dt__footer-top .widget .contact__list img {
    font-size: 6rem;
    margin-right: 2.35rem;
    width: 5.2rem;
}

.dt__footer--one .dt__footer-top .widget .contact__list .title {
    font-size: 2.2rem;
}

.dt__footer--one .dt__footer-top .widget .contact__list .description {
    margin-top: 0.8rem;
    line-height: 1.4;
}


/* Footer Middle */

.dt__footer-middle {
    position: relative;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    margin-top: 0;
}

.dt__footer-middle .widget .widget-title {
    color: var(--dt-whi-color);
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(189, 189, 189, 0.2);
}

.dt__footer-middle .widget .widget-title:before {
    bottom: -2px;
    left: 0;
    height: 3px;
    width: 40px;
    content: "";
    position: absolute;
    background-color: var(--dt-pri-color);
}

.dt__footer-middle .widget+.widget {
    margin-top: 3rem;
}

.dt__footer-middle .widget .contact__list+.contact__list {
    margin-top: 2rem;
}

.dt__footer-middle .widget .contact__list i {
    font-size: 2.2rem;
    width: 2.5rem;
    height: 2.5rem;
}

.dt__footer-middle .widget .contact__list .contact__body .title {
    color: inherit;
    font-weight: 600;
    font-size: 1.7rem;
}

.dt__footer-middle .widget:not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a {
    display: block;
}

.dt__footer-middle .widget:not(.widget_text):not(.widget_meta):not(.widget_recent_comments):not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a:hover,
.dt__footer-middle .widget:not(.widget_text):not(.widget_meta):not(.widget_recent_comments):not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a:focus {
    padding-left: 2rem;
}

.dt__footer-middle .widget:not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li:not(:last-child) a {
    margin-bottom: 1.8rem;
}

.dt__footer-middle .widget:not(.widget_text):not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a {
    width: 100%;
}

.dt__footer-middle .widget:not(.widget_text):not(.widget_meta):not(.widget_recent_comments):not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a:before {
    content: "\f111";
    top: 0.215rem;
    left: 0;
    font-size: 85%;
    opacity: 0;
    visibility: hidden;
}

.dt__footer-middle .widget:not(.widget_text):not(.widget_meta):not(.widget_recent_comments):not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a:hover:before,
.dt__footer-middle .widget:not(.widget_text):not(.widget_meta):not(.widget_recent_comments):not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a:focus:before {
    opacity: 1;
    visibility: visible;
}

.dt__footer-middle .widget:not(.widget_text):not(.widget_meta):not(.widget_recent_comments):not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a:hover:before,
.dt__footer-middle .widget:not(.widget_text):not(.widget_meta):not(.widget_recent_comments):not(.widget-info):not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a:focus:before,
.dt__footer-middle .widget:not(.widget_text):not(.widget_meta):not(.widget_recent_comments):not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a:hover,
.dt__footer-middle .widget:not(.widget_text):not(.widget_meta):not(.widget_recent_comments):not(.widget-info):not(.widget_payment):not(.widget_social):not(.widget_calender):not(.widget_tag_cloud) ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a:focus {
    color: var(--dt-pri-color);
}

.dt__footer-middle .widget ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a:hover:before,
.dt__footer-middle .widget ul:not(.wp-block-social-links, .wp-block-latest-posts, .product_list_widget) li a:focus:before,
.widget_meta li a:hover:before,
.widget_meta li a:focus:before {
    -webkit-animation: rightCaret 600ms ease infinite;
    animation: rightCaret 600ms ease infinite;
}

.dt__footer-middle .dt__recent-post .dt__recent-post-text h5 {
    color: inherit;
}

/* Footer Copyright */

.dt__footer-copyright .widget li {
    display: inline-block;
    margin-left: 1rem;
}

.dt__footer-copyright .widget li:first-child {
    margin-left: 0;
}

.dt__footer-copyright .widget li a {
    position: relative;
    z-index: 0;
}

.dt__footer-copyright .widget.widget_payment li a {
    font-size: 3rem;
}

.dt__footer-copyright .widget li:not(.widget_payment):not(.widget_social) a {
    padding-left: 1rem;
}

.dt__footer-copyright .widget li:not(.widget_payment):not(.widget_social) a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: var(--dt-sec-color);
    transform: translateY(-50%);
    z-index: 0;
}

.dt__footer--one .dt__footer-copyright .widget li:not(.widget_payment):not(.widget_social) a:before {
    background-color: var(--dt-whi-color);
}

.dt__footer--one .dt__footer-copyright .widget .wp-block-image a,
.dt__footer--one .dt__footer-copyright .widget li:not(.widget_payment):not(.widget_social) a,
.dt__footer--one .dt__footer-copyright .dt__footer-copyright-text a {
    color: inherit;
}

.dt__footer--one .dt__footer-copyright .dt__footer-copyright-text a:hover,
.dt__footer--one .dt__footer-copyright .dt__footer-copyright-text a:focus {
    text-decoration-thickness: 0.1em;
    text-decoration-style: dotted;
}

.dt__footer--one .dt__footer-copyright > .dt-container > .dt-row {
    margin-left: 0;
    margin-right: 0;
    padding: 1.2rem 2.5rem;
    background-color: var(--dt-pri-color);
}

@media (min-width: 36em) {
    .dt__footer-copyright > .dt-container > .dt-row > * {
        margin-top: auto;
        margin-bottom: auto;
    }
}

@media (max-width: 35.938em) {
    .dt__footer-copyright > .dt-container > .dt-row > *:first-child {
        margin-top: 0;
    }
}

/* Up Top */

button.dt__uptop {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    font-size: 3.2rem;
    outline: none;
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
    -webkit-transition: transform .4s ease, opacity .8s ease;
    transition: transform .4s ease, opacity .8s ease;
    border-radius: 50%;
    color: var(--dt-pri-color);
    background-color: var(--dt-whi-color);
    border-color: var(--dt-whi-color);
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 0.3rem 0.9rem rgba(0, 0, 0, 0.25);
    box-shadow: 0 0.3rem 0.9rem rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 999999;
}

.dt__uptop.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

@media (min-width: 48rem) {
    .dt__uptop.active:hover {
        -webkit-transform: translateY(-0.8rem);
        transform: translateY(-0.8rem);
        -webkit-box-shadow: 0 0.3rem 1.6rem rgba(0, 0, 0, 0.25);
        box-shadow: 0 0.3rem 1.6rem rgba(0, 0, 0, 0.25);
    }
}

/* Service */

.dt__services,
.dt__infoservices {
    position: relative;
    overflow: visible;
}

.dt__infoservices .more-link {
    display: inline-block;
    text-decoration: none;
    color: var(--dt-sec-color);
    font-weight: 500;
    margin-top: 1.8rem;
}

.dt__infoservices .more-link:hover,
.dt__infoservices .more-link:focus {
    color: var(--dt-pri-color);
}

.dt__infoservices .more-link i {
    transform: rotate(45deg);
    margin-top: -1px;
    font-size: 1.5rem;
    margin-left: 0.6rem;
}

@media (min-width: 36rem) {
    .dt__infoservices-block:after {
        width: 1px;
        display: block;
        content: "";
        border-right: 0.2rem dashed #606060;
        position: absolute;
        left: 0;
        top: 5rem;
        bottom: 5rem;
        opacity: 0;
    }
    .dt__infoservices--one .owl-item.active+.active .dt__infoservices-block:after {
        opacity: 1;
    }
}

.dt__infoservices--one .dt__infoservices-row {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background-blend-mode: multiply;
    background-color: var(--dt-sec-color);
    box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.05);
    z-index: 0;
}

.dt__infoservices--one .dt__infoservices-row,
.dt__infoservices--two .dt__infoservices-row {
    margin-top: -9rem;
}

@media (max-width: 74.938rem) {
    .dt__infoservices--one .dt__infoservices-row {
        margin-top: -3.5rem;
    }
    .dt__infoservices--two .dt__infoservices-row {
        margin-top: -5.9rem;
    }
}

.dt__infoservices-block {
    position: relative;
}

.dt__infoservices--one .dt__infoservices-block .dt__infoservices-inner {
    position: relative;
    text-align: left;
    padding: 7rem 3.5rem 6rem;
    color: var(--dt-whi-color);
    background-color: var(--dt-sec-color);
}

.dt__infoservices--one .dt__infoservices-block .dt__infoservices-inner .dt__infoservices-icon {
    position: relative;
    width: 10.5rem;
    height: 10.5rem;
    line-height: 10.5rem;
    border-radius: 100rem;
    font-size: 5rem;
    margin: 0;
    display: inline-block;
    text-align: center;
    color: var(--dt-whi-color);
    background-color: rgba(189, 189, 189, 0.2);
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.dt__infoservices--one .dt__infoservices-block .dt__infoservices-inner .dt__infoservices-icon:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -0.7rem;
    left: -0.7rem;
    padding: 0.7rem;
    display: block;
    content: '';
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    box-shadow: 0 0 0 0.4rem var(--dt-whi-color);
    -webkit-transition: -webkit-transform .2s,opacity .2s;
    transition: transform .2s,opacity .2s;
    transform: scale(.8);
    opacity: 0;
    border-radius: 50%;
}

.dt__infoservices--one .dt__infoservices-block .dt__infoservices-inner .dt__infoservices-icon .icon {
    position: relative;
    display: inline-block;
}

.dt__infoservices--one .dt__infoservices-block.active .dt__infoservices-inner .dt__infoservices-icon,
.dt__infoservices--one .dt__infoservices-block .dt__infoservices-inner:hover .dt__infoservices-icon,
.dt__infoservices--one .dt__infoservices-block .dt__infoservices-inner:focus-within .dt__infoservices-icon {
    background-color: var(--dt-pri-color);
}

.dt__infoservices--one .dt__infoservices-block.active .dt__infoservices-inner .dt__infoservices-icon:after,
.dt__infoservices--one .dt__infoservices-block .dt__infoservices-inner:hover .dt__infoservices-icon:after,
.dt__infoservices--one .dt__infoservices-block .dt__infoservices-inner:focus-within .dt__infoservices-icon:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.dt__infoservices-block .dt__infoservices-inner .title a:not(:hover,:focus) {
    color: inherit;
    text-decoration: none;
}

.dt__infoservices--one .dt__infoservices-block .dt__infoservices-inner .title {
    margin-top: 2.5rem;
}

.dt__infoservices--one .dt__infoservices-block .dt__infoservices-inner .title a:not(:hover,:focus) {
    color: var(--dt-whi-color);
}

.dt__infoservices-block .dt__infoservices-inner .text {
    position: relative;
    margin-top: 1.3rem;
}

.dt__infoservices--one .dt__infoservices-block .dt__infoservices-inner .text {
    margin-top: 1.6rem;
    color: rgba(255, 255, 255, 0.75);
}

.dt__nav-carousel.owl-carousel.owl-theme .owl-nav {
    margin: 1rem 0 0;
    text-align: center;
}

@media (max-width: 67.438em) {
    .dt__nav-carousel .dt__infoservices-carousel.owl-carousel.owl-theme .owl-nav {
        position: absolute;
        bottom: -3.3rem;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

.dt__nav-carousel.owl-carousel.owl-theme .owl-nav button {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    text-align: center;
    color: var(--dt-sec-color);
    background-color: var(--dt-gray-high);
    border: 1px solid rgba(189, 189, 189, 0.2);
    border-radius: 0.5rem;
    font-size: 2.2rem;
    z-index: 0;
    margin: 1rem;
}

@media (min-width: 67.5em) {
    .dt__nav-carousel.owl-carousel.owl-theme .owl-nav button {
        position: absolute;
        top: 50%;
        margin: 0;
        transform: translateY(-50%);
    }

    .dt__nav-carousel.owl-carousel.owl-theme[class*='dt__dotstyle--']:not(.dt__slider-main) .owl-nav button {
        top: 42%;
        transform: translateY(-50%);
    }

    .dt__nav-carousel.owl-carousel.owl-theme .owl-nav .owl-prev {
        left: -6.5rem;
    }

    .dt__nav-carousel.owl-carousel.owl-theme .owl-nav .owl-next {
        right: -6.5rem;
    }
}

.dt__nav-carousel.owl-carousel.owl-theme .owl-nav button:hover {
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
    border-color: var(--dt-pri-color);
}

/* Services--one */

.dt__services-block .title a {
    text-decoration: none;
}

.dt__services-block .title a:not(:hover,:focus) {
    color: inherit;
}

.dt__services--one .dt__services-inner {
    position: relative;
    border-radius: 1rem;
    padding: 0 4rem;
    background-color: var(--dt-whi-color);
    overflow: hidden;
    text-align: left;
    -webkit-box-shadow: rgba(2, 2, 2, 0.06) 0 0 5rem;
    box-shadow: rgba(2, 2, 2, 0.06) 0 0 5rem;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
}

.dt__services--one .dt__services-inner:hover,
.dt__services--one .dt__services-inner:focus-within {
    transform: translateY(-1rem);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
}

.dt__services--one .dt__services-inner .dt__services-icon {
    position: relative;
    margin-left: -4rem;
    margin-right: -4rem;
    margin-bottom: 3rem;
    z-index: 0;
}

.dt__services--one .dt__services-inner .dt__services-icon::before,
.dt__services--one .dt__services-inner .dt__services-icon::after {
    content: "";
    background-color: var(--dt-whi-color);
    height: 0;
    width: 0;
    position: absolute;
    -webkit-transition-duration: 1.3s!important;
    transition-duration: 1.3s!important;
    z-index: 0;
}

.dt__services--one .dt__services-inner .dt__services-icon::before {
    right: 0;
    opacity: 1;
    top: 0;
}

.dt__services--one .dt__services-inner .dt__services-icon::after {
    bottom: 0;
    opacity: .7;
    left: 0;
}

.dt__services--one .dt__services-inner:hover .dt__services-icon::before,
.dt__services--one .dt__services-inner:hover .dt__services-icon::after,
.dt__services--one .dt__services-inner:focus-within .dt__services-icon::before,
.dt__services--one .dt__services-inner:focus-within .dt__services-icon::after {
    height: 100%;
    width: 100%;
    opacity: 0.15;
}

.dt__services--one .dt__services-inner .dt__services-icon .icon {
    width: 8rem;
    height: 8rem;
    line-height: 5rem;
    background-color: var(--dt-whi-color);
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: var(--dt-pri-color);
    font-size: 5rem;
    text-align: center;
    padding: 1rem;
    display: inline-block;
    border-radius: 0.6rem;
    border-bottom: 0.5rem solid var(--dt-pri-color);
    -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(204, 204, 204, 0.34);
    box-shadow: 0 0.5rem 1rem 0 rgba(204, 204, 204, 0.34);
    transition: .3s;
    -webkit-transition: .3s;
	z-index: 1;
}

.dt__services--one .dt__services-inner:hover .dt__services-icon .icon,
.dt__services--one .dt__services-inner:focus-within .dt__services-icon .icon {
    bottom: -1rem;
    transition: .3s;
    -webkit-transition: .3s;
}

.dt__services--one .dt__services-inner .dt__services-icon .icon img {
    display: inline-block;
    margin: auto;
    max-height: 5rem;
}

.dt__services--one .dt__services-inner .title {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 0;
}

.dt__services--one .dt__services-inner .title:before {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 10px;
    background-color: var(--dt-pri-color);
    -webkit-box-shadow: 29px 0 0 0 var(--dt-pri-color), 39px 0 0 0 var(--dt-pri-color), 20px 0 0 0 var(--dt-pri-color), 49px 0 0 0 var(--dt-pri-color);
    box-shadow: 29px 0 0 0 var(--dt-pri-color), 39px 0 0 0 var(--dt-pri-color), 20px 0 0 0 var(--dt-pri-color), 49px 0 0 0 var(--dt-pri-color);
}

.dt__services--one .dt__services-inner .text {
    margin-bottom: 3rem;
}


/* Heading */

.dt__siteheading .subtitle {
    color: var(--dt-pri-color);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.dt__siteheading .subtitle:before {
    content: "\/";
    margin-right: 0.5rem;
}

.dt__siteheading .subtitle:after {
    content: "\/";
    margin-left: 0.5rem;
}

@media (min-width: 87.5em) {
    .dt__siteheading .title {
        font-size: 3.9rem;
    }
}

.dt__siteheading .text {
    margin-top: 1.5rem;
    line-height: 1.7em;
}


/* About--One */

.dt__about-content .dt__about-cta,
.dt__about-content blockquote,
.dt__about-content .dt__about-feature-classic {
    margin-top: 2rem;
}

.dt__about-feature-classic .media {
    padding: 2.3rem 2.5rem;
    border-radius: 1rem;
    font-size: 1.8rem;
    background-color: var(--dt-gray-high);
}

.dt__about-feature-classic .media .media-icon {
    width: 8rem;
    height: 8rem;
    line-height: 6.1rem;
    font-size: 5rem;
    background-color: var(--dt-whi-color);
    padding: 1rem;
    -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.07);
    border-radius: 0.6rem;
    border-bottom: 0.4rem solid var(--dt-pri-color);
}

.dt__about-feature-classic .media .media-icon img {
    max-width: 5.6rem;
    margin: auto;
}

.dt__about-feature-classic .media .media-body .media-title {
    font-size: 2.4rem;
}

.dt__about-feature-classic .media .media-content {
    margin-top: 0.5rem;
}

.dt__about-feature-classic .media .media-content a:focus,
.dt__about-feature-classic .media .media-content a:hover {
    text-decoration: none;
}

.dt__about-content .dt__about-cta {
    position: relative;
    padding: 3.341rem 3.341rem 3.5rem;
    color: var(--dt-whi-color);
    background-color: var(--dt-sec-color);
    border-radius: 1.5rem;
    overflow: hidden;
    z-index: 0;
}

.dt__about-content .dt__about-cta .title {
    color: inherit;
    font-size: 2.4rem;
}


/* CTA */

.dt__cta {
    color: var(--dt-whi-color);
    position: relative;
    z-index: 0;
}

.dt__about-content .dt__about-cta,
.dt__cta,
.dt__cta-row {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dt__about-content .dt__about-cta:before,
.dt__cta--two .dt__cta-row:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.85;
    z-index: -1;
}

.dt__about-content .dt__about-cta:before {
    background-color: var(--dt-sec-color);
}

.dt__cta .dt__siteheading .title {
    color: inherit;
    line-height: 1.4em;
}

/* CTA Two */

.bg-gray-high .dt__about-feature-classic .media {
    background-color: var(--dt-whi-color);
}

.dt__services--one + .dt__cta--two .dt__cta-row {
    margin: 0 0 -5rem;
}

.dt__cta--two .dt__cta-row {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 4rem 3.5rem;
    margin: 0rem 0;
    z-index: 0;
}

.dt__cta--two .dt__cta-row:before {
    background-color: var(--dt-pri-color);
}

.dt__cta--two .dt__cta-row:after {
    position: absolute;
    top: -10rem;
    right: -9rem;
    content: "";
    width: 35rem;
    height: 35rem;
    border-radius: 100rem;
    background-color: var(--dt-sec-color);
    z-index: -1;
}

@media (max-width: 47.938em) {
    .dt__cta--two .dt__cta-row:after {
        width: 50rem;
        height: 50rem;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        opacity: 0.68;
        top: 0;
    }
}

.dt__about-content.why-left,
.dt__about-content.why-right {
    padding: 3.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(189, 189, 189, 0.2);
}


/* Post */

.dt__post .dt__post-thumb {
    position: relative;
    display: block;
}

.owl-carousel-item .dt__post {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.bottom-meta-list,
.top-meta-list {
    margin: 0;
    list-style: none;
    display: inline-block;
    padding: 0;
}

.bottom-meta-list>li,
.top-meta-list>li {
    vertical-align: middle;
    display: inline-block;
    margin-top: 0;
    margin-right: 1.5rem;
}

.bottom-meta-list>li:last-child,
.top-meta-list>li:last-child {
    margin-right: 0;
}

.dt__post .dt__post-entry .dt__post-title {
    line-height: 2.9rem;
    margin-bottom: 1rem;
}

.dt__post .dt__post-entry .dt__post-title a:not(:hover,:focus) {
    text-decoration: none;
    color: inherit;
}

.dt__post .dt__post-entry .more-link {
    margin-bottom: 1.7rem;
    display: inline-block;
    font-weight: 600;
    text-decoration-color: var(--dt-pri-color);
}

.dt__post-bottom-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.dt__posts--one .dt__post .dt__post-bottom-meta {    
    margin-bottom: 0.5rem;
	display:none;
}

.dt__post-bottom-meta > ul:first-child {
    margin-right: 1rem;
}

.dt__post-author span {
    display: inline-block;
    vertical-align: middle;
}

.dt__post-author .author-img {
    margin-right: 1rem;
    border-radius: 100%;
    overflow: hidden;
}

.dt__post-date a,
.dt__post-author a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
}

.dt__post .dt__post-entry .more-link:not(:hover,:focus),
.dt__post-date a:not(:hover,:focus),
.dt__post-author a:not(:hover,:focus) {
    color: var(--dt-sec-color);
}

.dt__post-author .dt__post-author-img img {
    border-radius: 100%;
    width: 2rem;
    height: 2rem;
    object-fit: cover;
    margin-right: 0.5rem;
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.dt__post-author i,
.dt__post-date i {
    margin-right: 0.3rem;
    color: var(--dt-pri-color);
}

.dt__post .before-icon {
    color: var(--dt-pri-color);
    margin-right: 0.2rem;
}

.dt__post .dt__post-thumb {
    overflow: hidden;
}

.dt__post .dt__post-thumb img {    
    -webkit-transition: var(--dt-transition);
    transition: var(--dt-transition);
}

.dt__post:hover .dt__post-thumb img,
.dt__post:focus-within .dt__post-thumb img {
    opacity: .8;
    -webkit-transform: scale(1.14);
    transform: scale(1.14);
} 

.dt__posts--one .dt__post {
    border-radius: 0.6rem;
    overflow: hidden;
    text-align: left;
    background-color: var(--dt-whi-color);
    -webkit-box-shadow: 0 0.2rem 2rem 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0.2rem 2rem 0 rgba(0, 0, 0, 0.08);
    padding: 3rem 3rem 2rem;
}

.dt__posts--one .dt__post .dt__post-thumb {
    margin-left: -3rem;
    margin-top: -3rem;
    margin-right: -3rem;
    margin-bottom: 3rem;
    border-radius: 0;
}

.dt__posts--one .dt__post .dt__post-thumb {
    border-radius: 0;
}

.dt__posts--one .dt__post>.dt__post-top-meta {
    font-weight: 600;
    margin-bottom: 1.6rem;
    position: relative;
}

.dt__posts--one .dt__post .dt__post-category {
    font-size: 0;
	margin-top: -0.8rem;
}

.dt__posts--one .dt__post .before-icon {
    display: none;
}

.dt__posts--one .dt__post .dt__post-category a {
	margin-top: 0.8rem;
    display: inline-block;
    padding: 0.6rem 1.6rem;
    border-radius: 0.3rem;
    font-size: 1.4rem;
    margin-right: 0.9rem;
    text-decoration: none;
    background-color: var(--dt-pri-color);
    color: var(--dt-whi-color);
}

.dt__posts--one .dt__post .dt__post-category a:hover,
.dt__posts--one .dt__post .dt__post-category a:focus {
    background-color: var(--dt-sec-color);
    color: var(--dt-whi-color);
}

.single-post .dt__post .dt__post-top-meta>ul>li .dt__post-category a {
    padding-right: 0;
    padding-left: 0.5rem;
    margin-right: 0;
    position: relative;
}

.single-post .dt__post .dt__post-top-meta .dt__post-category a:not(:hover,:focus) {
    color: var(--dt-sec-color);
    text-decoration: none;
}


/* Post Single */

.single-post .dt__post {
    padding: 0 3rem 3rem;
    margin-bottom: 5rem;
    border: 0.1rem solid rgba(189, 189, 189, 0.2);
}

.single-post .dt__post .dt__post-thumb {
    margin-left: -3rem;
    margin-right: -3rem;
	margin-bottom:20px;
}

.single-post .dt__post .dt__post-top-meta {
    padding: 2rem 2rem 1.8rem;
    background-color: var(--dt-whi-color);
    margin: 0 auto;
    width: 100%;
    margin-top: -6.9rem;
    margin-bottom: 2.8rem;
    z-index: 1;
    position: relative;
    display: none;
    border-radius: 0.5rem 0.5rem 0 0;
    -webkit-box-shadow: rgba(2, 2, 2, 0.06) 0 0 5rem;
    box-shadow: rgba(2, 2, 2, 0.06) 0 0 5rem;
    border-left: 0.4rem solid var(--dt-pri-color);
}

.single-post .dt__post .dt__post-entry .dt__post-title {
    font-size: 3.2rem;
    margin-bottom: 1.8rem;
}

.single-post .dt__post .dt__post-top-meta .top-meta-list > li {
    font-size: 1.5rem;
    position: relative;
    margin-right: 2rem;
    padding-right: 2.5rem;
}

.single-post .dt__post .dt__post-top-meta .top-meta-list > li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.single-post .dt__post .dt__post-top-meta .top-meta-list > li:not(:last-child):after {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--dt-pri-color);
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-post .dt__post blockquote {
    font-size: 2rem;
    line-height: 3.5rem;
    font-weight: 600;
    margin: 3rem 0 3rem 0;
    padding: 3rem 3rem 3rem 9.2rem;
    overflow: hidden;
    border-radius: 1rem;
    border: 2px solid rgba(189, 189, 189, 0.1);
    box-shadow: 0 0 2.4rem 0 rgba(43, 43, 43, 0.06);
    -webkit-box-shadow: 0 0 2.4rem 0 rgba(43, 43, 43, 0.06);
}

.single-post .dt__post blockquote:before {
    content: "";
    width: 8rem;
    height: 8rem;
    background: var(--dt-sec-color);
    position: absolute;
    left: -1.4rem;
    top: -1.4rem;
    border-radius: 5rem;
    z-index: -1;
}

.single-post .dt__post blockquote:after {
    content: "\f10d";
    font-family: FontAwesome;
    width: 4rem;
    height: 4rem;
    font-size: 2.6rem;
    position: absolute;
    left: 1.1rem;
    top: 1.2rem;
    color: var(--dt-whi-color);
    text-align: center;
}

.single-post .dt__post blockquote .quote-author {
    margin-top: 0.5rem;
    position: relative;
    font-size: 1.6rem;
    font-style: italic;
    padding-left: 2.9rem;
    margin-bottom: 0;
    color: var(--dt-pri-color);
}

.single-post .dt__post blockquote .quote-author:before {
    content: "";
    width: 2rem;
    height: 0.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0;
    background-color: var(--dt-pri-color);
}

.single-post .dt__post .dt__post-bottom-meta {
    margin-bottom: 0;
    margin-top: 2.8rem;
	display: none;
}

.single-post .dt__post .dt__post-bottom-meta .post-tags a {
    font-size: 1.5rem;
    border-radius: 0.3rem;
    margin-bottom: 0.3rem;
    padding: 0.8rem 1.2rem;
    font-weight: 400;
    color: var(--dt-whi-color);
    display: inline-block;
    text-decoration: none;
    line-height: 1;
    margin-right: 0.5rem;
    background-color: var(--dt-pri-color);
}

.single-post .dt__post .dt__post-bottom-meta .post-tags a:hover,
.single-post .dt__post .dt__post-bottom-meta .post-tags a:focus {
    background-color: var(--dt-sec-color);
    color: var(--dt-whi-color);
}

.single-post .dt__post .dt__post-bottom-meta .comments-count {
    font-size: 1.4rem;
    border-radius: 0.3rem;
    font-weight: 400;
    padding: 0.7rem 1.2rem;
    background-color: var(--dt-gray-high);
    color: inherit;
    text-decoration: none;
}

.single-post .dt__post .dt__post-bottom-meta .comments-count:hover,
.single-post .dt__post .dt__post-bottom-meta .comments-count:focus {
    color: var(--dt-sec-color);
}

.single-post .dt__post .dt__post-bottom-meta .comments-count:focus {
    text-decoration: underline;
}


/* Author Details */

.author-details {
    padding: 3rem 3.5rem;
    border-radius: 0.5rem;
    background-color: rgb(255, 255, 255);
    border: 0.1rem solid rgba(189, 189, 189, 0.2);
}

.author-details .media {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.author-details .media .auth-mata {
    -ms-flex-item-align: start;
    align-self: flex-start;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-right: 3rem;
    margin-top: 0;
}

.author-details .media .auth-mata img {
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.08);
    width: 10rem;
    height: 10rem;
}

.author-details .media .media-body {
    flex: 1;
}

.author-details .media .media-body h5 {
    letter-spacing: 0.025rem;
    vertical-align: baseline;
}

.author-details .media .media-body h5 a {
    text-decoration: none;
    color: var(--dt-sec-color);
}

.author-details .media .media-body h5 a:hover,
.author-details .media .media-body h5 a:focus {
    color: var(--dt-pri-color);
}

.author-details .media .media-body p {
    margin-bottom: 0;
    margin-top: 1.5rem;
}


/* Comment & Form */

.comments-area {
    margin-top: 8rem;
}

.single-comments-title, .comments-title {
    margin-bottom: 3rem;
    text-align: left;
}

.comments-title h3 {
    font-size: 3.4rem;
}

.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comments-area li {
    list-style: none;
}

.comments-area .comment-body {
    position: relative;
    padding: 3rem 3rem 3rem 16.5rem;
    min-height: 12rem;
    word-wrap: break-word;
    border-radius: 0.5rem;
    z-index: 0;
    margin-bottom: 6rem;
}

.comments-area .comment-body:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: calc(100% - 120px);
    z-index: -1;
    border-radius: 0.5rem;
}

.comment-list .comment .comment-body:before {
    background-color: var(--dt-gray-high);
}

.comments-area .comment-meta .comment-awaiting-moderation {
    display: block;
    width: 100%;
    clear: both;
}

.comments-area .comment-meta .comment-author {
    font-size: 1.6rem;
}

.comments-area .comment-meta .comment-author .fn {
    font-weight: 700;
}

.comment-meta .comment-metadata > a,
.comments-area .comment-meta .comment-author a {
    text-decoration: none;
    color: var(--dt-sec-color);
}

.comment-meta .comment-metadata > a:hover,
.comment-meta .comment-metadata > a:focus,
.comments-area .comment-meta .comment-author a:hover,
.comments-area .comment-meta .comment-author a:focus {
    color: var(--dt-pri-color);
}

.comments-area .comment-meta .comment-author img {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0.6rem;
    width: 9rem;
    border-radius: 10rem;
}

.comments-area .comment-meta .comment-author,
.comment-meta .comment-metadata {
    line-height: 1.5;
    font-size: 1.6rem;
    display: inline-block;
}

.comment-content {
    position: relative;
    z-index: 0;
    padding: 1.6rem 0;
    line-height: 1.5;
}

.comment-content p {
    margin-bottom: 0;
}

.comment-body .reply a, .comment-body .edit a {
    font-weight: 600;
    letter-spacing: 0.03rem;
}

.comment-body .reply a:not(:hover, :focus),
.comment-body .edit a:not(:hover, :focus) {
    text-decoration: none;
}

.comment-list .comment .children .comment-body:before {
    border: 0.1rem solid rgba(189, 189, 189, 0.2);
    background-color: transparent;
}

.comment-reply-title {
    font-size: 3.4rem;
}

.comment-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.comment-form > p.comment-notes {
    flex-basis: 100%;
    width: 100%;
}

.comment-form > p:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    flex: auto;
}

.comment-form > p:nth-child(2n+1):not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 3rem;
}

.comment-form p.comment-form-url:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 0;
}

@media (max-width: 61.938em) {
    .comment-form > p:nth-child(2n+1):not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit),
    .comment-form > p:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
        max-width: 100%;
        flex-basis: 100%;
        margin-right: 0;
    }
}

.comment-form-comment {
    max-width: 100%;
    flex-basis: 100%;
}

.comment-form > p:not(:last-child) {
    margin-bottom: 3rem;
}

.comment-form-cookies-consent, .form-submit {
    width: 100%;
}

.comment-form-cookies-consent label {
    vertical-align: middle;
    margin-left: 0.3rem;
}


/* Homepage 2 */

.dt__navbar-listwidget .contact__list {
    display: inline-flex;
}

.dt__navbar-listwidget .contact__list+.contact__list {
    margin-left: 2.5rem;
}

.dt__navbar-listwidget .contact__list .description {
    margin-top: 0.7rem;
}


/* Page Title */

.dt__pagetitle {
    position: relative;
    padding: 12rem 0;
    background-color: var(--dt-sec-color);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.dt__pagetitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.95;
    background-image: -moz-linear-gradient(0deg,var(--dt-sec-color) 0,rgba(14, 34, 88, 0.90) 100%);
    background-image: -webkit-linear-gradient(0deg,var(--dt-sec-color) 0,rgba(14, 34, 88, 0.90) 100%);
}

.dt__pagetitle .dt__pagetitle-content {
    padding-left: 2.2rem;
    position: relative;
}

.dt__pagetitle .dt__pagetitle-content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.4rem;
    height: 100%;
    transform: translateY(-50%);
    background-color: var(--dt-pri-color);
}

.dt__pagetitle .dt__pagetitle-content h1 {
    position: relative;
    display: block;
    font-size: 5.2rem;
    line-height: 5.2rem;
    color: var(--dt-whi-color);
    font-weight: 700;
}

.dt__pagetitle .dt__pagetitle-content .dt__pagetitle-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.dt__pagetitle .dt__pagetitle-content .dt__pagetitle-breadcrumb li {
    position: relative;
    display: inline-block;
    font-weight: 500;
    color: var(--dt-whi-color);
    padding-right: 1.5rem;
    margin-right: 1.5rem;
}

.dt__pagetitle .dt__pagetitle-content .dt__pagetitle-breadcrumb li:last-child {
    padding: 0;
    margin: 0;
}

.dt__pagetitle .dt__pagetitle-content .dt__pagetitle-breadcrumb li:first-child:not(:last-child):before {
    position: absolute;
    content: "\f105";
    font-family: 'FontAwesome';
    top: -1px;
    right: 0;
}

.dt__pagetitle .dt__pagetitle-content .dt__pagetitle-breadcrumb li a {
    color: var(--dt-whi-color);
    text-decoration: none;
}

/* Custom Post Nav */

.custom-post-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.custom-post-nav .prev-nav-link,
.custom-post-nav .next-nav-link {
    margin: 0.5rem;
}

.custom-post-nav a {
    display: inline-block;
    line-height: 1;
    padding: 1.3rem 2rem;
    font-weight: 600;
    background-color: var(--dt-pri-color);
    color: var(--dt-whi-color);
    border-radius: 0.5rem;
    text-decoration: none;
}

.custom-post-nav a:hover,
.custom-post-nav a:focus {
    background-color: var(--dt-sec-color);
    color: var(--dt-whi-color);
}

.custom-post-nav a i {
    font-weight: 700;
}

.custom-post-nav .prev-nav-link i  {
    margin-right: 1rem;
}

.custom-post-nav .next-nav-link i  {
    margin-left: 1rem;
}

/* Pagination */

.woocommerce nav.woocommerce-pagination,
.pagination {
    position: relative;
    text-align: center;
    z-index: 0;
    width: 100%;
    max-width: fit-content;
    display: block;
    margin: 0 auto;
    margin-top: 5rem;
    padding: 1.2rem;
    overflow: hidden;
    overflow-x: auto;
    background-color: var(--dt-whi-color);
    border: 0.1rem solid rgba(189, 189, 189, 0.2);
    border-radius: 0.5rem;
}

.pagination h2 {
    display: none;
}

.woocommerce nav.woocommerce-pagination ul {
    line-height: 4rem;
    border: none;
}

.woocommerce nav.woocommerce-pagination ul,
.pagination .nav-links {
    display: inline-flex;
    align-items: center;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.page-links .post-page-numbers,
.woocommerce nav.woocommerce-pagination ul li .page-numbers,
.pagination .page-numbers:not(.dots) {
    font-weight: 600;
    border-width: 0.2rem;
    border-style: solid;
    border-color: transparent;
    display: flow-root;
    font-size: 1.6rem;
    line-height: 2.8rem;
    min-width: 3.6rem;
    text-align: center;
    padding: 0.2rem;
    vertical-align: baseline;
    white-space: nowrap;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--dt-sec-color);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.page-links .post-page-numbers {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border-width: 0.1rem;
    border-color: var(--dt-pri-color);
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers:not(.current):hover,
.pagination .page-numbers:not(.dots, .current):hover {
    color: var(--dt-pri-color);
    background-color: transparent;
}

.page-links .post-page-numbers:hover,
.page-links .post-page-numbers:focus,
.woocommerce nav.woocommerce-pagination ul li .page-numbers.current,
.pagination .nav-links .prev.page-numbers,
.pagination .nav-links .next.page-numbers,
.pagination .nav-links .page-numbers.current {
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
}

.page-links .post-page-numbers:not(:last-child),
.pagination .page-numbers.dots,
.woocommerce nav.woocommerce-pagination ul li:not(:last-child),
.pagination .page-numbers:not(.dots):not(:last-child) {
    margin-right: 1rem;
}


/* Sidebar */

.dt_widget-area .widget {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 3rem;
    border: 0.1rem solid rgba(189, 189, 189, 0.2);
    border-radius: 0.8rem;
}

.dt_widget-area .widget + .widget {
    margin-top: 4rem;
}

.dt_widget-area .widget .widget-title {
    margin-bottom: 2.2rem;
    padding-left: 2.2rem;
}

.dt_widget-area .widget .widget-title::after {
    content: "";
    width: 0.3rem;
    height: 88%;
    position: absolute;
    bottom: 0;
    top: 50%;
    left: 0;
    margin-left: 0.5rem;
    background-color: var(--dt-pri-color);
    transform: translateY(-50%) rotate(21deg);
    -webkit-transform: translateY(-50%) rotate(21deg);
}

.dt_widget-area .widget ul li {
    border-bottom: 0.1rem dashed rgba(189, 189, 189, 0.4);
    text-transform: capitalize;
    padding: 10px 0;
}

.dt_widget-area .widget ul>li:first-child {
    padding-top: 0;
}

.dt_widget-area .widget ul>li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.dt_widget-area .widget.widget_archive ul li a,
.dt_widget-area .widget.widget_categories ul li a,
.dt_widget-area .widget.widget_nav_menu ul li a {
    position: relative;
    padding-left: 2.5rem;
    font-weight: 500;
    display: inline-block;
}

.dt_widget-area .widget:not(.widget_payment):not(.widget_social) li a:not(:hover, :focus) {    
    color: var(--dt-sec-color);
}

.dt_widget-area .widget.widget_archive ul li a::before,
.dt_widget-area .widget.widget_categories ul li a::before,
.dt_widget-area .widget.widget_nav_menu ul li a::before {
    content: "\f061";
    position: absolute;
    top: -0.16rem;
    left: 0;
    font-family: FontAwesome;
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--dt-pri-color);
    opacity: 0.4;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.widget_meta ul li a {
    padding-right: 0;
    padding-left: 25px !important;
}

.widget_meta ul li a:before {
    left: 0;
    font-family: FontAwesome;
    color: var(--dt-pri-color);
}

.widget_meta ul li:nth-child(1) a:before {
    content: "\f007";
}

.widget_meta ul li:nth-child(2) a:before {
    content: "\f08b";
}

.widget_meta ul li:nth-child(3) a:before {
    content: "\f086";
}

.widget_meta ul li:nth-child(4) a:before {
    content: "\f27a";
}

.widget_meta ul li:nth-child(5) a:before {
    content: "\f19a";
}

.widget_recent_comments li {
    padding: 0;
    word-break: break-word;
}

/* Widget Tag */

.tagcloud,
.wp-block-tag-cloud {
    margin-bottom: -1rem;
}

.wp-block-tag-cloud a,
.widget_tag_cloud a {
    font-size: 1.6rem !important;
    display: inline-block;
    line-height: 1.5;
    padding: 0.6rem 1.6rem;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    color: var(--dt-sec-color);
    background-color: transparent;
    border: 0.1rem solid rgba(189, 189, 189, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    margin-right: 0.5rem;
}

.wp-block-tag-cloud a:hover,
.wp-block-tag-cloud a:focus,
.widget_tag_cloud a:hover,
.widget_tag_cloud a:focus {
    color: var(--dt-whi-color);
    background-color: var(--dt-pri-color);
    border-color: var(--dt-pri-color);
}

.wp-block-tag-cloud a:not(:hover, :focus),
.dt__footer .widget_tag_cloud a:not(:hover, :focus) {
    color: inherit;
}

/* Full Sidebar >> Widget Calendar */

.calendar_wrap,
.wp-block-calendar {
    position: relative;
    background-color: none;
    overflow: hidden;
    border-radius: 0;
    border-top: 0;
}

.widget_calendar table {
    width: 100%;
    background-color: var(--dt-whi-color);
    border: 0;
    margin: 0;
    caption-side: top;
}

.widget_calendar table caption {
    font-weight: 700;
    color: var(--dt-whi-color);
    position: relative;
    padding: 1.2rem 1.4rem;
    text-align: center;
    background-color: var(--dt-pri-color);
}

.widget_calendar table th, .widget_calendar table td {
    text-align: center;
    line-height: 4rem;
    border: 0;
    padding: 0;
    text-align: center;
    border-radius: 0;
}

.widget_calendar table th {
    color: var(--dt-whi-color);
    background: var(--dt-pri-color);
    font-weight: 700;
    border-radius: 0;
}

.widget_calendar table td {
    font-weight: 600;
    position: relative;
    border-style: solid;
    border-width: 0.1rem;
    color: var(--dt-sec-color);
    border-color: rgb(218, 218, 218);
}

.widget_calendar table tfoot {
    background-color: var(--dt-gray-high);
}

.wp-calendar-nav {
    font-weight: 600;
    padding: 1.15rem 1.4rem;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 87%;
    left: 2.4rem;
    top: 2.6rem;
}

.wp-calendar-nav a {
    display: inline-block;
    color: var(--dt-whi-color);
    text-decoration: none;
}

.dt__footer .widget_calendar table th {
    color: inherit;
}


/* 404 */

.dt__error-inner .title {
    font-size: 35rem;
    line-height: 29rem;
    font-weight: 700;
    color: var(--dt-pri-color);
    margin-bottom: 0;
    text-shadow: 0.9rem 0.8rem 0 #eaeaea;
}

.dt__error-inner .text {
    max-width: 65rem;
    font-size: 4rem;
    line-height: 5rem;
    margin: 4rem auto 0;
    font-weight: 700;
    color: var(--dt-sec-color);
}

.dt__error-inner .dt-btn {
    margin-top: 3.8rem;
}

@media (max-width: 61.938em) {
    .dt__error-inner .title {
        font-size: 34rem;
    }
}

@media (max-width: 35.938em) {
    .dt__error-inner .title {
        font-size: 15rem;
        line-height: 15rem;
    }

    .dt__error-inner .text {
        font-size: 2rem;
        line-height: 2.6rem;
    }
}


/*=================================================================*/


/* Custom Style */

.site--logo .site-description {
    font-size: 1.23rem;
    margin-bottom: 0;
    margin-top: 0.45rem;
}

@media (min-width: 48.938em) and (max-width: 61.938em)  {
    body.admin-bar .dt__mobilenav.is--sticky.on {
        top: 32px;
    }
}

@media (min-width: 37.563em) and (max-width: 48.875em)  {
    body.admin-bar .dt__mobilenav.is--sticky.on {
        top: 46px;
    }
}

body.admin-bar .dt__navbar-wrapper.is--sticky.on,
body.admin-bar .dt__mobilenav-mainmenu-content {
    top: 46px;
}

@media (min-width: 62em) {
    body.admin-bar .dt__navbar-wrapper.is--sticky.on {
        top: 32px;
    }
}

@media (min-width: 48.938em) {
    body.admin-bar .dt__navbar-sidebar-toggle+.dt__sidebar,
    body.admin-bar .dt__mobilenav-mainmenu-content {
        top: 32px;
    }
}

.widget > *+ul,
.widget div > *+ul {
    margin-top: 1.6rem;
}

ol.wp-block-latest-comments {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

ol.wp-block-latest-comments li:last-child {
    margin-bottom: 0;
}

.wp-block-search .wp-block-search__button {
    border-radius: 0.5rem;
}

.site--logo a:focus {
    outline: 0.1rem dotted;
    outline-offset: 0.5rem;
}


/* Homepage 3 */

.header--three .dt__header-topbar {
    background-color: var(--dt-sec-color);
    color: var(--dt-whi-color);
}

.dt__footer .wp-block-table figcaption {
    text-align: center;
}

.dt__footer .wp-block-table td {
    color: var(--dt-sec-color);
}

.dt__footer .wp-block-search .wp-block-search__button {
    border-radius: 0.5rem;
}

.wp-block-button.is-style-outline a.wp-block-button__link {
    color: var(--dt-pri-color);
}

blockquote.wp-block-quote.has-text-color p,
blockquote.wp-block-quote.has-text-color cite {
    color: inherit;
}

.wp-block-code code img {
    margin-left: 10px;
}

.wp-block-button.is-style-outline a.wp-block-button__link {
    color: var(--dt-pri-color);
}

.wp-block-image figcaption {
    text-align: center;
}

.wp-block-embed figcaption {
    text-align: center;
}


a.wp-block-read-more:hover, a.wp-block-read-more:focus {
    color: #fff;
}

.has-text-color a:hover, 
.has-text-color a:focus {
    color: inherit;
}


.wp-block-calendar table caption {
    color: #fff;
    background-color: var(--dt-pri-color);
}

.wp-block-pullquote.has-text-color blockquote {
    border-left-color: inherit;
}

.wp-block-calendar .wp-calendar-nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}

.wp-block-calendar .wp-calendar-nav a {
    color: var(--dt-pri-color);
}

.wp-block-calendar table th {
    background: var(--dt-pri-color);
}

.wp-block-quote .wp-block-search {
    padding-bottom: 5px;
}

.wp-block-latest-posts__list .wp-block-latest-posts__post-author,
.wp-block-latest-posts__list .wp-block-latest-posts__post-date {
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
}

.wp-block-table figcaption {
    text-align: center;
	font-weight: 600;
}

.wp-block-calendar table caption {
    font-weight: 500;
}

.wp-block-code.has-text-color code {
    color: inherit;
}

.wp-block-code.has-background code {
    background: inherit;
}

.wp-block-woocommerce-empty-mini-cart-contents-block .wc-block-mini-cart__empty-cart-wrapper p strong {
    font-size: 16px;
}

.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-cart__totals-title {
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: var(--dt-sec-color);
}

.wc-block-cart__submit-container .wc-block-cart__submit-button.wc-block-components-button:not(.is-link).contained {
    background-color: var(--dt-pri-color) !important;
}

.wc-block-components-totals-coupon__content button.components-button {
    border-radius: 0;
    background-color: var(--dt-pri-color) !important;
}

.wp-block-woocommerce-customer-account a .icon {
    color: var(--dt-pri-color);
}

.wc-block-mini-cart__icon,
.wc-block-mini-cart__badge {
    color: var(--dt-pri-color);
}

a.wc-block-grid__product-link {
    text-decoration: none;
}

.wc-block-grid__product-title {
    color: #222;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 30px;
    padding: 0.25em 0 8px 0;
    border-bottom: 1px solid #eaeaea;
}

.wc-block-grid__product-price.price del {
    padding-right: 10px;
    color: #848484;
    opacity: .6;
}

.wc-block-grid__product-price.price ins {
    color: var(--dt-pri-color);
}

.wc-block-grid__product-price.price ins{
    text-decoration: none;
}

.wp-block-post-author__avatar img {
    border-radius: 100%;
}

ul.wp-block-page-list a {
    text-decoration: none;
}

.wp-block-latest-posts__post-date {
    color: var(--dt-pri-color);
}

.wp-block-latest-posts__post-author {
    font-size: 1.7rem;
    color: var(--dt-sec-color);
    font-weight: 600;
}

.has-background.wp-block-post-author {
    padding: 1rem;
}

.wp-block-woocommerce-customer-account a .wc-block-customer-account__account-icon {
    height: 2em;
    width: 2em;
}

.wc-block-components-product-title a, 
.wc-block-components-product-title a:hover, 
.wc-block-components-product-title a:focus {
    text-decoration: none;
}