.our_core_values_section {
  padding: 60px 0px 80px;
  position: relative;
}

.our_core_values_section .container {
  position: relative;
}
.our_core_values_section:before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/overlay-corevalues.png);
  background-size: 100% 100%;
}
.our_core_values_section .row {
  margin-left: -10px;
  margin-right: -10px;
}
.our_core_values_section .values_column {
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.our_core_values_section .values_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid rgba(232, 115, 26, 0.1);
  border-radius: 15px;
  height: 100%;
}
.our_core_values_section .values_icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: #edece9;
  border-radius: 15px;
  margin-bottom: 20px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.our_core_values_section .values_item:hover .values_icon {
  background-color: var(--orange);
}
.our_core_values_section .values_item:hover .values_icon svg path[fill] {
  fill: var(--white);
}
.our_core_values_section .values_item:hover .values_icon svg path[stroke] {
  stroke: var(--white);
}
.our_core_values_section .values_item h5 {
  margin-bottom: 10px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
      font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    color: #2A2725;
}
.our_core_values_section .values_item:hover h5 {
  color: var(--orange);
}
.our_core_values_section .values_item small {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  text-transform: uppercase;
}
.our_core_values_section .values_item p {
  line-height: 26px;
  letter-spacing: -0.1px;
}
.our_core_values_section .row {
  justify-content: center;
}
.our_core_values_section .values_item .values_content {
  position: relative;
  padding-bottom: 20px;
}
.values_content:after {
  content: "";
  display: flex;
  border: 1px solid;
  border-image-source: linear-gradient(90deg, rgba(232, 115, 26, 0) 0%, rgba(232, 115, 26, 0.5) 50%, rgba(232, 115, 26, 0) 100%);
  width: 120px;
  height: 1px;
  border-image-slice: 1;
  margin: auto;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
}

@media (max-width: 1199px) {
  .our_core_values_section .values_column {
    width: 33.33%;
  }
}
@media (max-width: 991px) {
  .our_core_values_section .values_column {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .our_core_values_section .values_column {
    width: 100%;
  }
}
