:root {
    --brand-color: #000000;
    --black100: #111111;
    --black200: #222222;
    --black300: #333333;
    --black400: #444444;
    --black500: #555555;
    --black600: #666666;
    --black700: #777777;
    --black800: #888888;
    --black900: #999999;
    --white: #ffffff;
    --red: #ff0000;
    --background-grey: #f1f1f1;
    --border-color-d: #dddddd;
    --border-color-c: #cccccc;
    --border-color-e: #eeeeee;
    --black10: #F4F4F4;
}

* {
    user-select: none;
}

*::selection {
    background: none;
}

*::-moz-selection {
    background: none;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
}

;

/*common*/
.dls-pos-in {
    position: initial !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-top: 0;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

h1 {
    font-size: 62px;
}

h2 {
    font-size: 36px;
    font-family: Poppins;

}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 20px;
}

.font-body {
    font-family: Arial, Helvetica, sans-serif;
}

.text-grey {
    color: var(--black600);
}

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

.font-m {
    font-size: 18px;
}

.font-62 {
    font-size: 62px;
}

.font-n {
    font-size: 20px;
}

.font-p {
    font-weight: normal;
    opacity: .8;
}

.font-l {
    font-size: 22px;
}

.font-xl {
    font-size: 32px;
}

.block {
    display: block;
}

.dls-wrapper {
    width: 100%;
    /* float: left; */
}

.line-break {
    display: block;
}

.m0 {
    margin: 0 !important;
}

.mT0 {
    margin-top: 0 !important;
}

.mT10 {
    margin-top: 10px;
}

.mT15 {
    margin-top: 15px;
}

.mT20 {
    margin-top: 20px;
}

.mT30 {
    margin-top: 30px;
}

.mR10 {
    margin-right: 10px;
}

.mR20 {
    margin-right: 20px;
}

.mB20 {
    margin-bottom: 20px;
}

.mB30 {
    margin-bottom: 30px;
}

.mB50 {
    margin-bottom: 50px;
}

.mB70 {
    margin-bottom: 70px;
}

.mB60 {
    margin-bottom: 60px;
}

.mB10 {
    margin-bottom: 10px;
}

.mB15 {
    margin-bottom: 15px;
}

.mB40 {
    margin-bottom: 40px;
}

.mL15 {
    margin-left: 15px;
}

.mL10 {
    margin-left: 10px;
}

.mL5 {
    margin-left: 5px;
}

.mT30 {
    margin-top: 30px;
}

.mT40 {
    margin-top: 40px;
}

.mT50 {
    margin-top: 50px;
}

.mT100 {
    margin-top: 100px;
}

.pB0 {
    padding-bottom: 0 !important;
}

.pT0 {
    padding-top: 0 !important;
}

.pR30 {
    padding-right: 30px;
}

.p30 {
    padding: 30px
}

.p40 {
    padding: 40px
}
.pT50 {
    padding-top: 50px
}
.pB50 {
    padding-bottom: 50px
}

.p0 {
    padding: 0px !important;
}

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50px;
}

.w-60 {
    width: 60px;
}

.w-200 {
    width: 200px !important;
}

.w-70 {
    width: 70px;
}

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

.font-42 {
    font-size: 42px;
}

.transition {
    transition: all .15s;
    -webkit-transition: all .15s;
    -ms-transition: all .15s;
    -moz-transition: all .15s;
}

.hover-scale-image {
    position: relative;
    overflow: hidden;
}

.hover-scale-image img {
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
    will-change: transform;
    transition: transform 1s cubic-bezier(.215, .61, .355, 1);
    -ms-transition: transform 1s cubic-bezier(.215, .61, .355, 1);
    -webkit-transition: transform 1s cubic-bezier(.215, .61, .355, 1);
    -ms-transition: transform 1s cubic-bezier(.215, .61, .355, 1);
}

.hover-scale:hover .hover-scale-image img {
    transform: scale(1.05) translateZ(0);
    -moz-transform: scale(1.05) translateZ(0);
    -webkit-transform: scale(1.05) translateZ(0);
    -ms-transform: scale(1.05) translateZ(0);
}

.border-b-grey {
    border-bottom: 1px solid var(--black200);
}

.border-bottom-grey {
    border-bottom: 1px solid var(--border-color-d);
}

.anchor-none {
    color: inherit;
    text-decoration: none;
}

.anchor-none:hover,
.anchor-none:active,
.anchor-none:focus {
    text-decoration: none;
}

.dls-hover {
    background: var(--black100);
    box-shadow: inset 0 0 0 0 var(--black200);
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
}

.dls-hover:hover {
    box-shadow: inset 400px 50px 0 0 var(--black100);
}

button {
    background-color: transparent;
}

.dls-button.primary svg {
    fill: var(--white);
}

.dls-button.disabled {
    pointer-events: none;
}

.dls-button.light {
    font-weight: normal;
}

.dls-button.primary {
    background: var(--brand-color);
    color: var(--white);
    box-shadow: inset 0 0 0 0 var(--black300);
}

.dls-button.primary:hover {
    box-shadow: inset 400px 50px 0 0 var(--brand-color);
}

.dls-button {
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    padding: 20px 40px;
    font-size: 19px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 var(--brand-color);
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
    display: inline-block;
}

.dls-breadcrumb {
    list-style: none;
    margin-bottom: 0px;
    padding-left: 15px;
    position: absolute;
    bottom: 30px;
}

.dls-breadcrumb li:hover {
    opacity: 1;
}

.visible-dlsxss {
    display: none !important;
}

.overflow-hide {
    overflow: hidden;
}

.dls-breadcrumb li {
    display: inline;
    font-size: 16px;
    opacity: .7;
}

.dls-breadcrumb li a {
    color: var(--white);
    text-decoration: none;
}

.dls-breadcrumb li:last-child {
    opacity: 0.4;
}

.dls-breadcrumb li+li:before {
    padding: 8px;
    color: var(--white);
    content: "/\00a0";
}

.dls-pills li {
    margin-right: 10px;
}

.dls-pills li.active .dls-button {
    font-weight: 600;
    background: var(--brand-color);
    color: var(--white);
}

.dls-button.round {
    border-radius: 100px;
}

.dls-button.small {
    font-size: 18px;
    text-transform: none;
    padding: 10px 25px;
}

.dls-button.medium {
    font-size: 18px;
    text-transform: none;
    padding: 15px 40px;
    font-family: 'poppins';
    font-weight: 600;
}

.dls-button.black {
    background: var(--brand-color);
    box-shadow: inset 0 0 0 0 var(--black300);
    color: var(--white);
}

.dls-button.black:hover {
    box-shadow: inset 400px 50px 0 0 var(--brand-color);
}

.dls-button.white {
    color: var(--white);
    border: 1px solid var(--white);
}

.dls-button:hover,
.dls-button:active {
    text-decoration: none;
    color: inherit;
    box-shadow: inset 400px 50px 0 0 var(--brand-color);
    color: var(--white);
}

.dls-button.white:hover,
.dls-button.white:active {
    text-decoration: none;
    color: inherit;
    box-shadow: inset 400px 50px 0 0 var(--white);
    color: var(--brand-color);
}

.dls-button:hover svg,
.dls-button:active svg {
    fill: var(--white);
}

.dls-button.white:hover svg,
.dls-button.white:active svg {
    fill: var(--brand-color);
}

.dls-button i {
    padding-left: 12px;
}

.dls-button.white svg {
    fill: var(--white);
}

.dls-button svg {
    fill: var(--brand-color);
    width: 24px;
    position: relative;
    top: 2px;
}

.dls-anchor.white {
    border-bottom: 1px solid rgba(255, 255, 255, .8);
}

.dls-anchor {
    position: relative;
    color: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, .8);
}

.dls-anchor:hover {
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
}

.dls-anchor.white:hover {
    opacity: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.dls-block {
    padding: 140px 0;
    width: 100%;
}

/* .dls-page-block {
    padding: 120px 315px;
} */

.dls-block-sm {
    padding: 70px 0;
}

p {
    font-size: 18px;
    opacity: .8;
}

.dls-social li a svg {
    fill: var(--brand-color);
}

.dls-social.white li a svg {
    fill: var(--white);
}

.dls-social li:first-child {
    margin-left: 0;
}

.dls-social li {
    margin-left: 10px;
}

.dls-social {
    list-style: none;
    padding: 0;
}

.dls-block-dark .dls-social li:hover {
    opacity: 1;
}

.dls-block-dark .dls-social li {
    opacity: .7;
}

.nav-up {
    top: -124px;
}

.ul-none {
    list-style: none;
    padding: 0;
}

.dls-list li {
    margin-bottom: 8px;
    opacity: .8;
}

.dls-list {
    padding-left: 30px;
}

.d-flex {
    display: flex;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grid {
    flex: 1 1 33.333333%;
}

.flex-dc {
    flex-direction: column;
}

.flex-dr {
    flex-direction: row;
}

.flex-jc {
    justify-content: space-between;
}

.flex-jcc {
    justify-content: center;
}

.flex-ac {
    align-items: center;
}

.flex-jce {
    justify-content: end;
}

.grey-bg {
    background: var(--black100);
}

.dls-block-dark h2,
.dls-block-dark h6,
.dls-block-dark h5,
.dls-block-dark h3,
.dls-block-dark h4 {
    font-weight: 600;
}

.dls-block-dark .list li,
.dls-block-dark p {
    opacity: .7;
}

.dls-block-dark {
    background: var(--brand-color);
    color: var(--white);
}

.v-resize {
    resize: vertical;
}

.border-top {
    border-top: 1px solid var(--black200);
}

.border-bottom {
    border-bottom: 1px solid var(--black200);
}

.focus-hover {
    border-bottom: 1px solid var(--border-color-c);
    position: relative;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.4s;
    position: relative;
}

.dls-block-dark .focus-hover {
    border-color: var(--black200);
}

.focus-hover .focus-border {
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand-color);
    transition: 0.4s;
}

.dls-block-dark .focus-hover .focus-border {
    background-color: var(--white);
}

.focus-hover:hover .focus-border {
    width: 100%;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.4s;
    left: 0;
}

.dls-pointer {
    cursor: pointer;
}

.float-r {
    float: right;
}

/*header*/
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
    width: 100%;
    background: var(--white);
    z-index: 10;
}

header .dls-container-fluid {
    max-width: 1400px;
    margin: auto;
}

header .logo {
    width: 240px;
}

header .dls-logo {
    width: 240px;
    transition: width .5s ease-in-out;
    -webkit-transition: width .5s;
    -ms-transition: width .5s;
    -moz-transition: width .5s;
    overflow: hidden;
}

header.scrolled .dls-logo {
    width: 78px;
}

header nav ul {
    list-style: none;
    float: right;
    margin: 0;
    padding: 0;
    gap: 3rem;
}

header nav ul li {
    font-weight: bold;
    font-size: 18px;
}

header nav ul li:first-child {
    margin-left: 0;
}

header nav ul li .dls-button {
    margin-left: 20px;
    display: flex;
    white-space: pre;
}

header nav ul li a {
    color: var(--brand-color);
    padding: 15px 0px;
}

header nav ul li a:hover {
    text-decoration: none;
}

/*home*/
.dls-page-banner {
    padding-top: 220px;
    padding-bottom: 100px;
}

hr {
    width: 100%;
    margin: 10px 0;
    float: left;
    border: none;
    height: 1px;
    color: var(--black200);
    background-color: var(--black200);
}

/*footer*/
footer.dls-block {
    padding-bottom: 100px;
}

footer.dls-block .title {
    font-size: 22px;
    opacity: 1;
    color: var(--white);
}

footer .dls-card-list nav {
    display: block;
    width: 100%;
    float: left;
}

footer .dls-foot-contact img {
    width: 100px;
}

footer .dls-card-list ul li:hover {
    opacity: 1;
}

footer nav ul a {
    color: var(--white);
    font-size: 19px;
    opacity: 1;
}

footer .dls-card-list ul li {
    margin-bottom: 14px;
}

footer .dls-card-list ul li b {
    opacity: 1;
}

footer nav ul b img {
    width: 20px;
}

footer nav ul a:hover {
    text-decoration: none;
    opacity: 1;
}

/*mobile menu*/
.hamburger:focus,
.hamburger:visited,
.hamburger:active {
    outline: none;
}

.hamburger {
    position: fixed;
    z-index: 12;
    top: 14px;
    right: 15px;
    cursor: pointer;
    transition: all .15s;
}

.dl-mobile-nav ul li .email {
    margin-top: 30px;
}

.dl-mobile-nav .links a {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--white);
    display: block;
}

.dl-mobile-nav .dls-social li a svg {
    width: 34px;
    height: 34px;
}

.dl-mobile-nav {
    -webkit-transition: .4s;
    transition: .4s;
    position: relative;
    z-index: 11;
    display: none;
}

.dl-mobile-nav.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.dl-mobile-nav.active .mB30 {
    -ms-animation: slide-up2 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
    -webkit-animation: slide-up2 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
    animation: slide-up2 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
    animation-delay: .1s;
}

.dl-mobile-nav.active ul {
    -ms-animation: slide-up 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
    -webkit-animation: slide-up 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
    animation: slide-up 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
    animation-delay: .2s;
}

.dl-mobile-nav.active .font-s {
    -ms-animation: slide-up2 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
    -webkit-animation: slide-up2 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
    animation: slide-up2 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
    animation-delay: .3s;
}

.dl-mobile-nav.active .links a {
    -ms-animation: slide-up 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
    -webkit-animation: slide-up 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
    animation: slide-up 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
}

@keyframes slide-up {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-up2 {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: .7;
    }
}

.dls-icon-card {
    padding: 30px 0px;
}

.flex-grid.dls-icon-card {
    padding: 30px 10px;
}

.dls-icon-card h4 {
    font-size: 26px;
}

.dls-h5-title,
.dls-h4-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
}

.dls-h5-title {
    font-size: 24px;
}

.dls-block-cta {
    background: var(--black200);
    padding: 0;
}

.dls-block-cta a {
    padding: 100px;
    width: 100%;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
}

.dls-block-cta a:avtive {
    box-shadow: inset 0 0 0 0 var(--brand-color);
}

.dls-block-cta .left {
    background: var(--black100);
    box-shadow: inset 0 0 0 0 var(--brand-color);
}

.dls-block-cta .left:hover {
    box-shadow: inset 400px 50px 0 0 var(--black100);
}

.dls-block-cta .right {
    background: var(--black200);
    box-shadow: inset 0 0 0 0 var(--brand-color);
}

.dls-block-cta .right:hover {
    box-shadow: inset 400px 50px 0 0 var(--black200);
}

/*contact*/
.dls-input-group {
    margin-bottom: 15px;
    position: relative;
}

.dls-input-group .input-label {
    position: absolute;
    left: 0;
    width: 100%;
    top: 18px;
    color: var(--black800);
    transition: 0.3s;
    font-size: 19px;
}

.dls-input-group select+.input-label,
.dls-input-group textarea:focus+.input-label,
.dls-input-group input:focus+.input-label,
.dls-input-group input.has-content+.input-label,
.dls-input-group textarea.has-content+.input-label {
    top: -16px;
    font-size: 16px;
    color: var(--black600);
    transition: 0.3s;
}

.dls-input-group select {
    -webkit-appearance: none;
}

.dls-select-group i {
    position: absolute;
    right: 0;
    top: 18px;
}

.dls-input-group select,
.dls-input-group input,
.dls-input-group textarea {
    background: transparent;
    border: 0px;
    border-bottom: 1px solid var(--black300);
    font-size: 19px;
    padding: 18px;
    padding-left: 0px;
    box-sizing: border-box;
    width: 100%;
    outline: 0;
    position: relative;
}

.dls-input-group textarea~.focus-border {
    bottom: 5px;
}

.dls-input-group .focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand-color);
    transition: 0.4s;
}

.dls-input-group select.error~.focus-border,
.dls-input-group input.error~.focus-border,
.dls-input-group textarea.error~.focus-border {
    /* background-color: var(--red);
    width: 100%;
    left: 0; */
}

.dls-input-group .dls-button {
    width: auto;
    padding: 20px 40px;
}

.dls-input-group textarea+.focus-border {
    bottom: 5px;
}

.dls-input-group input:focus~.focus-border,
.dls-input-group select:focus~.focus-border,
.dls-input-group textarea:focus~.focus-border {
    width: 100%;
    transition: 0.4s;
    left: 0;
}

.dls-checkbox {
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 10px;
}

.dls-checkbox input {
    border: none;
    display: none;
    width: 20px;
    opacity: 0;
    background: 0 0;
}

.dls-checkbox input:checked+label {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: var(--white);
}

.checkbox-label {
    display: block;
    font-size: 18px;
}

.dls-check-buttons .dls-checkbox label {
    border: 1px solid var(--brand-color);
    position: relative;
    background: var(--white);
    width: max-content;
    margin: 0;
    font-weight: normal;
    border-radius: 30px;
    font-size: 19px;
    -webkit-transition: all .2s cubic-bezier(.645, .045, .355, 1);
    transition: all .2s cubic-bezier(.645, .045, .355, 1);
    cursor: pointer;
    display: inline-flex;
    padding: 12px 30px;
}

.dls-check input {
    border: none;
    display: none;
    width: 16px;
    opacity: 0;
    background: 0 0;
}

.dls-check .dls-check-label-dec:hover {
    opacity: 1;
}

.dls-check .dls-check-label-dec {
    display: block;
    cursor: pointer;
    font-size: 19px;
    opacity: .8;
    margin-left: 5px;
}

.dls-check .dls-check-label {
    border: 1px solid #cccccc;
    position: relative;
    width: 32px;
    height: 32px;
    background: var(--white);
    display: inline-block;
    border-radius: 0px;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
    text-align: center;
    margin-right: 10px;
}

.dls-check :checked+.dls-check-label {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: var(--white);
}

.dls-check :checked+.dls-check-label svg {
    opacity: 1;
    filter: alpha(opacity=100);
    fill: var(--white);
}

.dls-check svg {
    opacity: 0.5;
    position: relative;
    top: 3px;
}

.dls-page-title {
    font-size: 20px;
    font-weight: normal;
    opacity: .5;
    text-transform: uppercase;
}

/*services*/
/* .dls-border-card{
    padding: 40px 0;
}

.dls-card-stat:hover,
.dls-card-service:hover{
    opacity: 1;
}

.dls-card-stat,
.dls-card-service{
    padding: 28px 0;
    opacity: .8;
} */

.sticky-sub-nav {
    width: 100%;
    float: left;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -moz-transition: all 0.25s;
}

.sticky-sub-nav.sub-nav-down {
    top: 92px;
    z-index: 100;
    border-top: 1px solid var(--border-color-e);
}

.sticky-sub-nav li.active {
    opacity: 1;
}

.sticky-sub-nav li:hover {
    opacity: 1;
}

.sticky-sub-nav li a.active:after {
    content: "";
    left: 0;
    bottom: -1px;
    right: 0;
    height: 2px;
    position: absolute;
    background: var(--brand-color);

}

.sticky-sub-nav li a {
    opacity: .7;
    position: relative;
}

.sticky-sub-nav li a.active {
    opacity: 1;
}

.sticky-sub-nav li a {
    cursor: pointer;
    padding: 20px 35px;
    transition: all 1.5s;
    display: block;
}

/*animations*/
.amin-path {
    stroke-width: 4;
    stroke: var(--white);
    stroke-dasharray: 1043;
    stroke-dashoffset: 0;
}

.dark .amin-path {
    stroke: var(--brand-color);
}

.icon-animate:hover .amin-icon .amin-path,
.dls-card-stat:hover .amin-icon .amin-path,
.dls-service-card:hover .amin-icon .amin-path,
.dls-icon-card:hover .amin-icon .amin-path,
.dls-card-list:hover .amin-icon .amin-path {
    animation: type-icon 2.8s ease forwards;
}

@keyframes type-icon {
    0% {
        stroke-dashoffset: 1043;
    }

    100% {
        stroke-dashoffset: 0;
    }
}


/* DLS-Shop */
a:hover,
a:focus {
    text-decoration: none;
}

.dls-check-buttons .dls-checkbox label:hover {
    background: var(--black100);
    color: var(--white);
}

.heading-Title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
}

.dls-page-banner.banner p {
    font-size: 22px;
    font-weight: 400;
    line-height: 36px;
    font-family: Arial, Helvetica, sans-serif;
    opacity: .8;
}

.dls-page-banner h2 {
    font-size: 54px;
    font-weight: 700;
}

.dls-card {
    color: var(--black100);
}

.dls-card h2 {
    font-size: 30px;
}

.dls-card .product-img {
    background: var(--black10);
    /* padding: 30px; */
    display: flex;
    justify-content: center;
}

.dls-card-list ul {
    padding-left: 0;
    margin-top: 20px;
}

.dls-card-list ul li {
    font-size: 19px;
    opacity: .7;
    margin-bottom: 10px;
    display: block;
}

/* Pagination */
.dls-pagination ul li {
    list-style: none;
    margin: 0 3px;
    display: inline-flex;
}

.button.disabled {
    opacity: .3;
    cursor: not-allowed;
    background: var(--border-color-e);
}

.dls-pagination .button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    padding: 0 20px;
    line-height: 46px;
    height: 46px;
    text-decoration: none;
    color: var(--black200);
    background: var(--white);
    border: 1px solid var(--border-color-e);
    position: relative;
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dls-pagination .button:hover {
    background: var(--background-grey);
    text-decoration: none;
    color: var(--black100);
}

.dls-pagination .active {
    background: var(--black100);
    text-decoration: none;
    color: var(--white);
}

.dls-pagination ul {
    padding: 0;
    display: inline-flex;
}



/* Detail Page */
.product-imgs img {
    width: 70%;
    display: block;
    margin: 0 auto;
}

.product-imgs .img-display {
    overflow: hidden;
    height: 500px;
    display: flex;
}

.product-imgs .img-showcase {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.product-imgs .img-showcase img {
    min-width: 100%;
    object-fit: cover;
    /* background: #f1f1f1; */
    /* padding: 40px; */
}

.product-imgs .img-select {
    display: flex;
    max-width: 100%;
    min-width: fit-content;
    margin-top: 20px;
}

.product-imgs .img-item {
    /* margin: 0px 15px; */
    /* background: #f1f1f1;
    padding: 20px; */
}

.product-imgs .img-item:nth-child(1),
.product-imgs .img-item:nth-child(2),
.product-imgs .img-item:nth-child(3) {
    margin-left: 0;
}

.product-imgs .img-item:hover {
    opacity: 0.8;
}

.product-imgs .product-content {
    padding: 2rem 1rem;
}

.dls-mobile h3 {
    margin: 0px;
    font-size: 14px;
    font-weight: 400;
}

.dls-mobile-cta-btns {
    display: none;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dls-mobile {
    display: none;
    background: var(--white);
    padding: 12px 0px;
    position: fixed;
    bottom: 0px;
    z-index: 11;
    width: 100%;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item a {
    color: var(--black100);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    content: "/";
}

.breadcrumb-item.active {
    color: var(--black800);
}

.dls-relatedproducts {
    padding: 80px 0px 0px;
}

.product-imgs {
    margin-bottom: 80px;
}

.dls-productDetails {
    padding-left: 20px;
}

.dls-productDetails hr {
    opacity: 0.2;
}

.dls-productDetails h1 {
    font-size: 36px;
}

.dls-productDetails p a {
    color: var(--brand-color);
    opacity: 1;
}

.dls-productDetails p a:hover {
    text-decoration: underline;
}

.dls-productDetails .price {
    /* padding: 20px 0 2px; */
    margin: 0;
    font-size: 36px;
}

.dls-productDetails .rupees {
    /* padding-bottom: 4px; */
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    font-family: poppins;
}

.dls-productDetails .price-wrapper {
    position: relative;
    width: 100%;
    max-width: fit-content;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0 30px;
}

.dls-productDetails .price-wrapper img {
    cursor: pointer;
}


.dls-productDetails ul {
    padding-left: 25px;
}

.dls-productDetails ul li {
    font-size: 18px;
    opacity: .8;
}

/* The Modal (background) */
.dls-product-content .modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (image) */
.dls-product-content .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
.dls-product-content #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.dls-product-content .modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.dls-product-content .close {
    position: absolute;
    top: 8%;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}



.dls-select-group {
    position: relative;
    font-family: Arial;
}

.dls-select-group select {
    display: none;
    /*hide original SELECT element:*/
}

.select-selected {
    background-color: transparent;
}

/*style the arrow inside the select element:*/
/* .select-selected:after {
    position: absolute;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="12" viewBox="0 0 22 12" fill="none"><path d="M10.3518 11.7296L0.268479 1.57579C-0.0894931 1.21532 -0.0894931 0.630835 0.268479 0.270358C0.626452 -0.0901192 1.20687 -0.0901192 1.56485 0.270358L11 9.77148L20.4352 0.270358C20.7931 -0.0901192 21.3735 -0.0901192 21.7315 0.270358C22.0895 0.630835 22.0895 1.21532 21.7315 1.57579L11.6482 11.7297C11.2902 12.0901 10.7098 12.0901 10.3518 11.7296Z" fill="black"/></svg>');
    top: 14px;
    right: 10px;
  } */

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div {
    color: var(--Black-60, #666);
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    cursor: pointer;
    user-select: none;
}

.select-selected {
    color: var(--Black-60, #666);
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    cursor: pointer;
    user-select: none;
    padding: 18px;
    padding-left: 18px;
    padding-left: 0px;
}

.select-items div,
.select-selected option {
    color: var(--Black-80, #333);
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    /* 250% */
}

/*style items (options):*/
.select-items {
    position: absolute;
    background: #fff;
    top: 100%;
    padding: 3rem 2rem;
    left: 0;
    right: 0;
    max-height: 30rem;
    overflow: scroll;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    z-index: 99;
}

.select-items div {
    padding-left: 2rem;
    padding-right: 2rem;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

input.search {
    width: 260px;
    border: 1px solid #555;
    /* display: block; */
    padding: 9px 4px 9px 40px;
    background: transparent url("/assets/search.svg") no-repeat 13px;
}


/* footer location */
._dl_location_info {
    gap: 1rem;
    display: flex;
    align-items: center;
}

._dl_location_text {
    width: 100%;
}

footer ._roll-on_wrapper {
    position: relative;
    height: 75px;
    display: grid;
}

footer ._roll-on_wrapper div {
    height: 26.5667px;
    overflow: hidden;
    position: relative;
}

footer ._roll-on {
    opacity: 0;
    top: 20px;
    position: absolute;
}

footer ._roll-on:nth-child(1) {
    animation: rollDown 11s forwards infinite;
}

footer ._roll-on:nth-child(2) {
    animation: rollDown2 11s forwards infinite;
}

footer ._roll-on:nth-child(3) {
    animation: rollDown3 11s forwards infinite;
}

footer ._delayed-roll-on {
    opacity: 0;
    top: 20px;
    position: relative;
}

footer ._delayed-roll-on._delayed-text_01 {
    animation: rollDown 11s forwards infinite;
    animation-delay: 1.1s;
}

footer ._delayed-roll-on._delayed-text_02 {
    animation: rollDown2 11s forwards infinite;
    animation-delay: 1.1s;
}

footer ._delayed-roll-on._delayed-text_03 {
    animation: rollDown3 11s forwards infinite;
    animation-delay: 1.1s;
}

footer ._flag_wrapper {
    height: 2rem;
    width: fit-content;
}

footer ._flag_media {
    width: 100%;
    height: 1.8rem;
    object-fit: contain;
}


@media screen and (max-width: 1300px) {
    .dls-foot-desc {
        max-width: 90%;
        margin: 20px 0 10px;
    }
}

@media screen and (max-width: 992px) {

    .dls-foot-desc {
        max-width: 93%;
        margin: 20px auto 10px;
    }

    footer ._roll-on_wrapper ._dl_location_info {
        display: flex;
        justify-content: center;
    }

    ._dl_location_text {
        width: 10.2rem;
        overflow: visible;
    }

    ._roll-on {
        display: flex;
        text-align: left;
    }

    footer ._delayed-roll-on {
        padding-left: 4px;
    }
}

@media screen and (max-width: 446px) {
    .dls-foot-desc {
        max-width: 100%;
    }
}

@media screen and (max-width: 420px) {
    .dls-foot-desc {
        max-width: 83%;
    }
}

/* keyframs for roll on text */
@keyframes rollDown {
    0% {
        top: 20px;
        opacity: 0;
    }

    11% {
        top: 2px;
        opacity: 1;
    }

    24% {
        top: 2px;
        opacity: 1;
    }

    33% {
        top: -20px;
        opacity: 0;
    }
}

@keyframes rollDown2 {
    33% {
        top: 20px;
        opacity: 0;
    }

    44% {
        top: 2px;
        opacity: 1;
    }

    57% {
        top: 2px;
        opacity: 1;
    }

    66% {
        top: -20px;
        opacity: 0;
    }
}


@keyframes rollDown3 {
    66% {
        top: 20px;
        opacity: 0;
    }

    77% {
        top: 2px;
        opacity: 1;
    }

    90% {
        top: 2px;
        opacity: 1;
    }

    99% {
        top: -20px;
        opacity: 0;
    }
}








/* Dropdown menu CSS */
.dl_drop-menu .dl_drop-menu_btn .dl_drop-menu_btn_text {
    padding: 0;
}

.dl_drop-menu .dl_drop-menu_btn {
    gap: 8px;
    height: 8.3rem;
    display: flex;
    cursor: pointer;
    align-items: center;
}

.dl_drop-menu .dl_drop-menu_btn_icon {
    display: flex;
    width: fit-content;
    height: fit-content;
}

.dl_drop-menu .dl_drop-menu_btn_icon img {
    width: 22.54px;
    height: 21.68px;
    object-fit: contain;
}

.dl_drop-menu {
    margin-right: 15px;
    position: relative;
}

.dl_drop-menu .dl_drop-menu_options {
    top: 83px;
    opacity: 0;
    visibility: hidden;
    width: 420px;
    display: flex;
    padding: 25px;
    position: absolute;
    background: #FFF;
    flex-direction: column;
    box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.10);
}

.dl_drop-menu_options[data-position="left"] {
    left: 0;
}

.dl_drop-menu_options[data-position="right"] {
    right: 0;
}

.dl_drop-menu .dl_drop-menu_options .dl_drop-menu_option {
    display: flex;
    padding: 20px;
    cursor: pointer;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
}

.dl_drop-menu .dl_drop-menu_option_content {
    max-width: 88%;
}

.dl_drop-menu .dl_drop-menu_options .dl_drop-menu_option:hover {
    background: #f5f5f5;
}

.dl_drop-menu .dl_drop-menu_options .dl_drop-menu_option .dl_drop-menu_option_link {
    padding: unset;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    /* 150% */
    font-family: Poppins;
    color: var(--Title-Font-Color, #040404);
}

.dl_drop-menu .dl_drop-menu_options .dl_drop-menu_option .dl_drop-menu_option_typo {
    color: #222;
    margin: unset;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    /* 133.333% */
    font-family: Arial;
}

.dl_drop-menu .dl_drop-menu_options .dl_drop-menu_option .dl_drop-menu_option_icon {
    width: 35px;
    height: 35px;
}

.dl_drop-menu.activeDrop .dl_drop-menu_options {
    display: block;
    opacity: 0;
    visibility: visible;
    z-index: 10;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
}

.dl_drop-menu.activeDrop .dl_drop-menu_btn .dl_drop-menu_btn_chevron-down_icon svg {
    transform: rotate(-180deg);
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 30px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    to {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
}

/*****komal code**/
/**static pages**/
.dls-privacy-terms-block .dls-container {
    padding-left: 15px;
    padding-right: 15px;
}

.dls-page-banner h1 {
    color: var(--black);
    font-family: Poppins;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 40px;
    opacity: 1;
}

.dls-privacy-terms-block .dls-page-block>.dls-content-block:not(:last-child) {
    margin-bottom: 60px;
}

.dls-privacy-terms-block .dls-page-block p,
.dls-privacy-terms-block .dls-page-block li,
.dls-privacy-terms-block .dls-page-block a {
    font-size: 19px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 0;
    color: #222;
    opacity: 1;
    line-height: 30px;
}

.dls-privacy-terms-block .dls-page-block a {
    opacity: 1;
}

.dls-privacy-terms-block .dls-page-block a:hover {
    text-decoration: underline;
}

.dls-privacy-terms-block .dls-page-block li {
    line-height: 30px;
}

.dls-privacy-terms-block .dls-page-block ul li:not(:last-child) {
    margin-bottom: 10px;
}

.dls-privacy-terms-block .dls-content-block-inner {
    margin-bottom: 40px;
}


.dls-content-block h2:not(:first-child) {
    padding-top: 30px;
}

.dls-privacy-terms-block h3 {
    color: #000;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.dls-privacy-terms-block h2 {
    color: #000;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 40px;
}

.dls-privacy-terms-block .dls-content-block>ul:not(:last-child) {
    margin-bottom: 40px;
}

.dls-privacy-terms-block .dls-content-block ul {
    padding-left: 35px;
}

.dls-list-dot {
    list-style: disc;
}

.dls-list-alpha {
    list-style: lower-alpha;
}

.dls-privacy-terms-block .dls-content-block ul.dls-list-alpha li::marker {
    color: #000;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    opacity: 1;
}

.dls-privacy-terms-block .dls-content-block ul li h4,
.dls-privacy-terms-block .dls-content-block ul li h3 {
    color: #000;
}

.dls-privacy-terms-block .dls-content-block ul.dls-list-roman {
    list-style: lower-roman;
    padding: 0;
}

.dls-privacy-terms-block .dls-content-block ul.dls-list-roman li::marker {
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    opacity: 1;
}

.dls-privacy-terms-block .dls-content-block ul.dls-list-dot li::marker {
    font-size: 20px;
}


/****contact us**/
.dl-contact-form h1 {
    text-align: center;
}

.dl-contact-form p {
    color: #000;
    font-family: Arial;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}

.dl-input-group {
    margin-bottom: 30px;
    position: relative;
}

.dl-input-group .input-label {
    position: absolute;
    left: 0;
    width: 100%;
    top: 18px;
    color: var(--black600);
    transition: 0.3s;
    font-size: 19px;
    z-index: -1;
}

.dl-input-group select+.input-label,
.dl-input-group textarea:focus+.input-label,
.dl-input-group input:focus+.input-label,
.dl-input-group input.has-content+.input-label,
.dl-input-group textarea.has-content+.input-label {
    top: -16px;
    font-size: 16px;
    color: var(--black600);
    transition: 0.3s;
}

.dl-input-group select {
    -webkit-appearance: none;
}

.dl-select-group i {
    position: absolute;
    right: 0;
    top: 18px;
}

.dl-input-group select,
.dl-input-group input,
.dl-input-group textarea {
    background: transparent;
    border: 0px;
    border-bottom: 1px solid var(--black600);
    font-size: 19px;
    padding: 18px;
    padding-left: 0px;
    box-sizing: border-box;
    width: 100%;
    outline: 0;
    position: relative;
    resize: none;
}

.dl-input-group textarea~.focus-border {
    bottom: 5px;
}

.dl-input-group .focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand-color);
    transition: 0.4s;
}

.dl-input-group .dl-input-errors {
    position: absolute;
    color: red;
    bottom: -25px;
}

.dl-input-group select.error~.focus-border,
.dl-input-group input.error~.focus-border,
.dl-input-group textarea.error~.focus-border {
    background-color: var(--red);
    width: 100%;
    left: 0;
}

.dl-input-group .dl-button {
    width: auto;
    padding: 20px 40px;
}

.dl-input-group textarea+.focus-border {
    bottom: 5px;
}

.dl-input-group input:focus~.focus-border,
.dl-input-group select:focus~.focus-border,
.dl-input-group textarea:focus~.focus-border {
    width: 100%;
    transition: 0.4s;
    left: 0;
}

.dl-checkbox {
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 10px;
}

.dl-checkbox input {
    border: none;
    display: none;
    width: 20px;
    opacity: 0;
    background: 0 0;
}

.dl-checkbox input:checked+label {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: var(--white);
}

.dl-check-group label {
    display: none;
}

.dl-check-buttons .dl-checkbox label {
    border: 1px solid var(--brand-color);
    position: relative;
    background: var(--white);
    width: auto;
    margin: 0;
    font-weight: normal;
    border-radius: 30px;
    font-size: 19px;
    -webkit-transition: all .2s cubic-bezier(.645, .045, .355, 1);
    transition: all .2s cubic-bezier(.645, .045, .355, 1);
    cursor: pointer;
    display: inline-flex;
    padding: 12px 30px;
}

.dl-check input {
    border: none;
    display: none;
    width: 16px;
    opacity: 0;
    background: 0 0;
}

.dl-check .dl-check-label-dec:hover {
    opacity: 1;
}

.dl-check .dl-check-label-dec {
    display: block;
    cursor: pointer;
    font-size: 19px;
    opacity: .8;
    margin-left: 5px;
}

.dl-check .dl-check-label {
    border: 1px solid #cccccc;
    position: relative;
    width: 32px;
    height: 32px;
    background: var(--white);
    display: inline-block;
    border-radius: 0px;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
    text-align: center;
    margin-right: 10px;
}

.dl-check :checked+.dl-check-label {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: var(--white);
}

.dl-check :checked+.dl-check-label svg {
    opacity: 1;
    filter: alpha(opacity=100);
    fill: var(--white);
}

.dl-check svg {
    opacity: 0.5;
    position: relative;
    top: 3px;
}

.dl-button.black {
    background: var(--brand-color);
    box-shadow: inset 0 0 0 0 var(--black300);
    color: var(--white);
}
.dl-contact-form form {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}
.dl-submit-group button {
    text-transform: uppercase;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 700;
}
.h-100{
    height: 100%;
}
.dls-about-btw-border{
    height: 1px;
    width: 100%;
    background-color: #eee;
    margin: 50px 0;
}
.btw-border{
    border-bottom: 1px solid #eee;
}