.services {
  padding-bottom: 50px;
}
@media screen and (min-width: 1200px) {
  .services {
    padding-bottom: 94px;
  }
}
.services .tab-head {
  border-bottom: 1px solid #b5bfc8;
}
.services .tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: scroll;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.services .tab-container::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1200px) {
  .services .tab-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.services .tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: width 0.3s ease, background-color 0.3s ease;
  transition: width 0.3s ease, background-color 0.3s ease;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  /* padding: 22px 5px; */
  padding: 28px 5px;
  margin: 0 18px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (min-width: 1600px) {
  .services .tab {
    margin: 0 40px;
    font-size: 15px;
    font-weight: 400;
  }
}
.services .tab::before {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #52afc7;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.services .tab.active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.services .content-container {
  position: relative;
  padding-top: 50px;
}
@media screen and (min-width: 1200px) {
  .services .content-container {
    padding-top: 80px;
  }
}
.services .tab-content {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.services .tab-content.active {
  display: block;
  opacity: 1;
}
.services .row {
  row-gap: 24px;
}
.services .card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.services .card figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.services .card::before{
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 100%);
	z-index:1;
}
.services .card figure img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  will-change: transform;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.services .card .info {
  position: absolute;
  bottom: 15px;
  left: 20px;
  max-width: 80%;
  z-index:1;	
}
@media screen and (min-width: 768px) {
  .services .card .info {
    bottom: 25px;
    left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .services .card .info {
    max-width: 537px;
    bottom: 33px;
    left: 50px;
  }
}
.services .card .info .title {
  color: #7CDBF3;
  margin-bottom: 10px;
}
.services .card .info p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .services .card .info p {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1600px) {
  .services .card .info p {
    margin-bottom: 30px;
  }
}
.services .card .info a {
  font-size: 15px;
}
@media screen and (min-width: 1200px) {
  .services .card:hover figure img {
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
  }
}
.services .loading {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  margin-top: 50px;
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  .services .loading {
    margin-top: 80px;
  }
}