@charset "UTF-8";

/* ------------------ */
/*    Imports         */
/* ------------------ */
@import url(/webjars/font-awesome/4.7.0/css/font-awesome.min.css);

/* ------------------ */
/*    Font Face       */
/* ------------------ */
@font-face {
  font-family: 'Operetta12';
  src: url(/font/Operetta12-Medium.otf) format("truetype");
}
@font-face {
  font-family: 'Operetta8';
  src: url(/font/Operetta8-Medium.otf) format("truetype");
}
@font-face {
  font-family: 'DinBold';
  src: url(/font/D-DIN-Bold.ttf) format("truetype");
  font-style:normal;
  font-weight:normal; 
}
@font-face {
  font-family: 'Din';
  src: url(/font/D-DIN.ttf) format("truetype");
  font-style:normal;
  font-weight:normal; 
}
  
@font-face {
  font-family: 'NanumSquareBold';
  src: url(/font/Nanum-Square-Bold.ttf) format("truetype");
}
@font-face {
  font-family: 'NanumSquare';
  src: url(/font/Nanum-Square.ttf) format("truetype");
}

/* ------------------ */
/*  Language Styles   */
/* ------------------ */
h1:lang(ko) { font-family: 'NanumSquareBold', sans-serif; }
h2:lang(ko), h3:lang(ko) { font-family: 'NanumSquareBold', sans-serif; }
h4:lang(ko), h5:lang(ko) { font-family: 'NanumSquare', sans-serif; font-weight: bold; }
body:lang(ko), p:lang(ko), span:lang(ko), div:lang(ko) { font-family: 'NanumSquare', sans-serif; }

h1:lang(en) { font-family: 'Operetta12', sans-serif; }
h2:lang(en), h3:lang(en) { font-family: 'Operetta8', sans-serif; }
h4:lang(en), h5:lang(en) { font-family: 'DinBold', sans-serif; }
body:lang(en), p:lang(en), span:lang(en), div:lang(en) { font-family: 'Din', sans-serif; }

/* ------------------ */
/*   CSS Variables    */
/* ------------------ */
:root {
  /* Main colour */
  --color-main-color: #202020;
  
  /* Base Colours */
  --color-bg-dark: #202020; 
  --color-bg-light: #FAFAFA;
  --color-bg-subtle: #F0F0F0;
  --color-bg-gray: #F5F5F5;
  --color-bg-cyan: #18BC9C;

  --color-text-light: #FAFAFA;
  --color-text-dark: #202020;
  --color-text-default: #333333;
  --color-text-secondary: #888888;
  --color-text-blue: #2C3E50;
  --color-text-cyan: #18BC9C;

  --color-border-gray: #E0E0E0;

  /* Error */
  --color-error: #dc3545;

  /* Component Colours */
  --color-btn-default-bg: var(--color-text-blue);
  --color-btn-default-text: var(--color-text-light);
  --color-btn-accent-bg: var(--color-text-cyan);
  --color-btn-accent-text: var(--color-text-light);
  --color-btn-disabled-bg: #cccccc;
  --color-btn-disabled-text: var(--color-text-secondary);

  /* Typography */
  --font-base: 'Arial', sans-serif;

  /* Padding */
  --padding-desktop: 6rem;
  --padding-tablet: 6rem;
  --padding-small: 4rem;
  --padding-mobile: 1rem;
}

/* ------------------ */
/*    Base Layout     */
/* ------------------ */
html {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
  font-size: 1.1rem;
  font-family: 'Din', sans-serif;
  background-color: var(--color-bg-light);
}

hr {
  width: 100%;
}

.wrapper-container {
  width: auto;
  flex: 1; /* Allows footer to stick to bottom */
}

/* ------------------ */
/*   Text Selection   */
/* ------------------ */
::selection {
  background: var(--color-text-dark);
  color: var(--color-text-light);
}

::-moz-selection {
  background: var(--color-text-dark);
  color: var(--color-text-light);
}

/* ------------------ */
/*   Base Elements    */
/* ------------------ */
a {
  color: var(--color-text-blue);
  text-decoration: none;
}

a:hover {
  color: var(--color-text-cyan);
}
a.btn:hover {
  color: var(--color-text-cyan);
}

input, textarea {
  width: 100%;
  margin:0;
  padding:0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.input-btn-light {
  background-color: #fff;
  color: var(--color-text-secondary) !important;
}
.input-btn-light.border {
  border: 1px solid #ced4da;
}

/* label {
  font-weight: bold;
} */

/* ------------------ */
/*    Typography      */
/* ------------------ */
h1, h2, h3, h4, h5 {
  font-family: 'Operetta12', sans-serif;
  color: var(--color-text-dark);
}

body, input, select, textarea {
  font-family: 'Din', sans-serif;
  font-size: 1.1rem;
}

label {
  font-size: 1.1rem;
}

ul, ol {
  padding-left: 25px;
  margin: 0;
}

/* ------------------ */
/*   UI Components    */
/* ------------------ */
.section {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 20px;
  background-color: var(--color-bg-gray);
  border-radius: 8px;
}

/* ------------------ */
/*   Button Styling   */
/* ------------------ */
button, .btn
input[type='button'] {
  all: unset;
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Din', sans-serif;
  line-height: 1.5;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  text-transform: uppercase;
  
  transition: background-color 0.2s ease, color 0.2s ease;

  /* For touch devices */
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

button:lang(ko),
input[type='button']:lang(ko) {
  font-family: 'NanumSquare', sans-serif;
  transform: skew(-0.03deg);
}


/* Variants */
.btn-default {
  background-color: var(--color-bg-dark);
  color: var(--color-btn-default-text);
}

.btn-accent {
  background-color: var(--color-btn-accent-bg);
  color: var(--color-btn-accent-text);
}

.btn-light {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.btn-no-left-radius {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-disabled,
button:disabled,
input[type='button']:disabled {
  background-color: var(--color-btn-disabled-bg);
  color: var(--color-btn-disabled-text);
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
  button,
  input[type='button'] {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .hh-button.wide {
    min-width: 5.8rem;
  }
}

button.share p {
  padding-right: 1rem;
  margin: 0;
}

/* ------------------ */
/*   Form Helpers     */
/* ------------------ */
.hh-required::after {
  content: " *";
  color: var(--color-error);
  font-size: 1rem;
}

:root {
  --padding-desktop: 6rem;
  --padding-tablet: 6rem;
  --padding-small: 4rem;
  --padding-mobile: 1rem;
}

/* ------------------ */ 
/* Layout: .inner Wrapper */
/* ------------------ */
.inner {
  display: flex;
  max-width: 1440px;
  width: calc(100% - var(--padding-desktop));
}
@media (min-width: 768px) and (max-width: 1023px) {
  .inner {
    width: calc(100% - var(--padding-tablet));
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .inner {
    width: calc(100% - var(--padding-small));
  }
}
@media (max-width: 479px) {
  .inner {
    width: calc(100% - var(--padding-mobile));
  }
}

/* ------------------ */ 
/*    Pagination      */
/* ------------------ */ 
.pagination {
  padding: 1rem 0 2rem 0;
}
.pagination .page-item .page-link {
  background: var(--color-bg-light);
  color: var(--color-main-color);
  border: none;
  font-size: 1.3rem;
  padding: 0.5rem 1.3rem;
}
.pagination .page-item.active .page-link {
  background: var(--color-bg-light);
  font-family: 'DinBold';
}
.pagination .page-item .page-link:hover {
  background: var(--color-bg-light);
  color: var(--color-main-color);
  text-decoration: underline;
  text-decoration-color: var(--color-main-color);
  cursor: pointer;
}
.pagination .page-item .page-link:focus {
  box-shadow: none;
}

/* ------------------ */ 
/*     Dropdown       */
/* ------------------ */ 
.dropdown-menu {
  min-width: 8rem;
}
.dropdown .dropdown-item {
  cursor: pointer;
}
.dropdown-menu .inner {
  width: auto;
  overflow-y: auto;
}
.dropdown-menu .dropdown-item:lang(ko) {
  transform: skew(-0.03deg);
}
.dropdown-menu .dropdown-item:hover {
  color: var(--color-btn-accent-bg);
}

/* ------------------ */ 
/*        Form        */
/* ------------------ */ 
.form-row {
  min-height: 7rem;
}
.form-row.margin-0 { 
  margin:0;
}
.form-row.margin-bottom-0 { 
  margin-bottom:0;
}
.form-control {
  border: 1px solid #dee2e6;
}
.form-control::placeholder {
  color: var(--color-text-secondary);
}
.form-control:focus,
input[type="file"]:focus {
  border-color: var(--color-main-color);
  outline: 0;
  box-shadow: inset 0 0 0 0.1rem rgba(32, 32, 32, 0.4); /* #202020 rgba */
}

/* ------------------ */ 
/* Date and time picker */
/* ------------------ */ 
.input-group-text a {
  color: var(--color-text-dark);
}
.datetimepicker {
  font-size: 1rem;
}
.datetimepicker td {
  width: 2rem;
  height: 2rem;
}
.datetimepicker table tr td.active:active,
.datetimepicker table tr td.active:hover:active,
.datetimepicker table tr td.active.disabled:active,
.datetimepicker table tr td.active.disabled:hover:active,
.datetimepicker table tr td.active.active,
.datetimepicker table tr td.active:hover.active,
.datetimepicker table tr td.active.disabled.active,
.datetimepicker table tr td.active.disabled:hover.active {
  background-color: var(--color-main-color);
}
.datetimepicker table tr td.active,
.datetimepicker table tr td.active:hover,
.datetimepicker table tr td.active.disabled,
.datetimepicker table tr td.active.disabled:hover {
  background-image: -webkit-linear-gradient(top, var(--color-main-color), var(--color-main-color));
}
.nav-link {
  cursor: pointer;
}
.nav-link.on:lang(en) {
  font-family: 'DinBold';
}
.nav-link.on:lang(ko) {
  font-weight: bold;
}

/* ------------------ */
/*   Text Ellipsis    */
/* ------------------ */
.hh-ellipsis {
  line-height: 2rem;
  height: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; /* pre-line 대신 normal 권장 */
  word-wrap: break-word;
  margin: 0 0 0.2rem 0;
}

/* ------------------ */
/*    Content Head    */
/* ------------------ */
.hh-page-head {
  display: flex;
  justify-content: center;
  height: 12rem;
  background: var(--color-main-color); 
  color: var(--color-text-light);
  position: relative;
}

.hh-page-head:before {
  /* content: '';
  background-image: url(/images/common/title_pattern.png);
  background-repeat: repeat;
  background-size: 3rem 6rem;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0.7;
  position: absolute;
  padding: 0;
  margin: 0;
  z-index: 1; */
  content: '';
  background-image: url(/images/common/title_pattern.png);
  background-repeat: repeat;
  background-size: 3rem 6rem;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0.7;
  position: absolute;
  padding: 0;
  margin: 0;
  z-index: 1;
}

.hh-page-head .container {
  height: 100%;
  position: relative;
  z-index: 2;
}

.hh-page-head .breadcrumb-wrapper {
  position: absolute;
  margin: 0;
  z-index: 2;
}

.hh-page-head nav {
  font-size: 1.1rem;
  z-index: 2;
  display: block;
}

@media (max-width: 768px),
       (max-width: 576px) {
  .hh-page-head nav {
    display: none;
  }
}

.hh-page-head .hh-page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  margin-bottom: 1rem;
  list-style: none;
  border-radius: 0.25rem;
}

.hh-page-head .hh-page-breadcrumb .hh-breadcrumb-item {
  padding-left: 0.5rem;
}

.hh-page-head .hh-page-breadcrumb .hh-breadcrumb-item:first-child {
  padding-left: 0;
}

.hh-page-head .hh-page-breadcrumb .hh-breadcrumb-item.active {
  font-family: 'DinBold';
}

.hh-page-head .hh-page-breadcrumb .hh-breadcrumb-item a {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 400;
}

.hh-page-head .hh-page-breadcrumb .hh-breadcrumb-item a:hover {
  text-decoration: none;
}

.hh-page-head .hh-breadcrumb-item + .hh-breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: var(--color-text-light);
  content: ">";
}

.hh-page-head .page-heading-wrapper {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.hh-page-head .page-heading-wrapper .hh-page-heading {
  font-size: 4rem;
  color: var(--color-text-light);
  text-align: center;
  margin: 0 auto;
  height: fit-content;
  white-space: break-spaces;
}

.hh-page-head .page-heading-wrapper .hh-page-heading:lang(en) {
  font-family: Operetta8;
}

.hh-page-head .page-heading-wrapper .hh-page-heading:lang(ko) {
  font-family: NanumSquareBold;
}

.hh-page-head .page-heading-wrapper .hh-page-heading.medium-font {
  font-size: 3rem;
}

.hh-page-head .page-heading-wrapper .hh-page-heading.small-font {
  font-size: 2.5rem;
}

@media (max-width: 992px) {
  .hh-page-head .page-heading-wrapper .hh-page-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .hh-page-head .page-heading-wrapper .hh-page-heading {
    font-size: 2.3rem;
  }
}

/* ------------------ */
/*      Content       */
/* ------------------ */
.hh-content {
  display: flex;
  justify-content: center;
  margin: 0;
  padding:0; 
  padding: 1.5rem 0 1rem 0;
}

@media (max-width: 991.98px) {
  .hh-content {
    padding: 0.5rem 0;
  }
}

.hh-content .hh-section {
  padding-bottom: 1.5rem;
  font-size: 1.1rem;
}

@media (max-width: 991.98px) {
  .hh-content .hh-section {
    padding: 3rem 0; 
  }
}

.hh-content .hh-section-head {
  display: flex;
  width: 100%;
  align-items: baseline;
}

.hh-content .hh-section-head .hh-section-heading {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-main-color);
  margin: 1rem 0 0.5rem 0;
}

.hh-content .hh-section-head .hh-section-heading:lang(en) {
  font-family: 'Operetta12';
}

.hh-content .hh-section-head .hh-section-heading:lang(ko) {
  font-family: 'NanumSquareBold';
}

@media (max-width: 576px) {
  .hh-content .hh-section-head .hh-section-heading {
    font-size: 1.8rem;
  }
}

.hh-content.bg-light {
  background-color: var(--color-bg-subtle) !important;
}

.hh-content .hh-section-head .hh-section-more {
  color: var(--color-main-color);
  text-align: right;
  margin-right: 0.5rem;
  cursor: pointer;
  text-transform: uppercase;
}
.hh-content .hh-section-head .hh-section-more:hover {
  color: var(--color-text-cyan);
}

.hh-content .hh-section-head .hh-section-more a {
  color: var(--color-main-color);
  margin-top: 1rem;
  font-family: 'Din', sans-serif;
  font-size: 1.1rem;
}

.hh-content .hh-box {
  display: block;
  background: var(--color-bg-light);
  padding: 1.7rem;
  margin: 1rem 0;
  border: 1px solid var(--color-bg-light);
  color: var(--color-text-dark);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.hh-content .hh-box:hover {
  border-color: var(--color-bg-cyan);
  color: var(--color-main-color);
  box-shadow: 1px 1px 2px rgba(24, 188, 156, 0.2);
}

.hh-content .hh-box .hh-box-hr.default {
  width: 2rem;
  border: 2px solid var(--color-main-color);
  background: var(--color-main-color);
  margin: 0 0 0.5rem 0;
}

.hh-content .hh-box .hh-box-categories {
  margin: 0;
  padding: 0;
}

.hh-content .hh-box .hh-box-title {
  width: 100%;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  height: 2rem;
  line-height: 2rem;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.hh-content .hh-box .hh-box-content {
  font-size: 1.1rem;
  height: 9rem;
  line-height: 1.5rem;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  margin-bottom: 0.5rem;
  width: -webkit-fill-available;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.hh-content .hh-box .hh-box-date {
  font-size: 0.8rem;
  padding: 0;
  margin: 0;
}
.hh-content .hh-box .hh-box-date:lang(ko) {
  transform: skew(-0.03deg);
}

.hh-content .hh-pre-line {
  white-space: pre-line;
}

/* ------------------ */
/*    Person Box      */
/* ------------------ */
.hh-person-box {
  margin: 0.3rem 0.3rem 2rem 0.3rem;
}

.hh-person-box.pointer {
  cursor: pointer;
}

.hh-person-box[data-isviewpage="0"] {
  cursor: default;
}

.hh-person-box:hover {
  -webkit-box-shadow: 10px 10px 10px -8px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 10px -8px rgba(0, 0, 0, 0.1);
}

.hh-person-box .hh-person-img {
  position: relative;
}

.hh-person-box .hh-person-img img {
  width: 100%;
  height: auto;
  max-height: 293.38px;
  object-fit: cover; /* 또는 contain */
  aspect-ratio: 304 / 203;
}
@media (max-width: 767.98px) {
  .hh-person-box .hh-person-img img {
    max-height: 371px;
  }
}

.hh-person-box .hh-person-img a {
  position: absolute;
  right: 5%;
  bottom: 5%;
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

@media (max-width: 1199.98px) {
  .hh-person-box .hh-person-img a {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .hh-person-box .hh-person-img a {
    font-size: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  .hh-person-box .hh-person-img a {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hh-person-box .hh-person-img a {
    font-size: 1.5rem;
  }
}

.hh-person-box .hh-person-img a:hover {
  color: var(--color-btn-accent-text);
}

.hh-person-box .hh-person-inform {
  height: 5rem;
  padding: 0.5rem;
}

.hh-person-box .hh-person-inform .hh-person-name {
  text-transform: capitalize;
  font-size: 1.5rem;
  color: var(--color-text-dark);
  margin: 0;
}

.hh-person-box .hh-person-inform .hh-person-position {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

/* ------------------ */ 
/*        List        */
/* ------------------ */ 
.hh-list {
  width: 100%;
  list-style: none;
}
.hh-list .no-padding-margin {
  padding: 0;
  margin: 0;
}
.hh-list .no-result {
  text-align: center;
}
.hh-list .hh-list-item {
  padding: 1rem 0;
  border-bottom: 0.0625rem solid var(--color-main-color);
}
.hh-list .hh-list-item:hover {
  cursor: pointer;
}
.hh-list .hh-list-item:last-child {
  border: none;
}
.hh-list .hh-list-item .hh-item-category {
  font-size: 1.1rem;
  margin: 0;
}
.hh-list .hh-list-item .hh-item-heading {
  font-size: 1.3rem;
  width: 80%;
  height: 2rem;
  line-height: 2rem;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  margin: 0;
}
@media (max-width: 992px) {
  .hh-list .hh-list-item .hh-item-heading {
    width: 95%;
    white-space: pre-line;
    height: 2rem;
    padding:0;
    line-height: 2rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
}
.hh-list .hh-list-item .hh-item-date {
  font-size: 1.1rem;
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: right;
}
@media (max-width: 992px) {
  .hh-list .hh-list-item .hh-item-date {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .hh-list .hh-list-item .hh-item-date {
    text-align: left;
  }
}

.hh-content .row.hh-section li .list-item {
  font-size: 1.1rem;
}
.hh-content .row.hh-section li .list-item a {
  color: var(--color-text-dark);
}

.hh-content .row.hh-section li .list-item:lang(en) {
  font-family: Din; }

.hh-content .row.hh-section li .list-item:lang(ko) {
  font-family: NanumSquare; }

/* ------------------ */ 
/*      Tab Menu      */
/* ------------------ */ 
.hh-content .tab_menu {
  margin: 0;
  padding: 0 15px;
  list-style-type: none;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  width: 100%;
  justify-content: space-between; }

.hh-content .tab_menu li.on {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light); }

.hh-content .tab_menu li {
  width: calc(100%/2);
  text-align: center;
  border: 1px solid var(--color-border-gray);
  border-right: 0px;
  height: 2.8rem;
  line-height: 2.8rem;
  cursor: pointer;
  color: var(--color-text-dark); }
.hh-content .tab_menu li {
  border: 1px solid var(--color-border-gray); }
.hh-content .tab_menu li:hover {
  background: var(--color-bg-cyan); }
.hh-content .tab_menu li:first-child {
  border-right: none; }
.hh-content .tab-body {
  display: none; }
.hh-content .tab-body.on {
  display: flex;
  width: 100%;  }

/* ------------------ */ 
/*        Icon        */
/* ------------------ */ 
.hh-circular-icon	{
	margin: 0 auto;
	width: 2rem;
	height: 2rem;
  line-height: 2rem;
  vertical-align: middle;
	background: var(--color-bg-gray);
	border-radius: 1rem;
	text-align: center;
	color: var(--color-bg-dark); }
.hh-circular-icon.gray:hover {
	background: var(--color-text-cyan);
	color: var(--color-bg-light); }

/* ------------------ */ 
/*      Tinymice      */
/* ------------------ */ 
.hh-button.is-presentative {
	position: absolute;
	top:1.5rem;
	left: 0.5rem;
	-webkit-user-modify: read-only;
	font-size: 0.9rem;
	padding: 0.3rem; }
.mce-content-body {
	padding: 1rem;
	font-family: 'Din', sans-serif !important; }
.hh-content .hh-paragragh {
  padding-top: 0;
  font-size: 1.1rem; }
  .hh-content .hh-paragragh p, .hh-content .hh-paragragh span {
    margin-bottom: 1rem; }
    .hh-content .hh-paragragh p img, .hh-content .hh-paragragh span img {
      max-width: 100%;
      height: auto; }
    .hh-content .hh-paragragh a {
      text-decoration: underline; }
    .hh-content .hh-paragragh ul, .hh-content .hh-paragragh ol {
      margin-bottom: 1rem;}


