.bg-gray {
  background-color: #f4f7fc;
}
.shadow {
    position: relative;
    z-index: 1;
}
.shadow.dark::after {
  background: #000000 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.text-light h1, 
 .text-light h2, 
 .text-light h3, 
 .text-light h4, 
 .text-light h5, 
 .text-light h6, 
 .text-light p, 
 .text-light a {
  color: #ffffff;
}
.default-padding,
.default-padding-top,
.default-padding-bottom {
  position: relative;
  z-index: 1;
}

.default-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}
.site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: -5px;
}

.site-heading h4 {
  text-transform: uppercase;
  font-weight: 800;
  color: #00914B;
  font-size: 20px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.site-heading h4::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 10px;
  width: 100%;
  background: #00914B;
  z-index: -1;
  opacity: 0.1;
}
/* ===================================
    # Shape
====================================== */

.shape {
  position: relative;
  z-index: 1;
}

.side-bg {
  height: 100%;
  position: absolute;
  left: -30px;
  top: 0;
  width: 30%;
}

.side-bg img {
  left: 0;
  position: absolute;
  top: 60px;
  opacity: 0.7;
}

.side-bg.right {
  height: 100%;
  position: absolute;
  right: -30px;
  left: auto;
  top: 0;
  width: 30%;
}

.side-bg.right img {
  right: 0;
  left: auto;
  position: absolute;
  top: 60px;
  opacity: 0.7;
}

/* ============================================================== 
     # Banner 
=================================================================== */
.banner-area, 
.banner-area div {
  height: 800px;
}

.banner-area .box-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.banner-area .box-table {
  display: table;
  width: 100%;
}

.banner-area .box-cell, 
 .banner-area .box-cell div {
  height: auto;
}

.banner-area {
  position: relative;
  overflow: hidden;
}

.banner-area .content {
  position: relative;
  z-index: 9;
}

.banner-area.content-double .double-items {
  align-items: center;
  align-self: center;
  display: flex;
  justify-content: center;
  vertical-align: middle;
}

.banner-area .banner-carousel .owl-item.center img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.banner-area .banner-carousel .owl-item img {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

/* Animation delays */
.banner-area .item h1:first-child, 
 .banner-area .item h2:first-child, 
 .banner-area .item h3:first-child, 
 .banner-area .item h4:first-child, 
 .banner-area .item h5:first-child, 
 .banner-area .item h6:first-child {
  animation-delay: .5s;
}

.banner-area .item h1:nth-child(2), 
 .banner-area .item h2:nth-child(2), 
 .banner-area .item h3:nth-child(2), 
 .banner-area .item h4:nth-child(2), 
 .banner-area .item h5:nth-child(2), 
 .banner-area .item h6:nth-child(2) {
  animation-delay: .7s;
}

.carousel-caption h1:nth-child(3), 
 .carousel-caption h2:nth-child(3), 
 .carousel-caption h3:nth-child(3), 
 .carousel-caption h4:nth-child(3), 
 .carousel-caption h5:nth-child(3), 
 .carousel-caption h6:nth-child(3) {
  animation-delay: .9s;
}

.banner-area .item p {
  animation-delay: .5s;
}

.banner-area .item ul {
  animation-delay: .6s;
}

.banner-area .item a, 
 .banner-area .item button {
  animation-delay: .7s;
}

/* Carousel Fade Effect */
.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .item, 
 .carousel-fade .carousel-inner .active.left, 
 .carousel-fade .carousel-inner .active.right {
  opacity: 0;
}

.carousel-fade .carousel-inner .active, 
 .carousel-fade .carousel-inner .next.left, 
 .carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-inner .next, 
 .carousel-fade .carousel-inner .prev, 
 .carousel-fade .carousel-inner .active.left, 
 .carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
  z-index: 2;
}
/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@-moz-keyframes zoom {
  from {
    -moz-transform: scale(1, 1);
  }

  to {
    -moz-transform: scale(1.2, 1.2);
  }
}

@-o-keyframes zoom {
  from {
    -o-transform: scale(1, 1);
  }

  to {
    -o-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.2, 1.2);
  }
}

.carousel-inner.carousel-zoom .carousel-item > .slider-thumb {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}

.banner-area .carousel-zoom .slider-thumb {
  height: 100%;
  position: absolute;
  width: 100%;
}

#particles-js,
#ripple {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.banner-area .carousel-control {
  background: transparent none repeat scroll 0 0;
  font-size: 40px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 1;
  color: #00914B;
}

.banner-area .carousel-control.light {
  color: #ffffff;
}

.banner-area .carousel-control.shadow {
  background: transparent none repeat scroll 0 0;
  color: #ffffff;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  opacity: 1;
  padding: 0;
  position: absolute;
  text-shadow: inherit;
  top: 50%;
  width: 50px;
  z-index: 1;
}

.banner-area .carousel-control.shadow::after {
  background: #1e2726 none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.banner-area .carousel-control.left {
  left: -80px;
}

.banner-area:hover .carousel-control.left {
  left: 20px;
}

.banner-area:hover .carousel-control.shadow.left {
  left: 0px;
}

.banner-area .carousel-control.right {
  right: -80px;
}

.banner-area:hover .carousel-control.right {
  right: 0;
}

.banner-area:hover .carousel-control.shadow.right {
  right: 20px;
}


/* Carousel Indicators */
.banner-area .carousel-indicators {
  position: absolute;
  right: 40px;
  left: auto;
  width: auto;
  height: auto;
  top: 50%;
  transform: translate(10px, -50%);
  -webkit-transform: translate(10px, -50%);
  -moz-transform: translate(10px, -50%);
  -ms-transform: translate(10px, -50%);
  -o-transform: translate(10px, -50%);
  bottom: auto;
  margin: 0;
}

.banner-area .carousel-indicators li {
  display: block;
  height: 20px;
  width: 20px;
  margin: 10px 0;
  border: 2px solid #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: transparent;
  position: relative;
  z-index: 1;
}

.banner-area .carousel-indicators li.active::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background: #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.banner-area.video-bg-live .mbYTP_wrapper {
  z-index: 1 !important;
}

.banner-area .fixed-thumb .slider-thumb {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
}

/* Content */
.banner-area a {
  margin-right: 5px;
  margin-top: 8px;
}

.banner-area.text-center a,
.banner-area .text-center a {
  margin-right: 3px;
  margin-right: 3px;
}

.banner-area .text-large .content h2 {
  font-size: 60px;
  line-height: 90px;
  font-weight: 300;
  margin-bottom: 30px;
  text-transform: capitalize;
  margin-top: -10px;
}

.banner-area .text-large .content h2 strong {
  display: block;
  margin-bottom: 20px;
}

.banner-area p {
  padding-right: 15%;
  font-size: 18px;
  line-height: 34px;
  color: #232323;
  margin-bottom: 25px;
}

.banner-area.text-center p,
.banner-area .text-center p {
  margin-left: 7%;
  margin-right: 7%;
}

.banner-area .text-large .content h4 {
  margin-bottom: 40px;
  text-transform: capitalize;
}

.banner-area .content li {
  display: inline-block;
  margin-right: 12px;
  padding-right: 15px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 1;
  letter-spacing: 0.6px;
}

.banner-area .content ul {
  margin-bottom: 40px;
}

.banner-area .content li::after {
  position: absolute;
  right: 0;
  top: 7px;
  content: "";
  height: 15px;
  width: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.banner-area .content li:last-child::after {
  display: none;
}

.banner-area.inc-shape .content::after {
  position: absolute;
  left: -100px;
  top: -100px;
  content: "";
  height: 200px;
  width: 200px;
  background: linear-gradient(-180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 65%, rgba(255, 255, 255, 0.04) 100%);
  z-index: -1;
  transform: rotate(45deg);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: rotate-animation 10s infinite linear;
}

.banner-area.shape .box-cell {
  position: relative;
  z-index: 1;
}

.banner-area.shape .box-cell::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../../assets/img/shape/7.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}
/* ============================================================== 
     # About  
=================================================================== */

.about-area .thumb-box {
  padding-right: 35px;
}

.about-area .thumb-box .thumb {
  position: relative;
  z-index: 1;
  padding-bottom: 150px;
}

.about-area .thumb-box .thumb img {
  width: 70%;
}

.about-area .thumb-box .thumb img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px;
  background: #ffffff;
  width: 50%;
}

.about-area .info > h5 {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  color: #00914B;
}

.about-area .info h2 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-area .info ul {
  margin-top: 25px;
  border-top: 1px dashed #dddddd;
  padding-top: 30px;
}

.about-area .info ul li {
  display: flex;
  margin-bottom: 30px;
}

.about-area .info ul li:last-child {
  margin-bottom: 0;
}

.about-area .info ul li i {
  display: inline-block;
  color: #00914B;
  font-size: 10px;
  margin-right: 10px;
}

.about-area .info ul li .info h4 {
  font-weight: 600;
}

.about-area .info ul li .info span {
	display: block;
  position: relative;
  z-index: 1;
  margin-top: 8px;
  padding-left: 25px;
  text-transform: capitalize;
  font-weight: 600;
}
.about-area .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
}
.about-area .shape img {
  width: 100%;
}

/* ============================================================== 
     # Services  
=================================================================== */

.services-area .services-items .services-single {
  margin-bottom: 30px;
}

.services-area .services-items .item .info .thumb,
.services-area .services-items .item .info i {
  position: relative;
  z-index: 1;
}

.services-area .services-items .item .info i {
	display: inline-block;
	color: #00914B;
	margin-right: 5px;
}

.services-area .services-items .item .info {
  padding: 50px 37px;
  position: relative;
  z-index: 1;
  border-radius: 5px;
}

.services-area .services-items .item .info .top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.services-area .services-items .item .info img {
	position: absolute;
	right: 0;
	top: 0;
	height: 150px;
}

.services-area .services-items .item .info .top > i {
  font-size: 100px;
  display: inline-block;
  color: #232323;
  background: linear-gradient(90deg, rgba(12,184,182,1) 0%, rgba(5,87,86,1) 75%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-area .services-items .item .info strong {
  right: 30px;
  top: 50px;
  font-size: 90px;
  font-weight: 800;
  opacity: 0.2;
  line-height: 1;
  letter-spacing: -5px;
  color: #e7e7e7;
}

.services-area .services-items .item {
  background: #ffffff;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  clip-path: polygon(100% 0, 100% 92%, 92% 100%, 0 100%, 0 0);
}

.services-area .services-items .item .info h4 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services-area .services-items .item .info h4 a {
  font-weight: 700;
}

.services-area .services-items .services-single ul li {
  float: left;
  width: 50%;
  padding: 0 15px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding-left: 37px;
  color: #232323;
  text-transform: capitalize;
}

.services-area .services-items .services-single ul {
  overflow: hidden;
  margin: 0 -15px;
  margin-top: 25px;
  min-height: 80px;
}

.services-area .services-items .services-single .info > a {
  margin-top: 10px;
  display: inline-block;
}


/* Services Version Two */
.services-area .services-box .services-single .info {
  padding: 50px;
  position: relative;
  z-index: 1;
  padding-left: 80px;
}

.services-area .services-box .services-single {
  background: #ffffff;
}

.services-area .services-box .services-single .title {
  display: flex;
  align-items: center;
  margin-bottom: 23px;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
}

.services-area .services-box .services-single .title i {
  display: inline-block;
  font-size: 60px;
  color: #00914B;
  background: linear-gradient(90deg, rgba(12,184,182,1) 0%, rgba(11,145,144,1) 75%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 20px;
}

.services-area .services-box .services-single .info h4 {
  text-transform: capitalize;
  font-weight: 600;
}

.services-area .services-box .services-single .info .content p {
  margin: 0;
  text-transform: uppercase;
  font-size: 14px;
}

.services-area .services-box .services-single .info p strong {
  color: #00914B;
  font-weight: 600;
}

.services-area .services-box .services-single .info ul li {
  float: left;
  width: 50%;
  padding: 0 15px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding-left: 40px;
}

.services-area .services-box .services-single .info ul {
  overflow: hidden;
  margin: 0 -15px;
  margin-top: 20px;
}

.services-area .services-box .services-single .info > a {
  margin-top: 10px;
}

.services-area .services-box .services-single .info ul li::after {
  position: absolute;
  left: 0;
  top: 0;
}

.services-area .services-box .services-single .info ul li::after {
  position: absolute;
  left: 15px;
  top: 0;
  content: "\e6de";
  font-family: 'themify';
}

.services-area .services-box .services-single .info .fixed-icon i {
  display: inline-block;
  font-size: 45px;
  position: absolute;
  left: -5px;
  top: 50%;
  z-index: -1;
  color: #00914B;
  transform: translate(0, -50%);
  height: 90px;
  width: 90px;
  text-align: center;
  line-height: 90px;
  margin-left: -40px;
  border-radius: 50%;
}

.services-area .services-box .services-single .info .fixed-icon i::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: #ffffff;
  z-index: -1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: rotate(45deg);
  border-radius: 5px;
}

.services-area .services-box .services-one-item-carousel.owl-carousel .owl-dot {
  margin-bottom: -10px;
  margin-top: 30px;
}

.services-area .services-box .services-one-item-carousel.owl-carousel .owl-dot span {
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 7px;
  background: #ffffff;
  position: relative;
  z-index: 1;
  border: 2px solid #e7e7e7;
  border-radius: inherit;
  transform: rotate(45deg);
}

.services-area .services-box .services-one-item-carousel.owl-carousel .owl-dot.active span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background: #00914B;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.services-area .services-box .services-one-item-carousel.owl-carousel .owl-nav {
  margin: 0;
}

.services-area .services-box .services-one-item-carousel.owl-carousel .owl-nav .owl-prev, 
.services-area .services-box .services-one-item-carousel.owl-carousel .owl-nav .owl-next {
  background: transparent none repeat scroll 0 0;
  color: #00914B;
  font-size: 25px;
  height: 40px;
  left: -60px;
  line-height: 40px;
  margin: -20px 0 0;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 40px;
}

.services-area .services-box .services-one-item-carousel.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: -60px;
}

.brand-area .shape {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}
/* ============================================================== 
     # Health Tips  
=================================================================== */
.health-tips-area .tips-items {
  position: relative;
  padding-left: 35px;
}

.health-tips-area .tips-items h4 {
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
  margin-top: -5px;
}

.health-tips-area .tips-items span {
  color: #0cb8b6;
  font-weight: 600;
  text-transform: uppercase;
}

.health-tips-area .left-info h2 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: -5px;
}

.health-tips-area .left-info > a {
  margin-top: 10px;
}

.health-tips-aera .tips-items .item .bottom {
  display: flex;
}

.health-tips-area .tips-items .bottom {
  display: flex;
  align-items: center;
  border-top: 1px solid #e7e7e7;
  margin-top: 25px;
  padding-top: 30px;
}

.health-tips-area .tips-items .bottom .provider {
  padding-left: 20px;
}

.health-tips-area .tips-items .bottom img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.health-tips-area .tips-items h5 {
  text-transform: capitalize;
  font-weight: 600;
}

.health-tips-area .tips-items::after {
  position: absolute;
  left: -50px;
  top: -30px;
  content: "";
  height: 100%;
  width: 150px;
  background: url(assets/img/medi-icon.png);
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -1;
  opacity: 0.04;
  background-size: contain;
}

.health-tips-area .testimonial-items .tips-items::after {
  display: none;
}

.health-tips-area .testimonial-items .tips-items::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.07;
  font-family: "Font Awesome 5 Free";
  content: "\f10d";
  font-weight: 600;
  font-size: 100px;
}

.health-tips-area .testimonial-items .tips-items span {
  color: #0cb8b6;
}

.health-tips-area .tips-items.health-tips-carousel.owl-carousel .owl-dots {
  text-align: left;
  margin-bottom: 5px;
}

.health-tips-area .tips-items.health-tips-carousel.owl-carousel .owl-dot {
  margin-bottom: -10px;
  margin-top: 15px;
}

.health-tips-area .tips-items.health-tips-carousel.owl-carousel .owl-dot span {
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 7px;
  background: #ffffff;
  position: relative;
  z-index: 1;
  border: 2px solid #e7e7e7;
  border-radius: inherit;
  transform: rotate(45deg);
}

.health-tips-area .tips-items.health-tips-carousel.owl-carousel .owl-dot.active span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background: #0cb8b6;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
/* ============================================================== 
     # Blog  
=================================================================== */

.blog-area .blog-items .single-item {
  margin-bottom: 30px;
}

.blog-area.full-blog .blog-items .single-item:last-child {
  margin-bottom: 0;
}

.blog-area .blog-items .item .thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.blog-area .blog-items .item > .thumb::after {
  background: #ffffff none repeat scroll 0 0;
  bottom: -35px;
  content: "";
  height: 70px;
  left: 0;
  position: absolute;
  transform: skewY(-5deg);
  -webkit-transform: skewY(-5deg);
  -moz-transform: skewY(-5deg);
  -ms-transform: skewY(-5deg);
  -o-transform: skewY(-5deg);
  width: 100%;
  border-top: 2px solid #0cb8b6;
}

.blog-area.full-blog .item > .thumb::after {
  background: #ffffff none repeat scroll 0 0;
  bottom: -70px;
  content: "";
  height: 100px;
  left: 0;
  position: absolute;
  transform: skewY(-3deg);
  -webkit-transform: skewY(-3deg);
  -moz-transform: skewY(-3deg);
  -ms-transform: skewY(-3deg);
  -o-transform: skewY(-3deg);
  width: 100%;
}

.blog-area .post-formate {
  background: linear-gradient(90deg, rgba(12,184,182,1) 0%, rgba(11,145,144,1) 75%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  bottom: 0;
  color: #ffffff;
  height: 50px;
  left: 50%;
  line-height: 50px;
  margin-bottom: 5px;
  margin-left: -25px;
  position: absolute;
  text-align: center;
  width: 50px;
  z-index: 1;
}

.blog-area .blog-items .item .info {
  padding: 0 30px;
  position: relative;
}

.blog-area .blog-items .item .info span.date {
  position: absolute;
  right: 30px;
  top: -87px;
  background: #0cb8b6;
  color: #ffffff;
  width: 80px;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.6;
  z-index: 9;
  border-radius: 5px;
}

.blog-area .blog-items .item .info h2,
.blog-area .blog-items .item .info h3,
.blog-area .blog-items .item .info h4 {
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 20px;
}
.blog-area .blog-items .item .info h4 {
	font-size: 18px;
	margin-top: 20px;
}

.blog-area .blog-items .item .info > a {
  margin-top: 10px;
}

.blog-area .blog-items .item .info a:hover {
  color: #0cb8b6;
}

.blog-area .blog-items .item .info .meta ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.blog-area.full-blog .blog-items .item .info .meta ul {
  display: flex;
  justify-content: left;
}

.blog-area.full-blog .blog-items .item .info .meta ul li {
  margin-right: 20px;
}

.blog-area .blog-items .item .info .meta ul li {
  text-transform: capitalize;
  font-weight: 600;
}

.blog-area .blog-items .item .info .meta ul li a {
  color: #666666;
  font-weight: 600;
}

.blog-area .blog-items .item .info .meta ul li a:hover {
  color: #0cb8b6;
}

.blog-area .blog-items .item .info .meta ul li i {
  margin-right: 5px;
  color: #0cb8b6;
}

.blog-area .blog-items .item .info .tags {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.blog-area .blog-items .item .info .tags a {
  display: inline-block;
  color: #999999;
  margin-right: 5px;
  position: relative;
  z-index: 1;
}

.blog-area .blog-items .item .info .tags a:hover {
  color: #0cb8b6;
}

.blog-area .blog-items .item .info .tags a::after {
  right: -5px;
  bottom: 0;
  content: ",";
  position: absolute;
}

.blog-area .blog-items .item .info .tags a:last-child::after {
  display: none;
}


/* Pagination */

.blog-area .pagi-area .pagination {
  align-items: center;
  justify-content: center;
  margin-top: 45px;
}

.blog-area .pagi-area .pagination li a {
  display: inline-block;
  padding: 15px 20px;
  margin: 5px;
  margin-bottom: 0;
  border-radius: 10px;
  color: #0cb8b6;
}

.blog-area .pagi-area .pagination li.active a {
  background: #0cb8b6;
  color: #ffffff;
  border-color: transparent;
}