.template {
  background: #F9FAFB;
}

.template_type {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-template-rows: 1fr;
  gap: 2rem;
}

.template_type_item {
  justify-content: flex-start;
  align-items: center;
  border: 2px solid #0A2C3D18;
  outline: none;
  background-color: var(--white);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  overflow: hidden;
}

.template_type_item:hover .h1-subtitle.dark {
  color: var(--info-blue);
  transition: 0.3s ease-in-out;
}

.template_type_item:hover .h1-subtitle.dark.bold {
  color: var(--main-dark);
}

.template_type_item_img {
  object-fit: fill;
  margin-bottom: -6px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.template_type_item_img img {
  width: 100%;
  scale: 1;
  transition: 0.3s ease-in-out;
}

.template_type_item_img.h-wide {
  max-height: 196px;
  height: 190px;
}

.template_type_item_icon {
  height: 48px;
  width: auto;
  padding: 2rem auto 1rem 0;
  color: var(--main-dark);
}

@media (max-width: 768px) {
  .template_type_item_icon {
    text-align: center;
    padding: 2rem auto;
    margin: 0 auto;
  }
}

.template_type_item .text-center {
  text-align: left;
}

@media (max-width: 768px) {
  .template_type_item .text-center {
    text-align: center;
  }
}

.template_type_item p.h1-subtitle {
  text-align: left;
  margin: 0 !important;
  transition: 0.3s ease-in-out;
}

.template_type_item p.h1-subtitle.dark {
  font-family: var(--font-medium);
  padding-left: 1.5rem;
}

.template_type_item p.h1-subtitle.dark.bold {
  padding-left: 0;
  font-family: var(--font-bold);
}

.template_type_item .text {
  width: 100%;
  padding: 2rem 0;
  position: relative;
}

.template_type_item.no-border {
  border: 0;
  outline: none;
  border-radius: 0;
  align-items: start;
}

.badge-wrapper {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.badge-wrapper .badge {
  position: relative;
  justify-items: center;
  text-align: center;
  margin: 1.5rem 1rem 0;
}

.badge-wrapper .badge a {
  display: block;
  transition: transform 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

.badge-wrapper .badge a:hover img {
  transform: scale(1.01);
  transition: transform 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

.badge-wrapper img {
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 160px;
  }

.workflow-section {
  padding: 3rem 1rem 0;
  position: relative;
}

.workflow-section h2 {
  margin-bottom: 2.5rem;
}

.workflow-section .workflow-card {
  display: flex;
  flex-direction: column;
  margin: 0 0.5rem;
  flex:1;
}

.workflow-section .workflow-card div:first-child {
  min-height: 94px;
  display: flex;
  align-items: center;
}

.workflow-section .workflow-slider {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

@media screen and (max-width: 1024px) {
  .workflow-slider .workflow-card {
    flex: 40%;
  }
}

@media screen and (max-width: 600px) {
  .workflow-slider .workflow-card {
    flex: 50%;
  }
}

.workflow-section .slick-track {
  justify-content: center;
  align-items: center;
  height: 100%;
}

.workflow-section span.workflow-title {
  font-family: var(--font-medium);
  font-size: 1.125rem;
  margin-top: 1rem;
}

.workflow-section p.workflow-description {
  font-family: var(--font-regular);
  margin-top: 0.5rem;
  font-size: 1rem;
}

.workflow-section img.workflow-icon {
  display: block;
  margin: 0 auto;
  max-height: 3rem;
}

.workflow-section .workflow-card {
  padding: 0.8rem 0.8rem 1rem 0.8rem;
  background-color: white;
  box-shadow: 0px 12px 20px rgba(45, 116, 255, 0.05);
  border-radius: 10px;
  text-align: center;
}

.workflow-section .workflow-card a.link,
.workflow-section .workflow-card .link {
  display: inline-block;
}

.hearticon {
  max-width: 26px;
}

p.subtitle {
  max-width: 100%;
}