.card-flip .top-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 05%;
}

.card-flip .top-section h2 {
  line-height: 48px;
  margin: 10px 0;
}

.card-flip .top-section h2 span:first-child {
  color: #f8f3ee;
}

.card-flip .top-section p {
  color: #f8f3ee;
  margin-block-end: .9rem; }

.card-flip .btm_row {
  display: flex;
  flex-direction: row;
  gap: 2% 2%;
}

.card-flip .btm_row .col {
  width: 20%;
  : ; }

.card-flip .btm_row .col .flip-box {
  perspective: 1000px;
  position: relative;
  transform-style: preserve-3d;
  overflow: hidden;
  min-height: 700px;
}

.card-flip .btm_row .flip-box__layer.flip-box__front {
  height: 100%;
  position: absolute;
  transition: all .6s ease-in-out;
  width: 100%;
  background-color: #f8f3ee;
}

.card-flip .btm_row .col .flip-box .flip-box__layer.flip-box__back {
  height: 100%;
  position: absolute;
  transition: all .6s ease-in-out;
  width: 100%;
  transform: translateX(0) translateY(100%);
  : ; background-color: #700000;
  : ; } 


.card-flip .btm_row .col .flip-box:hover .flip-box__layer.flip-box__back {
  transform: none;
}

.card-flip .btm_row .col .flip-box__layer__overlay {
  align-items: stretch;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 35px;
  text-align: center;
  width: 100%;
}

.card-flip .btm_row .col .flip-box__layer__overlay .flip-box__layer__inner p {
  color: #f8f3ee;
  font-family: "graphie", Sans-serif;
  : ; font-size: 16px;
  font-weight: 300;
}

.card-flip .btm_row .flip-box__layer.flip-box__front .icon-wrapper.view-default {
  margin-bottom: 20px;
}

.card-flip .btm_row .flip-box__layer.flip-box__front .icon {
  display: inline-block;
  font-size: 50px;
  line-height: 1;
  text-align: center;
  transition: all .3s;
  color: #700000;
  border-color: #700000;
}

.card-flip .btm_row .flip-box__layer.flip-box__front .icon svg {
  fill: #700000;
  border-color: #700000;
  transform: rotate(0deg);
  height: 1em;
  position: relative;
  width: 1em;
}

.card-flip .btm_row .col .flip-box__layer__overlay h3.flip-box__layer__title {
  line-height: 1;
  color: #0b111b;
  font-family: "olimpico", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-block-end: 1rem;
  margin-block-start: .5rem; }


@media(max-width:1550px) and (min-width:768px){

  .card-flip .btm_row .col .flip-box .flip-box__layer.flip-box__back {
    padding-top: 30px;
    overflow-y: auto;
    padding-bottom: 30px;
  }
}
@media(max-width:1024px){
  .card-flip .btm_row .col {
    width: calc(50% - 20px);
  }

  .child-theme .card-flip {
    padding-left: 05% !important;
    padding-right: 05% !important;
  }

  .card-flip .btm_row {
    flex-wrap: wrap;
    gap: 30px;
  }

}

@media(max-width:767px){
  .card-flip .btm_row .col {
    width: 100%;
  }

  .card-flip .btm_row .col .flip-box__layer__overlay h3.flip-box__layer__title {
    font-size: 30px;
  }

}