* {
    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 !important;
}
.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);
}



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

.DJH01 {
    display: flex;
    background: url(cdn/img/1.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%);
    border-radius: 1rem;
}

.DJH02 .d2 .btn {
    padding: 1.5rem 3rem;
    font-size: 2rem;
    line-height: 1.5;
    border-radius: 0.3rem;

    text-decoration: none;
    padding: 1.5rem 4rem;
    display: block;
    border-radius: 10rem;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: relative;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
    max-width: fit-content;
    margin: 2rem auto;
}
.DJH02 .d2 .btn i {
    font-size: 3rem;
    padding-left: 1rem;
    vertical-align: middle;
}

/* -----------------------------------------------------------------------------------------------------------------------*/
.parallax {
    background: url(http://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(http://djh.ir/cdn/img/parallax/1.jpg) no-repeat center fixed;*/
    background: url(cdn/img/parallax/1.jpg) no-repeat center fixed;
}
.parallax-2 {
    /*background: url(http://djh.ir/cdn/img/parallax/2.jpg) no-repeat center fixed;*/
    background: url(cdn/img/parallax/3.jpg) no-repeat center fixed;
}
.parallax-3 {
    /*background: url(http://djh.ir/cdn/img/background/bg-1.jpg) no-repeat center fixed;*/
    background: url(cdn/img/parallax/2.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 {
    position: relative;
}
.DJH06 .d1 {
    position: absolute;
    z-index: 999;
    right: 1rem;
    top: 2rem;
    background: rgba(255,255,255,.9);
    padding: 1rem 2rem;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
    font-size: 1.3rem;
    line-height: 2.5rem;
    color: #555;
}
.DJH06 .d1 h2 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 0.5rem;
}
.DJH06 .d1 i {
    font-size: 2rem;

}
iframe {
    border: 0;
    padding: 0;
    margin: 0;
    display: block;
}
.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("http://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;
}
/* -----------------------------------------------------------------------------------------------------------------------*/

.DJHGallery {
    display: block;
    width: auto;
    /* max-width: 700px; */
    text-align: center;
    direction: ltr;
    margin: 0 auto 4rem auto;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 20%);
    background: #000;
    padding: 0;

}
.DJHGallery:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 30px rgb(0 0 0 / 30%);
}
a.carousel-control-prev, a.carousel-control-next {
    width: unset;
    color: #000;
    top: unset;
    padding: 0 3rem;
    bottom: 45%;
}
a.carousel-control-prev i,
a.carousel-control-next i {
    font-size: 5rem;
    color: #fff !important;
    /*box-shadow: 0px 0px 10px rgb(0 0 0 / 50%);*/
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 55px;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}
.carousel-indicators li {
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 5px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(255,255,255,.8);
    box-shadow: 0px 0px 2px rgb(0 0 0 / 50%);
    /*border-radius: 3px;*/
}
.carousel-indicators li.active {
    background-color: rgb(135, 255, 0) !important;
    box-shadow: 0px 0px 2px rgb(0 0 0 / 90%);
}
/* -----------------------------------------------------------------------------------------------------------------------*/

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