img {
  max-width: 100%;
}
  .hide-md {
    display: none !important;
  }
}
/* ----------------Responsive Align ------------------- */
@media all and (max-width: 767px) {
  .text-center-xs {
    text-align: center;
  }

  .text-left-xs {
    text-align: left;
  }

  .text-right-xs {
    text-align: right;
  }
}
@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}



.img_card {
  position: relative;
}
.img_card .content_section {
  background-color: #000;
  position: relative;
  padding: 50px 0;
}
.img_card .content_section .content_box {
  position: relative;
  left: 0;
  right: 0;
  margin-right: -75px;
  z-index: 999;
  top: 0;
  width: auto;
  bottom: 0;
  padding: 10px;
  min-height: 500px;
  background-color: #000;
}
.img_card .content_section .content_box .content_box_inner {
  padding: 15px;
}
.img_card .img_section {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/*  ----------------------------------------------------
6 portfolio
-------------------------------------------------------- */
.project_box_one {
	position: relative;
	overflow: hidden;
	margin: 8px;
	cursor: crosshair;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}
.project_box_one img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.project_box_one .product_info {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 30px 40px;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  opacity: 0;
}
.project_box_one .product_info .product_info_text {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  position: relative;
}
.project_box_one .product_info .product_info_text .product_info_text_inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.project_box_one .product_info .product_info_text .product_info_text_inner h4 {
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-style: normal;
    font-weight: normal;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    opacity: 0;
    margin-bottom: 5px;
}
.project_box_one .product_info .product_info_text .product_info_text_inner i {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 15px;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  opacity: 0;
}
.project_box_one:hover img {
  /* IE 9 */
  -webkit-transform: scale(1.1);
  /* Safari */
  transform: scale(1.1);
  /* Standard syntax */
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.project_box_one:hover .product_info {
  opacity: 1;
}
.project_box_one:hover .product_info .product_info_text_inner h4 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.project_box_one:hover .product_info .product_info_text_inner i {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #ffffff;
  word-wrap: break-word;
  padding-right: 36px;
  font-size: 14px;
  text-transform: capitalize;
}

.gutters .grid-item {
  margin-bottom: 0px;
}

.blog_card {
  margin-bottom: 30px;
  padding: 15px;
}
.blog_card .blog_card_top {
  position: relative;
}
.blog_card .blog_card_top .blog_date {
  background-color: #ffffff;
  width: 60px;
  text-align: center;
  border: solid 1px #ccc;
  position: absolute;
  top: -15px;
  left: 15px;
  font-weight: 400;
  font-size: 30px;
  line-height: 0.7;
  padding: 15px 5px;
  word-break: break-word;
  color: #18181c;
}
.blog_card .blog_card_top .blog_date span {
  font-size: 12px;
  font-weight: 400;
  color: #9c9ca9;
}
.blog_card .blog_card_bottom {
  padding: 25px 0;
}
.blog_card .blog_card_bottom h4 {
  margin-bottom: 5px;
}
.blog_card .blog_card_bottom h4 a {
  font-size: 20px;
  margin-bottom: 15px;
  display: block;
  text-transform: capitalize;
  color: #18181c;
}
.blog_card .blog_card_bottom .meta_data {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 30px;
}
.blog_card .blog_card_bottom .meta_data span {
  padding: 0 5px;
  border-right: 1px #ccc solid;
}
.blog_card .blog_card_bottom .meta_data span:last-child {
  border-right: 0 #ccc solid;
}

.widget {
  margin-bottom: 50px;
}
.widget .widget-title {
  margin-bottom: 25px;
  font-size: 18px;
  color: #18181c;
  text-transform: capitalize;
}
.widget ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.widget_search {
  position: relative;
  width: 100%;
}
.widget_search input {
  border: 0;
  border-bottom: solid 1px #99896e;
  padding: 12px;
  width: 100%;
  outline: 0;
  font-size: 12px;
  font-style: italic;
}

.widget_categories {
  position: relative;
  width: 100%;
}
.widget_categories ul li a {
  padding: 6px 0;
  display: block;
  width: 100%;
  color: #9c9ca9;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.widget_categories ul li a:hover {
  color: #99896e;
}

.widget_instagram {
  position: relative;
  width: 100%;
}
.widget_instagram ul li {
  display: inline-block;
  width: 32%;
  padding: 1%;
  margin: 2px 0;
}
.widget_instagram ul li img {
  width: 100%;
}

.widget_tags {
  position: relative;
  width: 100%;
}
.widget_tags ul li {
  display: inline-block;
  margin: 7px 2px;
}
.widget_tags ul li a {
  display: block;
  padding: 10px 12px;
  background-color: #f4f8fc;
  color: #9c9ca9;
  border: solid 1px #f4f8fc;
  font-size: 12px;
  font-weight: 500;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.widget_tags ul li a:hover {
  background-color: #ffffff;
  border: solid 1px #99896e;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
