@font-face {
  font-family: 'Playfair Display';
  src: url('https://static.mediacdn.vn/fonts/PlayfairDisplay-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.svg-icon {
  width: auto;
}

.h-100 {
  height: 100%;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.center-position {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.horizon-center {
  left: 50%;
  transform: translateX(-50%);
}

.vertical-center {
  top: 50%;
  transform: translateY(-50%);
}

.m-0-auto {
  margin: 0 auto;
}

body {
  font-size: 62.5%;
}

.template {
  --space: 72px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  background: #E5B693;
  padding: var(--space) 0;
}

/* begin */

.template-box {
  background: #64798C;
  position: relative;
}

.template-box::before {
  content: '';
  position: absolute;
  height: 100%;
  border-left: 2px solid #325575;
  left: var(--space);
  top: 0;
}

.template-box::after {
  content: '';
  position: absolute;
  height: 100%;
  border-left: 2px solid #325575;
  right: var(--space);
  top: 0;
}

.template-highlight {
  font-family: Playfair Display;
  font-style: normal;
  font-weight: bold;
  font-size: 5.4em;
  line-height: 1.59;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}

.template-label {
  font-family: Inter-SemiBold;
  font-style: normal;
  font-weight: normal;
  font-size: 3.6em;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .template {
    --space: 60px;
  }

  body {
    font-size: 58.5%;
  }
}

@media (max-width: 768px) {
  .template {
    --space: 45px;
  }

  body {
    font-size: 45.5%;
  }
}

@media (max-width: 575px) {
  .template {
    --space: 20px;
  }

  body {
    font-size: 23.5%;
  }
}