
section:not(.slider) {
    padding: 50px 0;
}


.slider .banner{padding: 50px;height: 800px;color: white;line-height: 1;}
.slider .banner .slide{width:100%;min-height:calc(800px - 80px);display:flex;flex-direction:column;justify-content:center;align-items:center;}
.slider .banner .slide>.text{width:500px;text-align:center;}
.slider .banner .slide>.text>h1{font-size:50px;font-weight:700;margin-bottom:1rem;}
.slider .banner .slide>.text>div *{font-size:20px !important;color:red !important;}
.slider .banner .slide>.text>.btn>a{margin-top:1rem;color:white!important;}
@media (max-width:991px){.slider .banner{padding:10px;height:450px;color:white;}.slider .banner .slide>.text>h1{font-size:25px;font-weight:500;margin-bottom:.875rem;}.slider .banner .slide{min-height:calc(450px - 20px);justify-content:center;align-items:center;}.slider .banner .slide>.text{width:400px;text-align:center;}.slider .banner .slide>.text>div *{font-size:16px !important;color:red !important;}}
@media (max-width:767px){.slider .banner{padding:10px;height:450px;color:white;}.slider .banner .slide>.text>h1{font-size:20px;font-weight:500;margin-bottom:.75rem;}.slider .banner .slide{min-height:calc(450px - 20px);justify-content:center;align-items:center;}.slider .banner .slide>.text{width:400px;text-align:center;}.slider .banner .slide>.text>div *{font-size:14px !important;color:red !important;}}

section.product{
    background-color: var(--bg);
    background-color: ;
}
section.service{
    background-color: var(--bg);
    background-color: ;
}
section.team{
    background-color: var(--bg);
    background-color: ;
}
section.anenst{
    background-color: var(--bg);
    background-color:;
}
section.news{
    background-color: var(--bg);
    background-color: ;
}
section.link{
    background-color: var(--bg);
    background-color: ;
}

.title {
    margin: 2rem 0;
    text-align: center;
}
.title>h1{
    margin-bottom: 5px;
    font-weight: 600;
}
.title>a{
    position: relative;
}
.title h1>span{
   color: var(--main);
}
.title p {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.product{
    margin: 50px 0;
	position: relative;
    overflow: hidden;
}

.product-slider .box{
	padding: 25px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 6px 6px 35px 0 rgba(0,0,0,0.05);
	transition:all 0.8s;
	-moz-transition:all 0.8s;
	-webkit-transition:all 0.8s;
	-ms-transition:all 0.8s;
	-o-transition:all 0.8s;
}
.product-slider .box:hover{
	transform:translateY(-15px);
	-moz-transform:translateY(-15px);
	-webkit-transform:translateY(-15px);
	-ms-transform:translateY(-15px);
	-o-transform:translateY(-15px);
}
.product-slider .box:after{
	content: "";
    height: 4px;
    width: 0;
    background-color: var(--main);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
	transform-origin:left;
	-moz-transform-origin:left;
	-ms-transform-origin:left;
	-webkit-transform-origin:left;
	-o-transform-origin:left;
	transition:all 0.8s;
	-moz-transition:all 0.8s;
	-webkit-transition:all 0.8s;
	-ms-transition:all 0.8s;
	-o-transition:all 0.8s;
}

.product-slider .box:hover:after{
	width: 100%;
	left:0;
	right:auto;
	transform-origin:right;
	-moz-transform-origin:right;
	-ms-transform-origin:right;
	-webkit-transform-origin:right;
	-o-transform-origin:right;
}


.product-slider .box>.info{
	padding: 35px 0 20px 0;
}

.product-slider .box>.info>h2{
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
  }
.product-slider .box>.info>p{
	color: #8e8e99;
	line-height: 30px;
	margin-bottom: 15px;
}
.product-slider.owl-carousel .owl-stage-outer {
    overflow: inherit;
}
.product-slider.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0.2;
}
.product-slider.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
}







/* Service Box Style3 */
.service-box{
   position: relative;
	padding: 50px 30px;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.05);
	z-index: 0;
}

.service-box:before{
	content: attr(data-name);
    position: absolute;
    font-size: 100px;
    right: 30px;
    top: 30px;
    line-height: 80px;
    font-weight: 700;
    color: #000;
    opacity: 0.05;
	transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.service-box:after {
    content: "";
    height: 100%;
    width: 0;
    background-color: var(--main);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -webkit-transform-origin: left;
    -o-transform-origin: left;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.service-box:hover,
.service-box:hover:before,
.service-box:hover a.text
{
	color:white;
}

.service-box:hover:before{
	opacity:0.2;
}
.service-box:hover:after {
    width: 100%;
    left: 0;
    right: auto;
    transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -webkit-transform-origin: right;
    -o-transform-origin: right;
}

.service-box>.icon{
	margin-bottom: 25px;
}
.service-box>.icon>a{
-webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.service-box>.icon>a>img{
	width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
	transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.service-box>a.text {
    overflow: hidden;
}
.service-box>a.text>h2{
  font-weight: 600;
	margin-bottom: 15px;
}
.service-box>.text>p{

}
.service-box>a.text:hover {
    color: white;
}
/*  */
.our-story > span{
    color:var(--main);
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}
.our-story p{
    font-size: 16px;
    line-height: 32px;
    color: #000;
}
.our-story h2.title{
	font-size: 50px;
    line-height: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}
.our-story h2.title span{
    font-family: 'Playfair Display', serif;
    font-style: italic;
}
.our-story h4.title{
	font-size: 26px;
    line-height: 40px;
    font-weight: 500;
    color: #999;
}

/* Counter */






section.video {
position: relative;
    background-size: cover;
        color: white;
}
.video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

.video .title>h1{
   top: 50px;
   position: relative;
    color: white;
}
.video-box {
    padding: 50px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
	overflow:hidden;
  text-align: center;
	transition:all 0.8s;
	-moz-transition:all 0.8s;
	-webkit-transition:all 0.8s;
	-ms-transition:all 0.8s;
	-o-transition:all 0.8s;
	z-index:1;
}
.video-box:hover{
	transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
	border-color: var(--border);
}
.video-box:hover .line {
	background:#fff!important;
}

.video-box:after {
    content: "";
    height: 0;
    width: 100%;
    background-color: var(--main);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -webkit-transform-origin: top;
    -o-transform-origin: top;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.video-box:hover:after {
    height: 100%;
    top: auto;
    bottom: 0;
    transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -webkit-transform-origin: bottom;
    -o-transform-origin: bottom;
}
.video-box>.icon{
    width: 100px;
    margin-bottom: 20px;
    display: inline-block;
    text-align: center;
}
.video-box>.icon i {
    font-size: 80px;
    line-height: 80px;
    vertical-align: middle;
}
.video-box>.text {
    overflow: hidden;
}
.video-box>.text>.line{
    display: inline-block;
    height: 2px;
    width: 80px;
    background-color: var(--main);
    margin-bottom: 10px;
    position: relative;
}

.video-box>.text>h1{
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.video-box>.text>p{
  text-transform: uppercase;
  font-weight: 500;
}
/*  */

.team-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 5px 5px 30px 0 rgba(0,0,0,0.1);
	transition: all 0.5s;
}
.team-box .members img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.team-box .info {
    position: absolute;
    bottom: -55px;
    background: #fff;
    width: 100%;
    padding: 20px 30px;
    text-align: center;
	transition: all 0.8s;
	-moz-transition: all 0.8s;
	-webkit-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
}
.team-box .info>span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--main);
}

.team-box .info h2{
    margin-top: 0;
}
.team-box .info:after {
    content: "";
    width: 15px;
    height: 15px;
    background: #fff;
    position: absolute;
    top: -7px;
	left: 50%;
    transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    -o-transform: translateX(-50%) rotate(45deg);
}
.team-box:hover .info {
    bottom: 0;
    background: var(--main);
	transition: all 0.8s;
	-moz-transition: all 0.8s;
	-webkit-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
}

.team-box:hover .info>span ,
.team-box:hover .info h2 a{
    color: white;
}
.team-box:hover .info ul li a {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.team-box .info ul li {
    display: inline-block;
}
.team-box .info ul li a {
    display: block;
    font-size: 18px;
    width: 32px;
    border: 1px solid var(--border);
}
.team-box:hover .info:after {
    background: var(--main);
}



/*  */
.comments{
    background-color: black;
    color: white;
}

.comments-item {
    margin: 0 0 20px;
	position: relative;
}

.comments-item:after{
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: -2px;
    background: #fff;
    top: 0;
    opacity: 0.75;
}
.comments-item>.text {
    padding: 40px 30px 20px 0;
    position: relative;

    
}
.comments-item>.text *{
   color: white!important;
}


.comments-item .users {
   display: flex;
   gap: 20px;
   align-items: center 
}
.comments-item .avatar{
    width: 70px;
    height: 70px;
}
.comments-item .avatar>img{
    width: 100%;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.3);
}

.comments-item>.text:before, 
.comments-item>.text:after{
     font-family: remixicon!important;
    font-style: normal;
    font-size: 24px;
	line-height: 24px;
    font-weight: 600;
    position: absolute;
    color: var(--main);
}
.comments-item>.text:before{
       content: "\ec51";
	top: 0;
}
.comments-item>.text:after{
      content: "\ec52";
	top: auto;
	bottom: 0;
	right: 30px;
}
.comments-item>.text:before, 
.comments-item>.text:after,
.comments-item>.user>span {
	color: var(--main);
}
/*  */
section.contact {
position: relative;
    background-size: cover;
}
section.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}
.contact .title>h1{
    margin-top: 0;
    font-size: 60px;
    color: #fff;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 40px;
}
.contact .title>.text p{
	margin-bottom: 0;
    font-size: 14px;
    opacity: 0.8;
}

.contact .title>.text {
    color: #fff;
    display: flex;
    align-items: center;
}
.contact .title>.text>.left {
    padding-right: 40px;
    border-right: 3px solid;
	border-color:var(--main);
}
.contact .title>.text>.left>h1{
    color: var(--main);
    font-weight: 500;
}
.contact .title>.text>.right {
    padding-left: 40px;
}
.contact-img>img{
    width: 100%;
    position: absolute;
    right: 0;
    bottom: -50px;
}
@media(max-width:991px){
.contact-img>img{
   display: none;
}
}
@media(max-width:767px){
.contact-img>img{
   display: none;
}
}
/* Blog Post */
.news-item{
	background:#fff;
	border-radius: 4px;
    overflow: hidden;
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.1);
}

.news-item>.text{
	padding:30px;
}
.news-item .dlab-post-text {
    margin-bottom: 0;
}
.news-item>.text>a>h2{
   margin: 1rem 0;
    font-weight: 600;
    line-height: 34px;
}
.news-item>.image {
    position: relative;
    overflow: hidden;
    display: block;
}
.news-item>.image img {
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.news-item>.image:hover img {
    -moz-transform: scale(1.5) rotate(-20deg);
    -webkit-transform: scale(1.5) rotate(-20deg);
    -o-transform: scale(1.5) rotate(-20deg);
    -ms-transform: scale(1.5) rotate(-20deg);
    transform: scale(1.5) rotate(-20deg);
}

/*  */
.ow-client-logo {
    background-color: #fff;
    display: table;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 0 0 0 rgba(0,0,0,0.1);
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    -webkit-transition: all 0.8s;
}
.ow-client-logo:hover{
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);
}
.client-logo-carousel  .owl-stage-outer{
	padding: 10px 0;
}
.client-logo {	
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
}
