:root {
  --color-white: #fff;
  --color-black: #000;
  --dark-color:#111d32;
  --color-main: #16243d;
  --color-second: #33cccc;
  --color-light:#fab600;
  --light-blue: #c2dfff;
  --color-100: #015fc9;
  --color-200: #0ce0ff;
  --color-300: rgb(245, 245, 245);
  --color-400: #696e77;
  --color-500: #01905d;
  --color-600: rgb(237, 237, 241);
  --color-700: rgb(105, 105, 105);
  --color-800: rgb(231, 231, 231);
  --color-900: rgb(38, 37, 102);
  --color-1000: #e0e4e8;
  --color-1100: rgb(13, 13, 57);
  --color-1200: #f2f5f9;
  --color-1300: rgb(30, 31, 74);
  --color-1400: #dfe3e7;
  --color-1500: rgb(239, 243, 243);
  --color-1600: rgb(193, 214, 214);
  --color-1700: #f2f5f9;
  --color-1800: rgb(242, 242, 242);
  --color-1900: rgb(229, 229, 229);
  --color-2000: rgb(236, 249, 249);
  --color-2100: rgb(191, 191, 198);
  --color-2200: rgb(89, 89, 137);
  --color-2300: rgb(234, 243, 250);
  --color-2400: #0E86D4;
  --gradient-100: linear-gradient(269.37deg,#fc0000 5.03%,#eb8a17 56.67%);
  --gradient-200: linear-gradient(90deg, #ff4569 -100%, #fa8a06 100.1%);
  --main-bg:#112e4d;
  --light-color: #97a2b7;
}

.main-heading p {
  display: none;
}

.services-list {
  gap: 30px;
}
@media (max-width: 1200px) {
  .services-list {
    gap: 30px !important;
  }
}
.services-list .service {
  max-width: calc(33.3333333333% - 20px) !important;
}
@media (max-width: 991px) {
  .services-list .service {
    max-width: calc(50% - 15px) !important;
  }
}
@media (max-width: 767px) {
  .services-list .service {
    max-width: 100% !important;
  }
}
.services-list .service .top-info .image {
  padding-top: 110% !important;
}
.services-list .service .details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 500ms ease;
  transform: translate3d(0px, 0, 0px);
  z-index: 1;
  justify-content: flex-end;
}
.services-list .service .details .short-description {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 24px;
  opacity: 0.6;
  color: white;
  font-family: DMSans-Regular, Arial, Helvetica, sans-serif;
}
.services-list .service .details h4 {
  margin: 0;
  display: block;
  background: transparent;
  padding: 0;
  font-size: 24px;
  font-family: DMSans-Bold, Arial, Helvetica, sans-serif;
  color: white;
  line-height: 30px;
  letter-spacing: -0.48px;
  height: auto;
}
.services-list .service .details h4 a {
  display: block;
  background: transparent;
  padding: 0;
  font-size: 24px;
  font-family: DMSans-Bold, Arial, Helvetica, sans-serif;
  color: white;
  line-height: 30px;
  letter-spacing: -0.48px;
  height: auto;
}
.services-list .service:hover .details {
  transform: translate3d(0px, 0, 0px);
}
