.contact .content {
  font-size: 22px;
  letter-spacing: 0;
}
.contact p {
  word-break: keep-all;
}

.contact-header {
  padding: 40px 0;
  border-top: 2px solid var(--border-black);
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-silver);
}
.contact-header dl {
  font-weight: bold;
  margin-bottom: 20px;
}
.contact-header dl dt {
  margin-right: 0.4em;
}

/*[START] 엠더블유코치 세르보 작업 2024.10.20**********************************************************************************************/

.content2 {
  padding: 2em 1em 5em;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.content2 h2{
    text-align: center;
    font-size: x-large;
    font-weight: bold;
   
}
.box {
  padding: 2em 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
/* Common button styles */
.button {
  float: left;
  min-width: 150px;
  max-width: 250px;

  display: block;
  margin: 1em;
  padding: 1em 2em;
  border: none;
  background: none;
  color: inherit;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;

}
.button:focus {
  outline: none;
}
.button > span {
  vertical-align: middle;
}

/* Text color adjustments (we could stick to the "inherit" but that does not work well in Safari) */
.bg-1 .button {
  color: #37474f;
  border-color: #37474f;
  font-size : medium;
}

/* Sizes */
.button--size-s {
  font-size: medium;
}

/* Typography and Roundedness */
.button--text-upper {
  letter-spacing: 2px;
  text-transform: uppercase;
}
.button--text-thin {
  font-weight: 300;
}
.button--round-s {
  border-radius: 5px;
}
/* Borders */
.button--border-thin {
  border: 1px solid;
}
/* Individual button styles */

/* Winona */
.button--winona {
  overflow: hidden;
  padding: 0;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--winona::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  color: #0B3C5D;
  -webkit-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
}
.button--winona > span {
  display: block;
}
.button--winona.button--inverted {
  color: #7986cb;
}
.button--winona.button--inverted:after {
  color: #fff;
}
.button--winona::after,
.button--winona > span {
  padding: 1em 2em;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--winona:hover {
  border-color: #3f51b5;
  background-color: rgba(63, 81, 181, 0.1);
}
.button--winona.button--inverted:hover {
  border-color: #21333C;
  background-color: #21333C;
}
.button--winona:hover::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.button--winona:hover > span {
  opacity: 0;
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
}

/*[END] 엠더블유코치 세르보 작업 2024.10.20**********************************************************************************************/

.contact-row {
  display: flex;
}

.contact-body img {
  width: 100%;
}


@media all and (max-width: 1024px) {
  .contact .content {
    font-size: 20px;
  }
  .contact-header {
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .contact-header dl {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 640px) {
  .contact .content {
    font-size: 18px;
  }
}