* {
    transition: all ease-in-out .3s;
}
a, a:active, a:hover, a:focus {
    text-decoration: none;
}
ul {
    list-style: none;
}
li {
    display: inline-block;
}
body {
    background: #efefef;

}
p {
    color: #666;
    cursor: help;
    text-align: justify;
}
h2,h3,h4,h5 {
    color: #444;
    margin-bottom: 1.5rem;
    cursor: default;
}
/* -----------------------------------------------------------------------------------------------------------------------*/
.DJH000.mobileMenu {
    position: fixed;
    display: flex;
    z-index: 9999;
    background: #fff;
    width: 100%;
}
.mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right:0;
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999999;
}
.mobileMenu ul li {
    display: block;
    text-align: center;
    max-width: fit-content;
}
.mobileMenu ul li a {
    display: block;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: .5rem 1rem;
    font-weight: 500;
    color: #666 !important;
}
.mobileMenu ul li a i {
    font-size: 2rem;
    padding-left: 5px;
    vertical-align: -2px;
    font-weight: normal !important;
}

.navigation__checkbox {
    display: none
}

.navigation__button {
    background-color: #fff;
    height: 7rem;
    width: 7rem;
    position: fixed;
    top: 3rem;
    left: 6rem;
    border-radius: 50%;
    z-index: 2000;
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer
}

@media only screen and (max-width: 56.25em) {
    .navigation__button {
        top: 3rem;
        left: 4rem
    }
}

@media only screen and (max-width: 37.5em) {
    .navigation__button {
        top: 2rem;
        left: 3rem
    }
}

.navigation__background {
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    position: fixed;
    top: 3.5rem;
    left: 6.5rem;
    /*background-image: radial-gradient(#7ed56f, #28b485);*/
    background-image: radial-gradient(#00b4d9, #0f6ac8);
    z-index: 1000;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1)
}

@media only screen and (max-width: 56.25em) {
    .navigation__background {
        top: 4.5rem;
        left: 4.5rem
    }
}

@media only screen and (max-width: 37.5em) {
    .navigation__background {
        top: 3.5rem;
        left: 3.5rem
    }
}

.navigation__nav {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1500;
    opacity: 0;
    width: 0;
    -webkit-transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

.navigation__list {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    width: 100%
}

.navigation__item {
    margin: 1rem;
    display: block;
}
.navigation__item i {
    padding-left: 1rem;
    display: none;
}

.navigation__link:link, .navigation__link:visited {
    display: inline-block;
    font-size: 3rem;
    font-weight: 300;
    padding: 1rem 2rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    /*background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);*/
    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%);
    background-size: 220%;
    -webkit-transition: all .4s;
    transition: all .4s;
    margin-bottom: .5rem;
}
.navigation__link i {
    -webkit-transition: all .4s;
    transition: all .4s
}
.navigation__link:link span, .navigation__link:visited span {
    margin-right: 1.5rem;
    display: inline-block
}

.navigation__link:hover, .navigation__link:active {
    background-position: 100%;
    color: #55c57a;
    -webkit-transform: translateX(1rem);
    transform: translateX(1rem)
}

.navigation__checkbox:checked ~ .navigation__background {
    -webkit-transform: scale(80);
    transform: scale(80)
}

.navigation__checkbox:checked ~ .navigation__nav {
    opacity: 1;
    width: 100%
}

.navigation__icon {
    position: relative;
    margin-top: 3.5rem
}

.navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: 2px;
    background-color: #333;
    display: inline-block
}

.navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    -webkit-transition: all .2s;
    transition: all .2s
}

.navigation__icon::before {
    top: -.8rem
}

.navigation__icon::after {
    top: .8rem
}

.navigation__button:hover .navigation__icon::before {
    top: -1rem;
}

.navigation__button:hover .navigation__icon::after {
    top: 1rem;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon {
    background-color: transparent
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
    top: 0;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg)
}

/* -----------------------------------------------------------------------------------------------------------------------*/
.DJH00.dekstopMenu {
    display: block;
    width: 100%;
    position: fixed;
    z-index: 9999999999;
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}
.DJH00 .d-flex {
    align-items: center;
    justify-content: space-between;
}
.DJH00 .logo img  {
    opacity: .7;
}
.DJH00 .menu {
    flex-grow: 1;
    text-align: left;
}
.DJH00 .menu ul {
    margin-top: 1rem;
}
.DJH00 .menu ul li {
    margin-left: 1%;
}
.DJH00 .menu ul li a {
    display: block;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: .5rem 1rem;
    font-weight: 500;
    color: #666;
}
.DJH00 .menu ul li a i {
    font-size: 2rem;
    padding-left: 5px;
    vertical-align: -2px;
    font-weight: normal !important;
}
.DJH00 .menu ul li a:hover {
    transform: scale(1.05);
}

.menu-space-holder {
    display: block;
    margin-bottom: 100px;
}
.djh-tel a {
    background-image: -moz-linear-gradient(0deg, #f78000 0%, #f7a000 100%);
    background-image: -webkit-linear-gradient(0deg, #f78000 0%, #f7a000 100%) !important;
    background-image: -ms-linear-gradient(0deg, #f78000 0%, #f7a000 100%);
    color: #fff !important;
    direction: ltr;
    font-size: 16px;
}
.djh-tel a i {
    /*transform: rotate(-155deg);*/
    vertical-align: -4px !important;
    padding-right: 7px;
}
.djh-tel a span {
    direction: rtl;
    padding: 0 5px;
}
.absolute.djh-tel a{
    display: block;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.djh-tel.mobile-only {
    display: block;
    position: fixed;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    text-align: center;
    direction: ltr;
    right: 0;
    left: 0;
    bottom: 0;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 5%);
    overflow: hidden;
}
.djh-tel.mobile-only a {
    padding: 2px 10px;
    border-radius: 5px;
}
.djh-tel.mobile-only a i {
    font-size: 22px;
}

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

.DJH01 {
    display: flex;
    background: url(https://djh.ir/cdn/img/hero-area.jpg) no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    text-align: center;
}
.DJH01 .overlay {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.6;
    z-index: 1;
}
.DJH01 .row {
    position: relative;
    z-index: 2;

}
.DJH01 h1 {
    color: #fff;
    font-size: 6rem;
    font-weight: 700;
    color: #f6ff84;
    text-shadow: 2px 2px 4px #000000;
    margin: 30vh 0 2% 0;
    display: block;
    text-align: center;
}
.DJH01 h2 {
    color: #f0f0f0;
    font-size: 2.5rem;
    line-height: 4.5rem;
}
.DJH01 .social {
    margin: 2% 0;
}
.DJH01 .social ul{
    list-style: none;
}
.DJH01 .social ul li{
    display: inline-block;

}
.DJH01 .social ul li a{
    color: #fff;
    background: #333;
    display: block;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 1.5px;
    margin-left: 10px;
    /* vertical-align: 0px; */
    line-height: 16px;
}
.DJH01 .social ul li a i {
    font-size: 3rem;
}
.DJH01 .social ul li a:hover {
    transform: scale(1.1);
    background: #0073d6;
}


/* -----------------------------------------------------------------------------------------------------------------------*/
.mt-5 {
    margin-top: 5rem !important;
}
.DJH02 {

}
.DJH02 h2{
    margin-top: 2%;
}
.DJH02 .d1 img{
    border: 8px solid #fff;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 20%);
}

.DJH02 .d2 .btn {
    margin-top: 2rem;
    padding: 1.5rem 3rem;
    font-size: 2rem;
    line-height: 1.5;
    border-radius: 0.3rem;
    /**/
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.5rem 4rem;
    display: inline-block;
    border-radius: 10rem;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: relative;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
}


/* -----------------------------------------------------------------------------------------------------------------------*/
.parallax {
    background: url(https://djh.ir/cdn/img/parallax/1.jpg) no-repeat center fixed;
    width: 100%;
    background-size: cover !important;
    background-position: center top;
    padding: 150px 0px 150px 0px;
    text-align: center;
    -webkit-filter: blur(1px);
}
.parallax-1 {
    /*background: url(https://djh.ir/cdn/img/parallax/1.jpg) no-repeat center fixed;*/
    background: url(https://djh.ir/cdn/img/parallax/1.jpg) no-repeat center fixed;
}
.parallax-2 {
    /*background: url(https://djh.ir/cdn/img/parallax/2.jpg) no-repeat center fixed;*/
    background: url(https://djh.ir/cdn/img/parallax/2.jpg) no-repeat center fixed;
}
.parallax-3 {
    /*background: url(https://djh.ir/cdn/img/background/bg-1.jpg) no-repeat center fixed;*/
    background: url(https://djh.ir/cdn/img/parallax/3.jpg) no-repeat center fixed;
}
.parallax h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #fff !important;
    background: rgba(0,0,0,.5);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 1px;
}
.parallax a {
    display: block;
    color: #d1d1d1;
    margin: 1rem 0;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}
.parallax a:hover {
    color: #f6ff84;
}
.parallax p {
    color: #eee;
    text-align: center;
    background: rgba(0,0,0,.3);
    display: block;
    max-width: fit-content;
    padding: 1rem 2rem;
    border-radius: 5px;
    margin: 0 auto;
}
.parallax p {
    background: rgba(0,0,0,.6);
}
.parallax:hover {
    -webkit-filter: blur(0);
}
    /* -----------------------------------------------------------------------------------------------------------------------*/
.DJH04 {
    background: #efefef;
}
.DJH04 h2 {
    display: block;
    text-align: center;
    font-size: 2.5rem;
    color: #555;
    margin-bottom: 5rem;
}
.DJH04 .d0 {
    background: #fff;
    border-radius: 5px;
    padding: 3rem 1.5rem;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    text-align: center;
}
.DJH04 .d0 i {
    font-size: 5rem;
    text-align: center;
    display: block;
    margin: 0 auto;
    color: #00b4d9;
}
.DJH04 .d0 h3 {
    margin-top: .75rem;
    color: #00b4d9;
    font-size: 1.6rem;
}
.DJH04 .d0 p {
    font-size: 1.4rem;
    line-height: 2.8rem;
    text-align: justify-all;
}

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


.DJH06 .col-12 {
    position: relative;
}
.DJH06 .dash {
    position: absolute;
    top: 0;
    /*right: -84%;*/
    left: 90%;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-left: 2px dashed #38d8fa;
}
.DJH06 ul,.DJH06 ul li {
    display: block;
    width: 100%;
}
.DJH06 ul li {
    background: #fff;
    border-radius: 5px;
    padding: 1rem;
    list-style: none;
    border-right: 3px solid #00b4d9;
    margin-bottom: 3rem;
}
.DJH06 .d0 {
    position: relative;
    border-left: 3px solid #00b4d9;
}
.DJH06 .d0 h2 {
    color: #00b4d9;
    font-size: 1.6rem;
}
.DJH06 .d0 i {
    font-size: 20px;
    padding: 12px 10px;
    border-radius: 50%;
    background: #00b4d9;
    color: #fff;
    text-align: center;
    vertical-align: -3px;
}
.DJH06 h3 {
    font-size: 1.6rem;
    color: #666;
}
.DJH06 .d1 {
    font-size: 1.4rem;
    color: #777;
}
.DJH06 .d2 {
    font-size: 1.4rem;
    color: #888;
}
.DJH06 .col-md-6 {
    background: #f0f0f0;
}
.DJH06 .tags {
    text-align: center;
    align-items: center;
}
.DJH06 .tags li {
    display: inline-block;
    width: auto;
    border: 3px solid #00b4d9;
    padding: 0.5rem 1rem;
    margin: 5px;
    color: #00b4d9;
    font-weight: bold;
    cursor: default;
    text-transform: capitalize;
}
/* -----------------------------------------------------------------------------------------------------------------------*/
.DJH08 {

}
.DJH08 h2 {
    display: block;
    text-align: center;
    font-size: 2.5rem;
    color: #555;
    margin-bottom: 5rem;
}
.DJH08 a {
    display: block;
    width: 100%;
}
.DJH08 a img {
    display: block;
    max-width: 100%;
    object-fit: cover;
    object-position: top;
    border: 5px solid #fff;
    margin: 3rem 1rem;
    /*height: 400px;*/
    box-shadow: 0px 0px 30px rgb(0 0 0 / 20%);
}
.DJH08 a:hover img {
    box-shadow: 0px 0px 30px rgb(0 0 0 / 50%);
    transform: scale(1.05);

}
.DJH08 a .img {
    display: block;
    width: 100%;
    background-size: cover;
    background-position: center top;
    padding: 150px 0px 150px 0px;
    text-align: center;
}
.DJH08 a .img-1 {
    /*background: url("https://djh.ir/cdn/img/gallery/img-1.jpg") no-repeat top right scroll;*/
}
.DJH08 .col-12 {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;

}
/* -----------------------------------------------------------------------------------------------------------------------*/
footer {
    padding: 5rem 0;
    background: #1C1C20;

}
footer p {
    font-size: 14px;
    color: #fff;
    text-align: center;
}
footer p a {
    color: #fff;
    font-weight: normal !important;
}

/* -----------------------------------------------------------------------------------------------------------------------*/
#DJHScroll2Top {
    /*display: none;*/
    opacity: 0;
    visibility: hidden;
    padding: 2px 4px;
    line-height: 0;
    font-size: 3rem;
    border: 1px solid #0073d6;
    border-radius: 50%;
    background: #0073d6;
    color: #fff;
    position: fixed;
    bottom: -5rem;
    left: 7rem;
    z-index: 100;
    transition: all ease-in-out 500ms !important;
    cursor: pointer;
}
#DJHScroll2Top.show {
    bottom: 2rem;
    opacity: 1;
    visibility: visible;
}
#DJHScroll2Top.hide {
    bottom: -5rem;
}
/* -----------------------------------------------------------------------------------------------------------------------*/
.crisp-client .cc-kv6t[data-full-view=true] .cc-1xry .cc-unoo {
    z-index: 1!important;
    bottom: 3rem!important;
    right: 3rem!important;
}
/* -----------------------------------------------------------------------------------------------------------------------*/
.djh-43 {

}
.dServices {

}
.dServices .row {
    /*padding-top: 7.42857143em;*/
    /*padding-bottom: 7.42857143em;*/
    padding-top: 4.4em;
    padding-bottom: 4.4em;
}
.dServices .dbg1 {
    background: #fafafa;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}
.dServices h2 {
    padding-top: 2.5rem;
    color: #444;
    padding-bottom: 2px;
    font-size: 3rem;
}
.dServices .row p {
    text-align: justify;
    color: #888;
    padding: 1rem 2rem 5rem 2rem;
    line-height: 3rem;
    border-radius: 10px;
    border: 1px solid #00000010;
    cursor: help;
    -webkit-transition: all ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
}
.dServices .row:hover p {
    border: 1px solid #00000030;
    background: #fff;
}
.dServices a {
    display: block;
    margin: -35px auto 1rem auto;
    padding: 1rem .5rem;
    /*background-color: #25a9e0 !important;*/
    /*box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.25);*/
    font-family: iransansFa;
}
.dServices p a {
    display: unset !important;
    margin: unset !important;
    padding: unset !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.dServices .row img {
    /*opacity: .6;*/
    -webkit-transition: all ease-out 1s;
    -o-transition: all ease-out 1s;
    transition: all ease-out 1s;
    max-height: 500px;
    text-align: center;
    /*-webkit-filter: grayscale(.75);*/
    /*filter: grayscale(.75);*/
}
.dServices .row:hover img {
    opacity: .9;
    -webkit-transition: all ease-out 2s;
    -o-transition: all ease-out 2s;
    transition: all ease-out 2s;
    max-height: 500px;
    text-align: center;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.dServices .pt-lg-5 {
    padding-top: 6rem !important;
}
.dServices i.fa {
    font-size: 11px;
    font-weight: normal;
}
.dServices img.img-fluid {
    margin: 0 auto;
    display: block;
}
.dServices .dContainer {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    max-width: 1200px;
    -ms-flex-pack: center!important;
    -webkit-box-pack: center!important;
    justify-content: center!important;
}
.dServices #others {
    border-top: 1px solid #eee !important;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fbfafa+16,ffffff+100&1+17,1+17,0+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(16%, rgba(251, 250, 250, 1)), color-stop(17%, rgba(251, 250, 250, 1)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, rgba(251, 250, 250, 1) 16%, rgba(251, 250, 250, 1) 17%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(251, 250, 250, 1) 16%, rgba(251, 250, 250, 1) 17%, rgba(255, 255, 255, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbfafa', endColorstr='#00ffffff', GradientType=0); /* IE6-9 */
}
.sMenu li img {
    width: 32px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .7;
    -webkit-transition: all ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
}
.sMenu li:hover img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.sMenu li {
    margin-left: 10px;
    -webkit-transition: all ease-in-out 1s !important;
    -o-transition: all ease-in-out 1s !important;
    transition: all ease-in-out 1s !important;
}
.WebDesignMenu img {
    display: none;
}
.WebDesignMenu {

}
.btn-dSlider {
    z-index: 7;
    white-space: nowrap;
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    color: #fff;
    font-family: iransansFa;
    background-color: #1868dd;
    border-radius: 50px;
    letter-spacing: 0px;
    border: 1px solid #1868dd;
    text-decoration: none;
    visibility: inherit;
    transition: none 0s ease 0s;
    text-align: center;
    display: block;
    margin: 20px auto 10px auto;
    padding: 14px 45px;
    min-height: 0px;
    min-width: 0;
    max-height: none;
    max-width: none;
    opacity: 1;
    transform: matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);
    transform-origin: 50% 50% 0px;
    color: #fff !important;
    overflow: hidden;
    width: 65%;
}

/* -----------------------------------------------------------------------------------------------------------------------*/
.djh-46 {

}
.templatesWrapper .dTopButtons {
    text-align: center;
    vertical-align: bottom;
}
.templatesWrapper .dTopButtons .dbtn {
    border-radius: 5px;
    display: block;
    width: 100%;
    margin: 0 5px;
    padding: 15px 5px;
    cursor: pointer;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    color: #fff;
    background: #15095D;
    border: 1px solid #130947;
}
.templatesWrapper .dTopButtons .dbtn:hover {
    opacity: .8;
}
.templatesWrapper .dTopButtons i {
    padding-left: 10px;
    vertical-align: -3px;
    font-size: 24px;
}
.templatesWrapper .dTopButtons .dbtn001 {
    background: #8e44ad;
    border: 1px solid #8e44ad;
    margin-top: 5px;
}
.templatesWrapper .dTopButtons .dbtn002 {
    padding: 20px 5px;
    background: #d35400;
    border: 1px solid #d35400;
}
.templatesWrapper .dTopButtons .dbtn003{
    background: #c0392b;
    border: 1px solid #c0392b;
    margin-top: 5px;
}

/*nemunekar*/

.dNemuneNav {
    padding-top: 30px;
    padding-bottom: 30px;
}

.nemuneKar {
    /*background: #0a9ffe;*/
    padding: 15px 0 ;
    /*border-top: 3px solid #eee;*/
    /*border-bottom: 3px solid #eee;*/
    text-align: center;
    margin: 15px auto;
}
.nemuneKar .dItem {

}
.nemuneKar .dItem a {
    position: relative;
    display: block;
    width: 100%;
    -webkit-transition: background-position 1s ease-out 0.5s;
    -o-transition: background-position 1s ease-out 0.5s;
    transition: background-position 1s ease-out 0.5s;
    background-position: top center;
    background-size: 100% auto!important;
    height: 350px;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 7px;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    opacity: 1;
    margin-bottom: 25px;
}
.templates .dItem a {
    margin-bottom: 0 !important;
    border-radius: 0 !important;
}
.nemuneKar .dItem a:hover {
    background-position: bottom center!important;
    -webkit-transition: background-position 4s linear 0s;
    -o-transition: background-position 4s linear 0s;
    transition: background-position 4s linear 0s;
    opacity: .9;
}
.nemuneKar .dItem a img {

}
.nemuneKar .dItem a img:hover  {

}
.nemuneKar h3 {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0;
    background: #103dbeaa;
    border-bottom: 1px solid #103dbebb;
    border-top: 1px solid #103dbecc;
    padding: 15px 0;
    font-size: 14px;
    color: #fff !important;
    font-weight: normal !important;
}
.templates h3 {
    border-bottom: 0 !important;
    font-family: 'iransans';
    font-size: 16px;
}
.nemuneKar a.btn.btn-dSlider {
    padding: 15px 0;
    font-family: yekan;
}
.nemuneKar .dlinks  {
    font-size: 13px;
    color: #fff;
    vertical-align: middle;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    /*border-radius: 5px 5px 0 0;*/
}
.templates .dlinks {
    margin-bottom: 30px;
}
.nemuneKar .dlinks i {
    padding-left: 5px;
    vertical-align: -3px;
    font-size: 16px;
}
.nemuneKar .dlinks a {
    color: #fff !important;
    height: 40px;
    display: block;
    padding-top: 5px;
}
.nemuneKar .dlinks .col-4 {

}
.nemuneKar .dlinks .col-4:hover {
    opacity: .9;
    /*font-weight: bold;*/
    /*border: 1px solid #333;*/
}
.nemuneKar .toman {
    font-size: 10px;
    color: #eee;
    padding-right: 5px;
    /*font-weight: bold;*/
}
.nemuneKar .dlinks .d1  {
    background: #34495e;
}
.nemuneKar .dlinks .d2  {
    background: #16a085;
}
.nemuneKar .dlinks .d3 {
    background: #e67e22;
}
.nemuneKar .dlinks  {

}
.templatesWrapper .dNav {
    height: 100%;
    margin: 64px 0 0 0;
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 10px !important; /* required */
}
.templates .filter-button-group {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px 10px !important;
}
.templates .filter-button-group h2 {
    text-align: center;
    font-size: 16px;
    padding: 10px 0;
}
.templates .filter-button-group button {
    display: block;
    width: 100%;
    background: #499BEA;
    border: 1px solid #eee;
    margin-bottom: 10px;
    text-align: right;
    padding: 5px 10px;
    -webkit-transition: all ease-in-out 500ms;
    -o-transition: all ease-in-out 500ms;
    transition: all ease-in-out 500ms;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}
.templates .filter-button-group button:hover,.templates .filter-button-group button:focus,.templates .filter-button-group button.is-che0cked {
    background: #13227C;
}
.dNemuneNav button {
    padding: 5px 10px;
    font-size: 15px;
    margin-left: 2%;
    color: #fff !important;
    display: inline-block;
    font-weight: normal;
    position: relative;
    background-color: #1868dd;
    border: 1px solid #1868dd;
    cursor: pointer;
    -webkit-transition: all ease-in-out 500ms;
    -o-transition: all ease-in-out 500ms;
    transition: all ease-in-out 500ms;
    border-radius: 5px;
}
.dNemuneNav button:hover {
    background-color: #2155a2;
    border: 1px solid #2155a2;
}

/* -----------------------------------------------------------------------------------------------------------------------*/
.djh-92 {

}
/*DJH dDemo single Start*/
.dDemo {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    /*min-height: 40px;*/
    height: 55px;
    font-family: iransansFa;
    /*box-shadow: -10px -10px 30px 4px rgba(0,0,0,0.1);*/
    -webkit-box-shadow: 0px 1px 10px #cecece;
    box-shadow: 0px 1px 10px #cecece;
    /*overflow: hidden;*/
    border-bottom: 1px solid #eee;
    background: #fff;

}
.dDemo .dRight {
    text-align: right;
}
.dDemo .dLeft {
    text-align: left;
    padding-top: 3px;
}
.dDemo .logo {
    display: inline-block;
    margin-right: 2vw;
}
.dDemo .logo img {
    max-height: 50px;
}
.dDemo h1 {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.dDemo h1 a {
    display: inline-block;
    padding-right: 1vw;
    font-size: 15px;
    font-weight: 400;
    color: #555 !important;
}
.dDemo h1 a span {
    color: #555 !important;
}
.dDemo a.btn.btn-info {
    font-size: 12px !important;
    padding: 3px 8px;
    margin-right: 1vw;
    display: inline-block;
    width: auto;
}
.dDemo ul {
    margin: 0;
    padding: 0;
}
.dDemo li {
    display: inline-block;
    border-left: 1px solid #ddd;
    padding: 0 15px;
}
.dDemo i.fa {
    font-size: 30px;
    vertical-align: -7px;
}
.dDemo a {

}
.dDemo i.fa-shopping-cart {
    padding: 0 10px 0 10px;
}
.dDemo a.btn-success {
    font-size: 14px;
}
.dDemo i.fa.fa-close {
    vertical-align: -4px;
    color: #ff8a00;
}
.dDemo section#frame {
    text-align: center;
}
.dDemo iframe {
    display: block;
    margin: 0 auto;
    border: 0;
    padding: 0;
    width: 100vw;
    height: calc(100vh - 55px);
    background: #0D2352;
    -webkit-transition: all ease-in-out 500ms;
    -o-transition: all ease-in-out 500ms;
    transition: all ease-in-out 500ms;
}
.dDemo .dmobile{
    margin-top: 50px;
    width: 350px;
    height: 500px;
    padding: 20px 3px;
    background: #111;
    border: 1px solid #999;
    border-radius: 10px;
}
.dDemo .dtablet {
    margin-top: 50px;
    width: 650px;
    height: 500px;
    padding: 10px 24px;
    background: #111;
    border: 1px solid #999;
    border-radius: 10px;
}
.dDemo .dlaptop {
    margin-top: 0;
    width: 1024px;
    height: calc(100vh - 55px);
    border: 1px solid #999;
}
.dDemo .ddesktop {
    margin-top: 0;
    width: 100%;
    height: calc(100vh - 55px);
}
.dDemo {

}
/* -----------------------------------------------------------------------------------------------------------------------*/
section#demo-image {
    margin-top: 1rem;
    text-align: center;
}
/* -----------------------------------------------------------------------------------------------------------------------*/

/* -----------------------------------------------------------------------------------------------------------------------*/
/* -----------------------------------------------------------------------------------------------------------------------*/
/* -----------------------------------------------------------------------------------------------------------------------*/
/* -----------------------------------------------------------------------------------------------------------------------*/
/* -----------------------------------------------------------------------------------------------------------------------*/
/* -----------------------------------------------------------------------------------------------------------------------*/
/* -----------------------------------------------------------------------------------------------------------------------*/
/* -----------------------------------------------------------------------------------------------------------------------*/
/* -----------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 400px) {
    .djh-tel a  {
        font-size: 1.5rem !important;
    }
    .djh-tel a span {
        display: none;
    }
    .dServices h2 {
        font-size: 2rem;
    }
    .dServices .pt-lg-5 {
        padding-top: 0!important;
    }
    .dNemuneNav button {
        margin-bottom: 15px;
    }
    /**/
    .dDemo h1 a {
        font-size: 12px;
    }
}
@media screen and (max-width: 375px) {
    .DJH00 .logo img {
        opacity: .75;
        width: 70%;
    }
    .djh-tel {
        display: none;
    }
    .dDemo h1 {
        display: none;
    }
}
