/* ===== Initial */
:root{
	--primary: #1EAAE7;
	--primary-hover: #148abe;
	--secondary: #AC39D4;
	--title: #222222;
	--dark: #151F37;
	--radius-sm: 4px;
	--radius: 6px;
	--radius-lg: 8px;
}
::-moz-selection{
	color: #fff;
	background: var(--primary);
}
::selection{
	color: #fff;
	background: var(--primary);
}

.m-b50 {
  margin-bottom: 50px;
}

body,
html{
    -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color:#6f6f6f;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
a {
    color: #6f6f6f;
    outline: 0 none;
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: none;
    outline: 0 none;
}
a:active,
a:hover {
    color: #333333;
}
p a {
    color: #333333;
}
img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
hr{
	margin-top: 0;
	margin-bottom: 0;
}


/* ===== Basic ===== */
p{
    line-height: 1.6;
    margin-bottom: 24px;
}
strong {
    font-weight: 400;
}
.text-primary{
	color: var(--primary) !important;
}
.text-secondary{
	color: var(--secondary) !important;
}
.bg-light{
	background-color: #fcfbff !important;
}
.bg-gray{
    background: #fff7f8;
}
.bg-dark{
    background-color: var(--dark) !important;
}
.container-fluid {
    padding-left: 60px;
    padding-right: 60px;
}
ol, ul {
    padding-left: 0;
}
.bg-img-fix {
    background-attachment: fixed;
    background-size: cover;
}
@media only screen and (max-width: 1480px){
	.container-fluid {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media only screen and (max-width: 767px){
	.container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
}


/* ===== HEADINGS ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--title);
	font-family: 'Roboto', sans-serif;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--title);
}
h1 {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 25px;
	font-weight: 600;
}
h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
	font-weight: 600;
}
h3 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 20px;
	font-weight: 600;
}
h4 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 15px;
	font-weight: 600;
}
h5 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
	font-weight: 600;
}
h6{
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
	font-weight: 600;
}
@media only screen and (max-width: 1480px){
	h1{
		font-size: 36px;
	}
	h2{
		font-size: 30px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 20px;
	}
	h5{
		font-size: 18px;		
	}
	h6{
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 10px;
		font-weight: 600;
	}
}
@media only screen and (max-width: 767px){
	h1{
		font-size: 30px;
	}
	h2{
		font-size: 28px;
	}
}


/* ===== Buttons ===== */
.btn{
	padding: 10px 30px;
    transition: all 0.5s;
}
.btn-rounded{
	border-radius: 50px;
}
.btn-primary{
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
}
.btn-secondary{
	background-color: var(--secondary) !important;
	border-color: var(--secondary) !important;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus{
	background-color: var(--primary-hover) !important;
}
.btn-lg{
    font-size: 18px;
}
@media only screen and (max-width: 991px){
	.btn {
		padding: 10px 24px;
		font-size: 14px;
	}
	.btn-lg {
		font-size: 16px;
	}
}


/* ===== Content inner ===== */
.content-inner{
    padding-top: 100px;
    padding-bottom: 70px;
}
.content-inner-2{
    padding-top: 100px;
    padding-bottom: 100px;
}
.content-inner-3{
	padding-top: 50px;
    padding-bottom: 50px;
}
@media only screen and (max-width: 1191px){
	.content-inner{
		padding-top: 70px;
		padding-bottom: 40px;
	}
	.content-inner-2{
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.content-inner-3{
		padding-top: 35px;
		padding-bottom: 35px;
	}	
}
@media only screen and (max-width: 767px){
	.content-inner{
		padding-top: 50px;
		padding-bottom: 20px;
	}
	.content-inner-2{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.content-inner-3{
		padding-top: 35px;
		padding-bottom: 35px;
	}	
}

/* ===== Preloader ===== */
#preloader{
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99999;
	left: 0;
	top: 0;
	background-color: #fff;
}
.dz-preloader{
	margin: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: white;
}
.dz-preloader .dz-child{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-color: var(--primary);
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: dz-preloader 1.4s ease-in-out 0s infinite both;
	animation: dz-preloader 1.4s ease-in-out 0s infinite both;
}
.dz-preloader .dz-bounce1{
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.dz-preloader .dz-bounce2{
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes dz-preloader{
	0%,
	80%,
	100%{
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40%{
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes dz-preloader{
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40%{
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}


/* ===== Cursor Pointer ===== */
#pointer-dot{
    left: -4px;
    top: -4px;
    width: 12px;
    height: 12px;
    position: fixed;
    border-radius: 10px;
    z-index: 999998;
    pointer-events: none;
    transition: border-color 0.5s;
    background: var(--secondary);
	box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
}
#pointer-ring{
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    display:block;
    border: 1px solid var(--primary) !important;
    position: fixed;
    border-radius: 100px;
    z-index: 999999;
    pointer-events: none;
	transition: width 0.3s, height 0.3s;
}
#pointer-ring.active{	
	width:50px;
	height:50px;
	opacity:0.5;
}
#pointer-ring.active + #pointer-dot {
    opacity: 0;
}


/* ===== Site Header ===== */
.header-transparent{
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}
.header-transparent + .dlab-bnr-inr{
	padding-top:86px;
}
.header-transparent .header-nav ul li a {
    color: #000;
}
.main-bar{
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
    align-items: center;
	-webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.is-fixed .extra-nav .btn-light{
	background-color: var(--primary);
	border-color: var(--primary);
	color: #fff;
}
.logo-header{
    width: 150px;
}
.logo-header .logo-dark{
	display: none;
}
.sticky-header{
	transition: top 0.3s ease;
}
.sticky-header.is-fixed{
	-webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
	-khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
	-moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
	-ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
	-o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
	animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
	background: #fff;
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}
.sticky-header.is-fixed .header-nav ul li a{
	color: var(--title);
}
.sticky-header.is-fixed .logo-light{
	display: none;
}
.sticky-header.is-fixed .logo-dark{
	display: inline-block;	
}
.header-nav ul{
	margin:0;
	padding:0;
	list-style:none;
}
.header-nav ul li{
    display: inline-block;
    padding: 0 15px;	
}
.header-nav ul li a{
	color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
}
@media only screen and (max-width: 991px){
	.logo-header {
		width: 120px;
	}
	.header-nav ul li a {
		font-size: 14px;
	}
}
@media only screen and (max-width: 767px){
	.header-nav{
		display: none;
	}
	.main-bar{
		padding: 15px 0;
	}
}
@-moz-keyframes headerSlideDown {
	0%{
		margin-top: -150px;
	}
	100%{
		margin-top: 0;
	}
}
@-ms-keyframes headerSlideDown {
	0%{
		margin-top: -150px;
	}
	100%{
		margin-top: 0;
	}
}
@-webkit-keyframes headerSlideDown {
	0% {
		margin-top: -150px;
	}
	100% {
		margin-top: 0;
	}
}
@keyframes headerSlideDown {
	0% {
		margin-top: -150px;
	}
	100% {
		margin-top: 0;
	}
}


/* Main Banner */
.dz-head-feature .icon-box{
	background: #fff;
    border-radius: 4px;
    width: 60px;
    padding: 8px;
    margin-right: 5px;
    margin-bottom: 10px;
    margin-left: 5px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    cursor: pointer;
    box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.15);
    display: inline-block;
}
.dz-head-feature .icon-box:hover {
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.dlab-bnr-inr.dlab-bnr-inr-lg {
    height: 800px;
}
.dlab-bnr-inr.dlab-bnr-inr-md {
    height: 600px;
}
.dlab-bnr-inr.dlab-bnr-inr-sm {
    height: 450px;
}
.dlab-bnr-inr {
    height: 300px;
    background-size: cover;
    background-position: center bottom;
    display: table;
    width: 100%;
    text-align: left;
    padding-bottom: 40px;
    background-repeat: no-repeat;
}
.dlab-bnr-inr .container {
    display: table;
    height: 100%;
    z-index: 2;
    position: relative;
}
.dlab-bnr-inr-entry {
    display: table-cell;
    vertical-align: bottom;
}
.dlab-bnr-inr-entry.align-m {
    vertical-align: middle;
}
.banner-inner-row h1,
.banner-inner-row h2,
.banner-inner-row h3,
.banner-inner-row h4,
.banner-inner-row h5,
.banner-inner-row h6 {
    color: #FFF;
}
/* Banner Contant */
.dlab-bnr-inr.banner-content h1{
	font-weight: 500;
}
.dlab-bnr-inr.banner-content p {
    font-size: 20px;
    font-weight: 100;
    letter-spacing: 1px;
    line-height: 36px;
    max-width: 750px;
	display: inline-block;
}
.dlab-bnr-inr.banner-content .site-button {
	padding: 13px 35px;	
	font-size: 16px;
}

/* Banner  */
.dlab-bnr-inr .breadcrumb-row{
	padding:0;
	background-color:rgba(0,0,0,0);
}
.dlab-bnr-inr h1 {
	font-weight:600;
	font-size:40px;
	margin-bottom: 15px;
}
.next-element {
    color: #ffffff;
    float: right;
    opacity: 0.1;
}
.next-element:hover {
	color:#fff;
	opacity:0.8;
}
.next-element i{
	
}
.dlab-bnr-inr .breadcrumb-row ul li:after,
.dlab-bnr-inr .breadcrumb-row ul li:last-child{
	color:#fff;
}
.dlab-bnr-inr .breadcrumb-row ul li a{
	color:#fff;
}

.dlab-bnr-inr-entry {
    vertical-align: middle;
}
.bnr-title-bx{
	font-size: 125px;
	font-family: 'Rubik', sans-serif;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 100px;
	margin: auto;
}
.bnr-btn{
	margin-top:20px;
}
.bnr-btn .site-button-secondry,
.bnr-btn .site-button{
	padding:15px 40px;
}
.banner-info {
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.bnr-btn h2{
    font-size: 50px;
    line-height: 1.2;
}
.dlab-bnr-inr{
    padding-bottom: 0;
    position: relative;
	height:auto;
	    background: #fbfbfb;
}
.dlab-bnr-inr p{
	font-size:20px;
	line-height:1.5;
	color:#444444;
	font-weight:300;
}
.dlab-bnr-inr .title{
	font-size: 45px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 30px;
	color: #fff;
}
.pagespeed-bx{
	padding-top:30px;
	margin-top:30px;
	border-top:1px solid rgba(0,0,0,0.1); 
}
.dlab-bnr-inr .pagespeed .info .dlab-title {
    color: #000;
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.dlab-bnr-inr .pagespeed .icon {
    width: 50px;
    max-width: 50px;
    flex: 0 0 50px;
}
.dlab-bnr-inr .pagespeed .info {
    padding-left: 10px;
}
.dlab-bnr-inr .pagespeed .info .score span{
	color:#79b334;
    font-size: 40px;
}
.dlab-bnr-inr .pagespeed .info p{
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}
.dlab-bnr-inr .container{
	height:auto;
}

.frontend{
    position: absolute !important;
    right: 100px;
    top: 290px;
    transform: rotate(-5deg);
    z-index: 9;
    animation: dZwobble 3s infinite alternate;
}

.frontend img {
   
    border-radius: 6px;
    border: 3px solid #fff;
}

@keyframes dZwobble {
	0% {
		transform: rotate(5deg) translate(5px, 5px);
	}
	100% {
		transform: rotate(2deg) translate(5px, 5px);
	}
	
}
.frontend-1{
	position: absolute !important;
    left: 80px;
    top: 140px;
    transform: rotate(-5deg);
    z-index: 9;
    animation: dZwobble9 4s infinite alternate;
	right:unset;
	
}

.frontend .frontend-title,
.frontend-1 .frontend-title {
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
    -webkit-animation: dzTextAnimation 1s infinite alternate;
}
@keyframes dzTextAnimation {
	100%{
		color :#fff;
	}
	100%{
		color:#f93a0b;
	}
}

@-webkit-keyframes dZwobble9{
	from {
	  -webkit-transform: rotate(-5deg) translate(5px, 5px);
	  transform: rotate(-5deg) translate(5px, 5px);
  }
	
  to {
	  -webkit-transform: rotate(-2deg) translate(5px, 5px);
	  transform: rotate(-2deg) translate(5px, 5px); }
  }

.banner-bx{
	position:relative;
	z-index:1;
	/* overflow:hidden; */
}

.banner-bx .bnr-img{
  transition: .5s ease-in;
  /* opacity:0; */
}
.banner-bx.active .bnr-img{
	/* opacity:1; */
}
.banner-bx .bnr-img1{
	width: 70%;
    margin-left: auto;
    margin-right: auto;
    display: block;
	
    border-radius: 5px;
    position: relative;
    bottom: 0px;
	/* transition: .2s ease-in; */
}
.banner-bx .bnr-img2{
	position: absolute;
    z-index: -1;
	transform: rotate(0deg);
    width: 56.7%;
	
    left: 21%;
    bottom: 9px;
    border-radius: 5px;
}
.banner-bx.active .bnr-img2{
	transform: rotate(-15deg);
    left: -1%;
}
.banner-bx .bnr-img3{
	position: absolute;
    z-index: -1;
    width: 56.7%;
	
	transform: rotate(0deg);
    right: 21%;
    bottom: 9px;
    border-radius:5px;
}
.banner-bx.active .bnr-img3{
	transform: rotate(15deg);
    right: -1%;
}


@media only screen and (max-width: 1480px){
	.dz-bnr-inr h2{
		font-size: 42px;
	}
	.dz-bnr-inr{
		min-height: 800px;
	}
}
@media only screen and (max-width: 1191px){
	.dz-bnr-inr {
		min-height: 700px;
	}
	.dz-bnr-inr .dz-bnr-inr-entry{
		margin-top: 120px;
	}
	.dz-bnr-inr h2{
		font-size: 38px;
	}
	.dz-bnr-inr .sub-title {
		font-size: 18px;
	}
}
@media only screen and (max-width: 1024px){
	.frontend,
	.frontend-1{
		display:none;
	}
	.bnr-btn h2{
		font-size:40px;
		
	}
	
}
@media only screen and (max-width: 991px){
	.dz-bnr-inr{
		min-height: 650px;
		height: 100%;
	}
}
@media only screen and (max-width: 767px){	 
	.dz-bnr-inr .dz-bnr-inr-entry{
		margin-top: 100px;
	}
	.dz-bnr-inr h2 {
		font-size: 32px;
	}
	.dz-head-feature .icon-box {
		width: 45px;
		padding: 5px;
		margin-right: 2px;
		margin-left: 2px;
	}
	.dz-bnr-inr {
		min-height: 520px;
	}
	.dz-bnr-inr .sub-title{
		font-size: 16px;
	}
	.bnr-btn h2{
		font-size:30px;
		
	}
}
@media only screen and (max-width: 576px) {
	.dz-bnr-inr h2 {
		font-size: 30px;
	}
	.dlab-bnr-inr .title{
		font-size:24px;
	}
	.dz-bnr-inr {
		min-height: 100%;
	}
	.bnr-btn h2{
		font-size:20px;
		
	}
}


/* Banner Bottom */
.wave-box img,
.wave-box-2 img{
	width: 100%;
}
.wave-box{
	position: relative;
}
.wave-box .wave1{
	position:absolute;
	top:0;
	left:0;
	-webkit-animation: wave1 4s infinite;
	animation: wave1 4s infinite; 
	z-index: 1;
}
.wave-box .wave2{
	-webkit-animation: wave2 5s infinite;
	animation: wave2 5s infinite; 
}
.wave-box-2{
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
	-webkit-animation: wave3 5s infinite;
	animation: wave3 5s infinite; 
}
@-webkit-keyframes wave1{
	0%{
		-webkit-transform: translate(-0, -5px);
		transform: translate(-0, -5px); 
	}
	50%{
		-webkit-transform: translate(0, 5px);
		transform: translate(0, 5px); 
	}
	100%{
		-webkit-transform: translate(-0, -5px);
		transform: translate(-0, -5px); 
	} 
}
@-webkit-keyframes wave2{
	0%{
		-webkit-transform: translate(-5px, 0);
		transform: translate(-5px, 0); 
	}
	50%{
		-webkit-transform: translate(5px, 0);
		transform: translate(5px, 0); 
	}
	100%{
		-webkit-transform: translate(-5px, 0);
		transform: translate(-5px, 0); 
	} 
}
@-webkit-keyframes wave3{
	0%{
		-webkit-transform: translate(-0, -5px);
		transform: translate(-0, -5px); 
	}
	50%{
		-webkit-transform: translate(0, 5px);
		transform: translate(0, 5px); 
	}
	100%{
		-webkit-transform: translate(-0, -5px);
		transform: translate(-0, -5px); 
	}
}


/* ===== Section Head ===== */
.section-head .title{
	font-size: 42px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 600;
    display: block;
}
.section-head .sub-title{
	font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-head{
    max-width: 680px;
    margin-bottom: 40px;
}
.section-head.text-center{
    margin-left: auto;
    margin-right: auto;
}
.section-head p{
	font-size: 18px;
}
@media only screen and (max-width: 1480px){
	.section-head{
		max-width: 520px;
	}
	.section-head .title{
		font-size: 36px;
	}
}
@media only screen and (max-width: 1191px){
	.section-head{
		max-width: 750px;
	}
}
@media only screen and (max-width: 991px){
	.section-head .sub-title{
		font-size: 16px;
		margin-bottom: 5px;
	}
	.section-head p {
		font-size: 16px;
	}
}
@media only screen and (max-width: 767px){
	.section-head .title{
		font-size: 30px;
	}
	.section-head {
		margin-bottom: 30px;
	}
}
@media only screen and (max-width: 591px){
	.section-head .title{
		font-size: 28px;
	}
}


/* ===== Technology Buttons ===== */
.dz-tech ul{
	display: flex;
	margin-bottom: 5px;
	flex-wrap : wrap;
	padding: 0;
}
.dz-tech li{
	display: inline-block;
	margin-bottom: 10px;
}
.dz-tech li a{
	padding: 5px 10px;
	background: #7366ff;
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
	display: block;
	border-radius: 5px;
	font-weight: 500;
	margin-right: 5px;
	position: relative;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	box-shadow: 0 5px 10px 2px rgba(88, 103, 221, 0.2%) !important;
	margin-right: 10px;
}
.dz-tech li a{
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
}
.dz-tech li a.active{
	box-shadow: 0 5px 10px 2px rgb(169 169 169 / 80%) !important;
}
.dz-tech li a.disabled {
	opacity: 0.3;
    cursor: default;
    background: #8b84a8 !important;
    color: #fff;
}
.dz-tech li a svg{
	position: absolute;
	left: 0;
	top: 0;
	width: 30px;
	opacity: 0.2;
}
.dz-tech li a.dz-tailwind {
    background: #38bdf8;
}
.dz-tech li a.tech-html{
	background: #e96228;
}
.dz-tech li a.tech-react{
	background: #61dafb;
}
.dz-tech li a.tech-dj{
	background: #44b78b;
}
.dz-tech li a.tech-vue{
	background: #41b883;
}
.dz-tech li a.tech-laravel{
	background: #F9322C;
}
.dz-tech li a.tech-code{
	background: #E74122;
}
.dz-tech li a.tech-dotnet{
	background: #6636FF;
}
.dz-tech li a.tech-angular{
	background: #c3002f;
}
.dz-tech li a.dz-tailwind svg {
    transform: scale(1.75);
}

/* ===== Products Demos ===== */
.demo-box{
	z-index: 1;	
	position:relative;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0px 30px 0px rgba(0,0,0,0.1);
}
.demo-box .demo-media{
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	display: block;
	border: 2px solid #e5e5e5;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	border-radius: 8px;
}
.demo-box:hover .demo-media {
    transform: translateY(-5px);
    box-shadow: 0px 20px 30px 0px rgba(0,0,30,0.25);
}
.demo-media img{
    width: 100%;
}
.demo-box .dlab-title{
	margin-bottom: 0;
}
.demo-box .demo-info{
	margin-top: 20px;
}


/* ===== Need Any Help ===== */
.need-any-help{
	color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    opacity: 0.2;
    position: absolute;
    right: 30px;
    bottom: 20px;
}
.need-any-help img{
	margin-right: 10px;
    width: 40px;
}
.need-any-help.text-white{
	color:#fff;
}
.need-any-help:hover{
	opacity:1;
}
@media only screen and (max-width: 991px){
	.need-any-help {
		font-size: 16px;
		bottom: 10px;
	}
	.need-any-help img{
		width: 30px;
	}
}
@media only screen and (max-width: 767px){
	.demo-box {
		padding: 20px;
	}
	.demo-box .demo-info {
		margin-top: 15px;
	}
}
@media only screen and (max-width: 591px){
	.demo-box .demo-info .dlab-title{
		font-size: 18px;
	}
	.need-any-help{
		bottom: 5px;
	}
}


/* ===== Section Full ===== */
.section-full{
	position: relative;
}


/* ===== Layout Type ===== */
.layout-type{
	position: relative;
	padding-left:36px;
}
.layout-type .media{
	border: 5px solid #1e1d23;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
}
.layout-type .media img{
    height: 440px;
    object-fit: cover;
    object-position: top;
}
.layout-type .dlab-title{
	position: absolute;
    background: #1e1d23;
    left: 0;
    top: 40px;
    writing-mode: vertical-lr;
    color: #fff;
    text-transform: uppercase;
    width: 40px;
    padding: 20px 5px;
    border-radius: 6px 0 0 6px;
    font-weight: 600;
}
.layout-type.tab .media{}
.layout-type.tab .media img{
    width: 210px;
}
.layout-type.phone .media{}
.layout-type.phone .media img{
    width: 650px;
}


/* ===== Core Feature ===== */
.feature-list{
	display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 0;
	justify-content: center;
}
.feature-list li {
    width: 16.66%;
    display: inline-block;
    padding: 0 15px;
	margin-bottom: 30px;
}
.feature-list li .title{
	margin-bottom: 0;
    color: #000;
    font-size: 18px;
	line-height: 1.4;
	font-weight: 500;
}
.feature-list li .circle{
	transition: all 0.5s;
	width: 60px;
	margin: 0 auto 10px;
}
.features-item{
	background-color: #fff;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 40px 30px;
	border: 2px solid #fff;
	height: 100%;
	transition: all 0.5s;
}
.features-item:hover {
    transform: scale(1.2);
}
.features-bootstrap{
	border-color: #8412fe;
}
.features-sass{
	border-color: #cd6799;
}
.features-updates{
	border-color: #23c181;
}
@media only screen and (max-width: 1480px){
	.features-item{
		padding: 30px 20px;
	}
}
@media only screen and (max-width: 1280px){
	.feature-list li{
		width: 25%;
	}
}
@media only screen and (max-width: 991px){
	.feature-list li{
		width: 33.33%;
	}
	.features-item{
		padding: 20px 15px;
	}
	.feature-list li .title {
		font-size: 16px;
	}
	.feature-list li .circle {
		width: 50px;
	}
}
@media only screen and (max-width: 767px){
	.feature-list li{
		width: 50%;
	}
	.features-item{
		padding: 20px 15px;
	}
	.feature-list li .circle {
		width: 50px;
	}
}
@media only screen and (max-width: 591px){
	.feature-list{
		margin-bottom: 10px;
	}
	.feature-list li{
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.feature-list li .title{
		font-size: 16px;
	}
	.feature-list li .circle{
		width: 40px;
	}
	.features-item{
		padding: 12px;
		border-radius: 8px;
	}
}



/* ===== Page Speed ===== */
.pagespeed{
    display: flex;
	margin-bottom:30px;
}
.pagespeed .icon{
    width: 80px;
    max-width: 80px;
    flex: 0 0 80px;
}
.pagespeed .info{
	padding-left: 20px;	
}
.pagespeed .info .dlab-title{
    color: #000;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.pagespeed .info .speed{
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 10px;
    display: inline-block;
    margin-bottom: 10px;
    background: #79b334;
}
.pagespeed .info p{
    color: #777;
    font-size: 16px;
    line-height: 1.5;
    vertical-align: top;
    display: flex;
    align-items: start;
    margin-bottom: 0;
}
.pagespeed .info .score span{
    font-size: 60px;
    font-weight: 700;
    color: #000;
    line-height: 0.8;
    margin-left: 10px;
}
.pagespeed.box{
	background: #fff;
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow: 10px 10px 30px 0 rgba(0,0,0,0.2);
    align-items: center;	
}
.pagespeed.box .icon{
    width: 40px;
    max-width: 40px;
    flex: 0 0 40px;
}
@media only screen and (max-width: 991px){
	.pagespeed .icon {
		width: 50px;
		max-width: 50px;
		flex: 0 0 50px;
	}
	.pagespeed .info .speed {
		font-size: 12px;
	}
	.pagespeed .info .score span{
		font-size: 35px;
	}
	.pagespeed .info .dlab-title{
		font-size: 18px;
	}
	.pagespeed .info p {
		font-size: 14px;		
	}
}
@media only screen and (max-width: 591px){
	.pagespeed.box{
		margin-bottom: 0;
	}
}



/* ===== Testimonial Box ===== */
.testimonial-box{
	position: relative;
    margin-bottom: 25px;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
    border-radius: 15px;
    background-color: #fff;
    min-height: 380px;
}
.testimonial-slider .owl-stage-outer{
    overflow: unset;
}
.testimonial-box .testimonial-pic{
	position: absolute;
    bottom: -20px;
    left: 30px;
}
.testimonial-box .testimonial-text{
    border-radius: var(--radius-lg);
	padding: 30px 30px 50px 30px;
}
.testimonial-box .testimonial-text p{
    font-size: 15px;
    line-height: 1.7;
    color: #888;
	margin-bottom: 15px;
}
.testimonial-box .name-box{
	position: absolute;
    right: 30px;
    bottom: 20px;
    text-align: right;
}
.testimonial-box .review-star h4{
    font-size: 18px;
    margin: 0;
}
.testimonial-box .review-star{
	color: #f2b827;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    line-height: 1;
	flex-wrap: wrap;
}
.testimonial-box .review-star ul{
	margin-right:10px;
	margin-bottom: 0;	
}
.testimonial-box .review-star ul li{
	font-size:18px;
}
.testimonial-box .review-star h4{
	font-size: 18px;
    margin: 0;
}
.testimonial-box .review-star span{
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 10px 0px 0px;
    opacity: 0.5;
}
.testimonial-box .testimonial-pic{
    float: left;
    margin-right: 15px;
    width: 80px;
    height: 80px;
	overflow: hidden;
    border-radius: 100%;
    -webkit-border-radius: 100%;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.testimonial-box .testimonial-name{
	font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    color: var(--title);
}
.testimonial-box .testimonial-position{
	font-size: 13px;
    text-transform: uppercase;
}
.testimonial-box .name-box{
    position: absolute;
    right: 30px;
    bottom: 20px;
    text-align: right;
}
.testimonial-one-navigation{
	text-align: right;
}
.testimonial-one-navigation .prev,
.testimonial-one-navigation .next{
    padding: 0;
    font-size: 45px;
    color: #000;
    margin-left: 10px;
    line-height: 1;
    border: 0;
    opacity: 0.2;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
@media only screen and (max-width: 591px) {
	.testimonial-box .testimonial-text {
		padding: 20px 20px 40px 20px;
	}
	.testimonial-box .testimonial-text p {
		font-size: 15px;
		line-height: 1.6;
	}
	.testimonial-box .testimonial-pic {
		bottom: 15px;
		left: 20px;
		width: 60px;
		height: 60px;
		border: 2px solid var(--primary);
	}
	.testimonial-box {
		min-height: 360px;
	}
}


/* ===== List ===== */
.list-check li{
	font-size: 18px;
    font-weight: 500;
    color: var(--title);
    display: block;
    padding: 3px 0;
}
.list-check li:before{
	content: "\f00c";
    font-family: FontAwesome;
    color: var(--primary);
    margin-right: 12px;
}
@media only screen and (max-width: 991px){
	.list-check li{
		font-size: 16px;
	}	
}


/* ===== Overlay ===== */
.overlay-luminosity-dark .container,
.overlay-luminosity-dark .container-fluid{
	z-index: 1;
	position: relative;
}
.overlay-luminosity-dark:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    opacity: 0.9;
}


/* ===== Awards Winning ===== */
.awards-box {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(radius-lg);
    padding: 5px 10px;
	background-color:#fff;
}
.awards-box img {
    object-fit: scale-down;
    height: 100px;
    object-position: center;
    padding: 0;
}


/* ===== Detail ===== */
.detail-btn{
    position: relative;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    padding: 8px 8px 8px 20px;
}
.detail-btn img{
    width: 30px;
}
.detail-btn .text{
	padding: 0 25px 0 18px;
    text-align: left;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}
.detail-btn.primary .value{
    background-color: #fff;
    color: #EB8153;
}
.detail-btn.primary .text{
    color: #fff;
}
.extra-buy-btn {
    margin-top: -50px;
}
.detail-btn .value{
    background-color: #fff;
    color: var(--primary);
    padding: 0 15px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 18px;
    height: 50px;
    align-items: center;
    line-height: 50px;
}
@media only screen and (max-width: 991px){
	.extra-buy-btn{
		margin-top: 0;
	}
	.detail-btn{
		padding: 5px 5px 5px 10px;
	}
	.detail-btn img {
		width: 24px;
	}
	.detail-btn .text {
		padding: 0 12px 0 12px;
		font-size: 13px;
	}
	.detail-btn .value {
		padding: 0 10px;
		font-size: 15px;
		height: 38px;
		line-height: 40px;
	}
}


/* ===== Scroltop ===== */
button.scroltop {
	background: var(--primary) none repeat scroll 0 0;
    border-color: var(--primary);
    border-radius: 4px;
    border-style: solid;
    border-width: 0;
    bottom: 10px;
    box-shadow: 2px 2px 12px -5px rgba(0,0,0,0.2);
    color: #fff;
    cursor: pointer;
    display: none;
    height: 40px;
    line-height: 26px;
    margin: 0;
    position: fixed;
    right: 15px;
    text-align: center;
    width: 40px;
    z-index: 999;
}


/* ===== Footer ===== */
.footer-title{
    line-height: 1.35;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
    padding-right: 25px;
}
.footer-top {
    background-position: center;
    padding: 80px 0 50px;
}
.footer-buynow {
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.footer-bottom {
	padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
}
.money-back {
	text-align: center;
    margin-top: -50px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}
.money-back img {
    width: 100%;
}
@media only screen and (max-width: 991px){
	.footer-top {
		padding: 50px 0 30px;
	}
	.money-back {
		margin-top: 0;
		max-width: 180px;
	}
}
@media only screen and (max-width: 591px){
	.footer-buynow .footer-title{
		font-size: 22px;
	}
	.footer-buynow {
		margin-bottom: 20px;
		padding-top: 30px;
	}
	.footer-top {
		padding: 30px 0 30px;
	}
}


/* ===== Package List ===== */
.package-box {
    flex: 1;
    display: flex;
    align-items: center;
}
.package-box .figure{
    font-size: 110px;
    font-weight: 100;
    line-height: 1;
    margin-top: 10px;
    margin-right: 20px;
}
.package-box .footer-title{
	margin-bottom: 0;
	font-size: 20px;
	width: 100px;
}
.package-list {
    display: flex;
    flex: 1;
    max-width: 400px;
    align-items: center;
}
.package-list ul{ 
    margin: 0;
    list-style: none;
    padding: 0;	
    padding-right: 10px;	
}
.package-list ul li{
	background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 14px;
    padding: 5px 8px;
    line-height: 1.4;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    display: inline-block;
    font-weight: 400;
    color: #000;
    margin-top: 4px;
    text-transform: capitalize;
}
.package-price {
	background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 14px;
    padding: 6px 10px;
    line-height: 1.4;
    border-radius: 4px;
    margin-bottom: 4px;
    display: inline-block;
    font-weight: 400;
    color: #000;
    margin-top: 4px;
}
.package-price span{
    margin-left: 10px;
    font-size: 55px;
    font-weight: 700;
    display: flex;
    align-items: start;
}
.package-price span small{
	font-size: 28px;
    margin-top: 5px;
    margin-left: 2px;
    font-weight: 700;
}
@media only screen and (max-width: 591px){
	.package-box .figure{
		display: none;
	}
	.package-box {
		flex-direction: column;
	}
	.package-box .footer-title {
		font-size: 18px;
		width: 100%;
		margin-bottom: 8px;
	}
}


/* ===== Help Wrapper ===== */
.dz-help-wrapper{
	background-color: #f3f3f3;
	padding-bottom: 250px;
}
.dz-help-wrapper .bg-image{
	position: absolute;
    bottom: -20px;
}
.dz-help-wrapper .title-need{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;	
}
.dz-help-wrapper .title{
	font-size: 42px;
    line-height: 1.3;
    margin-bottom: 10px;
}
.dz-help-wrapper .sub-title{
	font-size: 24px;
    margin-bottom: 5px;
}
.dz-help-wrapper .dz-info-text{
	font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.dz-hire{
	padding: 30px;
    background-color: #fff;
    border: 1px dashed rgba(0,0,0,0.2);
    border-radius: 10px;
    margin-top: 20px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 1480px){
	.dz-help-wrapper .title {
		font-size: 36px;
	}
	.dz-help-wrapper {
		padding-bottom: 200px;
	}
}
@media only screen and (max-width: 991px){
	.dz-help-wrapper .title {
		font-size: 36px;
		margin-bottom: 12px;
	}
	.dz-help-wrapper {
		padding-bottom: 120px;
	}
}
@media only screen and (max-width: 767px){
	.dz-help-wrapper .title {
		font-size: 30px;
	}
}
@media only screen and (max-width: 591px){
	.dz-help-wrapper .dz-info-text {
		font-size: 15px;
	}
	.dz-hire {
		padding: 20px;
	}
	.dz-help-wrapper {
		padding-bottom: 70px;
	}
	.dz-help-wrapper .bg-image{
		bottom: -2px;
	}
}


/* ===== DZ Requirement ===== */
.subscribe-form .form-control{
	background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px !important;
    padding: 10px 20px;
    color: #fff;
    margin-right: 15px;
    font-size: 15px;
	box-shadow: none;
	height: 50px;
}
.subscribe-form .input-group-btn .btn{
    height: 100%;
}
.subscribe-form .form-control::placeholder{
	color: #fff;
	opacity: 0.8;
}
.subscribe-form .form-control::-ms-input-placeholder {
	color: rgba(255,255,255,0.8);
}
.subscribe-form{
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* ===== DZ Requirement ===== */
.dz-requirement{
	background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 25px 20px;
    max-width: 580px;
    margin: 50px auto 0;
    position: relative;
    border-radius: 8px;
    z-index: 1;
}
.dz-requirement .title{
	font-size: 32px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 3px;
}
.dz-requirement .text{
	font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.8);
}
.dz-requirement .text a{
	font-weight: 500;
	border-bottom: 2px solid #fff;
	color: #fff;
}
.dz-requirement .text a:hover{
	color: var(--primary);
	border-color: var(--primary);
}
.dz-requirement::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    animation: 2s ease 0s normal none infinite running dzRequirement;
	z-index: -1;
}
.dz-requirement::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    animation: 2s ease 0s normal none infinite running dzRequirement2;
	z-index: -1;
}
@keyframes dzRequirement{
	0% {
		box-shadow:0 0 0 0 rgba(255, 255, 255, 0);
		opacity: 0.7;
	}
	100% {
		box-shadow:0 0 0 10px rgba(255, 255, 255, 1);
		opacity: 0; 
	} 
}
@keyframes dzRequirement2{
	0% {
		box-shadow:0 0 0 0 rgba(255, 255, 255, 0);
		opacity: 0.7; 
	}
	100% {
		box-shadow:0 0 0 20px rgba(255, 255, 255, 1);
		opacity: 0; 
	} 
}
@media only screen and (max-width: 591px){
	.dz-requirement {
		margin: 30px auto 0;
	}
	.dz-requirement .title {
		font-size: 24px;		
	}
}

/*  Twentytwenty Handle */
.twentytwenty-handle {
    height: 50px;
    width: 50px;
    margin-left: -24px;
    margin-top: -20px;
	border: 0;
    background-color: var(--primary);
}
.twentytwenty-horizontal .twentytwenty-handle:before{
    margin-bottom: 28px;    
}
.twentytwenty-horizontal .twentytwenty-handle:after{
    margin-top: 28px;
}
@media only screen and (max-width: 591px){
	.twentytwenty-handle {
		height: 35px;
		width: 35px;
		margin-left: -19px;
	}
	.twentytwenty-horizontal .twentytwenty-handle:before{
		margin-bottom: 20px;
	}
	.twentytwenty-horizontal .twentytwenty-handle:after{
		margin-top: 20px;
	}
}
.new{
	position:relative;
}

.new:after {
    content: "New";
    width: 100px;
    height: 22px;
    background: red;
    display: block;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    position: absolute;
    right: -30px;
    top: 8px;
    transform: rotate(45deg);
    line-height: 22px;
    animation-name: example;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
@keyframes example {
  0% {background-color: red;}
  33% {background-color: #0042ff;}
  66% {background-color: red;}
  100% {background-color: #0042ff;}
}
