@charset "UTF-8";
/* ==========================================================================
#Variables
========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@200;300;400;500;600;700&display=swap");
:root {
  --mc1: #efd373;
  --mc2: #caaf56;
  --hc: #ddd;
  --bc: #9ba0b8;
  --hff: "Heebo", sans-serif;
  --bff: "Nunito", sans-serif;
}

/* ==========================================================================
   #Breakpoint
   ========================================================================== */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/* HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined for any HTML5 element in IE 8/9.
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox.
* Correct `block` display not defined for `main` in IE 11.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
* 1. Correct `inline-block` display not defined in IE 8/9.
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
*/
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
* Address `[hidden]` styling not present in IE 8/9/10.
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
*/
[hidden],
template {
  display: none;
}

/* Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
  text-decoration: none;
}

/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
========================================================================== */
/**
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
*/
abbr[title] {
  border-bottom: 1px dotted;
}

/**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
*/
b,
strong {
  font-weight: 700;
}

/**
* Address styling not present in Safari and Chrome.
*/
dfn {
  font-style: italic;
}

/**
* Address styling not present in IE 8/9.
*/
mark {
  background: #ffffff;
  color: #000000;
}

/**
* Address inconsistent and variable font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
========================================================================== */
/**
* Correct overflow not hidden in IE 9/10/11.
*/
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
========================================================================== */
/**
* Address margin not present in IE 8/9 and Safari.
*/
figure {
  margin: 1em 40px;
}

/**
* Address differences between Firefox and other browsers.
*/
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
* Contain overflow in all browsers.
*/
pre {
  overflow: auto;
}

/**
* Address odd `em`-unit font size rendering in all browsers.
*/
code,
kbd,
pre,
samp {
  font-family: monospace, 'Arial';
  font-size: 1em;
}

/* Forms
========================================================================== */
/**
* Known limitation: by default, Chrome and Safari on OS X allow very limited
* styling of `select`, unless a `border` property is set.
*/
/**
* 1. Correct color not being inherited.
*    Known issue: affects color of disabled elements.
* 2. Correct font properties not being inherited.
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
*/
button,
input,
optgroup,
select,
textarea {
  /* 2 */
  margin: 0;
  outline: none;
  color: inherit;
  /* 1 */
  font: inherit;
  /* 3 */
}

button:focus, button:visited, button:active,
input:focus,
input:visited,
input:active,
optgroup:focus,
optgroup:visited,
optgroup:active,
select:focus,
select:visited,
select:active,
textarea:focus,
textarea:visited,
textarea:active {
  outline: none;
}

/**
* Address `overflow` set to `hidden` in IE 8/9/10/11.
*/
button {
  overflow: visible;
  outline: none;
}

/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
* Correct `select` style inheritance in Firefox.
*/
button,
select {
  text-transform: none;
}

/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
*    and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
*    `input` and others.
*/
button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
* Remove inner padding and border in Firefox 4+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
input::-moz-focus-inner {
  line-height: normal;
}

/**
* It's recommended that you don't attempt to style these elements.
* Firefox's implementation doesn't respect box-sizing, padding, or width.
*
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/
input[type='checkbox'],
input[type='radio'] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
* `font-size` values of the `input`, it causes the cursor style of the
* decrement button to change from `default` to `text`.
*/
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
*    (include `-moz` to future-proof).
*/
input[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
* Safari (but not Chrome) clips the cancel button when the search input has
* padding (and `textfield` appearance).
*/
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* Define consistent border, margin, and padding.
*/
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

/**
* 1. Correct `color` not being inherited in IE 8/9/10/11.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/
legend {
  /* 1 */
  padding: 0;
  border: 0;
  /* 2 */
}

/**
* Remove default vertical scrollbar in IE 8/9/10/11.
*/
textarea {
  overflow: auto;
}

/**
* Don't inherit the `font-weight` (applied by a rule above).
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
*/
optgroup {
  font-weight: 700;
}

/* Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
   #Page
   ========================================================================== */
html {
  font-size: 1rem;
}

@media (max-width: 1300px) {
  html {
    font-size: 1.23077vw;
    line-height: 1.625;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 4.26667vw;
    line-height: 1.5;
  }
}

body {
  color: #222;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
}

@media (max-width: 600px) {
  body {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
h1 {
  font-size: 2.25rem;
  line-height: 3.125rem;
}

h2 {
  font-size: 1.875rem;
  line-height: 2.5rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 2.125rem;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.625rem;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.625rem;
}

h6 {
  font-size: 0.875rem;
  line-height: 1.625rem;
}

/* ==========================================================================
   #Images
   ========================================================================== */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ==========================================================================
   #Links
   ========================================================================== */
a {
  color: #222;
  text-decoration: none;
}

/* ==========================================================================
   #Animations
   ========================================================================== */
.ani--opa09 {
  -webkit-transition: 0.25s opacity;
  opacity: 1;
  transition: 0.25s opacity;
}

.ani--opa09:hover {
  opacity: 0.9;
}

.ani--opa075 {
  -webkit-transition: 0.25s opacity;
  opacity: 1;
  transition: 0.25s opacity;
}

.ani--opa075:hover {
  opacity: 0.75;
}

.ani--opa05 {
  -webkit-transition: 0.25s opacity;
  opacity: 1;
  transition: 0.25s opacity;
}

.ani--opa05:hover {
  opacity: 0.5;
}

.ani--zoom {
  overflow: hidden;
  background-color: #ffffff;
}

.ani--zoom img {
  -webkit-transition-duration: 0.3s;
  display: block;
  transition-duration: 0.3s;
}

.ani--zoom:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transition-duration: 0.3s;
  transform: scale(1.1);
  opacity: 0.9;
  transition-duration: 0.3s;
}

.ani--scrollOn {
  -webkit-animation: scrollOn 1s ease-in-out forwards;
  animation: scrollOn 1s ease-in-out forwards;
}

.ani--scrollOff {
  -webkit-animation: scrollOff 375ms ease-in-out forwards;
  animation: scrollOff 375ms ease-in-out forwards;
}

.ani--loader {
  position: relative;
}

.ani--loader::after {
  -webkit-animation: loader infinite linear 1s;
  z-index: 100;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid #ffffff;
  border-top: 3px solid transparent;
  border-radius: 100%;
  animation: loader infinite linear 1s;
  content: '';
}

.ani--backdrop::before {
  -webkit-transition: 0.2s ease-in-out;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  content: '';
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.ani--backdrop:hover::before {
  opacity: 0.5;
}

.ani--shine {
  display: block;
  position: relative;
  overflow: hidden;
}

.ani--shine::before {
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  display: block;
  z-index: 2;
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  transform: skewX(-25deg);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: '';
}

.ani--shine:hover::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@-webkit-keyframes scrollOn {
  0% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes scrollOn {
  0% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes scrollOff {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0;
  }
}

@keyframes scrollOff {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg) opacity 0.35;
    transform: rotate(180deg) opacity 0.35;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg) opacity 0.35;
    transform: rotate(180deg) opacity 0.35;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   #Wrapper
   ========================================================================== */
.container {
  width: 100%;
  margin: 0 auto;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

@media (min-width: 601px) {
  .container {
    max-width: 87.5rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.container_content {
  width: 100%;
  margin: 0 auto;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

@media (min-width: 601px) {
  .container_content {
    max-width: 75rem;
  }
}

@media (max-width: 600px) {
  .container_content {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

@media (min-width: 601px) {
  .c-layout--sidebar {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 65rem;
    margin: 0 auto;
  }
}

.u-hidden {
  overflow: hidden;
}

article.post-content {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

article.post-content p {
  margin: 0 0 1.25rem;
  line-height: 1.8;
  text-align: justify;
}

article.post-content h1, article.post-content h2, article.post-content h3, article.post-content h4, article.post-content h5, article.post-content h6 {
  color: #222;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}

article.post-content h1 {
  margin: 2.5rem 0 1.25rem;
  font-size: 2rem;
  line-height: 1.3;
}

@media (max-width: 767px) {
  article.post-content h1 {
    font-size: 1.75rem;
  }
}

article.post-content h2 {
  margin: 1.875rem 0 0.9375rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid #00933b;
  font-size: 1.625rem;
  line-height: 1.35;
}

@media (max-width: 767px) {
  article.post-content h2 {
    font-size: 1.375rem;
  }
}

article.post-content h3 {
  margin: 1.5625rem 0 0.75rem;
  font-size: 1.375rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  article.post-content h3 {
    font-size: 1.125rem;
  }
}

article.post-content h4 {
  margin: 1.25rem 0 0.625rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

article.post-content h5 {
  margin: 1.125rem 0 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

article.post-content h6 {
  margin: 0.9375rem 0 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

article.post-content strong, article.post-content b {
  color: #222;
  font-weight: 700;
}

article.post-content em, article.post-content i, article.post-content cite, article.post-content dfn {
  font-style: italic;
}

article.post-content mark {
  padding: 0.125rem 0.375rem;
  border-radius: 0.1875rem;
  background: #fff3cd;
  color: #333;
}

article.post-content small {
  font-size: 85%;
}

article.post-content del {
  color: #999;
  text-decoration: line-through;
}

article.post-content ins {
  padding: 0.125rem 0.25rem;
  background: #d4edda;
  color: #155724;
  text-decoration: none;
}

article.post-content sub, article.post-content sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

article.post-content sup {
  top: -0.5em;
}

article.post-content sub {
  bottom: -0.25em;
}

article.post-content abbr[title] {
  border-bottom: 1px dotted #999;
  cursor: help;
}

article.post-content address {
  margin: 0 0 1.5rem;
  font-style: italic;
}

article.post-content a {
  -webkit-transition: color 0.3s ease;
  color: #00933b;
  text-decoration: underline;
  transition: color 0.3s ease;
}

article.post-content a:hover {
  color: #006027;
}

article.post-content a:visited {
  color: #00471c;
}

article.post-content a:focus {
  outline: 2px solid #00933b;
  outline-offset: 2px;
}

article.post-content ul, article.post-content ol {
  margin: 1.25rem 0;
  padding-left: 1.875rem;
}

article.post-content ul li, article.post-content ol li {
  margin-bottom: 0.625rem;
  line-height: 1.7;
}

article.post-content ul ul, article.post-content ul ol, article.post-content ol ul, article.post-content ol ol {
  margin: 0.625rem 0;
}

article.post-content ul {
  list-style: none;
}

article.post-content ul li {
  position: relative;
  padding-left: 1.25rem;
}

article.post-content ul li::before {
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00933b;
  content: '';
}

article.post-content ul.wp-block-gallery, article.post-content ul.blocks-gallery-grid {
  list-style: none;
}

article.post-content ul.wp-block-gallery li::before, article.post-content ul.blocks-gallery-grid li::before {
  display: none;
}

article.post-content ol {
  list-style: decimal;
}

article.post-content ol li {
  padding-left: 0.625rem;
}

article.post-content dl {
  margin: 1.25rem 0;
}

article.post-content dl dt {
  margin-bottom: 0.3125rem;
  font-weight: 700;
}

article.post-content dl dd {
  margin: 0 0 0.9375rem 1.25rem;
}

article.post-content blockquote {
  margin: 1.875rem 0;
  padding: 1.25rem 1.5625rem;
  border-left: 4px solid #00933b;
  background: #f8f9fa;
  color: #555;
  font-size: 1rem;
  font-style: italic;
}

article.post-content blockquote p {
  margin: 0;
}

article.post-content blockquote p:last-child {
  margin-bottom: 0;
}

article.post-content blockquote cite, article.post-content blockquote small {
  display: block;
  margin-top: 0.625rem;
  color: #777;
  font-size: 0.875rem;
  font-style: normal;
}

article.post-content blockquote cite::before, article.post-content blockquote small::before {
  content: '— ';
}

article.post-content blockquote blockquote {
  margin: 0.9375rem 0;
}

article.post-content q {
  quotes: '"' '"' "" " " "";
}

article.post-content q::before {
  content: open-quote;
}

article.post-content q::after {
  content: close-quote;
}

article.post-content code, article.post-content kbd, article.post-content pre, article.post-content samp {
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.875rem;
}

article.post-content code {
  padding: 0.1875rem 0.375rem;
  border-radius: 0.1875rem;
  background: #f4f4f4;
  color: #d63384;
}

article.post-content kbd {
  padding: 0.1875rem 0.375rem;
  border-radius: 0.1875rem;
  background: #333;
  color: #fff;
  font-size: 0.8125rem;
}

article.post-content pre {
  word-wrap: break-word;
  margin: 1.5625rem 0;
  padding: 1.25rem;
  overflow-x: auto;
  border: 1px solid #e0e0e0;
  border-radius: 0.3125rem;
  background: #f5f5f5;
  color: #333;
  white-space: pre-wrap;
}

article.post-content pre code {
  padding: 0;
  border-radius: 0;
  background: none;
  color: inherit;
}

article.post-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5625rem 0;
  border-radius: 0.5rem;
  vertical-align: middle;
}

article.post-content .alignleft {
  margin: 0.625rem 1.5625rem 0.625rem 0;
  float: left;
}

@media (max-width: 767px) {
  article.post-content .alignleft {
    margin: 0.625rem 0;
    float: none;
  }
}

article.post-content .alignright {
  margin: 0.625rem 0 0.625rem 1.5625rem;
  float: right;
}

@media (max-width: 767px) {
  article.post-content .alignright {
    margin: 0.625rem 0;
    float: none;
  }
}

article.post-content .aligncenter {
  display: block;
  margin: 1.5625rem auto;
  text-align: center;
}

article.post-content .alignnone {
  display: block;
  margin: 1.5625rem 0;
}

article.post-content .wp-caption {
  max-width: 100%;
  margin: 1.5625rem 0;
  padding: 0;
  background: transparent;
}

article.post-content .wp-caption img {
  margin: 0;
}

article.post-content .wp-caption.alignleft {
  margin-right: 1.5625rem;
}

article.post-content .wp-caption.alignright {
  margin-left: 1.5625rem;
}

article.post-content .wp-caption.aligncenter {
  margin-right: auto;
  margin-left: auto;
}

article.post-content .wp-caption-text,
article.post-content .wp-caption-dd,
article.post-content figcaption {
  margin: 0.625rem 0 0;
  padding: 0.5rem 0;
  color: #777;
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

article.post-content .wp-block-image {
  margin: 1.5625rem auto;
  text-align: center;
}

@media (max-width: 767px) {
  article.post-content .wp-block-image.alignleft, article.post-content .wp-block-image.alignright {
    margin: 1.5625rem 0;
    float: none;
  }
}

article.post-content .wp-block-image figcaption {
  margin-top: 0.625rem;
}

article.post-content table {
  width: 100%;
  margin: 1.5625rem 0;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

article.post-content table caption {
  margin: 0.625rem 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

article.post-content table thead {
  background: #f8f9fa;
}

article.post-content table th, article.post-content table td {
  padding: 0.75rem 0.9375rem;
  border: 1px solid #dee2e6;
  text-align: left;
}

article.post-content table th {
  color: #333;
  font-weight: 600;
}

article.post-content table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

article.post-content table tbody tr:hover {
  background: #e9ecef;
}

@media (max-width: 767px) {
  article.post-content table {
    font-size: 0.8125rem;
  }
  article.post-content table th, article.post-content table td {
    padding: 0.5rem 0.625rem;
  }
}

article.post-content hr {
  margin: 1.875rem 0;
  border: 0;
  border-top: 1px solid #dee2e6;
}

article.post-content hr.wp-block-separator {
  border-top-width: 2px;
}

article.post-content hr.wp-block-separator.is-style-wide {
  border-top-width: 3px;
}

article.post-content hr.wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
}

article.post-content hr.wp-block-separator.is-style-dots::before {
  color: #999;
  font-size: 1.5rem;
  letter-spacing: 0.625rem;
  content: '···';
}

article.post-content fieldset {
  margin: 1.25rem 0;
  padding: 1.25rem;
  border: 1px solid #dee2e6;
  border-radius: 0.3125rem;
}

article.post-content fieldset legend {
  padding: 0 0.625rem;
  font-weight: 600;
}

article.post-content input,
article.post-content textarea,
article.post-content select {
  max-width: 100%;
}

article.post-content textarea {
  resize: vertical;
}

article.post-content .mceTemp + ul,
article.post-content .mceTemp + ol {
  list-style-position: inside;
}

article.post-content audio, article.post-content canvas, article.post-content video {
  max-width: 100%;
  vertical-align: middle;
}

article.post-content iframe {
  max-width: 100%;
  margin: 1.5625rem 0;
  border-radius: 0.5rem;
}

article.post-content .gallery {
  gap: 0.9375rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  margin: 1.5625rem 0;
}

article.post-content .gallery .gallery-item img {
  margin: 0;
}

article.post-content .gallery .gallery-caption {
  margin-top: 0.5rem;
  color: #777;
  font-size: 0.75rem;
}

article.post-content .wp-block-pullquote blockquote {
  padding: 1.875rem;
  border: none;
  font-size: 1.25rem;
  text-align: center;
}

article.post-content .wp-block-button {
  margin: 1.25rem 0;
}

article.post-content .wp-block-button .wp-block-button__link {
  -webkit-transition: all 0.3s ease;
  display: inline-block;
  padding: 0.75rem 1.875rem;
  border-radius: 0.3125rem;
  background: #00933b;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

article.post-content .wp-block-button .wp-block-button__link:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  background: #006027;
}

@media (max-width: 767px) {
  article.post-content {
    font-size: 0.9375rem;
  }
  article.post-content blockquote {
    margin: 1.25rem 0;
    padding: 0.9375rem 1.25rem;
    font-size: 1rem;
  }
  article.post-content pre {
    padding: 0.9375rem;
    font-size: 0.8125rem;
  }
}

.entry-header {
  margin-bottom: 1.875rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #e0e0e0;
}

.entry-header h1 {
  margin-bottom: 0.9375rem;
  color: #222;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .entry-header h1 {
    font-size: 1.75rem;
  }
}

.entry-header .entry-meta {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  color: #777;
  font-size: 0.875rem;
}

.entry-header .entry-meta .meta-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.entry-header .entry-meta .meta-item i {
  color: #00933b;
}

/* ==========================================================================
   #Box
   ========================================================================== */
/* ==========================================================================
   #Breadcrumb
   ========================================================================== */
.c-breadcrumbs {
  position: relative;
  padding: 6.25rem 0 7.5rem;
  background: url("../../assets/images/bg_about.jpg") no-repeat center 85%;
  background-size: cover;
  text-align: center;
}

@media (max-width: 600px) {
  .c-breadcrumbs {
    padding: 2.5rem 0 3.125rem;
  }
}

.c-breadcrumbs::after {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #244f0ba7;
  content: '';
}

.c-breadcrumbs .c-breadcrumbs_title {
  z-index: 2;
  position: relative;
}

.c-breadcrumbs .c-breadcrumbs_title h2 {
  color: #fff;
  font-size: 2.1875rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .c-breadcrumbs .c-breadcrumbs_title h2 {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   #Button
   ========================================================================== */
.c-button a {
  -webkit-transition: all 0.3s ease-in-out;
  display: inline-block;
  min-width: 13.75rem;
  padding: 0.9375rem;
  background: black;
  color: #222;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.c-button a:hover {
  background: #222;
  color: #000;
}

.c-button_01 a {
  display: inline-block;
  position: relative;
  min-width: 10rem;
  height: 2.8125rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
}

.c-button_01 a span {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

.c-button_01 a svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
}

.c-button_01 a rect {
  fill: none;
  stroke: #222;
  stroke-width: 2;
  stroke-dasharray: 422, 0;
  -webkit-transition: all 0.35s linear;
  transition: all 0.35s linear;
}

.c-button_01 a:hover rect {
  stroke-width: 5;
  stroke-dasharray: 15, 310;
  stroke-dashoffset: 48;
  -webkit-transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-button_01 a:hover span {
  color: #222;
}

/* ==========================================================================
   #Footer
   ========================================================================== */
/* ==========================================================================
   #Footer
   ========================================================================== */
.c-footer {
  position: relative;
  padding: 6.25rem 0 0;
  border-top: 1px solid #1a1a1a;
  background: #000;
  background: url("../images/bg_footer.webp") no-repeat center;
  background-size: cover;
}

.c-footer::after {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 40, 3, 0.9);
  content: "";
}

.c-footer .wrap_bg {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  z-index: 3;
  position: absolute;
  top: -0.125rem;
  left: 0;
  height: 1.875rem;
  transform: scaleY(-1);
}

@media (max-width: 600px) {
  .c-footer .wrap_bg {
    height: 0.75rem;
  }
}

@media (max-width: 600px) {
  .c-footer {
    padding: 2.5rem 0 0;
  }
}

.c-footer_top {
  z-index: 2;
  position: relative;
  padding-bottom: 1.875rem;
}

@media (max-width: 600px) {
  .c-footer_top {
    padding-bottom: 0.9375rem;
  }
}

.c-footer_top .p-fBlock {
  gap: 1.25rem;
  display: grid;
  grid-template-columns: 28.125rem 13.75rem 20rem 1fr;
}

@media (max-width: 600px) {
  .c-footer_top .p-fBlock {
    grid-template-columns: 1fr;
  }
}

.c-footer_top .p-fBlock_text {
  color: #fff;
  font-weight: 300;
}

.c-footer_top .p-fBlock_title {
  margin-bottom: 1.25rem;
  color: #00AD46;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
}

.c-footer_top .p-fBlock_about-contact {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  gap: 0.9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  margin-bottom: 0.625rem;
  color: #fff;
}

.c-footer_top .p-fBlock_about-contact i {
  min-width: 1.5625rem;
}

.c-footer_top .p-fBlock_about-contact img {
  max-width: 1.5625rem;
}

@media (min-width: 601px) {
  .c-footer_top .p-fBlock_about {
    padding-right: 1.875rem;
  }
}

@media (max-width: 600px) {
  .c-footer_top .p-fBlock_about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
}

.c-footer_top .p-fBlock_about .p-image_qrcode {
  max-width: 13.75rem;
}

.c-footer_top .p-fBlock_logo {
  z-index: 2;
  position: relative;
  margin-bottom: 1.5625rem;
}

.c-footer_top .p-fBlock_logo img {
  max-width: 10.625rem;
}

@media (max-width: 600px) {
  .c-footer_top .p-fBlock_logo img {
    max-width: 8.75rem;
  }
}

.c-footer_top .p-fBlock_logo h2 {
  margin-bottom: 0.3125rem;
  color: #00AD46;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .c-footer_top .p-fBlock_logo h2 {
    font-size: 1.125rem;
  }
}

.c-footer_top .p-fBlock_logo h3 {
  color: #00AD46;
  font-size: 0.6875rem;
  font-weight: bold;
  line-height: 1.2;
}

.c-footer_top .p-fBlock .p-listLink li:not(:last-child) {
  margin-bottom: 0.625rem;
}

.c-footer_top .p-fBlock .p-listLink li a {
  color: #fff;
  font-weight: 300;
}

.c-footer_top .p-fBlock .p-listLink li a:hover {
  color: #00AD46;
  text-decoration: underline;
}

.c-footer_top .p-fBlock .p-listLink li .sub-menu {
  display: none !important;
}

.c-footer_bottom {
  z-index: 2;
  position: relative;
  padding: 1.875rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
  .c-footer_bottom {
    padding: 0.9375rem 0;
  }
}

.c-footer_bottom .wrap_inner {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .c-footer_bottom .wrap_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    gap: 0.3125rem;
    flex-flow: column;
  }
}

.c-footer_bottom .p-textCpr {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #fff;
  font-weight: 300;
}

.c-footer_bottom ul {
  gap: 0.9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-footer_bottom ul li {
  position: relative;
}

.c-footer_bottom ul li:not(:last-child) {
  padding-right: 0.9375rem;
}

.c-footer_bottom ul li:not(:last-child)::after {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1.25rem;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.c-footer_bottom ul li a {
  color: #fff;
}

.c-ftListSocial {
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.25rem;
}

@media (max-width: 600px) {
  .c-ftListSocial {
    gap: 0.625rem;
  }
}

.c-ftListSocial li a {
  color: #00AD46;
}

.c-ftListSocial li a i {
  font-size: 1.875rem;
}

@media (max-width: 600px) {
  .c-ftListSocial li a i {
    font-size: 1.375rem;
  }
}

.c-ftListSocial li a:hover {
  color: #fff;
}

.c-footer_typetwo {
  padding: 1.875rem 0;
  border-top: 1px solid #1a1a1a;
  background: #000;
}

.c-footer_typetwo .wrap-inner {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .c-footer_typetwo .wrap-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    row-gap: 1.25rem;
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
}

.c-footer_typetwo .wrap-inner .l-left .text-copyr {
  color: #fff;
  font-size: 0.875rem;
}

@media (max-width: 600px) {
  .c-footer_typetwo .wrap-inner .l-left .text-copyr {
    margin-bottom: 0.625rem;
    text-align: center;
  }
}

.c-footer_typetwo .wrap-inner .l-left .menu-link ul {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  gap: 0.3125rem 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: wrap;
  align-items: center;
}

@media (max-width: 600px) {
  .c-footer_typetwo .wrap-inner .l-left .menu-link ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    gap: 0 0.625rem;
    justify-content: center;
  }
}

.c-footer_typetwo .wrap-inner .l-left .menu-link ul li {
  position: relative;
}

.c-footer_typetwo .wrap-inner .l-left .menu-link ul li:not(:last-child)::after {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: -0.375rem;
  width: 0.0625rem;
  height: 0.75rem;
  transform: translateY(-50%);
  background: #fff;
  content: "";
}

.c-footer_typetwo .wrap-inner .l-left .menu-link ul li a {
  color: #b9b9b9;
  font-size: 0.8125rem;
}

.c-footer_typetwo .wrap-inner .l-left .menu-link ul li a:hover {
  color: #222;
}

.c-footer_typetwo .wrap-inner .l-mid .menu-ft ul {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 1rem;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}

.c-footer_typetwo .wrap-inner .l-mid .menu-ft ul li a {
  font-size: 0.875rem;
}

.c-footer_typetwo .wrap-inner .l-mid .menu-ft ul li a:hover {
  color: #fff;
}

.scrolltop {
  -webkit-box-shadow: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  z-index: 3;
  position: fixed;
  right: 1.25rem;
  bottom: 0;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border: 0;
  border-radius: 50%;
  background: #00AD46;
  box-shadow: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.scrolltop svg {
  width: 1.375rem;
  height: 1.375rem;
  color: #fff;
}

.scrolltop.show {
  visibility: visible;
  bottom: 1.25rem;
  opacity: 1;
}

@media (max-width: 600px) {
  .scrolltop.show {
    bottom: 1.6875rem;
  }
}

/* ==========================================================================
   #Form
   ========================================================================== */
/* ==========================================================================
   #Gallery
   ========================================================================== */
/* ==========================================================================
   #Header
   ========================================================================== */
.c-header {
  -webkit-box-shadow: rgba(2, 29, 53, 0.2) 0px 4px 10px;
  box-shadow: rgba(2, 29, 53, 0.2) 0px 4px 10px;
}

.c-header_main {
  padding: 0.9375rem 0;
  background: url("../images/bg_header.png") no-repeat center;
  background-size: cover;
}

@media (max-width: 600px) {
  .c-header_main {
    padding: 0.625rem 0;
  }
}

.c-header_main .wrap_inner {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .c-header_main .wrap_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.c-header_main .box_left {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .c-header_main .box_left {
    gap: 0.625rem;
  }
}

.c-header_main .box_right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  gap: 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}

@media (max-width: 600px) {
  .c-header_main .box_right {
    display: none;
  }
}

.c-header_main .box_right .p-text {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.c-header_main .box_right .p-text i {
  color: #00933b;
  font-size: 1.125rem;
}

.c-header_main .box_right .p-text .label {
  font-size: 0.9375rem;
  font-weight: 400;
}

.c-header_main .p-logo {
  max-width: 6.875rem;
}

@media (max-width: 600px) {
  .c-header_main .p-logo {
    max-width: 5rem;
  }
}

.c-header_main .p-logo .c-logo {
  display: block;
}

.c-header_main .p-logo_text .text_top {
  font-size: 0.9375rem;
  font-weight: bold;
  text-transform: uppercase;
}

.c-header_main .p-logo_text .text_main_vi {
  margin-bottom: 0.3125rem;
  color: #00933b;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .c-header_main .p-logo_text .text_main_vi {
    font-size: 1rem;
  }
}

.c-header_main .p-logo_text .text_main_en {
  color: #00933b;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .c-header_main .p-logo_text .text_main_en {
    font-size: 0.6875rem;
  }
}

.c-header_main .p-hotline {
  padding: 0.625rem 1.25rem;
  border-radius: 3.125rem;
  background: #00AD46;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
}

.c-header_main .p-hotline i {
  color: #fff !important;
}

.c-header_main .p-address {
  font-weight: 500;
}

.c-header_nav {
  height: 3.125rem;
  background: #00AD46;
}

@media (max-width: 600px) {
  .c-header_nav {
    position: relative;
  }
}

@media (max-width: 600px) {
  .c-header_nav .c-nav_sp {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    gap: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    height: 100%;
  }
  .c-header_nav .c-nav_sp .p-hotline {
    position: relative;
    color: #fff;
    text-align: center;
  }
  .c-header_nav .c-nav_sp .p-hotline::before {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: -0.625rem;
    width: 1px;
    height: 1.25rem;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    content: '';
  }
}

.c-header_nav .hamburger {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.c-header_nav .menu-list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 600px) {
  .c-header_nav .menu-list {
    display: none;
  }
}

.c-header_nav .menu-item {
  position: relative;
}

.c-header_nav .menu-item.menu-item-has-children > a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.c-header_nav .menu-item.menu-item-has-children > a::before {
  -webkit-transition: -webkit-transform 0.3s ease;
  margin-left: 0.375rem;
  font-family: 'Font Awesome 6 Pro';
  font-size: 0.75rem;
  font-weight: 300;
  content: '\f078';
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-header_nav .menu-item.menu-item-has-children:hover .sub-menu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.c-header_nav .menu-item.menu-item-has-children:hover > a::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-header_nav .menu-item > a {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
  padding: 0.75rem 0.9375rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.c-header_nav .menu-item > a::after {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transition: all 0.3s ease;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  background: #00933b;
  content: '';
  transition: all 0.3s ease;
}

.c-header_nav .menu-item > a:hover::after, .c-header_nav .menu-item > a:active::after {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

.c-header_nav .menu-item.active > a::after,
.c-header_nav .menu-item.current-menu-item > a::after {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

.c-header_nav .sub-menu {
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  visibility: hidden;
  z-index: 100;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 15.625rem;
  margin: 0;
  padding: 0.625rem 0;
  transform: translateY(-10px);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  list-style: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.c-header_nav .sub-menu::before {
  position: absolute;
  top: -0.5rem;
  left: 1.875rem;
  width: 0;
  height: 0;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #fff;
  border-left: 0.5rem solid transparent;
  content: '';
}

.c-header_nav .sub-menu .menu-item a {
  -webkit-transition: all 0.3s ease;
  display: block;
  position: relative;
  padding: 0.625rem 1.25rem;
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease;
}

.c-header_nav .sub-menu .menu-item a::after {
  display: none;
}

.c-header_nav .sub-menu .menu-item a::before {
  -webkit-transition: width 0.3s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: #00933b;
  content: '';
  transition: width 0.3s ease;
}

.c-header_nav .sub-menu .menu-item a:hover {
  padding-left: 1.5625rem;
  background: rgba(0, 147, 59, 0.05);
  color: #00933b;
}

.c-header_nav .sub-menu .menu-item a:hover::before {
  width: 0.25rem;
}

.c-header_sp {
  -webkit-transition: all 0.3s ease;
  visibility: hidden;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}

.c-header_sp.open {
  visibility: visible;
  opacity: 1;
}

.c-header_sp.open .c-header_sp_content {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.c-header_sp.open .c-header_sp_overlay {
  opacity: 1;
}

.c-header_sp_overlay {
  -webkit-transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.c-header_sp_content {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  -webkit-box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 25rem;
  height: 100%;
  padding: 5rem 1.25rem 1.875rem;
  overflow-y: auto;
  transform: translateX(-100%);
  background: #fff;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-header_sp_close {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #00933b;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-header_sp_close i {
  font-size: 1.25rem;
}

.c-header_sp_close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background: #006027;
}

.c-header_sp .menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-header_sp .menu-list .menu-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.c-header_sp .menu-list .menu-item:last-child {
  border-bottom: none;
}

.c-header_sp .menu-list .menu-item > a {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9375rem 0.625rem;
  color: #333;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.c-header_sp .menu-list .menu-item > a::after {
  display: none;
}

.c-header_sp .menu-list .menu-item > a::before {
  display: none;
}

.c-header_sp .menu-list .menu-item > a:hover {
  padding-left: 0.9375rem;
  background: rgba(0, 147, 59, 0.05);
  color: #00933b;
}

.c-header_sp .menu-list .menu-item.menu-item-has-children > a {
  position: relative;
  padding-right: 2.5rem;
}

.c-header_sp .menu-list .menu-item.menu-item-has-children > a::after {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  display: block;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: translateY(-50%);
  color: #00933b;
  font-family: 'Font Awesome 6 Pro';
  font-size: 0.75rem;
  font-weight: 300;
  content: '\f078';
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-header_sp .menu-list .menu-item.menu-item-has-children.active > a {
  background: rgba(0, 147, 59, 0.05);
  color: #00933b;
}

.c-header_sp .menu-list .menu-item.menu-item-has-children.active > a::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.c-header_sp .menu-list .menu-item.menu-item-has-children .sub-menu {
  display: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 147, 59, 0.02);
  list-style: none;
}

.c-header_sp .menu-list .menu-item.menu-item-has-children .sub-menu .menu-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.c-header_sp .menu-list .menu-item.menu-item-has-children .sub-menu .menu-item > a {
  padding-left: 1.875rem;
  font-size: 0.875rem;
  text-transform: none;
}

.c-header_sp .menu-list .menu-item.menu-item-has-children .sub-menu .menu-item > a:hover {
  padding-left: 2.1875rem;
}

.c-header_sp .menu-list .menu-item.menu-item-has-children .sub-menu .menu-item.menu-item-has-children > a {
  padding-right: 2.5rem;
}

.c-header_sp .menu-list .menu-item.menu-item-has-children .sub-menu .menu-item.menu-item-has-children > a::after {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  display: block;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: translateY(-50%);
  color: #00933b;
  font-family: 'Font Awesome 6 Pro';
  font-size: 0.75rem;
  font-weight: 300;
  content: '\f078';
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-header_sp .menu-list .menu-item.menu-item-has-children .sub-menu .menu-item.menu-item-has-children.active > a::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.c-header_sp .menu-list .menu-item.menu-item-has-children .sub-menu .menu-item.menu-item-has-children .sub-menu .menu-item > a {
  padding-left: 3.125rem;
  font-size: 0.8125rem;
}

.c-header_sp .menu-list .menu-item.menu-item-has-children .sub-menu .menu-item.menu-item-has-children .sub-menu .menu-item > a:hover {
  padding-left: 3.4375rem;
}

.c-header_sp .menu-list .menu-item.active > a, .c-header_sp .menu-list .menu-item.current-menu-item > a {
  color: #00933b;
  font-weight: 600;
}

/* ==========================================================================
   #Heading
   ========================================================================== */
/* ==========================================================================
   #Link
   ========================================================================== */
/* ==========================================================================
   #List
   ========================================================================== */
/* ==========================================================================
   #Navbar
   ========================================================================== */
/* ==========================================================================
   #Navigation
   ========================================================================== */
/* ==========================================================================
   #Pagination
   ========================================================================== */
.c-pagination {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3.125rem 0 1.25rem;
  column-gap: 0.625rem;
}

.c-pagination a, .c-pagination span {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 0.25rem;
  background: #2e2e2e;
  color: #fff;
  font-size: 0.9375rem;
}

.c-pagination a.current, .c-pagination span.current {
  background: #00933b;
  color: #fff;
  font-weight: 500;
}

.c-pagination svg {
  width: 1.25rem;
}

/* ==========================================================================
   #Post
   ========================================================================== */
/* ==========================================================================
   #Section
   ========================================================================== */
/* ==========================================================================
   #Table
   ========================================================================== */
.c-table {
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0.625rem;
}

.c-table tbody, .c-table thead {
  display: block;
  width: 100%;
}

.c-table tbody tr {
  width: 100%;
  vertical-align: middle;
}

@media (min-width: 601px) {
  .c-table tbody tr {
    display: table;
  }
}

@media (max-width: 600px) {
  .c-table tbody tr {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.c-table__list tr:not(:last-child) {
  border-bottom: 1px solid #d2d2d2;
}

.c-table__list th, .c-table__list td {
  color: #444444;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .c-table__list th, .c-table__list td {
    padding: 0.4375rem 1rem;
  }
}

@media (min-width: 601px) {
  .c-table__list th {
    width: 12.5rem;
  }
}

@media (max-width: 600px) {
  .c-table__list th {
    width: 100%;
    text-align: left;
  }
}

.c-table__list td {
  padding: 0.625rem 1.25rem;
  background: #ffffff;
}

.c-table__list tr:first-child th {
  border-top-left-radius: 0.625rem;
}

.c-table__list tr:first-child td {
  border-top-right-radius: 0.625rem;
}

.c-table__list tr:last-child th {
  border-bottom-left-radius: 0.625rem;
}

@media (max-width: 600px) {
  .c-table__list tr:last-child th {
    border-bottom-left-radius: 0rem;
  }
}

.c-table__list tr:last-child td {
  border-bottom-right-radius: 0.625rem;
}

/* ==========================================================================
   #Thumbnail
   ========================================================================== */
.c-thumb {
  position: relative;
  height: 0;
  overflow: hidden;
  border-radius: 0.625rem;
}

.c-thumb img {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.c-thumb--4x3 {
  padding-bottom: 75%;
}

.c-thumb--1x1 {
  padding-bottom: 100%;
}

.c-thumbnail {
  position: relative;
  height: 0;
  overflow: hidden;
  border-radius: 0.625rem;
}

.c-thumbnail img {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

.c-thumbnail--4x3 {
  padding-bottom: 75%;
}

.c-thumbnail--1x1 {
  padding-bottom: 100%;
}

/* ==========================================================================
   #Widget
   ========================================================================== */
.c-page_home .c-section_sliderTop {
  position: relative;
  height: 65vh;
  min-height: 34.375rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_sliderTop {
    height: 13.75rem;
    min-height: inherit;
  }
}

.c-page_home .c-section_sliderTop .item_text {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-page_home .c-section_sliderTop .item_text_inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.c-page_home .c-section_sliderTop .item_text .box_text {
  color: #fff;
  text-align: center;
}

.c-page_home .c-section_sliderTop .item_text .box_text h4 {
  margin-bottom: 1.875rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.375rem;
  text-transform: uppercase;
  opacity: 0;
}

@media (max-width: 600px) {
  .c-page_home .c-section_sliderTop .item_text .box_text h4 {
    margin-bottom: 0.9375rem;
    font-size: 0.875rem;
  }
}

.c-page_home .c-section_sliderTop .item_text .box_text h3 {
  font-family: "Oswald", sans-serif;
  font-size: 3.25rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 1;
}

@media (max-width: 600px) {
  .c-page_home .c-section_sliderTop .item_text .box_text h3 {
    font-size: 1.25rem;
  }
}

.c-page_home .c-section_sliderTop .item_text .box_text h3 .char {
  display: inline-block;
  opacity: 0;
}

.c-page_home .c-section_sliderTop .item_text .box_btn {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3.125rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_sliderTop .item_text .box_btn {
    gap: 0.625rem;
    display: none;
    padding-top: 1.875rem;
  }
}

@-webkit-keyframes scaleIn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes scaleIn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleUp {
  0% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.c-page_home .c-section_sliderTop .swiper-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.c-page_home .c-section_sliderTop .swiper-slide::after {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #244F0B7D;
  content: '';
}

.c-page_home .c-section_sliderTop .swiper-slide img {
  -o-object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.c-page_home .c-section_sliderTop .swiper-slide.swiper-slide-active img {
  -webkit-animation: scaleIn 5s ease-in-out forwards;
  animation: scaleIn 5s ease-in-out forwards;
}

.c-page_home .c-section_sliderTop .swiper-slide.swiper-slide-active .box_btn {
  -webkit-animation: scaleUp 2s ease-in;
  animation: scaleUp 2s ease-in;
}

.c-page_home .c-section_sliderTop .swiper-pagination-bullet {
  width: 0.875rem;
  height: 0.875rem;
}

.c-page_home .c-section_sliderTop .swiper-pagination-bullet-active {
  background: #00933b !important;
}

.c-page_home .c-section_sliderTop .swiper-nav {
  -webkit-transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.c-page_home .c-section_sliderTop .swiper-nav.swiper-button-next, .c-page_home .c-section_sliderTop .swiper-nav.swiper-button-prev {
  -webkit-transition: all 0.3s ease;
  visibility: hidden;
  color: #fff;
  font-size: 3.125rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.c-page_home .c-section_sliderTop .swiper-nav.swiper-button-next:hover, .c-page_home .c-section_sliderTop .swiper-nav.swiper-button-prev:hover {
  color: #00AD46;
}

.c-page_home .c-section_sliderTop .swiper-nav.swiper-button-next::after, .c-page_home .c-section_sliderTop .swiper-nav.swiper-button-prev::after {
  display: none !important;
}

.c-page_home .c-section_sliderTop:hover .swiper-nav {
  visibility: visible;
  opacity: 1;
}

.c-page_home .c-section_sliderTop:hover .swiper-nav.swiper-button-next, .c-page_home .c-section_sliderTop:hover .swiper-nav.swiper-button-prev {
  visibility: visible;
  opacity: 1;
}

.c-page_home .c-section_sliderTop:hover .swiper-nav.swiper-button-next {
  right: 30px;
}

.c-page_home .c-section_sliderTop:hover .swiper-nav.swiper-button-prev {
  left: 30px;
}

.c-page_home .c-section_aboutus {
  position: relative;
  margin-bottom: 2.5rem;
  padding: 5rem 0;
}

@media (max-width: 600px) {
  .c-page_home .c-section_aboutus {
    margin-bottom: 1.25rem;
    padding: 2.5rem 0;
  }
}

.c-page_home .c-section_aboutus .wrap_bg {
  z-index: 2;
  position: absolute;
  top: -1.875rem;
  left: 0;
  width: 100%;
  height: 1.875rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_aboutus .wrap_bg {
    top: -0.75rem;
    height: 0.75rem;
  }
}

.c-page_home .c-section_aboutus .p-about .wrap_inner {
  gap: 2.5rem;
  display: grid;
  grid-template-columns: 37.5rem 1fr;
}

@media (max-width: 600px) {
  .c-page_home .c-section_aboutus .p-about .wrap_inner {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }
}

.c-page_home .c-section_aboutus .p-about_right .box_feature_text {
  z-index: 2;
  position: relative;
  margin-left: 3.75rem;
  padding: 1.875rem;
  border-radius: 0.625rem;
  background: #EDDD5E;
}

@media (max-width: 600px) {
  .c-page_home .c-section_aboutus .p-about_right .box_feature_text {
    margin-left: 0;
    padding: 1.25rem;
  }
}

.c-page_home .c-section_aboutus .p-about_right .box_feature_text .p-head {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  gap: 0.9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  margin-bottom: 0.625rem;
  margin-bottom: 1.25rem;
}

.c-page_home .c-section_aboutus .p-about_right .box_feature_text .p-head_num {
  font-size: 2.5rem;
  font-weight: bold;
}

.c-page_home .c-section_aboutus .p-about_right .box_feature_text .p-divide {
  margin-bottom: 0.9375rem;
}

.c-page_home .c-section_aboutus .p-about_right .box_feature_text .p-text {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  color: #5f5f5f;
}

.c-page_home .c-section_aboutus .p-about_right .p-image {
  height: 16.875rem;
  margin-top: -1.5625rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_aboutus .p-about_right .p-image {
    height: 12.5rem;
    margin-top: 1.25rem;
  }
}

.c-page_home .c-section_aboutus .p-about_right .p-image img {
  -o-object-fit: cover;
  -o-object-position: center center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0.625rem;
}

.c-page_home .c-section_aboutus .p-about_list {
  gap: 0.9375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 31.25rem;
  margin-bottom: 2.5rem;
  padding-top: 1.25rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_aboutus .p-about_list {
    max-width: 100%;
    margin-bottom: 1.25rem;
    padding-top: 0;
  }
}

.c-page_home .c-section_aboutus .p-about_item {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .c-page_home .c-section_aboutus .p-about_item .text {
    font-size: 0.8125rem;
  }
}

.c-page_home .c-section_aboutus .p-about_item .icon img {
  width: 1.1875rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_aboutus .p-about_item .icon img {
    width: 0.875rem;
  }
}

.c-page_home .c-section_aboutus .p-about_contact {
  gap: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 37.5rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_aboutus .p-about_contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    gap: 1.25rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
}

.c-page_home .c-section_aboutus .p-about_contact .box_phone {
  gap: 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-page_home .c-section_aboutus .p-about_contact .box_phone_icon {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5625rem;
  height: 3.5625rem;
  border-radius: 50%;
  background: #EDDD5E;
  color: #00933b;
}

.c-page_home .c-section_aboutus .p-about_contact .box_phone_text span {
  color: #555;
}

.c-page_home .c-section_aboutus .p-about_contact .box_phone_text span a {
  color: #00933b;
  font-size: 1.25rem;
  font-weight: bold;
}

.c-page_home .c-section_service {
  position: relative;
  padding: 5rem 0;
  background: #EDF2EC;
}

@media (max-width: 600px) {
  .c-page_home .c-section_service {
    padding: 2.5rem 0;
  }
}

.c-page_home .c-section_service .p-service_list {
  gap: 1.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 1.25rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_service .p-service_list {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }
}

.c-page_home .c-section_service .p-service_item {
  -webkit-transition: all 1s ease;
  -webkit-filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.2));
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.2));
  transition: all 1s ease;
}

.c-page_home .c-section_service .p-service_item::before {
  inset: 0;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) padding-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(0.98);
  -webkit-transition: all 0.6s;
  z-index: 4;
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px;
  transform: scale(0.98);
  border: 1px solid transparent;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, 0))) border-box;
  background: -webkit-linear-gradient(top, #fff, rgba(255, 255, 255, 0)) border-box;
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0)) border-box;
  content: "";
  opacity: 1;
  pointer-events: none;
  transition: all 0.6s;
}

@media (max-width: 600px) {
  .c-page_home .c-section_service .p-service_item::before {
    top: 0.3125rem;
    right: 0.3125rem;
    bottom: 0.3125rem;
    left: 0.3125rem;
  }
}

.c-page_home .c-section_service .p-service_item:hover .p-image img {
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}

.c-page_home .c-section_service .p-service_item .p-image {
  height: 29.375rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_service .p-service_item .p-image {
    height: 18.75rem;
  }
}

.c-page_home .c-section_service .p-service_item .p-image img {
  -webkit-transition: all 0.5s ease;
  -o-object-fit: cover;
  -o-object-position: center center;
  width: 100%;
  height: 100%;
  height: calc(100% + 20px) !important;
  object-fit: cover;
  object-position: center center;
  transition: all 0.5s ease;
}

.c-page_home .c-section_service .p-service_item .p-box_text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 0;
  flex-flow: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 11.25rem;
  padding: 1.875rem 1.25rem;
  background: #00AD46;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(41, 183, 155, 0)), to(#00AD46));
  background: -webkit-linear-gradient(top, rgba(41, 183, 155, 0) 0%, #00AD46 100%);
  background: linear-gradient(180deg, rgba(41, 183, 155, 0) 0%, #00AD46 100%);
  color: #fff;
  font-weight: bold;
  text-shadow: 5px 0px 5px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.c-page_home .c-section_service .p-service_item .p-box_text h5 {
  font-size: 1.0625rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_service .p-service_item .p-box_text h5 {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

.c-page_home .c-section_files {
  padding: 6.25rem 0;
}

@media (max-width: 600px) {
  .c-page_home .c-section_files {
    padding: 3.125rem 0;
  }
}

.c-page_home .c-section_files .p-files_list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-flow: column;
  margin-top: 3.125rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_files .p-files_list {
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.c-page_home .c-section_files .p-files_list::before {
  position: absolute;
  top: 0;
  left: 9.375rem;
  width: 0.1875rem;
  height: 100%;
  background: #00AD46;
  content: '';
}

@media (max-width: 600px) {
  .c-page_home .c-section_files .p-files_list::before {
    display: none;
  }
}

.c-page_home .c-section_files .p-files_item {
  display: grid;
  grid-template-columns: 20rem 1fr;
  overflow: hidden;
  border: 1px solid #00AD46;
  border-radius: 0.625rem;
  background: #fff;
}

@media (max-width: 600px) {
  .c-page_home .c-section_files .p-files_item {
    grid-template-columns: 1fr;
  }
}

.c-page_home .c-section_files .p-files_item .box_left {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  display: flex;
  position: relative;
  align-items: center;
  padding: 1.11111em 0 1.11111em 1.11111em;
  padding: 0.625rem 1.25rem;
  background-color: #00AD46;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
}

@media (min-width: 601px) {
  .c-page_home .c-section_files .p-files_item .box_left {
    -webkit-clip-path: polygon(85% 0, 100% 50%, 85% 100%, 0 100%, 0 51%, 0 0);
    clip-path: polygon(85% 0, 100% 50%, 85% 100%, 0 100%, 0 51%, 0 0);
  }
}

.c-page_home .c-section_files .p-files_item .box_left .icon {
  -webkit-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  position: absolute;
  top: 0.9375rem;
  left: 0.9375rem;
  transform: rotate(-15deg);
  font-size: 6.25rem;
  opacity: .2;
}

.c-page_home .c-section_files .p-files_item .box_right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: grid;
  grid-template-columns: 1fr 6.25rem;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  border-left: 0;
}

@media (max-width: 600px) {
  .c-page_home .c-section_files .p-files_item .box_right {
    grid-template-columns: 1fr;
  }
}

.c-page_home .c-section_files .p-files_item .box_right .p-text_date {
  gap: 0.3125rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
  color: #777;
  font-size: 0.9375rem;
}

.c-page_home .c-section_files .p-files_item .box_right .box_text {
  padding: 1.25rem 1.875rem;
  padding-right: 0;
}

@media (max-width: 600px) {
  .c-page_home .c-section_files .p-files_item .box_right .box_text {
    padding: 0.9375rem 1.25rem;
  }
}

.c-page_home .c-section_files .p-files_item .box_right .box_download {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #00AD46;
  color: #fff;
  font-size: 0.9375rem;
  cursor: pointer;
}

@media (max-width: 600px) {
  .c-page_home .c-section_files .p-files_item .box_right .box_download {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    flex-direction: row;
    justify-content: center;
    padding: 0.625rem;
  }
}

.c-page_home .c-section_files .p-files_item .box_right .box_download i {
  font-size: 1.625rem;
}

@media (max-width: 600px) {
  .c-page_home .c-section_files .p-files_item .box_right .box_download i {
    font-size: 1.25rem;
  }
}

.c-page_home .c-section_files .p-files_item .box_right .box_download:hover {
  background: #00933b;
}

.c-page_home .c-section_news {
  position: relative;
  padding: 5rem 0;
  background: #EDF2EC;
}

@media (max-width: 600px) {
  .c-page_home .c-section_news {
    padding: 2.5rem 0;
  }
}

.c-page_home .c-section_news .wrap_inner {
  gap: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
  .c-page_home .c-section_news .wrap_inner {
    grid-template-columns: 1fr;
  }
}

.c-page_home .c-section_news .c-news_feature {
  position: relative;
  margin-bottom: 1.25rem;
}

.c-page_home .c-section_news .c-news_feature .p-item {
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
}

.c-page_home .c-section_news .c-news_feature .p-item_image {
  height: 16.875rem;
}

.c-page_home .c-section_news .c-news_feature .p-item_image img {
  -o-object-fit: cover;
  -o-object-position: center center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.c-page_home .c-section_news .c-news_feature .p-item_body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0.9375rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.c-page_home .c-section_news .c-news_feature .p-item_body h5 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-page_home .c-section_news .c-news_list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
}

.c-page_home .c-section_news .c-news_list .p-item {
  gap: 0.9375rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 9.375rem 1fr;
  align-items: center;
  padding: 0.625rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #fff;
}

.c-page_home .c-section_news .c-news_list .p-item_image {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 5.625rem;
}

.c-page_home .c-section_news .c-news_list .p-item_image img {
  -o-object-fit: cover;
  -o-object-position: center center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0.3125rem;
}

.c-page_home .c-section_news .c-news_list .p-item_body h5 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-bottom: 0.3125rem;
  overflow: hidden;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
}

.c-page_home .c-section_news .c-news_list .p-item_body .p-text_date {
  gap: 0.3125rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #777;
  font-size: 0.75rem;
}

.c-page_home .c-section_partners {
  padding: 5rem 0;
}

@media (max-width: 600px) {
  .c-page_home .c-section_partners {
    padding: 2.5rem 0;
  }
}

.c-page_home .c-section_partners .c-partners_list {
  gap: 1.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 600px) {
  .c-page_home .c-section_partners .c-partners_list {
    gap: 0.9375rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-page_home .c-section_partners .c-partners_item {
  height: 8.75rem;
  padding: 0.3125rem;
  border: 1px solid #dcdcdc;
  background: #fff;
}

.c-page_home .c-section_partners .c-partners_item img {
  -o-object-fit: cover;
  -o-object-position: center center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.c-page_about {
  z-index: 3;
  position: relative;
  margin-top: -8.125rem;
  padding: 3.75rem 0;
}

@media (max-width: 600px) {
  .c-page_about {
    margin-top: -3.125rem;
    padding: 1.875rem 0;
  }
}

.c-page_about .c-section_top .p-top {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  min-height: 5rem;
  padding: 5rem 5rem 40px;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f5ffed url("../../assets/images/bg-gray.png") no-repeat top left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .c-page_about .c-section_top .p-top {
    padding: 2.5rem 1.25rem 1.25rem;
    background-size: contain;
  }
}

.c-page_about .c-section_top .p-top_title {
  margin-bottom: 1.875rem;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .c-page_about .c-section_top .p-top_title {
    margin-bottom: 1.25rem;
  }
}

.c-page_about .c-section_top .p-top_title h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

@media (max-width: 600px) {
  .c-page_about .c-section_top .p-top_title h3 {
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.c-page_about .c-section_top .p-top_title h4 {
  font-size: 1rem;
}

@media (max-width: 600px) {
  .c-page_about .c-section_top .p-top_title h4 {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.c-page_about .c-section_top .p-top_images {
  gap: 0.625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .c-page_about .c-section_top .p-top_images {
    gap: 0.3125rem;
    margin-bottom: 0.9375rem;
  }
}

.c-page_about .c-section_top .p-top_images .p-img {
  height: 13.75rem;
}

@media (max-width: 600px) {
  .c-page_about .c-section_top .p-top_images .p-img {
    height: 6.25rem;
  }
}

.c-page_about .c-section_top .p-top_images .p-img:first-child {
  grid-column: span 2;
  height: 20rem;
}

@media (max-width: 600px) {
  .c-page_about .c-section_top .p-top_images .p-img:first-child {
    height: 11.25rem;
  }
}

.c-page_about .c-section_top .p-top_images .p-img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border: 3px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.c-page_about .c-section_top .p-top_action {
  padding-top: 0.9375rem;
}

.c-page_about .c-section_top .p-top_action .box_btn {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {
  .c-page_about .c-section_top .p-top_action .box_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    gap: 0.9375rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-flow: column;
    align-items: center;
  }
}

.c-page_about .c-section_sodo {
  padding: 5rem 0;
}

@media (max-width: 600px) {
  .c-page_about .c-section_sodo {
    padding: 2.5rem 0;
  }
}

.c-page_about .c-section_sodo .p-sodo {
  padding-top: 1.25rem;
}

@media (max-width: 600px) {
  .c-page_about .c-section_sodo .p-sodo {
    padding-top: 0.625rem;
  }
}

.c-page_about .c-section_sodo .p-sodo_image {
  text-align: center;
}

.c-page_about .c-section_contact {
  margin: 2.5rem 0;
  padding: 3.75rem 0;
  background: #01ad47;
}

@media (max-width: 600px) {
  .c-page_about .c-section_contact {
    margin: 1.25rem 0;
    padding: 2.5rem 0;
  }
}

.c-page_about .c-section_contact .p-contact_text {
  max-width: 62.5rem;
  margin: auto;
  color: #fff;
  text-align: center;
}

.c-page_about .c-section_contact .p-contact_icon {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-top: 1.875rem;
}

@media (max-width: 600px) {
  .c-page_about .c-section_contact .p-contact_icon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    gap: 0.9375rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    flex-flow: column;
    align-items: center;
  }
}

.c-page_about .c-section_contact .p-contact_icon .p-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 0 0.625rem;
  padding: 0.9375rem 1.875rem;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
  background: #00973d;
}

@media (max-width: 600px) {
  .c-page_about .c-section_contact .p-contact_icon .p-item {
    width: 100%;
    margin: 0;
    padding: 0.625rem 1.25rem;
  }
}

.c-page_about .c-section_contact .p-contact_icon .p-item span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-page_about .c-section_contact .p-contact_icon .p-item span.text_phone {
  font-size: 1rem;
}

.c-page_about .c-section_contact .p-contact_icon .p-item img {
  -o-object-fit: contain;
  max-width: 4.375rem;
  object-fit: contain;
}

.c-page_about .c-section_cnnv {
  padding: 5rem 0;
  background: url("../../assets/images/bg-map.png") no-repeat top center;
  background-size: contain;
}

@media (max-width: 600px) {
  .c-page_about .c-section_cnnv {
    padding: 2.5rem 0;
  }
}

.c-page_about .c-section_cnnv .p-cnnv {
  padding-top: 1.25rem;
}

.c-page_about .c-section_cnnv .p-cnnv_chucnang {
  gap: 1.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.875rem;
}

@media (max-width: 600px) {
  .c-page_about .c-section_cnnv .p-cnnv_chucnang {
    gap: 0.9375rem;
    grid-template-columns: 1fr;
  }
}

.c-page_about .c-section_cnnv .p-cnnv_chucnang .p-item_text h3 {
  margin-bottom: 0.3125rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.c-page_about .c-section_cnnv .p-cnnv_chucnang .p-item_text p {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.c-page_about .c-section_cnnv .p-cnnv_chucnang .p-item_img {
  height: 13.75rem;
  margin-bottom: 0.9375rem;
}

.c-page_about .c-section_cnnv .p-cnnv_chucnang .p-item_img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu {
  gap: 1.875rem;
  -webkit-transition: max-height 0.5s ease-in-out;
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

@media (max-width: 600px) {
  .c-page_about .c-section_cnnv .p-cnnv_nhiemvu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    gap: 0.9375rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
  }
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu.is-collapsed {
  max-height: 26.25rem;
  margin-bottom: 0;
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu.is-collapsed::after {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 9.375rem;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, rgba(255, 255, 255, 0.95)), to(white));
  background: -webkit-linear-gradient(top, transparent, rgba(255, 255, 255, 0.95) 50%, white);
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95) 50%, white);
  content: '';
  pointer-events: none;
}

@media (max-width: 600px) {
  .c-page_about .c-section_cnnv .p-cnnv_nhiemvu.is-collapsed::after {
    height: 6.25rem;
  }
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu.is-expanded {
  max-height: none;
  margin-bottom: 1.875rem;
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu.is-expanded::after {
  display: none;
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu .p-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu .p-item:last-child:nth-child(odd) {
  grid-column: span 2;
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu .p-item_head {
  gap: 0.9375rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0.9375rem 1.25rem;
  border-radius: 0.5rem 0.5rem 0 0;
  background: #00933b;
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu .p-item_body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1.25rem;
  border: 1px solid #00933b;
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu .p-item_title {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .c-page_about .c-section_cnnv .p-cnnv_nhiemvu .p-item_title {
    font-size: 0.875rem;
  }
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu .p-item_icon {
  color: #fff;
  font-size: 1.875rem;
}

@media (max-width: 600px) {
  .c-page_about .c-section_cnnv .p-cnnv_nhiemvu .p-item_icon {
    font-size: 1.5rem;
  }
}

.c-page_about .c-section_cnnv .p-cnnv_nhiemvu .p-item_decs {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.c-page_about .c-section_cnnv .p-cnnv_action {
  text-align: center;
}

.c-page_service {
  padding-bottom: 1.25rem;
}

.c-page_service .c-section_service {
  background: #fff !important;
}

.taxinjection .block-cof {
  margin-bottom: 30px;
}

.taxinjection .block-cof form {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.taxinjection .block-cof form select {
  -webkit-box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 3rem;
  padding: 0 2.5rem 0 0.9375rem;
  border: 1px solid #C5C5C5;
  border-radius: 8px;
  background-color: white;
  background-image: url("../../assets/images/ard.svg");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 0.75rem;
  box-shadow: none !important;
  color: #979797;
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.taxinjection .block-cof form select option {
  color: #000000;
}

.taxinjection .block-cof select,
.taxinjection .block-cof input {
  width: 100%;
  margin-bottom: 0;
}

.taxinjection .block-cof .form-sec {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 42.5rem;
}

.taxinjection .block-cof .form-tk {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.taxinjection .block-cof .form-tk input {
  -webkit-box-shadow: none !important;
  min-height: 3rem;
  padding: 0 0.9375rem;
  border: 1px solid #C5C5C5;
  border-right: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: none !important;
  color: #000000;
}

.taxinjection .block-cof .form-tk input::-webkit-input-placeholder {
  color: #979797;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.taxinjection .block-cof .form-tk input::-moz-placeholder {
  color: #979797;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.taxinjection .block-cof .form-tk input:-ms-input-placeholder {
  color: #979797;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.taxinjection .block-cof .form-tk input::-ms-input-placeholder {
  color: #979797;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.taxinjection .block-cof .form-tk input::placeholder {
  color: #979797;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.taxinjection .block-cof .form-tk button {
  margin: 0;
  padding: 0 15px;
  border: 0;
  color: white;
}

.taxinjection .block-cof .form-tk button i {
  font-size: large;
}

.taxinjection .block-cof .form-tk #search-button {
  background: #44C692;
}

.taxinjection .block-cof .form-tk #reset-button {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #A5A5A5;
}

.c-page_news.c-page_home .c-section_news {
  background: #fff;
}

.c-page_news.c-page_home .c-news_list_item .p-item {
  border: 1px solid #eaeaea;
  background: #f4f4f4;
}

.c-page_contact {
  z-index: 3;
  position: relative;
}

.c-page_contact .c-section_contact {
  padding: 5rem 0;
}

@media (max-width: 600px) {
  .c-page_contact .c-section_contact {
    padding: 0;
  }
}

.c-page_contact .c-section_contact .c-heading {
  margin-bottom: 2.5rem;
}

.c-page_contact .c-section_contact .c-contact_wrapper {
  gap: 3.75rem;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

@media (max-width: 991px) {
  .c-page_contact .c-section_contact .c-contact_wrapper {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_header {
  margin-bottom: 1.875rem;
  padding: 1.875rem 1.5625rem;
  border-radius: 0.5rem;
  background: #00AD46;
  text-align: center;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_header .c-contact_name {
  margin-bottom: 0.625rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
  text-transform: uppercase;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_header .c-contact_name_en {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 500;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper {
  gap: 1.25rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  -webkit-transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper:last-child {
  border-bottom: none;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper:hover .c-contact_iconbox {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_iconbox {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  background: -webkit-linear-gradient(315deg, #00AD46 0%, #00973d 100%);
  background: linear-gradient(135deg, #00AD46 0%, #00973d 100%);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_iconbox i {
  color: #fff;
  font-size: 1.375rem;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  gap: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_label {
  margin: 0;
  color: #00AD46;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_text {
  margin: 0;
  color: #555;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_text a {
  -webkit-transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_text a::after {
  -webkit-transition: width 0.3s ease;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00AD46;
  content: '';
  transition: width 0.3s ease;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_text a:hover {
  color: #00AD46;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_text a:hover::after {
  width: 100%;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .btn-toggle-map {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.5rem;
  -webkit-transition: all 0.3s ease;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  -webkit-box-shadow: 0 2px 8px rgba(1, 173, 71, 0.2);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 0.625rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(1, 173, 71, 0.2);
  color: #555;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .btn-toggle-map i {
  -webkit-transition: -webkit-transform 0.3s ease;
  font-size: 1rem;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .btn-toggle-map:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(1, 173, 71, 0.4);
  transform: translateY(-2px);
  background: #008435;
  box-shadow: 0 4px 15px rgba(1, 173, 71, 0.4);
  color: #fff;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .btn-toggle-map:hover i {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .btn-toggle-map:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .btn-toggle-map.active {
  -webkit-box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
  background: #e74c3c;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
  color: #fff;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .btn-toggle-map.active:hover {
  -webkit-box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
  background: #df2e1b;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_map {
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 0.9375rem;
  overflow: hidden;
  border: 2px solid #f0f0f0;
  border-radius: 0.625rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_map iframe {
  -webkit-filter: grayscale(0.3);
  -webkit-transition: -webkit-filter 0.3s ease;
  display: block;
  width: 100%;
  filter: grayscale(0.3);
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_map iframe:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2.1875rem;
  border: 1px solid rgba(1, 173, 71, 0.1);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .form-title {
  margin-bottom: 0.625rem;
  color: #00AD46;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .form-desc {
  margin-bottom: 1.875rem;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .c-page_contact .c-section_contact .c-contact_right .c-contact_form .form-desc {
    margin-bottom: 0.625rem;
  }
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-container {
  margin-bottom: 0 !important;
}

@media (max-width: 600px) {
  .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-container {
    margin-top: 0.625rem !important;
  }
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-submit-container {
  margin-top: 0.625rem;
  text-align: center;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field {
  margin-bottom: 0;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.875rem;
  font-weight: 600;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field label .wpforms-required-label {
  margin-left: 2px;
  color: #e74c3c;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field input,
.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field textarea {
  -webkit-transition: all 0.3s ease;
  width: 100%;
  padding: 0.75rem 0.9375rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  color: #333;
  font-family: inherit;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field input::-webkit-input-placeholder, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field textarea::-webkit-input-placeholder {
  color: #999;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field input::-moz-placeholder, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field textarea::-moz-placeholder {
  color: #999;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field input:-ms-input-placeholder, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field textarea:-ms-input-placeholder {
  color: #999;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field input::-ms-input-placeholder, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field textarea::-ms-input-placeholder {
  color: #999;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field input::placeholder,
.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field textarea::placeholder {
  color: #999;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field input:focus,
.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field textarea:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(1, 173, 71, 0.1);
  border-color: #00AD46;
  outline: none;
  box-shadow: 0 0 0 3px rgba(1, 173, 71, 0.1);
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field input:hover,
.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field textarea:hover {
  border-color: #14ff73;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform .wpforms-submit-container {
  margin-top: 1.5625rem;
  text-align: center;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-row {
  gap: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 575px) {
  .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group {
  margin-bottom: 1.25rem;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.875rem;
  font-weight: 600;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group label .required {
  margin-left: 2px;
  color: #e74c3c;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group input,
.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group textarea {
  -webkit-transition: all 0.3s ease;
  width: 100%;
  padding: 0.75rem 0.9375rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  color: #333;
  font-family: inherit;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group input::-webkit-input-placeholder, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group textarea::-webkit-input-placeholder {
  color: #999;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group input::-moz-placeholder, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group textarea::-moz-placeholder {
  color: #999;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group input:-ms-input-placeholder, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group textarea:-ms-input-placeholder {
  color: #999;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group input::-ms-input-placeholder, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group textarea::-ms-input-placeholder {
  color: #999;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group input::placeholder,
.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group textarea::placeholder {
  color: #999;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group input:focus,
.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group textarea:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(1, 173, 71, 0.1);
  border-color: #00AD46;
  outline: none;
  box-shadow: 0 0 0 3px rgba(1, 173, 71, 0.1);
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group input:hover,
.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group textarea:hover {
  border-color: #14ff73;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-group textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-action {
  margin-top: 1.5625rem;
  text-align: center;
}

.c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form .form-action .c-button--primary {
  min-width: 12.5rem;
  padding: 0.75rem 1.875rem;
}

@media (max-width: 1199px) {
  .c-page_contact .c-section_contact .c-contact_wrapper {
    gap: 2.5rem;
  }
  .c-page_contact .c-section_contact .c-contact_right .c-contact_form {
    padding: 1.875rem 1.5625rem;
  }
}

@media (max-width: 767px) {
  .c-page_contact {
    padding: 0;
  }
  .c-page_contact .c-section_contact {
    padding: 3.75rem 0;
  }
  .c-page_contact .c-section_contact .c-contact_left .c-contact_header {
    padding: 1.25rem 0.625rem;
  }
  .c-page_contact .c-section_contact .c-contact_left .c-contact_header .c-contact_name {
    font-size: 0.9375rem;
  }
  .c-page_contact .c-section_contact .c-contact_left .c-contact_header .c-contact_name_en {
    font-size: 0.6875rem;
  }
  .c-page_contact .c-section_contact .c-contact_left .c-contact_info {
    gap: 1.25rem;
  }
  .c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    gap: 0.9375rem;
    flex-direction: row;
    padding: 0.9375rem 0;
  }
  .c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_iconbox {
    width: 2.8125rem;
    height: 2.8125rem;
  }
  .c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_iconbox i {
    font-size: 1.25rem;
  }
  .c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_label {
    font-size: 0.875rem;
  }
  .c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_text {
    font-size: 0.875rem;
  }
  .c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_content .c-contact_map iframe {
    height: 200px !important;
  }
  .c-page_contact .c-section_contact .c-contact_right .c-contact_form {
    padding: 1.5625rem 1.25rem;
  }
  .c-page_contact .c-section_contact .c-contact_right .c-contact_form .form-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_iconbox {
    width: 2.5rem;
    height: 2.5rem;
  }
  .c-page_contact .c-section_contact .c-contact_left .c-contact_info .c-contact_item_wrapper .c-contact_iconbox i {
    font-size: 1.125rem;
  }
}

.c-bredcrumbs_single {
  margin-bottom: 1.875rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e8e8e8;
  background: #f8f9fa;
}

@media (max-width: 600px) {
  .c-bredcrumbs_single {
    margin-bottom: 1.25rem;
    padding: 0.9375rem 0;
  }
}

.c-bredcrumbs_single .breadcrumb_wrapper {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .c-bredcrumbs_single .breadcrumb_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    gap: 0.625rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

.c-bredcrumbs_single .box_left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-bredcrumbs_single .box_left .rank-math-breadcrumb p {
  margin: 0;
  color: #666;
  font-size: 0.875rem;
}

.c-bredcrumbs_single .box_left .rank-math-breadcrumb p a {
  -webkit-transition: color 0.3s ease;
  color: #00933b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.c-bredcrumbs_single .box_left .rank-math-breadcrumb p a:hover {
  color: #006027;
  text-decoration: underline;
}

.c-bredcrumbs_single .box_left .rank-math-breadcrumb p .separator {
  margin: 0 0.5rem;
  color: #999;
}

.c-bredcrumbs_single .box_left .rank-math-breadcrumb p .last {
  color: #333;
  font-weight: 500;
}

.c-bredcrumbs_single .box_right .post_datetime {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.8125rem;
}

.c-bredcrumbs_single .box_right .post_datetime i {
  color: #00933b;
}

.c-page_single {
  padding: 3.75rem 0 5rem;
}

@media (max-width: 600px) {
  .c-page_single {
    padding: 2.5rem 0 1.875rem;
  }
}

.c-page_single .c-single_wrapper {
  gap: 3.125rem;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  display: grid;
  grid-template-columns: 1fr 20.625rem;
  align-items: start;
}

@media (max-width: 600px) {
  .c-page_single .c-single_wrapper {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
}

.c-page_single .c-single_content .c-single_article {
  background: #fff;
}

.c-page_single .c-single_content .c-single_article .post-title {
  margin-bottom: 1.25rem;
  color: #222;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .c-page_single .c-single_content .c-single_article .post-title {
    font-size: 1.5rem;
  }
}

.c-page_single .c-single_content .c-single_article .post-meta {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5625rem;
  padding: 0.9375rem 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.c-page_single .c-single_content .c-single_article .post-meta .meta-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.875rem;
}

.c-page_single .c-single_content .c-single_article .post-meta .meta-item i {
  color: #00933b;
  font-size: 0.9375rem;
}

.c-page_single .c-single_content .c-single_article .post-thumbnail {
  margin-bottom: 1.875rem;
  overflow: hidden;
  border-radius: 0.625rem;
}

.c-page_single .c-single_content .c-single_article .post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.c-page_single .c-single_content .c-single_article .post-tags {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.9375rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5625rem;
  padding: 1.25rem 0;
  border-top: 1px solid #e8e8e8;
}

.c-page_single .c-single_content .c-single_article .post-tags .tags-label {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 600;
}

.c-page_single .c-single_content .c-single_article .post-tags .tags-label i {
  color: #00933b;
}

.c-page_single .c-single_content .c-single_article .post-tags .tags-list {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.c-page_single .c-single_content .c-single_article .post-tags .tags-list .tag-item {
  -webkit-transition: all 0.3s ease;
  display: inline-block;
  padding: 0.375rem 0.9375rem;
  border-radius: 1.25rem;
  background: #f0f0f0;
  color: #555;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.c-page_single .c-single_content .c-single_article .post-tags .tags-list .tag-item:hover {
  background: #00933b;
  color: #fff;
}

.c-page_single .c-single_content .c-single_article .post-share {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 1.25rem;
  border-radius: 0.5rem;
  background: #f8f9fa;
}

.c-page_single .c-single_content .c-single_article .post-share .share-label {
  color: #333;
  font-weight: 600;
}

.c-page_single .c-single_content .c-single_article .post-share .share-buttons {
  gap: 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-page_single .c-single_content .c-single_article .post-share .share-buttons .share-btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.c-page_single .c-single_content .c-single_article .post-share .share-buttons .share-btn.facebook {
  background: #3b5998;
}

.c-page_single .c-single_content .c-single_article .post-share .share-buttons .share-btn.facebook:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  background: #2d4373;
}

.c-page_single .c-single_content .c-single_article .post-share .share-buttons .share-btn.twitter {
  background: #1da1f2;
}

.c-page_single .c-single_content .c-single_article .post-share .share-buttons .share-btn.twitter:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  background: #0c85d0;
}

.c-page_single .c-single_content .c-single_article .post-share .share-buttons .share-btn.linkedin {
  background: #0077b5;
}

.c-page_single .c-single_content .c-single_article .post-share .share-buttons .share-btn.linkedin:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  background: #005582;
}

.c-page_single .c-single_content .c-single_article .post-share .share-buttons .share-btn.zalo {
  background: #0068ff;
}

.c-page_single .c-single_content .c-single_article .post-share .share-buttons .share-btn.zalo:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  background: #0053cc;
}

.c-page_single .c-single_content .c-single_article .post-share .share-buttons .share-btn i {
  font-size: 1rem;
}

.c-page_single .c-single_sidebar .c-widget {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.875rem;
  padding: 1.5625rem;
  border: 1px solid #dedede;
  border-radius: 0.625rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.c-page_single .c-single_sidebar .c-widget .widget-title {
  position: relative;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #00933b;
  color: #222;
  color: #00933b;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
}

.c-page_single .c-single_sidebar .c-widget .widget-title::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 3.75rem;
  height: 2px;
  background: #00471c;
  content: '';
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item {
  position: relative;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item.has-children > .cat-link {
  padding-right: 2.1875rem;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .cat-link {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.625rem;
  -webkit-transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  padding: 0.625rem 0.75rem;
  border-radius: 0.375rem;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .cat-link i {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #00933b;
  font-size: 0.875rem;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .cat-link span:not(.count) {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .cat-link .count {
  color: #999;
  font-size: 0.75rem;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .cat-link:hover {
  padding-left: 1.125rem;
  background: #f8f9fa;
  color: #00933b;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .cat-toggle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: absolute;
  top: 0.625rem;
  right: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border: none;
  border-radius: 0.25rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .cat-toggle i {
  -webkit-transition: -webkit-transform 0.3s ease;
  color: #999;
  font-size: 0.75rem;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .cat-toggle:hover {
  background: #f0f0f0;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .cat-toggle.active i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .sub-categories {
  display: none;
  margin: 0;
  margin-top: 0.3125rem;
  padding: 0;
  padding-left: 1.25rem;
  list-style: none;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .sub-categories.active {
  display: block;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .sub-categories .cat-item .cat-link {
  font-size: 0.875rem;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .sub-categories .cat-item .cat-link i {
  font-size: 0.75rem;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .sub-categories .cat-item .sub-categories {
  padding-left: 1.5625rem;
}

.c-page_single .c-single_sidebar .c-widget_categories .categories-list .cat-item .sub-categories .cat-item .sub-categories .cat-link {
  font-size: 0.8125rem;
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list .post-item {
  gap: 0.9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list .post-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list .post-item .post-thumbnail {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list .post-item .post-thumbnail img {
  -o-object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list .post-item .post-thumbnail:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list .post-item .post-info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  gap: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list .post-item .post-info .post-title {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list .post-item .post-info .post-title a {
  -webkit-transition: color 0.3s ease;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list .post-item .post-info .post-title a:hover {
  color: #00933b;
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list .post-item .post-info .post-date {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #999;
  font-size: 0.75rem;
}

.c-page_single .c-single_sidebar .c-widget_latestposts .latest-posts-list .post-item .post-info .post-date i {
  color: #00933b;
}

.c-page_single .c-single_sidebar .c-widget_partners .partners-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  gap: 0.9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.c-page_single .c-single_sidebar .c-widget_partners .partners-list .partner-item {
  -webkit-transition: all 0.3s ease;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.c-page_single .c-single_sidebar .c-widget_partners .partners-list .partner-item img {
  -o-object-fit: contain;
  -webkit-transition: all 0.3s ease;
  width: 100%;
  height: auto;
  max-height: 7.5rem;
  object-fit: contain;
  transition: all 0.3s ease;
}

.c-page_single .c-single_sidebar .c-widget_partners .partners-list .partner-item:hover {
  -webkit-box-shadow: 0 4px 15px rgba(1, 173, 71, 0.15);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  border-color: #00933b;
  box-shadow: 0 4px 15px rgba(1, 173, 71, 0.15);
}

.c-page_single .c-single_sidebar .c-widget_partners .partners-list .partner-item:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 600px) {
  .c-page_single .c-single_sidebar .c-widget {
    padding: 1.25rem;
  }
}

@media (max-width: 600px) {
  .c-page_single {
    padding: 2.5rem 0 1.25rem;
  }
  .c-page_single .c-single_content .c-single_article .post-content {
    font-size: 0.9375rem;
  }
  .c-page_single .c-single_content .c-single_article .post-content h2 {
    font-size: 1.375rem;
  }
  .c-page_single .c-single_content .c-single_article .post-content h3 {
    font-size: 1.125rem;
  }
  .c-page_single .c-single_content .c-single_article .post-share {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    gap: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .c-page_single .c-single_sidebar .c-widget {
    padding: 1.125rem;
  }
  .c-page_single .c-single_sidebar .c-widget .widget-title {
    font-size: 1rem;
  }
}

.c-page_notfound {
  position: relative;
  overflow: hidden;
}

.c-page_notfound::after {
  inset: 2.5rem;
  -webkit-filter: blur(7.5rem);
  z-index: 0;
  position: absolute;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  content: "";
  filter: blur(7.5rem);
  pointer-events: none;
}

.c-page_notfound .c-template-page {
  z-index: 1;
  position: relative;
}

.c-page_notfound .inner_404 {
  gap: 3.75rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-shadow: 0 0.625rem 1.25rem rgba(15, 51, 30, 0.15);
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  padding: 3.75rem 5rem;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 0.625rem 1.25rem rgba(15, 51, 30, 0.15);
}

.c-page_notfound .inner_404::before {
  inset: 0.75rem;
  position: absolute;
  border: 1px solid rgba(1, 173, 71, 0.15);
  border-radius: 1.75rem;
  content: "";
  pointer-events: none;
}

.c-page_notfound .inner_404__visual {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-filter: drop-shadow(0 1.125rem 2.8125rem rgba(1, 173, 71, 0.25));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 1.125rem 2.8125rem rgba(1, 173, 71, 0.25));
}

.c-page_notfound .inner_404__visual::before {
  inset: 0.75rem;
  z-index: 0;
  position: absolute;
  border-radius: 50%;
  background: -webkit-radial-gradient(circle, rgba(1, 173, 71, 0.18) 0%, rgba(1, 173, 71, 0) 70%);
  background: radial-gradient(circle, rgba(1, 173, 71, 0.18) 0%, rgba(1, 173, 71, 0) 70%);
  content: "";
}

.c-page_notfound .inner_404__visual .inner_404__illustration {
  display: block;
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 20rem;
  height: auto;
}

.c-page_notfound .inner_404__content {
  max-width: 33.75rem;
}

.c-page_notfound .inner_404__content .inner_404__eyebrow {
  display: inline-block;
  margin-bottom: 1.125rem;
  color: #00AD46;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.375rem;
  text-transform: uppercase;
}

.c-page_notfound .inner_404__content .inner_404__title {
  margin-bottom: 1.25rem;
  color: #0f331e;
  font-size: clamp(2rem, 1.625rem1.8vw, 2.875rem);
  font-weight: 600;
  line-height: 1.25;
}

.c-page_notfound .inner_404__content .inner_404__description {
  margin-bottom: 1.5rem;
  color: #4f5d56;
  font-size: 1rem;
  line-height: 1.75;
}

.c-page_notfound .inner_404__content .inner_404__list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.c-page_notfound .inner_404__content .inner_404__list li {
  position: relative;
  margin-bottom: 0.875rem;
  padding-left: 1.75rem;
  color: #3a4a40;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.c-page_notfound .inner_404__content .inner_404__list li:last-child {
  margin-bottom: 0;
}

.c-page_notfound .inner_404__content .inner_404__list li::before {
  -webkit-box-shadow: 0 0 0.5rem rgba(1, 173, 71, 0.4);
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: -webkit-linear-gradient(315deg, #00AD46, #14ff73);
  background: linear-gradient(135deg, #00AD46, #14ff73);
  box-shadow: 0 0 0.5rem rgba(1, 173, 71, 0.4);
  content: "";
}

.c-page_notfound .inner_404__actions {
  gap: 1.5rem;
  display: grid;
}

.c-page_notfound .inner_404__search {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 1fr 3.5rem;
  align-items: center;
  padding: 0.375rem;
  border: 1px solid rgba(1, 173, 71, 0.15);
  border-radius: 3.125rem;
  background: rgba(1, 173, 71, 0.08);
}

.c-page_notfound .inner_404__search:focus-within {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(1, 173, 71, 0.15);
  border-color: rgba(1, 173, 71, 0.4);
  box-shadow: 0 0 0 0.25rem rgba(1, 173, 71, 0.15);
}

.c-page_notfound .inner_404__input {
  padding: 0 1.25rem;
  border: 0;
  background: transparent;
  color: #163825;
  font-family: inherit;
  font-size: 0.9375rem;
}

.c-page_notfound .inner_404__input::-webkit-input-placeholder {
  color: rgba(22, 56, 37, 0.5);
}

.c-page_notfound .inner_404__input::-moz-placeholder {
  color: rgba(22, 56, 37, 0.5);
}

.c-page_notfound .inner_404__input:-ms-input-placeholder {
  color: rgba(22, 56, 37, 0.5);
}

.c-page_notfound .inner_404__input::-ms-input-placeholder {
  color: rgba(22, 56, 37, 0.5);
}

.c-page_notfound .inner_404__input::placeholder {
  color: rgba(22, 56, 37, 0.5);
}

.c-page_notfound .inner_404__input:focus {
  outline: none;
}

.c-page_notfound .inner_404__submit {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: #00AD46;
  color: #fff;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.c-page_notfound .inner_404__submit:hover, .c-page_notfound .inner_404__submit:focus-visible {
  -webkit-transform: translateY(-0.125rem);
  -ms-transform: translateY(-0.125rem);
  -webkit-box-shadow: 0 0.75rem 1.5625rem rgba(1, 173, 71, 0.35);
  transform: translateY(-0.125rem);
  background: #008e3a;
  box-shadow: 0 0.75rem 1.5625rem rgba(1, 173, 71, 0.35);
}

.c-page_notfound .inner_404__submit:focus-visible {
  outline: 0.1875rem solid rgba(1, 173, 71, 0.3);
}

.c-page_notfound .inner_404__buttons {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 1.125rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.c-page_notfound .inner_404__button {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 12.5rem;
  font-size: 0.9375rem;
  text-align: center;
}

.c-page_notfound .inner_404__button .button__icon {
  font-size: 1.125rem;
}

.c-page_notfound .inner_404__button--ghost {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.625rem;
  -webkit-transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  border: 1px solid rgba(1, 173, 71, 0.3);
  border-radius: 3.125rem;
  background: rgba(1, 173, 71, 0.08);
  color: #00AD46;
  font-weight: 500;
  transition: all 0.3s ease;
}

.c-page_notfound .inner_404__button--ghost:hover, .c-page_notfound .inner_404__button--ghost:focus-visible {
  -webkit-box-shadow: 0 0.875rem 2rem rgba(1, 173, 71, 0.35);
  border-color: transparent;
  background: #00AD46;
  box-shadow: 0 0.875rem 2rem rgba(1, 173, 71, 0.35);
  color: #fff;
  text-decoration: none;
}

.c-page_notfound .inner_404__button--ghost:focus-visible {
  outline: 0.1875rem solid rgba(1, 173, 71, 0.3);
}

.c-page_notfound .inner_404__button-icon {
  font-size: 1.125rem;
}

@media (max-width: 600px) {
  .c-page_notfound {
    padding: 1.875rem 0.9375rem 3.125rem;
  }
  .c-page_notfound::after {
    inset: 0.625rem;
    -webkit-filter: blur(5rem);
    filter: blur(5rem);
  }
  .c-page_notfound .inner_404 {
    gap: 2.5rem;
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  .c-page_notfound .inner_404::before {
    inset: 0.625rem;
  }
  .c-page_notfound .inner_404__visual {
    -webkit-filter: drop-shadow(0 0.625rem 2rem rgba(1, 173, 71, 0.2));
    padding: 0;
    filter: drop-shadow(0 0.625rem 2rem rgba(1, 173, 71, 0.2));
  }
  .c-page_notfound .inner_404__visual::before {
    inset: 0.25rem;
  }
  .c-page_notfound .inner_404__visual .inner_404__illustration {
    max-width: 16.25rem;
  }
  .c-page_notfound .inner_404__content {
    margin: 0 auto;
  }
  .c-page_notfound .inner_404__content .inner_404__list {
    text-align: left;
  }
  .c-page_notfound .inner_404__search {
    row-gap: 0.75rem;
    grid-template-columns: 1fr;
    padding: 0.75rem 1rem;
    border-radius: 1.5rem;
  }
  .c-page_notfound .inner_404__submit {
    justify-self: center;
  }
  .c-page_notfound .inner_404__buttons {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .c-page_notfound .inner_404__button,
  .c-page_notfound .inner_404__button--ghost {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
}

.c-button_main {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.625rem;
  -webkit-transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  padding: 0.625rem 2.8125rem;
  border: 1px solid #fff;
  border-radius: 3.125rem;
  background: rgba(255, 255, 255, 0.26);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.c-button_main .btn_icon {
  -webkit-transition: all 0.3s ease;
  opacity: 1;
  transition: all 0.3s ease;
}

.c-button_main .icon-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.c-button_main .btn_label {
  -webkit-transition: all 0.3s ease;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  transition: all 0.3s ease;
}

.c-button_main:hover {
  background: #fff;
  color: #fff;
  color: #00AD46;
  text-decoration: none;
}

.c-button_main:hover .btn_label {
  -webkit-transform: translateX(0.625rem);
  -ms-transform: translateX(0.625rem);
  transform: translateX(0.625rem);
}

.c-button_main:hover .icon-main {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}

.c-button--stroke, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  gap: 0.625rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  padding: 0.625rem 2.8125rem;
  overflow: hidden;
  border: 1px solid #00AD46;
  border-radius: 3.125rem;
  background: #00AD46;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .c-button--stroke, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit {
    gap: 0.3125rem;
    height: 3rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

.c-button--stroke:after, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-button--stroke.white, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.white.wpforms-submit {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.c-button--stroke:hover.white, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit:hover.white {
  color: #00AD46;
}

.c-button--stroke .button__icon, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit .button__icon {
  position: relative;
  font-size: 1.1875rem;
}

@media (max-width: 600px) {
  .c-button--stroke .button__icon, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit .button__icon {
    font-size: 1rem;
  }
}

.c-button--stroke .button__label, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit .button__label {
  -webkit-transition: color 50ms var(--ease-in-out-quart);
  position: relative;
  text-align: center;
  transition: color 50ms var(--ease-in-out-quart);
}

.c-button--stroke .button__flair, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit .button__flair {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.c-button--stroke .button__flair:before, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit .button__flair:before {
  aspect-ratio: 1/1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #00AD46;
  content: "";
  pointer-events: none;
}

.c-button--stroke:hover .button__label, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit:hover .button__label {
  -webkit-transition: color 0.15s var(--ease-in-out-quart);
  transition: color 0.15s var(--ease-in-out-quart);
}

.c-button--stroke .button__flair, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit .button__flair {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform: scale(0);
  transform-origin: 0 0;
  will-change: transform;
}

.c-button--stroke .button__flair::before, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.wpforms-submit .button__flair::before {
  background: #00933b;
}

.c-button--stroke.white .button__flair::before, .c-page_contact .c-section_contact .c-contact_right .c-contact_form .contact-form_wpform button.white.wpforms-submit .button__flair::before {
  background-color: #fff !important;
}

.c-heading {
  margin-bottom: 1.25rem;
}

.c-heading_center {
  text-align: center;
}

.c-heading_center .c-heading_des {
  max-width: 62.5rem;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 600px) {
  .c-heading_center .c-heading_des {
    max-width: 100%;
  }
}

.c-heading_subtitle {
  display: inline-block;
  margin-bottom: 0.625rem;
  padding: 0.625rem;
  padding-left: 0.9375rem;
  border-radius: 2.5rem;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(54, 163, 76, 0.12)), to(rgba(54, 163, 68, 0)));
  background-image: -webkit-linear-gradient(left, rgba(54, 163, 76, 0.12) 30%, rgba(54, 163, 68, 0) 100%);
  background-image: linear-gradient(90deg, rgba(54, 163, 76, 0.12) 30%, rgba(54, 163, 68, 0) 100%);
  color: #00933b;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .c-heading_subtitle {
    font-size: 0.75rem;
  }
}

.c-heading_title {
  color: #222;
  font-family: "Oswald", sans-serif;
  font-size: 2.1875rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.5;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .c-heading_title {
    font-size: 1.375rem;
  }
}

.c-heading_des {
  margin-top: 1.25rem;
  color: #444;
}

@media (max-width: 600px) {
  .c-heading_des {
    margin-top: 0.625rem;
  }
}

.c-heading.white .c-heading_subtitle {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(255, 255, 255, 0.26)), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.26) 30%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.26) 30%, rgba(255, 255, 255, 0) 100%);
  color: #fff;
}

.c-heading.white .c-heading_title {
  color: #fff;
}

.c-heading.white .c-heading_des {
  color: rgba(255, 255, 255, 0.8);
}

.ft-drop {
  -webkit-filter: drop-shadow(2px 4px 4px black);
  filter: drop-shadow(2px 4px 4px black);
}

.c-bgline {
  position: relative;
}

.c-bgline .wrap_bg {
  z-index: 2;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.875rem;
}

@media (max-width: 600px) {
  .c-bgline .wrap_bg {
    height: 0.75rem;
  }
}

.c-bgline .wrap_bg svg {
  color: #EDF2EC;
}

.c-bgline .wrap_bg.top {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  top: -1.875rem;
  transform: scaleX(-1);
}

@media (max-width: 600px) {
  .c-bgline .wrap_bg.top {
    top: -0.75rem;
  }
}

.c-bgline .wrap_bg.bottom {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  bottom: -1.875rem;
  transform: scaleY(-1);
}

@media (max-width: 600px) {
  .c-bgline .wrap_bg.bottom {
    bottom: -0.75rem;
  }
}

/* ==========================================================================
   #Background
   ========================================================================== */
.u-background--white {
  background-color: #ffffff;
}

.u-background--black {
  background-color: #000000;
}

.u-background--green {
  background-color: #99cc66;
}

.u-background--red {
  background-color: red;
}

.u-background--gray {
  background-color: #444444;
}

.u-background--yellow {
  background-color: #030303;
}

.u-background--orange {
  background-color: #f39800;
}

.u-background--blue {
  background-color: #7ecef4;
}

.u-background--pink {
  background-color: #f19ec2;
}

.u-background__image {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ==========================================================================
   #Border
   ========================================================================== */
.u-border--white {
  border-color: #ffffff !important;
}

.u-border--black {
  border-color: #000000 !important;
}

.u-border--green {
  border-color: #99cc66 !important;
}

.u-border--red {
  border-color: red !important;
}

.u-border--gray {
  border-color: #444444 !important;
}

.u-border--yellow {
  border-color: #030303 !important;
}

.u-border--orange {
  border-color: #f39800 !important;
}

.u-border--blue {
  border-color: #7ecef4 !important;
}

.u-border--pink {
  border-color: #f19ec2 !important;
}

/* ==========================================================================
   #Display
   ========================================================================== */
.d--block {
  display: block !important;
}

.d--flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d--fixed {
  display: fixed !important;
}

.d--none {
  display: none !important;
}

.d--inline-block {
  display: inline-block !important;
}

@media (max-width: 600px) {
  .d-sp--block {
    display: block !important;
  }
  .d-sp--flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sp--fixed {
    display: fixed !important;
  }
  .d-sp--none {
    display: none !important;
  }
  .d-sp--inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 601px) {
  .d-pc--block {
    display: block !important;
  }
  .d-pc--flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-pc--fixed {
    display: fixed !important;
  }
  .d-pc--none {
    display: none !important;
  }
  .d-pc--inline-block {
    display: inline-block !important;
  }
}

.d--center {
  display: block;
  margin: 0 auto;
}

.flex--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex--row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex--column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.flex--wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex--no-wrap {
  -webkit-flex-wrap: no-wrap;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
}

.align__items--center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.align__items--flex-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align__items--flex-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.align__content--center {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.align__content--flex-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.align__content--flex-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.align__content--space-between {
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.align__content--space-around {
  -webkit-align-content: space-around;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}

.justify__items--center {
  justify-items: center;
}

.justify__items--flex-start {
  justify-items: flex-start;
}

.justify__items--flex-end {
  justify-items: flex-end;
}

.justify__content--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify__content--flex-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.justify__content--flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justify__content--space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify__content--space-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media (max-width: 600px) {
  .only__pc {
    display: none !important;
  }
}

@media (min-width: 601px) {
  .only__sp {
    display: none !important;
  }
}

/* ==========================================================================
   #Fonts
   ========================================================================== */
@font-face {
  src: url("../fonts/YuGothic-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/YuGothic-Regular.woff") format("woff"), url("../fonts/YuGothic-Regular.ttf") format("truetype"), url("../fonts/YuGothic-Regular.svg#YuGothic-Regular") format("svg");
  font-family: 'Yugo';
  font-style: normal;
  font-weight: normal;
}

@font-face {
  src: url("../fonts/YuGothic-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/YuGothic-Light.woff") format("woff"), url("../fonts/YuGothic-Light.ttf") format("truetype"), url("../fonts/YuGothic-Light.svg#YuGothic-Light") format("svg");
  font-family: 'YuGoLight';
  font-style: normal;
  font-weight: normal;
}

@font-face {
  src: url("../fonts/YuGothic-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/YuGothic-Medium.woff") format("woff"), url("../fonts/YuGothic-Medium.ttf") format("truetype"), url("../fonts/YuGothic-Medium.svg#YuGothic-Medium") format("svg");
  font-family: 'YuGoMedium';
  font-style: normal;
  font-weight: normal;
}

@font-face {
  src: url("../fonts/YuGothic-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/YuGothic-Bold.woff") format("woff"), url("../fonts/YuGothic-Bold.ttf") format("truetype"), url("../fonts/YuGothic-Bold.svg#YuGothic-Bold") format("svg");
  font-family: 'YugoBold';
  font-style: normal;
  font-weight: normal;
}

/* ==========================================================================
   #Spacing
   ========================================================================== */
/* padding left */
.pl--0 {
  padding-left: 0rem !important;
}

.pl--5 {
  padding-left: 0.3125rem !important;
}

.pl--10 {
  padding-left: 0.625rem !important;
}

.pl--15 {
  padding-left: 0.9375rem !important;
}

.pl--20 {
  padding-left: 1.25rem !important;
}

.pl--25 {
  padding-left: 1.5625rem !important;
}

.pl--30 {
  padding-left: 1.875rem !important;
}

.pl--35 {
  padding-left: 2.1875rem !important;
}

.pl--40 {
  padding-left: 2.5rem !important;
}

.pl--45 {
  padding-left: 2.8125rem !important;
}

.pl--50 {
  padding-left: 3.125rem !important;
}

.pl--55 {
  padding-left: 3.4375rem !important;
}

.pl--60 {
  padding-left: 3.75rem !important;
}

.pl--65 {
  padding-left: 4.0625rem !important;
}

.pl--70 {
  padding-left: 4.375rem !important;
}

.pl--75 {
  padding-left: 4.6875rem !important;
}

.pl--80 {
  padding-left: 5rem !important;
}

.pl--85 {
  padding-left: 5.3125rem !important;
}

.pl--90 {
  padding-left: 5.625rem !important;
}

.pl--95 {
  padding-left: 5.9375rem !important;
}

.pl--100 {
  padding-left: 6.25rem !important;
}

.pl--105 {
  padding-left: 6.5625rem !important;
}

.pl--110 {
  padding-left: 6.875rem !important;
}

.pl--115 {
  padding-left: 7.1875rem !important;
}

.pl--120 {
  padding-left: 7.5rem !important;
}

.pl--125 {
  padding-left: 7.8125rem !important;
}

.pl--130 {
  padding-left: 8.125rem !important;
}

.pl--135 {
  padding-left: 8.4375rem !important;
}

.pl--140 {
  padding-left: 8.75rem !important;
}

.pl--145 {
  padding-left: 9.0625rem !important;
}

.pl--150 {
  padding-left: 9.375rem !important;
}

.pl--155 {
  padding-left: 9.6875rem !important;
}

.pl--160 {
  padding-left: 10rem !important;
}

.pl--165 {
  padding-left: 10.3125rem !important;
}

.pl--170 {
  padding-left: 10.625rem !important;
}

.pl--175 {
  padding-left: 10.9375rem !important;
}

.pl--180 {
  padding-left: 11.25rem !important;
}

.pl--185 {
  padding-left: 11.5625rem !important;
}

.pl--190 {
  padding-left: 11.875rem !important;
}

.pl--195 {
  padding-left: 12.1875rem !important;
}

.pl--200 {
  padding-left: 12.5rem !important;
}

.pl--205 {
  padding-left: 12.8125rem !important;
}

.pl--210 {
  padding-left: 13.125rem !important;
}

.pl--215 {
  padding-left: 13.4375rem !important;
}

.pl--220 {
  padding-left: 13.75rem !important;
}

.pl--225 {
  padding-left: 14.0625rem !important;
}

.pl--230 {
  padding-left: 14.375rem !important;
}

.pl--235 {
  padding-left: 14.6875rem !important;
}

.pl--240 {
  padding-left: 15rem !important;
}

.pl--245 {
  padding-left: 15.3125rem !important;
}

.pl--250 {
  padding-left: 15.625rem !important;
}

/* padding right */
.pr--0 {
  padding-right: 0rem !important;
}

.pr--5 {
  padding-right: 0.3125rem !important;
}

.pr--10 {
  padding-right: 0.625rem !important;
}

.pr--15 {
  padding-right: 0.9375rem !important;
}

.pr--20 {
  padding-right: 1.25rem !important;
}

.pr--25 {
  padding-right: 1.5625rem !important;
}

.pr--30 {
  padding-right: 1.875rem !important;
}

.pr--35 {
  padding-right: 2.1875rem !important;
}

.pr--40 {
  padding-right: 2.5rem !important;
}

.pr--45 {
  padding-right: 2.8125rem !important;
}

.pr--50 {
  padding-right: 3.125rem !important;
}

.pr--55 {
  padding-right: 3.4375rem !important;
}

.pr--60 {
  padding-right: 3.75rem !important;
}

.pr--65 {
  padding-right: 4.0625rem !important;
}

.pr--70 {
  padding-right: 4.375rem !important;
}

.pr--75 {
  padding-right: 4.6875rem !important;
}

.pr--80 {
  padding-right: 5rem !important;
}

.pr--85 {
  padding-right: 5.3125rem !important;
}

.pr--90 {
  padding-right: 5.625rem !important;
}

.pr--95 {
  padding-right: 5.9375rem !important;
}

.pr--100 {
  padding-right: 6.25rem !important;
}

.pr--105 {
  padding-right: 6.5625rem !important;
}

.pr--110 {
  padding-right: 6.875rem !important;
}

.pr--115 {
  padding-right: 7.1875rem !important;
}

.pr--120 {
  padding-right: 7.5rem !important;
}

.pr--125 {
  padding-right: 7.8125rem !important;
}

.pr--130 {
  padding-right: 8.125rem !important;
}

.pr--135 {
  padding-right: 8.4375rem !important;
}

.pr--140 {
  padding-right: 8.75rem !important;
}

.pr--145 {
  padding-right: 9.0625rem !important;
}

.pr--150 {
  padding-right: 9.375rem !important;
}

.pr--155 {
  padding-right: 9.6875rem !important;
}

.pr--160 {
  padding-right: 10rem !important;
}

.pr--165 {
  padding-right: 10.3125rem !important;
}

.pr--170 {
  padding-right: 10.625rem !important;
}

.pr--175 {
  padding-right: 10.9375rem !important;
}

.pr--180 {
  padding-right: 11.25rem !important;
}

.pr--185 {
  padding-right: 11.5625rem !important;
}

.pr--190 {
  padding-right: 11.875rem !important;
}

.pr--195 {
  padding-right: 12.1875rem !important;
}

.pr--200 {
  padding-right: 12.5rem !important;
}

.pr--205 {
  padding-right: 12.8125rem !important;
}

.pr--210 {
  padding-right: 13.125rem !important;
}

.pr--215 {
  padding-right: 13.4375rem !important;
}

.pr--220 {
  padding-right: 13.75rem !important;
}

.pr--225 {
  padding-right: 14.0625rem !important;
}

.pr--230 {
  padding-right: 14.375rem !important;
}

.pr--235 {
  padding-right: 14.6875rem !important;
}

.pr--240 {
  padding-right: 15rem !important;
}

.pr--245 {
  padding-right: 15.3125rem !important;
}

.pr--250 {
  padding-right: 15.625rem !important;
}

/* padding top */
.pt--0 {
  padding-top: 0rem !important;
}

.pt--5 {
  padding-top: 0.3125rem !important;
}

.pt--10 {
  padding-top: 0.625rem !important;
}

.pt--15 {
  padding-top: 0.9375rem !important;
}

.pt--20 {
  padding-top: 1.25rem !important;
}

.pt--25 {
  padding-top: 1.5625rem !important;
}

.pt--30 {
  padding-top: 1.875rem !important;
}

.pt--35 {
  padding-top: 2.1875rem !important;
}

.pt--40 {
  padding-top: 2.5rem !important;
}

.pt--45 {
  padding-top: 2.8125rem !important;
}

.pt--50 {
  padding-top: 3.125rem !important;
}

.pt--55 {
  padding-top: 3.4375rem !important;
}

.pt--60 {
  padding-top: 3.75rem !important;
}

.pt--65 {
  padding-top: 4.0625rem !important;
}

.pt--70 {
  padding-top: 4.375rem !important;
}

.pt--75 {
  padding-top: 4.6875rem !important;
}

.pt--80 {
  padding-top: 5rem !important;
}

.pt--85 {
  padding-top: 5.3125rem !important;
}

.pt--90 {
  padding-top: 5.625rem !important;
}

.pt--95 {
  padding-top: 5.9375rem !important;
}

.pt--100 {
  padding-top: 6.25rem !important;
}

.pt--105 {
  padding-top: 6.5625rem !important;
}

.pt--110 {
  padding-top: 6.875rem !important;
}

.pt--115 {
  padding-top: 7.1875rem !important;
}

.pt--120 {
  padding-top: 7.5rem !important;
}

.pt--125 {
  padding-top: 7.8125rem !important;
}

.pt--130 {
  padding-top: 8.125rem !important;
}

.pt--135 {
  padding-top: 8.4375rem !important;
}

.pt--140 {
  padding-top: 8.75rem !important;
}

.pt--145 {
  padding-top: 9.0625rem !important;
}

.pt--150 {
  padding-top: 9.375rem !important;
}

.pt--155 {
  padding-top: 9.6875rem !important;
}

.pt--160 {
  padding-top: 10rem !important;
}

.pt--165 {
  padding-top: 10.3125rem !important;
}

.pt--170 {
  padding-top: 10.625rem !important;
}

.pt--175 {
  padding-top: 10.9375rem !important;
}

.pt--180 {
  padding-top: 11.25rem !important;
}

.pt--185 {
  padding-top: 11.5625rem !important;
}

.pt--190 {
  padding-top: 11.875rem !important;
}

.pt--195 {
  padding-top: 12.1875rem !important;
}

.pt--200 {
  padding-top: 12.5rem !important;
}

.pt--205 {
  padding-top: 12.8125rem !important;
}

.pt--210 {
  padding-top: 13.125rem !important;
}

.pt--215 {
  padding-top: 13.4375rem !important;
}

.pt--220 {
  padding-top: 13.75rem !important;
}

.pt--225 {
  padding-top: 14.0625rem !important;
}

.pt--230 {
  padding-top: 14.375rem !important;
}

.pt--235 {
  padding-top: 14.6875rem !important;
}

.pt--240 {
  padding-top: 15rem !important;
}

.pt--245 {
  padding-top: 15.3125rem !important;
}

.pt--250 {
  padding-top: 15.625rem !important;
}

/* padding bottom */
.pb--0 {
  padding-bottom: 0rem !important;
}

.pb--5 {
  padding-bottom: 0.3125rem !important;
}

.pb--10 {
  padding-bottom: 0.625rem !important;
}

.pb--15 {
  padding-bottom: 0.9375rem !important;
}

.pb--20 {
  padding-bottom: 1.25rem !important;
}

.pb--25 {
  padding-bottom: 1.5625rem !important;
}

.pb--30 {
  padding-bottom: 1.875rem !important;
}

.pb--35 {
  padding-bottom: 2.1875rem !important;
}

.pb--40 {
  padding-bottom: 2.5rem !important;
}

.pb--45 {
  padding-bottom: 2.8125rem !important;
}

.pb--50 {
  padding-bottom: 3.125rem !important;
}

.pb--55 {
  padding-bottom: 3.4375rem !important;
}

.pb--60 {
  padding-bottom: 3.75rem !important;
}

.pb--65 {
  padding-bottom: 4.0625rem !important;
}

.pb--70 {
  padding-bottom: 4.375rem !important;
}

.pb--75 {
  padding-bottom: 4.6875rem !important;
}

.pb--80 {
  padding-bottom: 5rem !important;
}

.pb--85 {
  padding-bottom: 5.3125rem !important;
}

.pb--90 {
  padding-bottom: 5.625rem !important;
}

.pb--95 {
  padding-bottom: 5.9375rem !important;
}

.pb--100 {
  padding-bottom: 6.25rem !important;
}

.pb--105 {
  padding-bottom: 6.5625rem !important;
}

.pb--110 {
  padding-bottom: 6.875rem !important;
}

.pb--115 {
  padding-bottom: 7.1875rem !important;
}

.pb--120 {
  padding-bottom: 7.5rem !important;
}

.pb--125 {
  padding-bottom: 7.8125rem !important;
}

.pb--130 {
  padding-bottom: 8.125rem !important;
}

.pb--135 {
  padding-bottom: 8.4375rem !important;
}

.pb--140 {
  padding-bottom: 8.75rem !important;
}

.pb--145 {
  padding-bottom: 9.0625rem !important;
}

.pb--150 {
  padding-bottom: 9.375rem !important;
}

.pb--155 {
  padding-bottom: 9.6875rem !important;
}

.pb--160 {
  padding-bottom: 10rem !important;
}

.pb--165 {
  padding-bottom: 10.3125rem !important;
}

.pb--170 {
  padding-bottom: 10.625rem !important;
}

.pb--175 {
  padding-bottom: 10.9375rem !important;
}

.pb--180 {
  padding-bottom: 11.25rem !important;
}

.pb--185 {
  padding-bottom: 11.5625rem !important;
}

.pb--190 {
  padding-bottom: 11.875rem !important;
}

.pb--195 {
  padding-bottom: 12.1875rem !important;
}

.pb--200 {
  padding-bottom: 12.5rem !important;
}

.pb--205 {
  padding-bottom: 12.8125rem !important;
}

.pb--210 {
  padding-bottom: 13.125rem !important;
}

.pb--215 {
  padding-bottom: 13.4375rem !important;
}

.pb--220 {
  padding-bottom: 13.75rem !important;
}

.pb--225 {
  padding-bottom: 14.0625rem !important;
}

.pb--230 {
  padding-bottom: 14.375rem !important;
}

.pb--235 {
  padding-bottom: 14.6875rem !important;
}

.pb--240 {
  padding-bottom: 15rem !important;
}

.pb--245 {
  padding-bottom: 15.3125rem !important;
}

.pb--250 {
  padding-bottom: 15.625rem !important;
}

/* padding x */
.px--0 {
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}

.px--5 {
  padding-right: 0.3125rem !important;
  padding-left: 0.3125rem !important;
}

.px--10 {
  padding-right: 0.625rem !important;
  padding-left: 0.625rem !important;
}

.px--15 {
  padding-right: 0.9375rem !important;
  padding-left: 0.9375rem !important;
}

.px--20 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.px--25 {
  padding-right: 1.5625rem !important;
  padding-left: 1.5625rem !important;
}

.px--30 {
  padding-right: 1.875rem !important;
  padding-left: 1.875rem !important;
}

.px--35 {
  padding-right: 2.1875rem !important;
  padding-left: 2.1875rem !important;
}

.px--40 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.px--45 {
  padding-right: 2.8125rem !important;
  padding-left: 2.8125rem !important;
}

.px--50 {
  padding-right: 3.125rem !important;
  padding-left: 3.125rem !important;
}

.px--55 {
  padding-right: 3.4375rem !important;
  padding-left: 3.4375rem !important;
}

.px--60 {
  padding-right: 3.75rem !important;
  padding-left: 3.75rem !important;
}

.px--65 {
  padding-right: 4.0625rem !important;
  padding-left: 4.0625rem !important;
}

.px--70 {
  padding-right: 4.375rem !important;
  padding-left: 4.375rem !important;
}

.px--75 {
  padding-right: 4.6875rem !important;
  padding-left: 4.6875rem !important;
}

.px--80 {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}

.px--85 {
  padding-right: 5.3125rem !important;
  padding-left: 5.3125rem !important;
}

.px--90 {
  padding-right: 5.625rem !important;
  padding-left: 5.625rem !important;
}

.px--95 {
  padding-right: 5.9375rem !important;
  padding-left: 5.9375rem !important;
}

.px--100 {
  padding-right: 6.25rem !important;
  padding-left: 6.25rem !important;
}

.px--105 {
  padding-right: 6.5625rem !important;
  padding-left: 6.5625rem !important;
}

.px--110 {
  padding-right: 6.875rem !important;
  padding-left: 6.875rem !important;
}

.px--115 {
  padding-right: 7.1875rem !important;
  padding-left: 7.1875rem !important;
}

.px--120 {
  padding-right: 7.5rem !important;
  padding-left: 7.5rem !important;
}

.px--125 {
  padding-right: 7.8125rem !important;
  padding-left: 7.8125rem !important;
}

.px--130 {
  padding-right: 8.125rem !important;
  padding-left: 8.125rem !important;
}

.px--135 {
  padding-right: 8.4375rem !important;
  padding-left: 8.4375rem !important;
}

.px--140 {
  padding-right: 8.75rem !important;
  padding-left: 8.75rem !important;
}

.px--145 {
  padding-right: 9.0625rem !important;
  padding-left: 9.0625rem !important;
}

.px--150 {
  padding-right: 9.375rem !important;
  padding-left: 9.375rem !important;
}

.px--155 {
  padding-right: 9.6875rem !important;
  padding-left: 9.6875rem !important;
}

.px--160 {
  padding-right: 10rem !important;
  padding-left: 10rem !important;
}

.px--165 {
  padding-right: 10.3125rem !important;
  padding-left: 10.3125rem !important;
}

.px--170 {
  padding-right: 10.625rem !important;
  padding-left: 10.625rem !important;
}

.px--175 {
  padding-right: 10.9375rem !important;
  padding-left: 10.9375rem !important;
}

.px--180 {
  padding-right: 11.25rem !important;
  padding-left: 11.25rem !important;
}

.px--185 {
  padding-right: 11.5625rem !important;
  padding-left: 11.5625rem !important;
}

.px--190 {
  padding-right: 11.875rem !important;
  padding-left: 11.875rem !important;
}

.px--195 {
  padding-right: 12.1875rem !important;
  padding-left: 12.1875rem !important;
}

.px--200 {
  padding-right: 12.5rem !important;
  padding-left: 12.5rem !important;
}

.px--205 {
  padding-right: 12.8125rem !important;
  padding-left: 12.8125rem !important;
}

.px--210 {
  padding-right: 13.125rem !important;
  padding-left: 13.125rem !important;
}

.px--215 {
  padding-right: 13.4375rem !important;
  padding-left: 13.4375rem !important;
}

.px--220 {
  padding-right: 13.75rem !important;
  padding-left: 13.75rem !important;
}

.px--225 {
  padding-right: 14.0625rem !important;
  padding-left: 14.0625rem !important;
}

.px--230 {
  padding-right: 14.375rem !important;
  padding-left: 14.375rem !important;
}

.px--235 {
  padding-right: 14.6875rem !important;
  padding-left: 14.6875rem !important;
}

.px--240 {
  padding-right: 15rem !important;
  padding-left: 15rem !important;
}

.px--245 {
  padding-right: 15.3125rem !important;
  padding-left: 15.3125rem !important;
}

.px--250 {
  padding-right: 15.625rem !important;
  padding-left: 15.625rem !important;
}

/* padding y */
.py--0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.py--5 {
  padding-top: 0.3125rem !important;
  padding-bottom: 0.3125rem !important;
}

.py--10 {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

.py--15 {
  padding-top: 0.9375rem !important;
  padding-bottom: 0.9375rem !important;
}

.py--20 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py--25 {
  padding-top: 1.5625rem !important;
  padding-bottom: 1.5625rem !important;
}

.py--30 {
  padding-top: 1.875rem !important;
  padding-bottom: 1.875rem !important;
}

.py--35 {
  padding-top: 2.1875rem !important;
  padding-bottom: 2.1875rem !important;
}

.py--40 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py--45 {
  padding-top: 2.8125rem !important;
  padding-bottom: 2.8125rem !important;
}

.py--50 {
  padding-top: 3.125rem !important;
  padding-bottom: 3.125rem !important;
}

.py--55 {
  padding-top: 3.4375rem !important;
  padding-bottom: 3.4375rem !important;
}

.py--60 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.py--65 {
  padding-top: 4.0625rem !important;
  padding-bottom: 4.0625rem !important;
}

.py--70 {
  padding-top: 4.375rem !important;
  padding-bottom: 4.375rem !important;
}

.py--75 {
  padding-top: 4.6875rem !important;
  padding-bottom: 4.6875rem !important;
}

.py--80 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py--85 {
  padding-top: 5.3125rem !important;
  padding-bottom: 5.3125rem !important;
}

.py--90 {
  padding-top: 5.625rem !important;
  padding-bottom: 5.625rem !important;
}

.py--95 {
  padding-top: 5.9375rem !important;
  padding-bottom: 5.9375rem !important;
}

.py--100 {
  padding-top: 6.25rem !important;
  padding-bottom: 6.25rem !important;
}

.py--105 {
  padding-top: 6.5625rem !important;
  padding-bottom: 6.5625rem !important;
}

.py--110 {
  padding-top: 6.875rem !important;
  padding-bottom: 6.875rem !important;
}

.py--115 {
  padding-top: 7.1875rem !important;
  padding-bottom: 7.1875rem !important;
}

.py--120 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.py--125 {
  padding-top: 7.8125rem !important;
  padding-bottom: 7.8125rem !important;
}

.py--130 {
  padding-top: 8.125rem !important;
  padding-bottom: 8.125rem !important;
}

.py--135 {
  padding-top: 8.4375rem !important;
  padding-bottom: 8.4375rem !important;
}

.py--140 {
  padding-top: 8.75rem !important;
  padding-bottom: 8.75rem !important;
}

.py--145 {
  padding-top: 9.0625rem !important;
  padding-bottom: 9.0625rem !important;
}

.py--150 {
  padding-top: 9.375rem !important;
  padding-bottom: 9.375rem !important;
}

.py--155 {
  padding-top: 9.6875rem !important;
  padding-bottom: 9.6875rem !important;
}

.py--160 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.py--165 {
  padding-top: 10.3125rem !important;
  padding-bottom: 10.3125rem !important;
}

.py--170 {
  padding-top: 10.625rem !important;
  padding-bottom: 10.625rem !important;
}

.py--175 {
  padding-top: 10.9375rem !important;
  padding-bottom: 10.9375rem !important;
}

.py--180 {
  padding-top: 11.25rem !important;
  padding-bottom: 11.25rem !important;
}

.py--185 {
  padding-top: 11.5625rem !important;
  padding-bottom: 11.5625rem !important;
}

.py--190 {
  padding-top: 11.875rem !important;
  padding-bottom: 11.875rem !important;
}

.py--195 {
  padding-top: 12.1875rem !important;
  padding-bottom: 12.1875rem !important;
}

.py--200 {
  padding-top: 12.5rem !important;
  padding-bottom: 12.5rem !important;
}

.py--205 {
  padding-top: 12.8125rem !important;
  padding-bottom: 12.8125rem !important;
}

.py--210 {
  padding-top: 13.125rem !important;
  padding-bottom: 13.125rem !important;
}

.py--215 {
  padding-top: 13.4375rem !important;
  padding-bottom: 13.4375rem !important;
}

.py--220 {
  padding-top: 13.75rem !important;
  padding-bottom: 13.75rem !important;
}

.py--225 {
  padding-top: 14.0625rem !important;
  padding-bottom: 14.0625rem !important;
}

.py--230 {
  padding-top: 14.375rem !important;
  padding-bottom: 14.375rem !important;
}

.py--235 {
  padding-top: 14.6875rem !important;
  padding-bottom: 14.6875rem !important;
}

.py--240 {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

.py--245 {
  padding-top: 15.3125rem !important;
  padding-bottom: 15.3125rem !important;
}

.py--250 {
  padding-top: 15.625rem !important;
  padding-bottom: 15.625rem !important;
}

/* margin left */
.ml--0 {
  margin-left: 0rem !important;
}

.ml--5 {
  margin-left: 0.3125rem !important;
}

.ml--10 {
  margin-left: 0.625rem !important;
}

.ml--15 {
  margin-left: 0.9375rem !important;
}

.ml--20 {
  margin-left: 1.25rem !important;
}

.ml--25 {
  margin-left: 1.5625rem !important;
}

.ml--30 {
  margin-left: 1.875rem !important;
}

.ml--35 {
  margin-left: 2.1875rem !important;
}

.ml--40 {
  margin-left: 2.5rem !important;
}

.ml--45 {
  margin-left: 2.8125rem !important;
}

.ml--50 {
  margin-left: 3.125rem !important;
}

.ml--55 {
  margin-left: 3.4375rem !important;
}

.ml--60 {
  margin-left: 3.75rem !important;
}

.ml--65 {
  margin-left: 4.0625rem !important;
}

.ml--70 {
  margin-left: 4.375rem !important;
}

.ml--75 {
  margin-left: 4.6875rem !important;
}

.ml--80 {
  margin-left: 5rem !important;
}

.ml--85 {
  margin-left: 5.3125rem !important;
}

.ml--90 {
  margin-left: 5.625rem !important;
}

.ml--95 {
  margin-left: 5.9375rem !important;
}

.ml--100 {
  margin-left: 6.25rem !important;
}

.ml--105 {
  margin-left: 6.5625rem !important;
}

.ml--110 {
  margin-left: 6.875rem !important;
}

.ml--115 {
  margin-left: 7.1875rem !important;
}

.ml--120 {
  margin-left: 7.5rem !important;
}

.ml--125 {
  margin-left: 7.8125rem !important;
}

.ml--130 {
  margin-left: 8.125rem !important;
}

.ml--135 {
  margin-left: 8.4375rem !important;
}

.ml--140 {
  margin-left: 8.75rem !important;
}

.ml--145 {
  margin-left: 9.0625rem !important;
}

.ml--150 {
  margin-left: 9.375rem !important;
}

.ml--155 {
  margin-left: 9.6875rem !important;
}

.ml--160 {
  margin-left: 10rem !important;
}

.ml--165 {
  margin-left: 10.3125rem !important;
}

.ml--170 {
  margin-left: 10.625rem !important;
}

.ml--175 {
  margin-left: 10.9375rem !important;
}

.ml--180 {
  margin-left: 11.25rem !important;
}

.ml--185 {
  margin-left: 11.5625rem !important;
}

.ml--190 {
  margin-left: 11.875rem !important;
}

.ml--195 {
  margin-left: 12.1875rem !important;
}

.ml--200 {
  margin-left: 12.5rem !important;
}

.ml--205 {
  margin-left: 12.8125rem !important;
}

.ml--210 {
  margin-left: 13.125rem !important;
}

.ml--215 {
  margin-left: 13.4375rem !important;
}

.ml--220 {
  margin-left: 13.75rem !important;
}

.ml--225 {
  margin-left: 14.0625rem !important;
}

.ml--230 {
  margin-left: 14.375rem !important;
}

.ml--235 {
  margin-left: 14.6875rem !important;
}

.ml--240 {
  margin-left: 15rem !important;
}

.ml--245 {
  margin-left: 15.3125rem !important;
}

.ml--250 {
  margin-left: 15.625rem !important;
}

/* margin right */
.mr--0 {
  margin-right: 0rem !important;
}

.mr--5 {
  margin-right: 0.3125rem !important;
}

.mr--10 {
  margin-right: 0.625rem !important;
}

.mr--15 {
  margin-right: 0.9375rem !important;
}

.mr--20 {
  margin-right: 1.25rem !important;
}

.mr--25 {
  margin-right: 1.5625rem !important;
}

.mr--30 {
  margin-right: 1.875rem !important;
}

.mr--35 {
  margin-right: 2.1875rem !important;
}

.mr--40 {
  margin-right: 2.5rem !important;
}

.mr--45 {
  margin-right: 2.8125rem !important;
}

.mr--50 {
  margin-right: 3.125rem !important;
}

.mr--55 {
  margin-right: 3.4375rem !important;
}

.mr--60 {
  margin-right: 3.75rem !important;
}

.mr--65 {
  margin-right: 4.0625rem !important;
}

.mr--70 {
  margin-right: 4.375rem !important;
}

.mr--75 {
  margin-right: 4.6875rem !important;
}

.mr--80 {
  margin-right: 5rem !important;
}

.mr--85 {
  margin-right: 5.3125rem !important;
}

.mr--90 {
  margin-right: 5.625rem !important;
}

.mr--95 {
  margin-right: 5.9375rem !important;
}

.mr--100 {
  margin-right: 6.25rem !important;
}

.mr--105 {
  margin-right: 6.5625rem !important;
}

.mr--110 {
  margin-right: 6.875rem !important;
}

.mr--115 {
  margin-right: 7.1875rem !important;
}

.mr--120 {
  margin-right: 7.5rem !important;
}

.mr--125 {
  margin-right: 7.8125rem !important;
}

.mr--130 {
  margin-right: 8.125rem !important;
}

.mr--135 {
  margin-right: 8.4375rem !important;
}

.mr--140 {
  margin-right: 8.75rem !important;
}

.mr--145 {
  margin-right: 9.0625rem !important;
}

.mr--150 {
  margin-right: 9.375rem !important;
}

.mr--155 {
  margin-right: 9.6875rem !important;
}

.mr--160 {
  margin-right: 10rem !important;
}

.mr--165 {
  margin-right: 10.3125rem !important;
}

.mr--170 {
  margin-right: 10.625rem !important;
}

.mr--175 {
  margin-right: 10.9375rem !important;
}

.mr--180 {
  margin-right: 11.25rem !important;
}

.mr--185 {
  margin-right: 11.5625rem !important;
}

.mr--190 {
  margin-right: 11.875rem !important;
}

.mr--195 {
  margin-right: 12.1875rem !important;
}

.mr--200 {
  margin-right: 12.5rem !important;
}

.mr--205 {
  margin-right: 12.8125rem !important;
}

.mr--210 {
  margin-right: 13.125rem !important;
}

.mr--215 {
  margin-right: 13.4375rem !important;
}

.mr--220 {
  margin-right: 13.75rem !important;
}

.mr--225 {
  margin-right: 14.0625rem !important;
}

.mr--230 {
  margin-right: 14.375rem !important;
}

.mr--235 {
  margin-right: 14.6875rem !important;
}

.mr--240 {
  margin-right: 15rem !important;
}

.mr--245 {
  margin-right: 15.3125rem !important;
}

.mr--250 {
  margin-right: 15.625rem !important;
}

/* margin top */
.mt--0 {
  margin-top: 0rem !important;
}

.mt--5 {
  margin-top: 0.3125rem !important;
}

.mt--10 {
  margin-top: 0.625rem !important;
}

.mt--15 {
  margin-top: 0.9375rem !important;
}

.mt--20 {
  margin-top: 1.25rem !important;
}

.mt--25 {
  margin-top: 1.5625rem !important;
}

.mt--30 {
  margin-top: 1.875rem !important;
}

.mt--35 {
  margin-top: 2.1875rem !important;
}

.mt--40 {
  margin-top: 2.5rem !important;
}

.mt--45 {
  margin-top: 2.8125rem !important;
}

.mt--50 {
  margin-top: 3.125rem !important;
}

.mt--55 {
  margin-top: 3.4375rem !important;
}

.mt--60 {
  margin-top: 3.75rem !important;
}

.mt--65 {
  margin-top: 4.0625rem !important;
}

.mt--70 {
  margin-top: 4.375rem !important;
}

.mt--75 {
  margin-top: 4.6875rem !important;
}

.mt--80 {
  margin-top: 5rem !important;
}

.mt--85 {
  margin-top: 5.3125rem !important;
}

.mt--90 {
  margin-top: 5.625rem !important;
}

.mt--95 {
  margin-top: 5.9375rem !important;
}

.mt--100 {
  margin-top: 6.25rem !important;
}

.mt--105 {
  margin-top: 6.5625rem !important;
}

.mt--110 {
  margin-top: 6.875rem !important;
}

.mt--115 {
  margin-top: 7.1875rem !important;
}

.mt--120 {
  margin-top: 7.5rem !important;
}

.mt--125 {
  margin-top: 7.8125rem !important;
}

.mt--130 {
  margin-top: 8.125rem !important;
}

.mt--135 {
  margin-top: 8.4375rem !important;
}

.mt--140 {
  margin-top: 8.75rem !important;
}

.mt--145 {
  margin-top: 9.0625rem !important;
}

.mt--150 {
  margin-top: 9.375rem !important;
}

.mt--155 {
  margin-top: 9.6875rem !important;
}

.mt--160 {
  margin-top: 10rem !important;
}

.mt--165 {
  margin-top: 10.3125rem !important;
}

.mt--170 {
  margin-top: 10.625rem !important;
}

.mt--175 {
  margin-top: 10.9375rem !important;
}

.mt--180 {
  margin-top: 11.25rem !important;
}

.mt--185 {
  margin-top: 11.5625rem !important;
}

.mt--190 {
  margin-top: 11.875rem !important;
}

.mt--195 {
  margin-top: 12.1875rem !important;
}

.mt--200 {
  margin-top: 12.5rem !important;
}

.mt--205 {
  margin-top: 12.8125rem !important;
}

.mt--210 {
  margin-top: 13.125rem !important;
}

.mt--215 {
  margin-top: 13.4375rem !important;
}

.mt--220 {
  margin-top: 13.75rem !important;
}

.mt--225 {
  margin-top: 14.0625rem !important;
}

.mt--230 {
  margin-top: 14.375rem !important;
}

.mt--235 {
  margin-top: 14.6875rem !important;
}

.mt--240 {
  margin-top: 15rem !important;
}

.mt--245 {
  margin-top: 15.3125rem !important;
}

.mt--250 {
  margin-top: 15.625rem !important;
}

/* margin bottom */
.mb--0 {
  margin-bottom: 0rem !important;
}

.mb--5 {
  margin-bottom: 0.3125rem !important;
}

.mb--10 {
  margin-bottom: 0.625rem !important;
}

.mb--15 {
  margin-bottom: 0.9375rem !important;
}

.mb--20 {
  margin-bottom: 1.25rem !important;
}

.mb--25 {
  margin-bottom: 1.5625rem !important;
}

.mb--30 {
  margin-bottom: 1.875rem !important;
}

.mb--35 {
  margin-bottom: 2.1875rem !important;
}

.mb--40 {
  margin-bottom: 2.5rem !important;
}

.mb--45 {
  margin-bottom: 2.8125rem !important;
}

.mb--50 {
  margin-bottom: 3.125rem !important;
}

.mb--55 {
  margin-bottom: 3.4375rem !important;
}

.mb--60 {
  margin-bottom: 3.75rem !important;
}

.mb--65 {
  margin-bottom: 4.0625rem !important;
}

.mb--70 {
  margin-bottom: 4.375rem !important;
}

.mb--75 {
  margin-bottom: 4.6875rem !important;
}

.mb--80 {
  margin-bottom: 5rem !important;
}

.mb--85 {
  margin-bottom: 5.3125rem !important;
}

.mb--90 {
  margin-bottom: 5.625rem !important;
}

.mb--95 {
  margin-bottom: 5.9375rem !important;
}

.mb--100 {
  margin-bottom: 6.25rem !important;
}

.mb--105 {
  margin-bottom: 6.5625rem !important;
}

.mb--110 {
  margin-bottom: 6.875rem !important;
}

.mb--115 {
  margin-bottom: 7.1875rem !important;
}

.mb--120 {
  margin-bottom: 7.5rem !important;
}

.mb--125 {
  margin-bottom: 7.8125rem !important;
}

.mb--130 {
  margin-bottom: 8.125rem !important;
}

.mb--135 {
  margin-bottom: 8.4375rem !important;
}

.mb--140 {
  margin-bottom: 8.75rem !important;
}

.mb--145 {
  margin-bottom: 9.0625rem !important;
}

.mb--150 {
  margin-bottom: 9.375rem !important;
}

.mb--155 {
  margin-bottom: 9.6875rem !important;
}

.mb--160 {
  margin-bottom: 10rem !important;
}

.mb--165 {
  margin-bottom: 10.3125rem !important;
}

.mb--170 {
  margin-bottom: 10.625rem !important;
}

.mb--175 {
  margin-bottom: 10.9375rem !important;
}

.mb--180 {
  margin-bottom: 11.25rem !important;
}

.mb--185 {
  margin-bottom: 11.5625rem !important;
}

.mb--190 {
  margin-bottom: 11.875rem !important;
}

.mb--195 {
  margin-bottom: 12.1875rem !important;
}

.mb--200 {
  margin-bottom: 12.5rem !important;
}

.mb--205 {
  margin-bottom: 12.8125rem !important;
}

.mb--210 {
  margin-bottom: 13.125rem !important;
}

.mb--215 {
  margin-bottom: 13.4375rem !important;
}

.mb--220 {
  margin-bottom: 13.75rem !important;
}

.mb--225 {
  margin-bottom: 14.0625rem !important;
}

.mb--230 {
  margin-bottom: 14.375rem !important;
}

.mb--235 {
  margin-bottom: 14.6875rem !important;
}

.mb--240 {
  margin-bottom: 15rem !important;
}

.mb--245 {
  margin-bottom: 15.3125rem !important;
}

.mb--250 {
  margin-bottom: 15.625rem !important;
}

/* margin x */
.mx--0 {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.mx--5 {
  margin-right: 0.3125rem !important;
  margin-left: 0.3125rem !important;
}

.mx--10 {
  margin-right: 0.625rem !important;
  margin-left: 0.625rem !important;
}

.mx--15 {
  margin-right: 0.9375rem !important;
  margin-left: 0.9375rem !important;
}

.mx--20 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.mx--25 {
  margin-right: 1.5625rem !important;
  margin-left: 1.5625rem !important;
}

.mx--30 {
  margin-right: 1.875rem !important;
  margin-left: 1.875rem !important;
}

.mx--35 {
  margin-right: 2.1875rem !important;
  margin-left: 2.1875rem !important;
}

.mx--40 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.mx--45 {
  margin-right: 2.8125rem !important;
  margin-left: 2.8125rem !important;
}

.mx--50 {
  margin-right: 3.125rem !important;
  margin-left: 3.125rem !important;
}

.mx--55 {
  margin-right: 3.4375rem !important;
  margin-left: 3.4375rem !important;
}

.mx--60 {
  margin-right: 3.75rem !important;
  margin-left: 3.75rem !important;
}

.mx--65 {
  margin-right: 4.0625rem !important;
  margin-left: 4.0625rem !important;
}

.mx--70 {
  margin-right: 4.375rem !important;
  margin-left: 4.375rem !important;
}

.mx--75 {
  margin-right: 4.6875rem !important;
  margin-left: 4.6875rem !important;
}

.mx--80 {
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}

.mx--85 {
  margin-right: 5.3125rem !important;
  margin-left: 5.3125rem !important;
}

.mx--90 {
  margin-right: 5.625rem !important;
  margin-left: 5.625rem !important;
}

.mx--95 {
  margin-right: 5.9375rem !important;
  margin-left: 5.9375rem !important;
}

.mx--100 {
  margin-right: 6.25rem !important;
  margin-left: 6.25rem !important;
}

.mx--105 {
  margin-right: 6.5625rem !important;
  margin-left: 6.5625rem !important;
}

.mx--110 {
  margin-right: 6.875rem !important;
  margin-left: 6.875rem !important;
}

.mx--115 {
  margin-right: 7.1875rem !important;
  margin-left: 7.1875rem !important;
}

.mx--120 {
  margin-right: 7.5rem !important;
  margin-left: 7.5rem !important;
}

.mx--125 {
  margin-right: 7.8125rem !important;
  margin-left: 7.8125rem !important;
}

.mx--130 {
  margin-right: 8.125rem !important;
  margin-left: 8.125rem !important;
}

.mx--135 {
  margin-right: 8.4375rem !important;
  margin-left: 8.4375rem !important;
}

.mx--140 {
  margin-right: 8.75rem !important;
  margin-left: 8.75rem !important;
}

.mx--145 {
  margin-right: 9.0625rem !important;
  margin-left: 9.0625rem !important;
}

.mx--150 {
  margin-right: 9.375rem !important;
  margin-left: 9.375rem !important;
}

.mx--155 {
  margin-right: 9.6875rem !important;
  margin-left: 9.6875rem !important;
}

.mx--160 {
  margin-right: 10rem !important;
  margin-left: 10rem !important;
}

.mx--165 {
  margin-right: 10.3125rem !important;
  margin-left: 10.3125rem !important;
}

.mx--170 {
  margin-right: 10.625rem !important;
  margin-left: 10.625rem !important;
}

.mx--175 {
  margin-right: 10.9375rem !important;
  margin-left: 10.9375rem !important;
}

.mx--180 {
  margin-right: 11.25rem !important;
  margin-left: 11.25rem !important;
}

.mx--185 {
  margin-right: 11.5625rem !important;
  margin-left: 11.5625rem !important;
}

.mx--190 {
  margin-right: 11.875rem !important;
  margin-left: 11.875rem !important;
}

.mx--195 {
  margin-right: 12.1875rem !important;
  margin-left: 12.1875rem !important;
}

.mx--200 {
  margin-right: 12.5rem !important;
  margin-left: 12.5rem !important;
}

.mx--205 {
  margin-right: 12.8125rem !important;
  margin-left: 12.8125rem !important;
}

.mx--210 {
  margin-right: 13.125rem !important;
  margin-left: 13.125rem !important;
}

.mx--215 {
  margin-right: 13.4375rem !important;
  margin-left: 13.4375rem !important;
}

.mx--220 {
  margin-right: 13.75rem !important;
  margin-left: 13.75rem !important;
}

.mx--225 {
  margin-right: 14.0625rem !important;
  margin-left: 14.0625rem !important;
}

.mx--230 {
  margin-right: 14.375rem !important;
  margin-left: 14.375rem !important;
}

.mx--235 {
  margin-right: 14.6875rem !important;
  margin-left: 14.6875rem !important;
}

.mx--240 {
  margin-right: 15rem !important;
  margin-left: 15rem !important;
}

.mx--245 {
  margin-right: 15.3125rem !important;
  margin-left: 15.3125rem !important;
}

.mx--250 {
  margin-right: 15.625rem !important;
  margin-left: 15.625rem !important;
}

/* margin y */
.my--0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.my--5 {
  margin-top: 0.3125rem !important;
  margin-bottom: 0.3125rem !important;
}

.my--10 {
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

.my--15 {
  margin-top: 0.9375rem !important;
  margin-bottom: 0.9375rem !important;
}

.my--20 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.my--25 {
  margin-top: 1.5625rem !important;
  margin-bottom: 1.5625rem !important;
}

.my--30 {
  margin-top: 1.875rem !important;
  margin-bottom: 1.875rem !important;
}

.my--35 {
  margin-top: 2.1875rem !important;
  margin-bottom: 2.1875rem !important;
}

.my--40 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my--45 {
  margin-top: 2.8125rem !important;
  margin-bottom: 2.8125rem !important;
}

.my--50 {
  margin-top: 3.125rem !important;
  margin-bottom: 3.125rem !important;
}

.my--55 {
  margin-top: 3.4375rem !important;
  margin-bottom: 3.4375rem !important;
}

.my--60 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.my--65 {
  margin-top: 4.0625rem !important;
  margin-bottom: 4.0625rem !important;
}

.my--70 {
  margin-top: 4.375rem !important;
  margin-bottom: 4.375rem !important;
}

.my--75 {
  margin-top: 4.6875rem !important;
  margin-bottom: 4.6875rem !important;
}

.my--80 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.my--85 {
  margin-top: 5.3125rem !important;
  margin-bottom: 5.3125rem !important;
}

.my--90 {
  margin-top: 5.625rem !important;
  margin-bottom: 5.625rem !important;
}

.my--95 {
  margin-top: 5.9375rem !important;
  margin-bottom: 5.9375rem !important;
}

.my--100 {
  margin-top: 6.25rem !important;
  margin-bottom: 6.25rem !important;
}

.my--105 {
  margin-top: 6.5625rem !important;
  margin-bottom: 6.5625rem !important;
}

.my--110 {
  margin-top: 6.875rem !important;
  margin-bottom: 6.875rem !important;
}

.my--115 {
  margin-top: 7.1875rem !important;
  margin-bottom: 7.1875rem !important;
}

.my--120 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.my--125 {
  margin-top: 7.8125rem !important;
  margin-bottom: 7.8125rem !important;
}

.my--130 {
  margin-top: 8.125rem !important;
  margin-bottom: 8.125rem !important;
}

.my--135 {
  margin-top: 8.4375rem !important;
  margin-bottom: 8.4375rem !important;
}

.my--140 {
  margin-top: 8.75rem !important;
  margin-bottom: 8.75rem !important;
}

.my--145 {
  margin-top: 9.0625rem !important;
  margin-bottom: 9.0625rem !important;
}

.my--150 {
  margin-top: 9.375rem !important;
  margin-bottom: 9.375rem !important;
}

.my--155 {
  margin-top: 9.6875rem !important;
  margin-bottom: 9.6875rem !important;
}

.my--160 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.my--165 {
  margin-top: 10.3125rem !important;
  margin-bottom: 10.3125rem !important;
}

.my--170 {
  margin-top: 10.625rem !important;
  margin-bottom: 10.625rem !important;
}

.my--175 {
  margin-top: 10.9375rem !important;
  margin-bottom: 10.9375rem !important;
}

.my--180 {
  margin-top: 11.25rem !important;
  margin-bottom: 11.25rem !important;
}

.my--185 {
  margin-top: 11.5625rem !important;
  margin-bottom: 11.5625rem !important;
}

.my--190 {
  margin-top: 11.875rem !important;
  margin-bottom: 11.875rem !important;
}

.my--195 {
  margin-top: 12.1875rem !important;
  margin-bottom: 12.1875rem !important;
}

.my--200 {
  margin-top: 12.5rem !important;
  margin-bottom: 12.5rem !important;
}

.my--205 {
  margin-top: 12.8125rem !important;
  margin-bottom: 12.8125rem !important;
}

.my--210 {
  margin-top: 13.125rem !important;
  margin-bottom: 13.125rem !important;
}

.my--215 {
  margin-top: 13.4375rem !important;
  margin-bottom: 13.4375rem !important;
}

.my--220 {
  margin-top: 13.75rem !important;
  margin-bottom: 13.75rem !important;
}

.my--225 {
  margin-top: 14.0625rem !important;
  margin-bottom: 14.0625rem !important;
}

.my--230 {
  margin-top: 14.375rem !important;
  margin-bottom: 14.375rem !important;
}

.my--235 {
  margin-top: 14.6875rem !important;
  margin-bottom: 14.6875rem !important;
}

.my--240 {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.my--245 {
  margin-top: 15.3125rem !important;
  margin-bottom: 15.3125rem !important;
}

.my--250 {
  margin-top: 15.625rem !important;
  margin-bottom: 15.625rem !important;
}

@media (min-width: 601px) {
  /* padding left */
  .pl-pc--0 {
    padding-left: 0rem !important;
  }
  .pl-pc--5 {
    padding-left: 0.3125rem !important;
  }
  .pl-pc--10 {
    padding-left: 0.625rem !important;
  }
  .pl-pc--15 {
    padding-left: 0.9375rem !important;
  }
  .pl-pc--20 {
    padding-left: 1.25rem !important;
  }
  .pl-pc--25 {
    padding-left: 1.5625rem !important;
  }
  .pl-pc--30 {
    padding-left: 1.875rem !important;
  }
  .pl-pc--35 {
    padding-left: 2.1875rem !important;
  }
  .pl-pc--40 {
    padding-left: 2.5rem !important;
  }
  .pl-pc--45 {
    padding-left: 2.8125rem !important;
  }
  .pl-pc--50 {
    padding-left: 3.125rem !important;
  }
  .pl-pc--55 {
    padding-left: 3.4375rem !important;
  }
  .pl-pc--60 {
    padding-left: 3.75rem !important;
  }
  .pl-pc--65 {
    padding-left: 4.0625rem !important;
  }
  .pl-pc--70 {
    padding-left: 4.375rem !important;
  }
  .pl-pc--75 {
    padding-left: 4.6875rem !important;
  }
  .pl-pc--80 {
    padding-left: 5rem !important;
  }
  .pl-pc--85 {
    padding-left: 5.3125rem !important;
  }
  .pl-pc--90 {
    padding-left: 5.625rem !important;
  }
  .pl-pc--95 {
    padding-left: 5.9375rem !important;
  }
  .pl-pc--100 {
    padding-left: 6.25rem !important;
  }
  .pl-pc--105 {
    padding-left: 6.5625rem !important;
  }
  .pl-pc--110 {
    padding-left: 6.875rem !important;
  }
  .pl-pc--115 {
    padding-left: 7.1875rem !important;
  }
  .pl-pc--120 {
    padding-left: 7.5rem !important;
  }
  .pl-pc--125 {
    padding-left: 7.8125rem !important;
  }
  .pl-pc--130 {
    padding-left: 8.125rem !important;
  }
  .pl-pc--135 {
    padding-left: 8.4375rem !important;
  }
  .pl-pc--140 {
    padding-left: 8.75rem !important;
  }
  .pl-pc--145 {
    padding-left: 9.0625rem !important;
  }
  .pl-pc--150 {
    padding-left: 9.375rem !important;
  }
  .pl-pc--155 {
    padding-left: 9.6875rem !important;
  }
  .pl-pc--160 {
    padding-left: 10rem !important;
  }
  .pl-pc--165 {
    padding-left: 10.3125rem !important;
  }
  .pl-pc--170 {
    padding-left: 10.625rem !important;
  }
  .pl-pc--175 {
    padding-left: 10.9375rem !important;
  }
  .pl-pc--180 {
    padding-left: 11.25rem !important;
  }
  .pl-pc--185 {
    padding-left: 11.5625rem !important;
  }
  .pl-pc--190 {
    padding-left: 11.875rem !important;
  }
  .pl-pc--195 {
    padding-left: 12.1875rem !important;
  }
  .pl-pc--200 {
    padding-left: 12.5rem !important;
  }
  .pl-pc--205 {
    padding-left: 12.8125rem !important;
  }
  .pl-pc--210 {
    padding-left: 13.125rem !important;
  }
  .pl-pc--215 {
    padding-left: 13.4375rem !important;
  }
  .pl-pc--220 {
    padding-left: 13.75rem !important;
  }
  .pl-pc--225 {
    padding-left: 14.0625rem !important;
  }
  .pl-pc--230 {
    padding-left: 14.375rem !important;
  }
  .pl-pc--235 {
    padding-left: 14.6875rem !important;
  }
  .pl-pc--240 {
    padding-left: 15rem !important;
  }
  .pl-pc--245 {
    padding-left: 15.3125rem !important;
  }
  .pl-pc--250 {
    padding-left: 15.625rem !important;
  }
  /* padding right */
  .pr-pc--0 {
    padding-right: 0rem !important;
  }
  .pr-pc--5 {
    padding-right: 0.3125rem !important;
  }
  .pr-pc--10 {
    padding-right: 0.625rem !important;
  }
  .pr-pc--15 {
    padding-right: 0.9375rem !important;
  }
  .pr-pc--20 {
    padding-right: 1.25rem !important;
  }
  .pr-pc--25 {
    padding-right: 1.5625rem !important;
  }
  .pr-pc--30 {
    padding-right: 1.875rem !important;
  }
  .pr-pc--35 {
    padding-right: 2.1875rem !important;
  }
  .pr-pc--40 {
    padding-right: 2.5rem !important;
  }
  .pr-pc--45 {
    padding-right: 2.8125rem !important;
  }
  .pr-pc--50 {
    padding-right: 3.125rem !important;
  }
  .pr-pc--55 {
    padding-right: 3.4375rem !important;
  }
  .pr-pc--60 {
    padding-right: 3.75rem !important;
  }
  .pr-pc--65 {
    padding-right: 4.0625rem !important;
  }
  .pr-pc--70 {
    padding-right: 4.375rem !important;
  }
  .pr-pc--75 {
    padding-right: 4.6875rem !important;
  }
  .pr-pc--80 {
    padding-right: 5rem !important;
  }
  .pr-pc--85 {
    padding-right: 5.3125rem !important;
  }
  .pr-pc--90 {
    padding-right: 5.625rem !important;
  }
  .pr-pc--95 {
    padding-right: 5.9375rem !important;
  }
  .pr-pc--100 {
    padding-right: 6.25rem !important;
  }
  .pr-pc--105 {
    padding-right: 6.5625rem !important;
  }
  .pr-pc--110 {
    padding-right: 6.875rem !important;
  }
  .pr-pc--115 {
    padding-right: 7.1875rem !important;
  }
  .pr-pc--120 {
    padding-right: 7.5rem !important;
  }
  .pr-pc--125 {
    padding-right: 7.8125rem !important;
  }
  .pr-pc--130 {
    padding-right: 8.125rem !important;
  }
  .pr-pc--135 {
    padding-right: 8.4375rem !important;
  }
  .pr-pc--140 {
    padding-right: 8.75rem !important;
  }
  .pr-pc--145 {
    padding-right: 9.0625rem !important;
  }
  .pr-pc--150 {
    padding-right: 9.375rem !important;
  }
  .pr-pc--155 {
    padding-right: 9.6875rem !important;
  }
  .pr-pc--160 {
    padding-right: 10rem !important;
  }
  .pr-pc--165 {
    padding-right: 10.3125rem !important;
  }
  .pr-pc--170 {
    padding-right: 10.625rem !important;
  }
  .pr-pc--175 {
    padding-right: 10.9375rem !important;
  }
  .pr-pc--180 {
    padding-right: 11.25rem !important;
  }
  .pr-pc--185 {
    padding-right: 11.5625rem !important;
  }
  .pr-pc--190 {
    padding-right: 11.875rem !important;
  }
  .pr-pc--195 {
    padding-right: 12.1875rem !important;
  }
  .pr-pc--200 {
    padding-right: 12.5rem !important;
  }
  .pr-pc--205 {
    padding-right: 12.8125rem !important;
  }
  .pr-pc--210 {
    padding-right: 13.125rem !important;
  }
  .pr-pc--215 {
    padding-right: 13.4375rem !important;
  }
  .pr-pc--220 {
    padding-right: 13.75rem !important;
  }
  .pr-pc--225 {
    padding-right: 14.0625rem !important;
  }
  .pr-pc--230 {
    padding-right: 14.375rem !important;
  }
  .pr-pc--235 {
    padding-right: 14.6875rem !important;
  }
  .pr-pc--240 {
    padding-right: 15rem !important;
  }
  .pr-pc--245 {
    padding-right: 15.3125rem !important;
  }
  .pr-pc--250 {
    padding-right: 15.625rem !important;
  }
  /* padding top */
  .pt-pc--0 {
    padding-top: 0rem !important;
  }
  .pt-pc--5 {
    padding-top: 0.3125rem !important;
  }
  .pt-pc--10 {
    padding-top: 0.625rem !important;
  }
  .pt-pc--15 {
    padding-top: 0.9375rem !important;
  }
  .pt-pc--20 {
    padding-top: 1.25rem !important;
  }
  .pt-pc--25 {
    padding-top: 1.5625rem !important;
  }
  .pt-pc--30 {
    padding-top: 1.875rem !important;
  }
  .pt-pc--35 {
    padding-top: 2.1875rem !important;
  }
  .pt-pc--40 {
    padding-top: 2.5rem !important;
  }
  .pt-pc--45 {
    padding-top: 2.8125rem !important;
  }
  .pt-pc--50 {
    padding-top: 3.125rem !important;
  }
  .pt-pc--55 {
    padding-top: 3.4375rem !important;
  }
  .pt-pc--60 {
    padding-top: 3.75rem !important;
  }
  .pt-pc--65 {
    padding-top: 4.0625rem !important;
  }
  .pt-pc--70 {
    padding-top: 4.375rem !important;
  }
  .pt-pc--75 {
    padding-top: 4.6875rem !important;
  }
  .pt-pc--80 {
    padding-top: 5rem !important;
  }
  .pt-pc--85 {
    padding-top: 5.3125rem !important;
  }
  .pt-pc--90 {
    padding-top: 5.625rem !important;
  }
  .pt-pc--95 {
    padding-top: 5.9375rem !important;
  }
  .pt-pc--100 {
    padding-top: 6.25rem !important;
  }
  .pt-pc--105 {
    padding-top: 6.5625rem !important;
  }
  .pt-pc--110 {
    padding-top: 6.875rem !important;
  }
  .pt-pc--115 {
    padding-top: 7.1875rem !important;
  }
  .pt-pc--120 {
    padding-top: 7.5rem !important;
  }
  .pt-pc--125 {
    padding-top: 7.8125rem !important;
  }
  .pt-pc--130 {
    padding-top: 8.125rem !important;
  }
  .pt-pc--135 {
    padding-top: 8.4375rem !important;
  }
  .pt-pc--140 {
    padding-top: 8.75rem !important;
  }
  .pt-pc--145 {
    padding-top: 9.0625rem !important;
  }
  .pt-pc--150 {
    padding-top: 9.375rem !important;
  }
  .pt-pc--155 {
    padding-top: 9.6875rem !important;
  }
  .pt-pc--160 {
    padding-top: 10rem !important;
  }
  .pt-pc--165 {
    padding-top: 10.3125rem !important;
  }
  .pt-pc--170 {
    padding-top: 10.625rem !important;
  }
  .pt-pc--175 {
    padding-top: 10.9375rem !important;
  }
  .pt-pc--180 {
    padding-top: 11.25rem !important;
  }
  .pt-pc--185 {
    padding-top: 11.5625rem !important;
  }
  .pt-pc--190 {
    padding-top: 11.875rem !important;
  }
  .pt-pc--195 {
    padding-top: 12.1875rem !important;
  }
  .pt-pc--200 {
    padding-top: 12.5rem !important;
  }
  .pt-pc--205 {
    padding-top: 12.8125rem !important;
  }
  .pt-pc--210 {
    padding-top: 13.125rem !important;
  }
  .pt-pc--215 {
    padding-top: 13.4375rem !important;
  }
  .pt-pc--220 {
    padding-top: 13.75rem !important;
  }
  .pt-pc--225 {
    padding-top: 14.0625rem !important;
  }
  .pt-pc--230 {
    padding-top: 14.375rem !important;
  }
  .pt-pc--235 {
    padding-top: 14.6875rem !important;
  }
  .pt-pc--240 {
    padding-top: 15rem !important;
  }
  .pt-pc--245 {
    padding-top: 15.3125rem !important;
  }
  .pt-pc--250 {
    padding-top: 15.625rem !important;
  }
  /* padding bottom */
  .pb-pc--0 {
    padding-bottom: 0rem !important;
  }
  .pb-pc--5 {
    padding-bottom: 0.3125rem !important;
  }
  .pb-pc--10 {
    padding-bottom: 0.625rem !important;
  }
  .pb-pc--15 {
    padding-bottom: 0.9375rem !important;
  }
  .pb-pc--20 {
    padding-bottom: 1.25rem !important;
  }
  .pb-pc--25 {
    padding-bottom: 1.5625rem !important;
  }
  .pb-pc--30 {
    padding-bottom: 1.875rem !important;
  }
  .pb-pc--35 {
    padding-bottom: 2.1875rem !important;
  }
  .pb-pc--40 {
    padding-bottom: 2.5rem !important;
  }
  .pb-pc--45 {
    padding-bottom: 2.8125rem !important;
  }
  .pb-pc--50 {
    padding-bottom: 3.125rem !important;
  }
  .pb-pc--55 {
    padding-bottom: 3.4375rem !important;
  }
  .pb-pc--60 {
    padding-bottom: 3.75rem !important;
  }
  .pb-pc--65 {
    padding-bottom: 4.0625rem !important;
  }
  .pb-pc--70 {
    padding-bottom: 4.375rem !important;
  }
  .pb-pc--75 {
    padding-bottom: 4.6875rem !important;
  }
  .pb-pc--80 {
    padding-bottom: 5rem !important;
  }
  .pb-pc--85 {
    padding-bottom: 5.3125rem !important;
  }
  .pb-pc--90 {
    padding-bottom: 5.625rem !important;
  }
  .pb-pc--95 {
    padding-bottom: 5.9375rem !important;
  }
  .pb-pc--100 {
    padding-bottom: 6.25rem !important;
  }
  .pb-pc--105 {
    padding-bottom: 6.5625rem !important;
  }
  .pb-pc--110 {
    padding-bottom: 6.875rem !important;
  }
  .pb-pc--115 {
    padding-bottom: 7.1875rem !important;
  }
  .pb-pc--120 {
    padding-bottom: 7.5rem !important;
  }
  .pb-pc--125 {
    padding-bottom: 7.8125rem !important;
  }
  .pb-pc--130 {
    padding-bottom: 8.125rem !important;
  }
  .pb-pc--135 {
    padding-bottom: 8.4375rem !important;
  }
  .pb-pc--140 {
    padding-bottom: 8.75rem !important;
  }
  .pb-pc--145 {
    padding-bottom: 9.0625rem !important;
  }
  .pb-pc--150 {
    padding-bottom: 9.375rem !important;
  }
  .pb-pc--155 {
    padding-bottom: 9.6875rem !important;
  }
  .pb-pc--160 {
    padding-bottom: 10rem !important;
  }
  .pb-pc--165 {
    padding-bottom: 10.3125rem !important;
  }
  .pb-pc--170 {
    padding-bottom: 10.625rem !important;
  }
  .pb-pc--175 {
    padding-bottom: 10.9375rem !important;
  }
  .pb-pc--180 {
    padding-bottom: 11.25rem !important;
  }
  .pb-pc--185 {
    padding-bottom: 11.5625rem !important;
  }
  .pb-pc--190 {
    padding-bottom: 11.875rem !important;
  }
  .pb-pc--195 {
    padding-bottom: 12.1875rem !important;
  }
  .pb-pc--200 {
    padding-bottom: 12.5rem !important;
  }
  .pb-pc--205 {
    padding-bottom: 12.8125rem !important;
  }
  .pb-pc--210 {
    padding-bottom: 13.125rem !important;
  }
  .pb-pc--215 {
    padding-bottom: 13.4375rem !important;
  }
  .pb-pc--220 {
    padding-bottom: 13.75rem !important;
  }
  .pb-pc--225 {
    padding-bottom: 14.0625rem !important;
  }
  .pb-pc--230 {
    padding-bottom: 14.375rem !important;
  }
  .pb-pc--235 {
    padding-bottom: 14.6875rem !important;
  }
  .pb-pc--240 {
    padding-bottom: 15rem !important;
  }
  .pb-pc--245 {
    padding-bottom: 15.3125rem !important;
  }
  .pb-pc--250 {
    padding-bottom: 15.625rem !important;
  }
  /* padding x */
  .px-pc--0 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .px-pc--5 {
    padding-right: 0.3125rem !important;
    padding-left: 0.3125rem !important;
  }
  .px-pc--10 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }
  .px-pc--15 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }
  .px-pc--20 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-pc--25 {
    padding-right: 1.5625rem !important;
    padding-left: 1.5625rem !important;
  }
  .px-pc--30 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }
  .px-pc--35 {
    padding-right: 2.1875rem !important;
    padding-left: 2.1875rem !important;
  }
  .px-pc--40 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-pc--45 {
    padding-right: 2.8125rem !important;
    padding-left: 2.8125rem !important;
  }
  .px-pc--50 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }
  .px-pc--55 {
    padding-right: 3.4375rem !important;
    padding-left: 3.4375rem !important;
  }
  .px-pc--60 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-pc--65 {
    padding-right: 4.0625rem !important;
    padding-left: 4.0625rem !important;
  }
  .px-pc--70 {
    padding-right: 4.375rem !important;
    padding-left: 4.375rem !important;
  }
  .px-pc--75 {
    padding-right: 4.6875rem !important;
    padding-left: 4.6875rem !important;
  }
  .px-pc--80 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-pc--85 {
    padding-right: 5.3125rem !important;
    padding-left: 5.3125rem !important;
  }
  .px-pc--90 {
    padding-right: 5.625rem !important;
    padding-left: 5.625rem !important;
  }
  .px-pc--95 {
    padding-right: 5.9375rem !important;
    padding-left: 5.9375rem !important;
  }
  .px-pc--100 {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }
  .px-pc--105 {
    padding-right: 6.5625rem !important;
    padding-left: 6.5625rem !important;
  }
  .px-pc--110 {
    padding-right: 6.875rem !important;
    padding-left: 6.875rem !important;
  }
  .px-pc--115 {
    padding-right: 7.1875rem !important;
    padding-left: 7.1875rem !important;
  }
  .px-pc--120 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-pc--125 {
    padding-right: 7.8125rem !important;
    padding-left: 7.8125rem !important;
  }
  .px-pc--130 {
    padding-right: 8.125rem !important;
    padding-left: 8.125rem !important;
  }
  .px-pc--135 {
    padding-right: 8.4375rem !important;
    padding-left: 8.4375rem !important;
  }
  .px-pc--140 {
    padding-right: 8.75rem !important;
    padding-left: 8.75rem !important;
  }
  .px-pc--145 {
    padding-right: 9.0625rem !important;
    padding-left: 9.0625rem !important;
  }
  .px-pc--150 {
    padding-right: 9.375rem !important;
    padding-left: 9.375rem !important;
  }
  .px-pc--155 {
    padding-right: 9.6875rem !important;
    padding-left: 9.6875rem !important;
  }
  .px-pc--160 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-pc--165 {
    padding-right: 10.3125rem !important;
    padding-left: 10.3125rem !important;
  }
  .px-pc--170 {
    padding-right: 10.625rem !important;
    padding-left: 10.625rem !important;
  }
  .px-pc--175 {
    padding-right: 10.9375rem !important;
    padding-left: 10.9375rem !important;
  }
  .px-pc--180 {
    padding-right: 11.25rem !important;
    padding-left: 11.25rem !important;
  }
  .px-pc--185 {
    padding-right: 11.5625rem !important;
    padding-left: 11.5625rem !important;
  }
  .px-pc--190 {
    padding-right: 11.875rem !important;
    padding-left: 11.875rem !important;
  }
  .px-pc--195 {
    padding-right: 12.1875rem !important;
    padding-left: 12.1875rem !important;
  }
  .px-pc--200 {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }
  .px-pc--205 {
    padding-right: 12.8125rem !important;
    padding-left: 12.8125rem !important;
  }
  .px-pc--210 {
    padding-right: 13.125rem !important;
    padding-left: 13.125rem !important;
  }
  .px-pc--215 {
    padding-right: 13.4375rem !important;
    padding-left: 13.4375rem !important;
  }
  .px-pc--220 {
    padding-right: 13.75rem !important;
    padding-left: 13.75rem !important;
  }
  .px-pc--225 {
    padding-right: 14.0625rem !important;
    padding-left: 14.0625rem !important;
  }
  .px-pc--230 {
    padding-right: 14.375rem !important;
    padding-left: 14.375rem !important;
  }
  .px-pc--235 {
    padding-right: 14.6875rem !important;
    padding-left: 14.6875rem !important;
  }
  .px-pc--240 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-pc--245 {
    padding-right: 15.3125rem !important;
    padding-left: 15.3125rem !important;
  }
  .px-pc--250 {
    padding-right: 15.625rem !important;
    padding-left: 15.625rem !important;
  }
  /* padding y */
  .py-pc--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-pc--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
  .py-pc--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  .py-pc--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
  .py-pc--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-pc--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
  .py-pc--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
  .py-pc--35 {
    padding-top: 2.1875rem !important;
    padding-bottom: 2.1875rem !important;
  }
  .py-pc--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-pc--45 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
  }
  .py-pc--50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }
  .py-pc--55 {
    padding-top: 3.4375rem !important;
    padding-bottom: 3.4375rem !important;
  }
  .py-pc--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-pc--65 {
    padding-top: 4.0625rem !important;
    padding-bottom: 4.0625rem !important;
  }
  .py-pc--70 {
    padding-top: 4.375rem !important;
    padding-bottom: 4.375rem !important;
  }
  .py-pc--75 {
    padding-top: 4.6875rem !important;
    padding-bottom: 4.6875rem !important;
  }
  .py-pc--80 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-pc--85 {
    padding-top: 5.3125rem !important;
    padding-bottom: 5.3125rem !important;
  }
  .py-pc--90 {
    padding-top: 5.625rem !important;
    padding-bottom: 5.625rem !important;
  }
  .py-pc--95 {
    padding-top: 5.9375rem !important;
    padding-bottom: 5.9375rem !important;
  }
  .py-pc--100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
  .py-pc--105 {
    padding-top: 6.5625rem !important;
    padding-bottom: 6.5625rem !important;
  }
  .py-pc--110 {
    padding-top: 6.875rem !important;
    padding-bottom: 6.875rem !important;
  }
  .py-pc--115 {
    padding-top: 7.1875rem !important;
    padding-bottom: 7.1875rem !important;
  }
  .py-pc--120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-pc--125 {
    padding-top: 7.8125rem !important;
    padding-bottom: 7.8125rem !important;
  }
  .py-pc--130 {
    padding-top: 8.125rem !important;
    padding-bottom: 8.125rem !important;
  }
  .py-pc--135 {
    padding-top: 8.4375rem !important;
    padding-bottom: 8.4375rem !important;
  }
  .py-pc--140 {
    padding-top: 8.75rem !important;
    padding-bottom: 8.75rem !important;
  }
  .py-pc--145 {
    padding-top: 9.0625rem !important;
    padding-bottom: 9.0625rem !important;
  }
  .py-pc--150 {
    padding-top: 9.375rem !important;
    padding-bottom: 9.375rem !important;
  }
  .py-pc--155 {
    padding-top: 9.6875rem !important;
    padding-bottom: 9.6875rem !important;
  }
  .py-pc--160 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-pc--165 {
    padding-top: 10.3125rem !important;
    padding-bottom: 10.3125rem !important;
  }
  .py-pc--170 {
    padding-top: 10.625rem !important;
    padding-bottom: 10.625rem !important;
  }
  .py-pc--175 {
    padding-top: 10.9375rem !important;
    padding-bottom: 10.9375rem !important;
  }
  .py-pc--180 {
    padding-top: 11.25rem !important;
    padding-bottom: 11.25rem !important;
  }
  .py-pc--185 {
    padding-top: 11.5625rem !important;
    padding-bottom: 11.5625rem !important;
  }
  .py-pc--190 {
    padding-top: 11.875rem !important;
    padding-bottom: 11.875rem !important;
  }
  .py-pc--195 {
    padding-top: 12.1875rem !important;
    padding-bottom: 12.1875rem !important;
  }
  .py-pc--200 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }
  .py-pc--205 {
    padding-top: 12.8125rem !important;
    padding-bottom: 12.8125rem !important;
  }
  .py-pc--210 {
    padding-top: 13.125rem !important;
    padding-bottom: 13.125rem !important;
  }
  .py-pc--215 {
    padding-top: 13.4375rem !important;
    padding-bottom: 13.4375rem !important;
  }
  .py-pc--220 {
    padding-top: 13.75rem !important;
    padding-bottom: 13.75rem !important;
  }
  .py-pc--225 {
    padding-top: 14.0625rem !important;
    padding-bottom: 14.0625rem !important;
  }
  .py-pc--230 {
    padding-top: 14.375rem !important;
    padding-bottom: 14.375rem !important;
  }
  .py-pc--235 {
    padding-top: 14.6875rem !important;
    padding-bottom: 14.6875rem !important;
  }
  .py-pc--240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-pc--245 {
    padding-top: 15.3125rem !important;
    padding-bottom: 15.3125rem !important;
  }
  .py-pc--250 {
    padding-top: 15.625rem !important;
    padding-bottom: 15.625rem !important;
  }
  /* margin left */
  .ml-pc--0 {
    margin-left: 0rem !important;
  }
  .ml-pc--5 {
    margin-left: 0.3125rem !important;
  }
  .ml-pc--10 {
    margin-left: 0.625rem !important;
  }
  .ml-pc--15 {
    margin-left: 0.9375rem !important;
  }
  .ml-pc--20 {
    margin-left: 1.25rem !important;
  }
  .ml-pc--25 {
    margin-left: 1.5625rem !important;
  }
  .ml-pc--30 {
    margin-left: 1.875rem !important;
  }
  .ml-pc--35 {
    margin-left: 2.1875rem !important;
  }
  .ml-pc--40 {
    margin-left: 2.5rem !important;
  }
  .ml-pc--45 {
    margin-left: 2.8125rem !important;
  }
  .ml-pc--50 {
    margin-left: 3.125rem !important;
  }
  .ml-pc--55 {
    margin-left: 3.4375rem !important;
  }
  .ml-pc--60 {
    margin-left: 3.75rem !important;
  }
  .ml-pc--65 {
    margin-left: 4.0625rem !important;
  }
  .ml-pc--70 {
    margin-left: 4.375rem !important;
  }
  .ml-pc--75 {
    margin-left: 4.6875rem !important;
  }
  .ml-pc--80 {
    margin-left: 5rem !important;
  }
  .ml-pc--85 {
    margin-left: 5.3125rem !important;
  }
  .ml-pc--90 {
    margin-left: 5.625rem !important;
  }
  .ml-pc--95 {
    margin-left: 5.9375rem !important;
  }
  .ml-pc--100 {
    margin-left: 6.25rem !important;
  }
  .ml-pc--105 {
    margin-left: 6.5625rem !important;
  }
  .ml-pc--110 {
    margin-left: 6.875rem !important;
  }
  .ml-pc--115 {
    margin-left: 7.1875rem !important;
  }
  .ml-pc--120 {
    margin-left: 7.5rem !important;
  }
  .ml-pc--125 {
    margin-left: 7.8125rem !important;
  }
  .ml-pc--130 {
    margin-left: 8.125rem !important;
  }
  .ml-pc--135 {
    margin-left: 8.4375rem !important;
  }
  .ml-pc--140 {
    margin-left: 8.75rem !important;
  }
  .ml-pc--145 {
    margin-left: 9.0625rem !important;
  }
  .ml-pc--150 {
    margin-left: 9.375rem !important;
  }
  .ml-pc--155 {
    margin-left: 9.6875rem !important;
  }
  .ml-pc--160 {
    margin-left: 10rem !important;
  }
  .ml-pc--165 {
    margin-left: 10.3125rem !important;
  }
  .ml-pc--170 {
    margin-left: 10.625rem !important;
  }
  .ml-pc--175 {
    margin-left: 10.9375rem !important;
  }
  .ml-pc--180 {
    margin-left: 11.25rem !important;
  }
  .ml-pc--185 {
    margin-left: 11.5625rem !important;
  }
  .ml-pc--190 {
    margin-left: 11.875rem !important;
  }
  .ml-pc--195 {
    margin-left: 12.1875rem !important;
  }
  .ml-pc--200 {
    margin-left: 12.5rem !important;
  }
  .ml-pc--205 {
    margin-left: 12.8125rem !important;
  }
  .ml-pc--210 {
    margin-left: 13.125rem !important;
  }
  .ml-pc--215 {
    margin-left: 13.4375rem !important;
  }
  .ml-pc--220 {
    margin-left: 13.75rem !important;
  }
  .ml-pc--225 {
    margin-left: 14.0625rem !important;
  }
  .ml-pc--230 {
    margin-left: 14.375rem !important;
  }
  .ml-pc--235 {
    margin-left: 14.6875rem !important;
  }
  .ml-pc--240 {
    margin-left: 15rem !important;
  }
  .ml-pc--245 {
    margin-left: 15.3125rem !important;
  }
  .ml-pc--250 {
    margin-left: 15.625rem !important;
  }
  /* margin right */
  .mr-pc--0 {
    margin-right: 0rem !important;
  }
  .mr-pc--5 {
    margin-right: 0.3125rem !important;
  }
  .mr-pc--10 {
    margin-right: 0.625rem !important;
  }
  .mr-pc--15 {
    margin-right: 0.9375rem !important;
  }
  .mr-pc--20 {
    margin-right: 1.25rem !important;
  }
  .mr-pc--25 {
    margin-right: 1.5625rem !important;
  }
  .mr-pc--30 {
    margin-right: 1.875rem !important;
  }
  .mr-pc--35 {
    margin-right: 2.1875rem !important;
  }
  .mr-pc--40 {
    margin-right: 2.5rem !important;
  }
  .mr-pc--45 {
    margin-right: 2.8125rem !important;
  }
  .mr-pc--50 {
    margin-right: 3.125rem !important;
  }
  .mr-pc--55 {
    margin-right: 3.4375rem !important;
  }
  .mr-pc--60 {
    margin-right: 3.75rem !important;
  }
  .mr-pc--65 {
    margin-right: 4.0625rem !important;
  }
  .mr-pc--70 {
    margin-right: 4.375rem !important;
  }
  .mr-pc--75 {
    margin-right: 4.6875rem !important;
  }
  .mr-pc--80 {
    margin-right: 5rem !important;
  }
  .mr-pc--85 {
    margin-right: 5.3125rem !important;
  }
  .mr-pc--90 {
    margin-right: 5.625rem !important;
  }
  .mr-pc--95 {
    margin-right: 5.9375rem !important;
  }
  .mr-pc--100 {
    margin-right: 6.25rem !important;
  }
  .mr-pc--105 {
    margin-right: 6.5625rem !important;
  }
  .mr-pc--110 {
    margin-right: 6.875rem !important;
  }
  .mr-pc--115 {
    margin-right: 7.1875rem !important;
  }
  .mr-pc--120 {
    margin-right: 7.5rem !important;
  }
  .mr-pc--125 {
    margin-right: 7.8125rem !important;
  }
  .mr-pc--130 {
    margin-right: 8.125rem !important;
  }
  .mr-pc--135 {
    margin-right: 8.4375rem !important;
  }
  .mr-pc--140 {
    margin-right: 8.75rem !important;
  }
  .mr-pc--145 {
    margin-right: 9.0625rem !important;
  }
  .mr-pc--150 {
    margin-right: 9.375rem !important;
  }
  .mr-pc--155 {
    margin-right: 9.6875rem !important;
  }
  .mr-pc--160 {
    margin-right: 10rem !important;
  }
  .mr-pc--165 {
    margin-right: 10.3125rem !important;
  }
  .mr-pc--170 {
    margin-right: 10.625rem !important;
  }
  .mr-pc--175 {
    margin-right: 10.9375rem !important;
  }
  .mr-pc--180 {
    margin-right: 11.25rem !important;
  }
  .mr-pc--185 {
    margin-right: 11.5625rem !important;
  }
  .mr-pc--190 {
    margin-right: 11.875rem !important;
  }
  .mr-pc--195 {
    margin-right: 12.1875rem !important;
  }
  .mr-pc--200 {
    margin-right: 12.5rem !important;
  }
  .mr-pc--205 {
    margin-right: 12.8125rem !important;
  }
  .mr-pc--210 {
    margin-right: 13.125rem !important;
  }
  .mr-pc--215 {
    margin-right: 13.4375rem !important;
  }
  .mr-pc--220 {
    margin-right: 13.75rem !important;
  }
  .mr-pc--225 {
    margin-right: 14.0625rem !important;
  }
  .mr-pc--230 {
    margin-right: 14.375rem !important;
  }
  .mr-pc--235 {
    margin-right: 14.6875rem !important;
  }
  .mr-pc--240 {
    margin-right: 15rem !important;
  }
  .mr-pc--245 {
    margin-right: 15.3125rem !important;
  }
  .mr-pc--250 {
    margin-right: 15.625rem !important;
  }
  /* margin top */
  .mt-pc--0 {
    margin-top: 0rem !important;
  }
  .mt-pc--5 {
    margin-top: 0.3125rem !important;
  }
  .mt-pc--10 {
    margin-top: 0.625rem !important;
  }
  .mt-pc--15 {
    margin-top: 0.9375rem !important;
  }
  .mt-pc--20 {
    margin-top: 1.25rem !important;
  }
  .mt-pc--25 {
    margin-top: 1.5625rem !important;
  }
  .mt-pc--30 {
    margin-top: 1.875rem !important;
  }
  .mt-pc--35 {
    margin-top: 2.1875rem !important;
  }
  .mt-pc--40 {
    margin-top: 2.5rem !important;
  }
  .mt-pc--45 {
    margin-top: 2.8125rem !important;
  }
  .mt-pc--50 {
    margin-top: 3.125rem !important;
  }
  .mt-pc--55 {
    margin-top: 3.4375rem !important;
  }
  .mt-pc--60 {
    margin-top: 3.75rem !important;
  }
  .mt-pc--65 {
    margin-top: 4.0625rem !important;
  }
  .mt-pc--70 {
    margin-top: 4.375rem !important;
  }
  .mt-pc--75 {
    margin-top: 4.6875rem !important;
  }
  .mt-pc--80 {
    margin-top: 5rem !important;
  }
  .mt-pc--85 {
    margin-top: 5.3125rem !important;
  }
  .mt-pc--90 {
    margin-top: 5.625rem !important;
  }
  .mt-pc--95 {
    margin-top: 5.9375rem !important;
  }
  .mt-pc--100 {
    margin-top: 6.25rem !important;
  }
  .mt-pc--105 {
    margin-top: 6.5625rem !important;
  }
  .mt-pc--110 {
    margin-top: 6.875rem !important;
  }
  .mt-pc--115 {
    margin-top: 7.1875rem !important;
  }
  .mt-pc--120 {
    margin-top: 7.5rem !important;
  }
  .mt-pc--125 {
    margin-top: 7.8125rem !important;
  }
  .mt-pc--130 {
    margin-top: 8.125rem !important;
  }
  .mt-pc--135 {
    margin-top: 8.4375rem !important;
  }
  .mt-pc--140 {
    margin-top: 8.75rem !important;
  }
  .mt-pc--145 {
    margin-top: 9.0625rem !important;
  }
  .mt-pc--150 {
    margin-top: 9.375rem !important;
  }
  .mt-pc--155 {
    margin-top: 9.6875rem !important;
  }
  .mt-pc--160 {
    margin-top: 10rem !important;
  }
  .mt-pc--165 {
    margin-top: 10.3125rem !important;
  }
  .mt-pc--170 {
    margin-top: 10.625rem !important;
  }
  .mt-pc--175 {
    margin-top: 10.9375rem !important;
  }
  .mt-pc--180 {
    margin-top: 11.25rem !important;
  }
  .mt-pc--185 {
    margin-top: 11.5625rem !important;
  }
  .mt-pc--190 {
    margin-top: 11.875rem !important;
  }
  .mt-pc--195 {
    margin-top: 12.1875rem !important;
  }
  .mt-pc--200 {
    margin-top: 12.5rem !important;
  }
  .mt-pc--205 {
    margin-top: 12.8125rem !important;
  }
  .mt-pc--210 {
    margin-top: 13.125rem !important;
  }
  .mt-pc--215 {
    margin-top: 13.4375rem !important;
  }
  .mt-pc--220 {
    margin-top: 13.75rem !important;
  }
  .mt-pc--225 {
    margin-top: 14.0625rem !important;
  }
  .mt-pc--230 {
    margin-top: 14.375rem !important;
  }
  .mt-pc--235 {
    margin-top: 14.6875rem !important;
  }
  .mt-pc--240 {
    margin-top: 15rem !important;
  }
  .mt-pc--245 {
    margin-top: 15.3125rem !important;
  }
  .mt-pc--250 {
    margin-top: 15.625rem !important;
  }
  /* margin bottom */
  .mb-pc--0 {
    margin-bottom: 0rem !important;
  }
  .mb-pc--5 {
    margin-bottom: 0.3125rem !important;
  }
  .mb-pc--10 {
    margin-bottom: 0.625rem !important;
  }
  .mb-pc--15 {
    margin-bottom: 0.9375rem !important;
  }
  .mb-pc--20 {
    margin-bottom: 1.25rem !important;
  }
  .mb-pc--25 {
    margin-bottom: 1.5625rem !important;
  }
  .mb-pc--30 {
    margin-bottom: 1.875rem !important;
  }
  .mb-pc--35 {
    margin-bottom: 2.1875rem !important;
  }
  .mb-pc--40 {
    margin-bottom: 2.5rem !important;
  }
  .mb-pc--45 {
    margin-bottom: 2.8125rem !important;
  }
  .mb-pc--50 {
    margin-bottom: 3.125rem !important;
  }
  .mb-pc--55 {
    margin-bottom: 3.4375rem !important;
  }
  .mb-pc--60 {
    margin-bottom: 3.75rem !important;
  }
  .mb-pc--65 {
    margin-bottom: 4.0625rem !important;
  }
  .mb-pc--70 {
    margin-bottom: 4.375rem !important;
  }
  .mb-pc--75 {
    margin-bottom: 4.6875rem !important;
  }
  .mb-pc--80 {
    margin-bottom: 5rem !important;
  }
  .mb-pc--85 {
    margin-bottom: 5.3125rem !important;
  }
  .mb-pc--90 {
    margin-bottom: 5.625rem !important;
  }
  .mb-pc--95 {
    margin-bottom: 5.9375rem !important;
  }
  .mb-pc--100 {
    margin-bottom: 6.25rem !important;
  }
  .mb-pc--105 {
    margin-bottom: 6.5625rem !important;
  }
  .mb-pc--110 {
    margin-bottom: 6.875rem !important;
  }
  .mb-pc--115 {
    margin-bottom: 7.1875rem !important;
  }
  .mb-pc--120 {
    margin-bottom: 7.5rem !important;
  }
  .mb-pc--125 {
    margin-bottom: 7.8125rem !important;
  }
  .mb-pc--130 {
    margin-bottom: 8.125rem !important;
  }
  .mb-pc--135 {
    margin-bottom: 8.4375rem !important;
  }
  .mb-pc--140 {
    margin-bottom: 8.75rem !important;
  }
  .mb-pc--145 {
    margin-bottom: 9.0625rem !important;
  }
  .mb-pc--150 {
    margin-bottom: 9.375rem !important;
  }
  .mb-pc--155 {
    margin-bottom: 9.6875rem !important;
  }
  .mb-pc--160 {
    margin-bottom: 10rem !important;
  }
  .mb-pc--165 {
    margin-bottom: 10.3125rem !important;
  }
  .mb-pc--170 {
    margin-bottom: 10.625rem !important;
  }
  .mb-pc--175 {
    margin-bottom: 10.9375rem !important;
  }
  .mb-pc--180 {
    margin-bottom: 11.25rem !important;
  }
  .mb-pc--185 {
    margin-bottom: 11.5625rem !important;
  }
  .mb-pc--190 {
    margin-bottom: 11.875rem !important;
  }
  .mb-pc--195 {
    margin-bottom: 12.1875rem !important;
  }
  .mb-pc--200 {
    margin-bottom: 12.5rem !important;
  }
  .mb-pc--205 {
    margin-bottom: 12.8125rem !important;
  }
  .mb-pc--210 {
    margin-bottom: 13.125rem !important;
  }
  .mb-pc--215 {
    margin-bottom: 13.4375rem !important;
  }
  .mb-pc--220 {
    margin-bottom: 13.75rem !important;
  }
  .mb-pc--225 {
    margin-bottom: 14.0625rem !important;
  }
  .mb-pc--230 {
    margin-bottom: 14.375rem !important;
  }
  .mb-pc--235 {
    margin-bottom: 14.6875rem !important;
  }
  .mb-pc--240 {
    margin-bottom: 15rem !important;
  }
  .mb-pc--245 {
    margin-bottom: 15.3125rem !important;
  }
  .mb-pc--250 {
    margin-bottom: 15.625rem !important;
  }
  /* margin x */
  .mx-pc--0 {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .mx-pc--5 {
    margin-right: 0.3125rem !important;
    margin-left: 0.3125rem !important;
  }
  .mx-pc--10 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }
  .mx-pc--15 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }
  .mx-pc--20 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-pc--25 {
    margin-right: 1.5625rem !important;
    margin-left: 1.5625rem !important;
  }
  .mx-pc--30 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }
  .mx-pc--35 {
    margin-right: 2.1875rem !important;
    margin-left: 2.1875rem !important;
  }
  .mx-pc--40 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-pc--45 {
    margin-right: 2.8125rem !important;
    margin-left: 2.8125rem !important;
  }
  .mx-pc--50 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }
  .mx-pc--55 {
    margin-right: 3.4375rem !important;
    margin-left: 3.4375rem !important;
  }
  .mx-pc--60 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-pc--65 {
    margin-right: 4.0625rem !important;
    margin-left: 4.0625rem !important;
  }
  .mx-pc--70 {
    margin-right: 4.375rem !important;
    margin-left: 4.375rem !important;
  }
  .mx-pc--75 {
    margin-right: 4.6875rem !important;
    margin-left: 4.6875rem !important;
  }
  .mx-pc--80 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-pc--85 {
    margin-right: 5.3125rem !important;
    margin-left: 5.3125rem !important;
  }
  .mx-pc--90 {
    margin-right: 5.625rem !important;
    margin-left: 5.625rem !important;
  }
  .mx-pc--95 {
    margin-right: 5.9375rem !important;
    margin-left: 5.9375rem !important;
  }
  .mx-pc--100 {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }
  .mx-pc--105 {
    margin-right: 6.5625rem !important;
    margin-left: 6.5625rem !important;
  }
  .mx-pc--110 {
    margin-right: 6.875rem !important;
    margin-left: 6.875rem !important;
  }
  .mx-pc--115 {
    margin-right: 7.1875rem !important;
    margin-left: 7.1875rem !important;
  }
  .mx-pc--120 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-pc--125 {
    margin-right: 7.8125rem !important;
    margin-left: 7.8125rem !important;
  }
  .mx-pc--130 {
    margin-right: 8.125rem !important;
    margin-left: 8.125rem !important;
  }
  .mx-pc--135 {
    margin-right: 8.4375rem !important;
    margin-left: 8.4375rem !important;
  }
  .mx-pc--140 {
    margin-right: 8.75rem !important;
    margin-left: 8.75rem !important;
  }
  .mx-pc--145 {
    margin-right: 9.0625rem !important;
    margin-left: 9.0625rem !important;
  }
  .mx-pc--150 {
    margin-right: 9.375rem !important;
    margin-left: 9.375rem !important;
  }
  .mx-pc--155 {
    margin-right: 9.6875rem !important;
    margin-left: 9.6875rem !important;
  }
  .mx-pc--160 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-pc--165 {
    margin-right: 10.3125rem !important;
    margin-left: 10.3125rem !important;
  }
  .mx-pc--170 {
    margin-right: 10.625rem !important;
    margin-left: 10.625rem !important;
  }
  .mx-pc--175 {
    margin-right: 10.9375rem !important;
    margin-left: 10.9375rem !important;
  }
  .mx-pc--180 {
    margin-right: 11.25rem !important;
    margin-left: 11.25rem !important;
  }
  .mx-pc--185 {
    margin-right: 11.5625rem !important;
    margin-left: 11.5625rem !important;
  }
  .mx-pc--190 {
    margin-right: 11.875rem !important;
    margin-left: 11.875rem !important;
  }
  .mx-pc--195 {
    margin-right: 12.1875rem !important;
    margin-left: 12.1875rem !important;
  }
  .mx-pc--200 {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }
  .mx-pc--205 {
    margin-right: 12.8125rem !important;
    margin-left: 12.8125rem !important;
  }
  .mx-pc--210 {
    margin-right: 13.125rem !important;
    margin-left: 13.125rem !important;
  }
  .mx-pc--215 {
    margin-right: 13.4375rem !important;
    margin-left: 13.4375rem !important;
  }
  .mx-pc--220 {
    margin-right: 13.75rem !important;
    margin-left: 13.75rem !important;
  }
  .mx-pc--225 {
    margin-right: 14.0625rem !important;
    margin-left: 14.0625rem !important;
  }
  .mx-pc--230 {
    margin-right: 14.375rem !important;
    margin-left: 14.375rem !important;
  }
  .mx-pc--235 {
    margin-right: 14.6875rem !important;
    margin-left: 14.6875rem !important;
  }
  .mx-pc--240 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-pc--245 {
    margin-right: 15.3125rem !important;
    margin-left: 15.3125rem !important;
  }
  .mx-pc--250 {
    margin-right: 15.625rem !important;
    margin-left: 15.625rem !important;
  }
  /* margin y */
  .my-pc--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .my-pc--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
  .my-pc--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
  .my-pc--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
  .my-pc--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-pc--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
  .my-pc--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .my-pc--35 {
    margin-top: 2.1875rem !important;
    margin-bottom: 2.1875rem !important;
  }
  .my-pc--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-pc--45 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
  }
  .my-pc--50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }
  .my-pc--55 {
    margin-top: 3.4375rem !important;
    margin-bottom: 3.4375rem !important;
  }
  .my-pc--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-pc--65 {
    margin-top: 4.0625rem !important;
    margin-bottom: 4.0625rem !important;
  }
  .my-pc--70 {
    margin-top: 4.375rem !important;
    margin-bottom: 4.375rem !important;
  }
  .my-pc--75 {
    margin-top: 4.6875rem !important;
    margin-bottom: 4.6875rem !important;
  }
  .my-pc--80 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-pc--85 {
    margin-top: 5.3125rem !important;
    margin-bottom: 5.3125rem !important;
  }
  .my-pc--90 {
    margin-top: 5.625rem !important;
    margin-bottom: 5.625rem !important;
  }
  .my-pc--95 {
    margin-top: 5.9375rem !important;
    margin-bottom: 5.9375rem !important;
  }
  .my-pc--100 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }
  .my-pc--105 {
    margin-top: 6.5625rem !important;
    margin-bottom: 6.5625rem !important;
  }
  .my-pc--110 {
    margin-top: 6.875rem !important;
    margin-bottom: 6.875rem !important;
  }
  .my-pc--115 {
    margin-top: 7.1875rem !important;
    margin-bottom: 7.1875rem !important;
  }
  .my-pc--120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-pc--125 {
    margin-top: 7.8125rem !important;
    margin-bottom: 7.8125rem !important;
  }
  .my-pc--130 {
    margin-top: 8.125rem !important;
    margin-bottom: 8.125rem !important;
  }
  .my-pc--135 {
    margin-top: 8.4375rem !important;
    margin-bottom: 8.4375rem !important;
  }
  .my-pc--140 {
    margin-top: 8.75rem !important;
    margin-bottom: 8.75rem !important;
  }
  .my-pc--145 {
    margin-top: 9.0625rem !important;
    margin-bottom: 9.0625rem !important;
  }
  .my-pc--150 {
    margin-top: 9.375rem !important;
    margin-bottom: 9.375rem !important;
  }
  .my-pc--155 {
    margin-top: 9.6875rem !important;
    margin-bottom: 9.6875rem !important;
  }
  .my-pc--160 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-pc--165 {
    margin-top: 10.3125rem !important;
    margin-bottom: 10.3125rem !important;
  }
  .my-pc--170 {
    margin-top: 10.625rem !important;
    margin-bottom: 10.625rem !important;
  }
  .my-pc--175 {
    margin-top: 10.9375rem !important;
    margin-bottom: 10.9375rem !important;
  }
  .my-pc--180 {
    margin-top: 11.25rem !important;
    margin-bottom: 11.25rem !important;
  }
  .my-pc--185 {
    margin-top: 11.5625rem !important;
    margin-bottom: 11.5625rem !important;
  }
  .my-pc--190 {
    margin-top: 11.875rem !important;
    margin-bottom: 11.875rem !important;
  }
  .my-pc--195 {
    margin-top: 12.1875rem !important;
    margin-bottom: 12.1875rem !important;
  }
  .my-pc--200 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }
  .my-pc--205 {
    margin-top: 12.8125rem !important;
    margin-bottom: 12.8125rem !important;
  }
  .my-pc--210 {
    margin-top: 13.125rem !important;
    margin-bottom: 13.125rem !important;
  }
  .my-pc--215 {
    margin-top: 13.4375rem !important;
    margin-bottom: 13.4375rem !important;
  }
  .my-pc--220 {
    margin-top: 13.75rem !important;
    margin-bottom: 13.75rem !important;
  }
  .my-pc--225 {
    margin-top: 14.0625rem !important;
    margin-bottom: 14.0625rem !important;
  }
  .my-pc--230 {
    margin-top: 14.375rem !important;
    margin-bottom: 14.375rem !important;
  }
  .my-pc--235 {
    margin-top: 14.6875rem !important;
    margin-bottom: 14.6875rem !important;
  }
  .my-pc--240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-pc--245 {
    margin-top: 15.3125rem !important;
    margin-bottom: 15.3125rem !important;
  }
  .my-pc--250 {
    margin-top: 15.625rem !important;
    margin-bottom: 15.625rem !important;
  }
}

@media (max-width: 600px) {
  /* padding left */
  .pl-sp--0 {
    padding-left: 0rem !important;
  }
  .pl-sp--5 {
    padding-left: 0.3125rem !important;
  }
  .pl-sp--10 {
    padding-left: 0.625rem !important;
  }
  .pl-sp--15 {
    padding-left: 0.9375rem !important;
  }
  .pl-sp--20 {
    padding-left: 1.25rem !important;
  }
  .pl-sp--25 {
    padding-left: 1.5625rem !important;
  }
  .pl-sp--30 {
    padding-left: 1.875rem !important;
  }
  .pl-sp--35 {
    padding-left: 2.1875rem !important;
  }
  .pl-sp--40 {
    padding-left: 2.5rem !important;
  }
  .pl-sp--45 {
    padding-left: 2.8125rem !important;
  }
  .pl-sp--50 {
    padding-left: 3.125rem !important;
  }
  .pl-sp--55 {
    padding-left: 3.4375rem !important;
  }
  .pl-sp--60 {
    padding-left: 3.75rem !important;
  }
  .pl-sp--65 {
    padding-left: 4.0625rem !important;
  }
  .pl-sp--70 {
    padding-left: 4.375rem !important;
  }
  .pl-sp--75 {
    padding-left: 4.6875rem !important;
  }
  .pl-sp--80 {
    padding-left: 5rem !important;
  }
  .pl-sp--85 {
    padding-left: 5.3125rem !important;
  }
  .pl-sp--90 {
    padding-left: 5.625rem !important;
  }
  .pl-sp--95 {
    padding-left: 5.9375rem !important;
  }
  .pl-sp--100 {
    padding-left: 6.25rem !important;
  }
  .pl-sp--105 {
    padding-left: 6.5625rem !important;
  }
  .pl-sp--110 {
    padding-left: 6.875rem !important;
  }
  .pl-sp--115 {
    padding-left: 7.1875rem !important;
  }
  .pl-sp--120 {
    padding-left: 7.5rem !important;
  }
  .pl-sp--125 {
    padding-left: 7.8125rem !important;
  }
  .pl-sp--130 {
    padding-left: 8.125rem !important;
  }
  .pl-sp--135 {
    padding-left: 8.4375rem !important;
  }
  .pl-sp--140 {
    padding-left: 8.75rem !important;
  }
  .pl-sp--145 {
    padding-left: 9.0625rem !important;
  }
  .pl-sp--150 {
    padding-left: 9.375rem !important;
  }
  .pl-sp--155 {
    padding-left: 9.6875rem !important;
  }
  .pl-sp--160 {
    padding-left: 10rem !important;
  }
  .pl-sp--165 {
    padding-left: 10.3125rem !important;
  }
  .pl-sp--170 {
    padding-left: 10.625rem !important;
  }
  .pl-sp--175 {
    padding-left: 10.9375rem !important;
  }
  .pl-sp--180 {
    padding-left: 11.25rem !important;
  }
  .pl-sp--185 {
    padding-left: 11.5625rem !important;
  }
  .pl-sp--190 {
    padding-left: 11.875rem !important;
  }
  .pl-sp--195 {
    padding-left: 12.1875rem !important;
  }
  .pl-sp--200 {
    padding-left: 12.5rem !important;
  }
  .pl-sp--205 {
    padding-left: 12.8125rem !important;
  }
  .pl-sp--210 {
    padding-left: 13.125rem !important;
  }
  .pl-sp--215 {
    padding-left: 13.4375rem !important;
  }
  .pl-sp--220 {
    padding-left: 13.75rem !important;
  }
  .pl-sp--225 {
    padding-left: 14.0625rem !important;
  }
  .pl-sp--230 {
    padding-left: 14.375rem !important;
  }
  .pl-sp--235 {
    padding-left: 14.6875rem !important;
  }
  .pl-sp--240 {
    padding-left: 15rem !important;
  }
  .pl-sp--245 {
    padding-left: 15.3125rem !important;
  }
  .pl-sp--250 {
    padding-left: 15.625rem !important;
  }
  /* padding right */
  .pr-sp--0 {
    padding-right: 0rem !important;
  }
  .pr-sp--5 {
    padding-right: 0.3125rem !important;
  }
  .pr-sp--10 {
    padding-right: 0.625rem !important;
  }
  .pr-sp--15 {
    padding-right: 0.9375rem !important;
  }
  .pr-sp--20 {
    padding-right: 1.25rem !important;
  }
  .pr-sp--25 {
    padding-right: 1.5625rem !important;
  }
  .pr-sp--30 {
    padding-right: 1.875rem !important;
  }
  .pr-sp--35 {
    padding-right: 2.1875rem !important;
  }
  .pr-sp--40 {
    padding-right: 2.5rem !important;
  }
  .pr-sp--45 {
    padding-right: 2.8125rem !important;
  }
  .pr-sp--50 {
    padding-right: 3.125rem !important;
  }
  .pr-sp--55 {
    padding-right: 3.4375rem !important;
  }
  .pr-sp--60 {
    padding-right: 3.75rem !important;
  }
  .pr-sp--65 {
    padding-right: 4.0625rem !important;
  }
  .pr-sp--70 {
    padding-right: 4.375rem !important;
  }
  .pr-sp--75 {
    padding-right: 4.6875rem !important;
  }
  .pr-sp--80 {
    padding-right: 5rem !important;
  }
  .pr-sp--85 {
    padding-right: 5.3125rem !important;
  }
  .pr-sp--90 {
    padding-right: 5.625rem !important;
  }
  .pr-sp--95 {
    padding-right: 5.9375rem !important;
  }
  .pr-sp--100 {
    padding-right: 6.25rem !important;
  }
  .pr-sp--105 {
    padding-right: 6.5625rem !important;
  }
  .pr-sp--110 {
    padding-right: 6.875rem !important;
  }
  .pr-sp--115 {
    padding-right: 7.1875rem !important;
  }
  .pr-sp--120 {
    padding-right: 7.5rem !important;
  }
  .pr-sp--125 {
    padding-right: 7.8125rem !important;
  }
  .pr-sp--130 {
    padding-right: 8.125rem !important;
  }
  .pr-sp--135 {
    padding-right: 8.4375rem !important;
  }
  .pr-sp--140 {
    padding-right: 8.75rem !important;
  }
  .pr-sp--145 {
    padding-right: 9.0625rem !important;
  }
  .pr-sp--150 {
    padding-right: 9.375rem !important;
  }
  .pr-sp--155 {
    padding-right: 9.6875rem !important;
  }
  .pr-sp--160 {
    padding-right: 10rem !important;
  }
  .pr-sp--165 {
    padding-right: 10.3125rem !important;
  }
  .pr-sp--170 {
    padding-right: 10.625rem !important;
  }
  .pr-sp--175 {
    padding-right: 10.9375rem !important;
  }
  .pr-sp--180 {
    padding-right: 11.25rem !important;
  }
  .pr-sp--185 {
    padding-right: 11.5625rem !important;
  }
  .pr-sp--190 {
    padding-right: 11.875rem !important;
  }
  .pr-sp--195 {
    padding-right: 12.1875rem !important;
  }
  .pr-sp--200 {
    padding-right: 12.5rem !important;
  }
  .pr-sp--205 {
    padding-right: 12.8125rem !important;
  }
  .pr-sp--210 {
    padding-right: 13.125rem !important;
  }
  .pr-sp--215 {
    padding-right: 13.4375rem !important;
  }
  .pr-sp--220 {
    padding-right: 13.75rem !important;
  }
  .pr-sp--225 {
    padding-right: 14.0625rem !important;
  }
  .pr-sp--230 {
    padding-right: 14.375rem !important;
  }
  .pr-sp--235 {
    padding-right: 14.6875rem !important;
  }
  .pr-sp--240 {
    padding-right: 15rem !important;
  }
  .pr-sp--245 {
    padding-right: 15.3125rem !important;
  }
  .pr-sp--250 {
    padding-right: 15.625rem !important;
  }
  /* padding top */
  .pt-sp--0 {
    padding-top: 0rem !important;
  }
  .pt-sp--5 {
    padding-top: 0.3125rem !important;
  }
  .pt-sp--10 {
    padding-top: 0.625rem !important;
  }
  .pt-sp--15 {
    padding-top: 0.9375rem !important;
  }
  .pt-sp--20 {
    padding-top: 1.25rem !important;
  }
  .pt-sp--25 {
    padding-top: 1.5625rem !important;
  }
  .pt-sp--30 {
    padding-top: 1.875rem !important;
  }
  .pt-sp--35 {
    padding-top: 2.1875rem !important;
  }
  .pt-sp--40 {
    padding-top: 2.5rem !important;
  }
  .pt-sp--45 {
    padding-top: 2.8125rem !important;
  }
  .pt-sp--50 {
    padding-top: 3.125rem !important;
  }
  .pt-sp--55 {
    padding-top: 3.4375rem !important;
  }
  .pt-sp--60 {
    padding-top: 3.75rem !important;
  }
  .pt-sp--65 {
    padding-top: 4.0625rem !important;
  }
  .pt-sp--70 {
    padding-top: 4.375rem !important;
  }
  .pt-sp--75 {
    padding-top: 4.6875rem !important;
  }
  .pt-sp--80 {
    padding-top: 5rem !important;
  }
  .pt-sp--85 {
    padding-top: 5.3125rem !important;
  }
  .pt-sp--90 {
    padding-top: 5.625rem !important;
  }
  .pt-sp--95 {
    padding-top: 5.9375rem !important;
  }
  .pt-sp--100 {
    padding-top: 6.25rem !important;
  }
  .pt-sp--105 {
    padding-top: 6.5625rem !important;
  }
  .pt-sp--110 {
    padding-top: 6.875rem !important;
  }
  .pt-sp--115 {
    padding-top: 7.1875rem !important;
  }
  .pt-sp--120 {
    padding-top: 7.5rem !important;
  }
  .pt-sp--125 {
    padding-top: 7.8125rem !important;
  }
  .pt-sp--130 {
    padding-top: 8.125rem !important;
  }
  .pt-sp--135 {
    padding-top: 8.4375rem !important;
  }
  .pt-sp--140 {
    padding-top: 8.75rem !important;
  }
  .pt-sp--145 {
    padding-top: 9.0625rem !important;
  }
  .pt-sp--150 {
    padding-top: 9.375rem !important;
  }
  .pt-sp--155 {
    padding-top: 9.6875rem !important;
  }
  .pt-sp--160 {
    padding-top: 10rem !important;
  }
  .pt-sp--165 {
    padding-top: 10.3125rem !important;
  }
  .pt-sp--170 {
    padding-top: 10.625rem !important;
  }
  .pt-sp--175 {
    padding-top: 10.9375rem !important;
  }
  .pt-sp--180 {
    padding-top: 11.25rem !important;
  }
  .pt-sp--185 {
    padding-top: 11.5625rem !important;
  }
  .pt-sp--190 {
    padding-top: 11.875rem !important;
  }
  .pt-sp--195 {
    padding-top: 12.1875rem !important;
  }
  .pt-sp--200 {
    padding-top: 12.5rem !important;
  }
  .pt-sp--205 {
    padding-top: 12.8125rem !important;
  }
  .pt-sp--210 {
    padding-top: 13.125rem !important;
  }
  .pt-sp--215 {
    padding-top: 13.4375rem !important;
  }
  .pt-sp--220 {
    padding-top: 13.75rem !important;
  }
  .pt-sp--225 {
    padding-top: 14.0625rem !important;
  }
  .pt-sp--230 {
    padding-top: 14.375rem !important;
  }
  .pt-sp--235 {
    padding-top: 14.6875rem !important;
  }
  .pt-sp--240 {
    padding-top: 15rem !important;
  }
  .pt-sp--245 {
    padding-top: 15.3125rem !important;
  }
  .pt-sp--250 {
    padding-top: 15.625rem !important;
  }
  /* padding bottom */
  .pb-sp--0 {
    padding-bottom: 0rem !important;
  }
  .pb-sp--5 {
    padding-bottom: 0.3125rem !important;
  }
  .pb-sp--10 {
    padding-bottom: 0.625rem !important;
  }
  .pb-sp--15 {
    padding-bottom: 0.9375rem !important;
  }
  .pb-sp--20 {
    padding-bottom: 1.25rem !important;
  }
  .pb-sp--25 {
    padding-bottom: 1.5625rem !important;
  }
  .pb-sp--30 {
    padding-bottom: 1.875rem !important;
  }
  .pb-sp--35 {
    padding-bottom: 2.1875rem !important;
  }
  .pb-sp--40 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sp--45 {
    padding-bottom: 2.8125rem !important;
  }
  .pb-sp--50 {
    padding-bottom: 3.125rem !important;
  }
  .pb-sp--55 {
    padding-bottom: 3.4375rem !important;
  }
  .pb-sp--60 {
    padding-bottom: 3.75rem !important;
  }
  .pb-sp--65 {
    padding-bottom: 4.0625rem !important;
  }
  .pb-sp--70 {
    padding-bottom: 4.375rem !important;
  }
  .pb-sp--75 {
    padding-bottom: 4.6875rem !important;
  }
  .pb-sp--80 {
    padding-bottom: 5rem !important;
  }
  .pb-sp--85 {
    padding-bottom: 5.3125rem !important;
  }
  .pb-sp--90 {
    padding-bottom: 5.625rem !important;
  }
  .pb-sp--95 {
    padding-bottom: 5.9375rem !important;
  }
  .pb-sp--100 {
    padding-bottom: 6.25rem !important;
  }
  .pb-sp--105 {
    padding-bottom: 6.5625rem !important;
  }
  .pb-sp--110 {
    padding-bottom: 6.875rem !important;
  }
  .pb-sp--115 {
    padding-bottom: 7.1875rem !important;
  }
  .pb-sp--120 {
    padding-bottom: 7.5rem !important;
  }
  .pb-sp--125 {
    padding-bottom: 7.8125rem !important;
  }
  .pb-sp--130 {
    padding-bottom: 8.125rem !important;
  }
  .pb-sp--135 {
    padding-bottom: 8.4375rem !important;
  }
  .pb-sp--140 {
    padding-bottom: 8.75rem !important;
  }
  .pb-sp--145 {
    padding-bottom: 9.0625rem !important;
  }
  .pb-sp--150 {
    padding-bottom: 9.375rem !important;
  }
  .pb-sp--155 {
    padding-bottom: 9.6875rem !important;
  }
  .pb-sp--160 {
    padding-bottom: 10rem !important;
  }
  .pb-sp--165 {
    padding-bottom: 10.3125rem !important;
  }
  .pb-sp--170 {
    padding-bottom: 10.625rem !important;
  }
  .pb-sp--175 {
    padding-bottom: 10.9375rem !important;
  }
  .pb-sp--180 {
    padding-bottom: 11.25rem !important;
  }
  .pb-sp--185 {
    padding-bottom: 11.5625rem !important;
  }
  .pb-sp--190 {
    padding-bottom: 11.875rem !important;
  }
  .pb-sp--195 {
    padding-bottom: 12.1875rem !important;
  }
  .pb-sp--200 {
    padding-bottom: 12.5rem !important;
  }
  .pb-sp--205 {
    padding-bottom: 12.8125rem !important;
  }
  .pb-sp--210 {
    padding-bottom: 13.125rem !important;
  }
  .pb-sp--215 {
    padding-bottom: 13.4375rem !important;
  }
  .pb-sp--220 {
    padding-bottom: 13.75rem !important;
  }
  .pb-sp--225 {
    padding-bottom: 14.0625rem !important;
  }
  .pb-sp--230 {
    padding-bottom: 14.375rem !important;
  }
  .pb-sp--235 {
    padding-bottom: 14.6875rem !important;
  }
  .pb-sp--240 {
    padding-bottom: 15rem !important;
  }
  .pb-sp--245 {
    padding-bottom: 15.3125rem !important;
  }
  .pb-sp--250 {
    padding-bottom: 15.625rem !important;
  }
  /* padding x */
  .px-sp--0 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .px-sp--5 {
    padding-right: 0.3125rem !important;
    padding-left: 0.3125rem !important;
  }
  .px-sp--10 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }
  .px-sp--15 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }
  .px-sp--20 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-sp--25 {
    padding-right: 1.5625rem !important;
    padding-left: 1.5625rem !important;
  }
  .px-sp--30 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }
  .px-sp--35 {
    padding-right: 2.1875rem !important;
    padding-left: 2.1875rem !important;
  }
  .px-sp--40 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sp--45 {
    padding-right: 2.8125rem !important;
    padding-left: 2.8125rem !important;
  }
  .px-sp--50 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }
  .px-sp--55 {
    padding-right: 3.4375rem !important;
    padding-left: 3.4375rem !important;
  }
  .px-sp--60 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-sp--65 {
    padding-right: 4.0625rem !important;
    padding-left: 4.0625rem !important;
  }
  .px-sp--70 {
    padding-right: 4.375rem !important;
    padding-left: 4.375rem !important;
  }
  .px-sp--75 {
    padding-right: 4.6875rem !important;
    padding-left: 4.6875rem !important;
  }
  .px-sp--80 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sp--85 {
    padding-right: 5.3125rem !important;
    padding-left: 5.3125rem !important;
  }
  .px-sp--90 {
    padding-right: 5.625rem !important;
    padding-left: 5.625rem !important;
  }
  .px-sp--95 {
    padding-right: 5.9375rem !important;
    padding-left: 5.9375rem !important;
  }
  .px-sp--100 {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }
  .px-sp--105 {
    padding-right: 6.5625rem !important;
    padding-left: 6.5625rem !important;
  }
  .px-sp--110 {
    padding-right: 6.875rem !important;
    padding-left: 6.875rem !important;
  }
  .px-sp--115 {
    padding-right: 7.1875rem !important;
    padding-left: 7.1875rem !important;
  }
  .px-sp--120 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-sp--125 {
    padding-right: 7.8125rem !important;
    padding-left: 7.8125rem !important;
  }
  .px-sp--130 {
    padding-right: 8.125rem !important;
    padding-left: 8.125rem !important;
  }
  .px-sp--135 {
    padding-right: 8.4375rem !important;
    padding-left: 8.4375rem !important;
  }
  .px-sp--140 {
    padding-right: 8.75rem !important;
    padding-left: 8.75rem !important;
  }
  .px-sp--145 {
    padding-right: 9.0625rem !important;
    padding-left: 9.0625rem !important;
  }
  .px-sp--150 {
    padding-right: 9.375rem !important;
    padding-left: 9.375rem !important;
  }
  .px-sp--155 {
    padding-right: 9.6875rem !important;
    padding-left: 9.6875rem !important;
  }
  .px-sp--160 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-sp--165 {
    padding-right: 10.3125rem !important;
    padding-left: 10.3125rem !important;
  }
  .px-sp--170 {
    padding-right: 10.625rem !important;
    padding-left: 10.625rem !important;
  }
  .px-sp--175 {
    padding-right: 10.9375rem !important;
    padding-left: 10.9375rem !important;
  }
  .px-sp--180 {
    padding-right: 11.25rem !important;
    padding-left: 11.25rem !important;
  }
  .px-sp--185 {
    padding-right: 11.5625rem !important;
    padding-left: 11.5625rem !important;
  }
  .px-sp--190 {
    padding-right: 11.875rem !important;
    padding-left: 11.875rem !important;
  }
  .px-sp--195 {
    padding-right: 12.1875rem !important;
    padding-left: 12.1875rem !important;
  }
  .px-sp--200 {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }
  .px-sp--205 {
    padding-right: 12.8125rem !important;
    padding-left: 12.8125rem !important;
  }
  .px-sp--210 {
    padding-right: 13.125rem !important;
    padding-left: 13.125rem !important;
  }
  .px-sp--215 {
    padding-right: 13.4375rem !important;
    padding-left: 13.4375rem !important;
  }
  .px-sp--220 {
    padding-right: 13.75rem !important;
    padding-left: 13.75rem !important;
  }
  .px-sp--225 {
    padding-right: 14.0625rem !important;
    padding-left: 14.0625rem !important;
  }
  .px-sp--230 {
    padding-right: 14.375rem !important;
    padding-left: 14.375rem !important;
  }
  .px-sp--235 {
    padding-right: 14.6875rem !important;
    padding-left: 14.6875rem !important;
  }
  .px-sp--240 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-sp--245 {
    padding-right: 15.3125rem !important;
    padding-left: 15.3125rem !important;
  }
  .px-sp--250 {
    padding-right: 15.625rem !important;
    padding-left: 15.625rem !important;
  }
  /* padding y */
  .py-sp--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-sp--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
  .py-sp--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
  .py-sp--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
  .py-sp--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-sp--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
  .py-sp--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
  .py-sp--35 {
    padding-top: 2.1875rem !important;
    padding-bottom: 2.1875rem !important;
  }
  .py-sp--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sp--45 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
  }
  .py-sp--50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }
  .py-sp--55 {
    padding-top: 3.4375rem !important;
    padding-bottom: 3.4375rem !important;
  }
  .py-sp--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-sp--65 {
    padding-top: 4.0625rem !important;
    padding-bottom: 4.0625rem !important;
  }
  .py-sp--70 {
    padding-top: 4.375rem !important;
    padding-bottom: 4.375rem !important;
  }
  .py-sp--75 {
    padding-top: 4.6875rem !important;
    padding-bottom: 4.6875rem !important;
  }
  .py-sp--80 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sp--85 {
    padding-top: 5.3125rem !important;
    padding-bottom: 5.3125rem !important;
  }
  .py-sp--90 {
    padding-top: 5.625rem !important;
    padding-bottom: 5.625rem !important;
  }
  .py-sp--95 {
    padding-top: 5.9375rem !important;
    padding-bottom: 5.9375rem !important;
  }
  .py-sp--100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
  .py-sp--105 {
    padding-top: 6.5625rem !important;
    padding-bottom: 6.5625rem !important;
  }
  .py-sp--110 {
    padding-top: 6.875rem !important;
    padding-bottom: 6.875rem !important;
  }
  .py-sp--115 {
    padding-top: 7.1875rem !important;
    padding-bottom: 7.1875rem !important;
  }
  .py-sp--120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-sp--125 {
    padding-top: 7.8125rem !important;
    padding-bottom: 7.8125rem !important;
  }
  .py-sp--130 {
    padding-top: 8.125rem !important;
    padding-bottom: 8.125rem !important;
  }
  .py-sp--135 {
    padding-top: 8.4375rem !important;
    padding-bottom: 8.4375rem !important;
  }
  .py-sp--140 {
    padding-top: 8.75rem !important;
    padding-bottom: 8.75rem !important;
  }
  .py-sp--145 {
    padding-top: 9.0625rem !important;
    padding-bottom: 9.0625rem !important;
  }
  .py-sp--150 {
    padding-top: 9.375rem !important;
    padding-bottom: 9.375rem !important;
  }
  .py-sp--155 {
    padding-top: 9.6875rem !important;
    padding-bottom: 9.6875rem !important;
  }
  .py-sp--160 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-sp--165 {
    padding-top: 10.3125rem !important;
    padding-bottom: 10.3125rem !important;
  }
  .py-sp--170 {
    padding-top: 10.625rem !important;
    padding-bottom: 10.625rem !important;
  }
  .py-sp--175 {
    padding-top: 10.9375rem !important;
    padding-bottom: 10.9375rem !important;
  }
  .py-sp--180 {
    padding-top: 11.25rem !important;
    padding-bottom: 11.25rem !important;
  }
  .py-sp--185 {
    padding-top: 11.5625rem !important;
    padding-bottom: 11.5625rem !important;
  }
  .py-sp--190 {
    padding-top: 11.875rem !important;
    padding-bottom: 11.875rem !important;
  }
  .py-sp--195 {
    padding-top: 12.1875rem !important;
    padding-bottom: 12.1875rem !important;
  }
  .py-sp--200 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }
  .py-sp--205 {
    padding-top: 12.8125rem !important;
    padding-bottom: 12.8125rem !important;
  }
  .py-sp--210 {
    padding-top: 13.125rem !important;
    padding-bottom: 13.125rem !important;
  }
  .py-sp--215 {
    padding-top: 13.4375rem !important;
    padding-bottom: 13.4375rem !important;
  }
  .py-sp--220 {
    padding-top: 13.75rem !important;
    padding-bottom: 13.75rem !important;
  }
  .py-sp--225 {
    padding-top: 14.0625rem !important;
    padding-bottom: 14.0625rem !important;
  }
  .py-sp--230 {
    padding-top: 14.375rem !important;
    padding-bottom: 14.375rem !important;
  }
  .py-sp--235 {
    padding-top: 14.6875rem !important;
    padding-bottom: 14.6875rem !important;
  }
  .py-sp--240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-sp--245 {
    padding-top: 15.3125rem !important;
    padding-bottom: 15.3125rem !important;
  }
  .py-sp--250 {
    padding-top: 15.625rem !important;
    padding-bottom: 15.625rem !important;
  }
  /* margin left */
  .ml-sp--0 {
    margin-left: 0rem !important;
  }
  .ml-sp--5 {
    margin-left: 0.3125rem !important;
  }
  .ml-sp--10 {
    margin-left: 0.625rem !important;
  }
  .ml-sp--15 {
    margin-left: 0.9375rem !important;
  }
  .ml-sp--20 {
    margin-left: 1.25rem !important;
  }
  .ml-sp--25 {
    margin-left: 1.5625rem !important;
  }
  .ml-sp--30 {
    margin-left: 1.875rem !important;
  }
  .ml-sp--35 {
    margin-left: 2.1875rem !important;
  }
  .ml-sp--40 {
    margin-left: 2.5rem !important;
  }
  .ml-sp--45 {
    margin-left: 2.8125rem !important;
  }
  .ml-sp--50 {
    margin-left: 3.125rem !important;
  }
  .ml-sp--55 {
    margin-left: 3.4375rem !important;
  }
  .ml-sp--60 {
    margin-left: 3.75rem !important;
  }
  .ml-sp--65 {
    margin-left: 4.0625rem !important;
  }
  .ml-sp--70 {
    margin-left: 4.375rem !important;
  }
  .ml-sp--75 {
    margin-left: 4.6875rem !important;
  }
  .ml-sp--80 {
    margin-left: 5rem !important;
  }
  .ml-sp--85 {
    margin-left: 5.3125rem !important;
  }
  .ml-sp--90 {
    margin-left: 5.625rem !important;
  }
  .ml-sp--95 {
    margin-left: 5.9375rem !important;
  }
  .ml-sp--100 {
    margin-left: 6.25rem !important;
  }
  .ml-sp--105 {
    margin-left: 6.5625rem !important;
  }
  .ml-sp--110 {
    margin-left: 6.875rem !important;
  }
  .ml-sp--115 {
    margin-left: 7.1875rem !important;
  }
  .ml-sp--120 {
    margin-left: 7.5rem !important;
  }
  .ml-sp--125 {
    margin-left: 7.8125rem !important;
  }
  .ml-sp--130 {
    margin-left: 8.125rem !important;
  }
  .ml-sp--135 {
    margin-left: 8.4375rem !important;
  }
  .ml-sp--140 {
    margin-left: 8.75rem !important;
  }
  .ml-sp--145 {
    margin-left: 9.0625rem !important;
  }
  .ml-sp--150 {
    margin-left: 9.375rem !important;
  }
  .ml-sp--155 {
    margin-left: 9.6875rem !important;
  }
  .ml-sp--160 {
    margin-left: 10rem !important;
  }
  .ml-sp--165 {
    margin-left: 10.3125rem !important;
  }
  .ml-sp--170 {
    margin-left: 10.625rem !important;
  }
  .ml-sp--175 {
    margin-left: 10.9375rem !important;
  }
  .ml-sp--180 {
    margin-left: 11.25rem !important;
  }
  .ml-sp--185 {
    margin-left: 11.5625rem !important;
  }
  .ml-sp--190 {
    margin-left: 11.875rem !important;
  }
  .ml-sp--195 {
    margin-left: 12.1875rem !important;
  }
  .ml-sp--200 {
    margin-left: 12.5rem !important;
  }
  .ml-sp--205 {
    margin-left: 12.8125rem !important;
  }
  .ml-sp--210 {
    margin-left: 13.125rem !important;
  }
  .ml-sp--215 {
    margin-left: 13.4375rem !important;
  }
  .ml-sp--220 {
    margin-left: 13.75rem !important;
  }
  .ml-sp--225 {
    margin-left: 14.0625rem !important;
  }
  .ml-sp--230 {
    margin-left: 14.375rem !important;
  }
  .ml-sp--235 {
    margin-left: 14.6875rem !important;
  }
  .ml-sp--240 {
    margin-left: 15rem !important;
  }
  .ml-sp--245 {
    margin-left: 15.3125rem !important;
  }
  .ml-sp--250 {
    margin-left: 15.625rem !important;
  }
  /* margin right */
  .mr-sp--0 {
    margin-right: 0rem !important;
  }
  .mr-sp--5 {
    margin-right: 0.3125rem !important;
  }
  .mr-sp--10 {
    margin-right: 0.625rem !important;
  }
  .mr-sp--15 {
    margin-right: 0.9375rem !important;
  }
  .mr-sp--20 {
    margin-right: 1.25rem !important;
  }
  .mr-sp--25 {
    margin-right: 1.5625rem !important;
  }
  .mr-sp--30 {
    margin-right: 1.875rem !important;
  }
  .mr-sp--35 {
    margin-right: 2.1875rem !important;
  }
  .mr-sp--40 {
    margin-right: 2.5rem !important;
  }
  .mr-sp--45 {
    margin-right: 2.8125rem !important;
  }
  .mr-sp--50 {
    margin-right: 3.125rem !important;
  }
  .mr-sp--55 {
    margin-right: 3.4375rem !important;
  }
  .mr-sp--60 {
    margin-right: 3.75rem !important;
  }
  .mr-sp--65 {
    margin-right: 4.0625rem !important;
  }
  .mr-sp--70 {
    margin-right: 4.375rem !important;
  }
  .mr-sp--75 {
    margin-right: 4.6875rem !important;
  }
  .mr-sp--80 {
    margin-right: 5rem !important;
  }
  .mr-sp--85 {
    margin-right: 5.3125rem !important;
  }
  .mr-sp--90 {
    margin-right: 5.625rem !important;
  }
  .mr-sp--95 {
    margin-right: 5.9375rem !important;
  }
  .mr-sp--100 {
    margin-right: 6.25rem !important;
  }
  .mr-sp--105 {
    margin-right: 6.5625rem !important;
  }
  .mr-sp--110 {
    margin-right: 6.875rem !important;
  }
  .mr-sp--115 {
    margin-right: 7.1875rem !important;
  }
  .mr-sp--120 {
    margin-right: 7.5rem !important;
  }
  .mr-sp--125 {
    margin-right: 7.8125rem !important;
  }
  .mr-sp--130 {
    margin-right: 8.125rem !important;
  }
  .mr-sp--135 {
    margin-right: 8.4375rem !important;
  }
  .mr-sp--140 {
    margin-right: 8.75rem !important;
  }
  .mr-sp--145 {
    margin-right: 9.0625rem !important;
  }
  .mr-sp--150 {
    margin-right: 9.375rem !important;
  }
  .mr-sp--155 {
    margin-right: 9.6875rem !important;
  }
  .mr-sp--160 {
    margin-right: 10rem !important;
  }
  .mr-sp--165 {
    margin-right: 10.3125rem !important;
  }
  .mr-sp--170 {
    margin-right: 10.625rem !important;
  }
  .mr-sp--175 {
    margin-right: 10.9375rem !important;
  }
  .mr-sp--180 {
    margin-right: 11.25rem !important;
  }
  .mr-sp--185 {
    margin-right: 11.5625rem !important;
  }
  .mr-sp--190 {
    margin-right: 11.875rem !important;
  }
  .mr-sp--195 {
    margin-right: 12.1875rem !important;
  }
  .mr-sp--200 {
    margin-right: 12.5rem !important;
  }
  .mr-sp--205 {
    margin-right: 12.8125rem !important;
  }
  .mr-sp--210 {
    margin-right: 13.125rem !important;
  }
  .mr-sp--215 {
    margin-right: 13.4375rem !important;
  }
  .mr-sp--220 {
    margin-right: 13.75rem !important;
  }
  .mr-sp--225 {
    margin-right: 14.0625rem !important;
  }
  .mr-sp--230 {
    margin-right: 14.375rem !important;
  }
  .mr-sp--235 {
    margin-right: 14.6875rem !important;
  }
  .mr-sp--240 {
    margin-right: 15rem !important;
  }
  .mr-sp--245 {
    margin-right: 15.3125rem !important;
  }
  .mr-sp--250 {
    margin-right: 15.625rem !important;
  }
  /* margin top */
  .mt-sp--0 {
    margin-top: 0rem !important;
  }
  .mt-sp--5 {
    margin-top: 0.3125rem !important;
  }
  .mt-sp--10 {
    margin-top: 0.625rem !important;
  }
  .mt-sp--15 {
    margin-top: 0.9375rem !important;
  }
  .mt-sp--20 {
    margin-top: 1.25rem !important;
  }
  .mt-sp--25 {
    margin-top: 1.5625rem !important;
  }
  .mt-sp--30 {
    margin-top: 1.875rem !important;
  }
  .mt-sp--35 {
    margin-top: 2.1875rem !important;
  }
  .mt-sp--40 {
    margin-top: 2.5rem !important;
  }
  .mt-sp--45 {
    margin-top: 2.8125rem !important;
  }
  .mt-sp--50 {
    margin-top: 3.125rem !important;
  }
  .mt-sp--55 {
    margin-top: 3.4375rem !important;
  }
  .mt-sp--60 {
    margin-top: 3.75rem !important;
  }
  .mt-sp--65 {
    margin-top: 4.0625rem !important;
  }
  .mt-sp--70 {
    margin-top: 4.375rem !important;
  }
  .mt-sp--75 {
    margin-top: 4.6875rem !important;
  }
  .mt-sp--80 {
    margin-top: 5rem !important;
  }
  .mt-sp--85 {
    margin-top: 5.3125rem !important;
  }
  .mt-sp--90 {
    margin-top: 5.625rem !important;
  }
  .mt-sp--95 {
    margin-top: 5.9375rem !important;
  }
  .mt-sp--100 {
    margin-top: 6.25rem !important;
  }
  .mt-sp--105 {
    margin-top: 6.5625rem !important;
  }
  .mt-sp--110 {
    margin-top: 6.875rem !important;
  }
  .mt-sp--115 {
    margin-top: 7.1875rem !important;
  }
  .mt-sp--120 {
    margin-top: 7.5rem !important;
  }
  .mt-sp--125 {
    margin-top: 7.8125rem !important;
  }
  .mt-sp--130 {
    margin-top: 8.125rem !important;
  }
  .mt-sp--135 {
    margin-top: 8.4375rem !important;
  }
  .mt-sp--140 {
    margin-top: 8.75rem !important;
  }
  .mt-sp--145 {
    margin-top: 9.0625rem !important;
  }
  .mt-sp--150 {
    margin-top: 9.375rem !important;
  }
  .mt-sp--155 {
    margin-top: 9.6875rem !important;
  }
  .mt-sp--160 {
    margin-top: 10rem !important;
  }
  .mt-sp--165 {
    margin-top: 10.3125rem !important;
  }
  .mt-sp--170 {
    margin-top: 10.625rem !important;
  }
  .mt-sp--175 {
    margin-top: 10.9375rem !important;
  }
  .mt-sp--180 {
    margin-top: 11.25rem !important;
  }
  .mt-sp--185 {
    margin-top: 11.5625rem !important;
  }
  .mt-sp--190 {
    margin-top: 11.875rem !important;
  }
  .mt-sp--195 {
    margin-top: 12.1875rem !important;
  }
  .mt-sp--200 {
    margin-top: 12.5rem !important;
  }
  .mt-sp--205 {
    margin-top: 12.8125rem !important;
  }
  .mt-sp--210 {
    margin-top: 13.125rem !important;
  }
  .mt-sp--215 {
    margin-top: 13.4375rem !important;
  }
  .mt-sp--220 {
    margin-top: 13.75rem !important;
  }
  .mt-sp--225 {
    margin-top: 14.0625rem !important;
  }
  .mt-sp--230 {
    margin-top: 14.375rem !important;
  }
  .mt-sp--235 {
    margin-top: 14.6875rem !important;
  }
  .mt-sp--240 {
    margin-top: 15rem !important;
  }
  .mt-sp--245 {
    margin-top: 15.3125rem !important;
  }
  .mt-sp--250 {
    margin-top: 15.625rem !important;
  }
  /* margin bottom */
  .mb-sp--0 {
    margin-bottom: 0rem !important;
  }
  .mb-sp--5 {
    margin-bottom: 0.3125rem !important;
  }
  .mb-sp--10 {
    margin-bottom: 0.625rem !important;
  }
  .mb-sp--15 {
    margin-bottom: 0.9375rem !important;
  }
  .mb-sp--20 {
    margin-bottom: 1.25rem !important;
  }
  .mb-sp--25 {
    margin-bottom: 1.5625rem !important;
  }
  .mb-sp--30 {
    margin-bottom: 1.875rem !important;
  }
  .mb-sp--35 {
    margin-bottom: 2.1875rem !important;
  }
  .mb-sp--40 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sp--45 {
    margin-bottom: 2.8125rem !important;
  }
  .mb-sp--50 {
    margin-bottom: 3.125rem !important;
  }
  .mb-sp--55 {
    margin-bottom: 3.4375rem !important;
  }
  .mb-sp--60 {
    margin-bottom: 3.75rem !important;
  }
  .mb-sp--65 {
    margin-bottom: 4.0625rem !important;
  }
  .mb-sp--70 {
    margin-bottom: 4.375rem !important;
  }
  .mb-sp--75 {
    margin-bottom: 4.6875rem !important;
  }
  .mb-sp--80 {
    margin-bottom: 5rem !important;
  }
  .mb-sp--85 {
    margin-bottom: 5.3125rem !important;
  }
  .mb-sp--90 {
    margin-bottom: 5.625rem !important;
  }
  .mb-sp--95 {
    margin-bottom: 5.9375rem !important;
  }
  .mb-sp--100 {
    margin-bottom: 6.25rem !important;
  }
  .mb-sp--105 {
    margin-bottom: 6.5625rem !important;
  }
  .mb-sp--110 {
    margin-bottom: 6.875rem !important;
  }
  .mb-sp--115 {
    margin-bottom: 7.1875rem !important;
  }
  .mb-sp--120 {
    margin-bottom: 7.5rem !important;
  }
  .mb-sp--125 {
    margin-bottom: 7.8125rem !important;
  }
  .mb-sp--130 {
    margin-bottom: 8.125rem !important;
  }
  .mb-sp--135 {
    margin-bottom: 8.4375rem !important;
  }
  .mb-sp--140 {
    margin-bottom: 8.75rem !important;
  }
  .mb-sp--145 {
    margin-bottom: 9.0625rem !important;
  }
  .mb-sp--150 {
    margin-bottom: 9.375rem !important;
  }
  .mb-sp--155 {
    margin-bottom: 9.6875rem !important;
  }
  .mb-sp--160 {
    margin-bottom: 10rem !important;
  }
  .mb-sp--165 {
    margin-bottom: 10.3125rem !important;
  }
  .mb-sp--170 {
    margin-bottom: 10.625rem !important;
  }
  .mb-sp--175 {
    margin-bottom: 10.9375rem !important;
  }
  .mb-sp--180 {
    margin-bottom: 11.25rem !important;
  }
  .mb-sp--185 {
    margin-bottom: 11.5625rem !important;
  }
  .mb-sp--190 {
    margin-bottom: 11.875rem !important;
  }
  .mb-sp--195 {
    margin-bottom: 12.1875rem !important;
  }
  .mb-sp--200 {
    margin-bottom: 12.5rem !important;
  }
  .mb-sp--205 {
    margin-bottom: 12.8125rem !important;
  }
  .mb-sp--210 {
    margin-bottom: 13.125rem !important;
  }
  .mb-sp--215 {
    margin-bottom: 13.4375rem !important;
  }
  .mb-sp--220 {
    margin-bottom: 13.75rem !important;
  }
  .mb-sp--225 {
    margin-bottom: 14.0625rem !important;
  }
  .mb-sp--230 {
    margin-bottom: 14.375rem !important;
  }
  .mb-sp--235 {
    margin-bottom: 14.6875rem !important;
  }
  .mb-sp--240 {
    margin-bottom: 15rem !important;
  }
  .mb-sp--245 {
    margin-bottom: 15.3125rem !important;
  }
  .mb-sp--250 {
    margin-bottom: 15.625rem !important;
  }
  /* margin x */
  .mx-sp--0 {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .mx-sp--5 {
    margin-right: 0.3125rem !important;
    margin-left: 0.3125rem !important;
  }
  .mx-sp--10 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }
  .mx-sp--15 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }
  .mx-sp--20 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-sp--25 {
    margin-right: 1.5625rem !important;
    margin-left: 1.5625rem !important;
  }
  .mx-sp--30 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }
  .mx-sp--35 {
    margin-right: 2.1875rem !important;
    margin-left: 2.1875rem !important;
  }
  .mx-sp--40 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sp--45 {
    margin-right: 2.8125rem !important;
    margin-left: 2.8125rem !important;
  }
  .mx-sp--50 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }
  .mx-sp--55 {
    margin-right: 3.4375rem !important;
    margin-left: 3.4375rem !important;
  }
  .mx-sp--60 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-sp--65 {
    margin-right: 4.0625rem !important;
    margin-left: 4.0625rem !important;
  }
  .mx-sp--70 {
    margin-right: 4.375rem !important;
    margin-left: 4.375rem !important;
  }
  .mx-sp--75 {
    margin-right: 4.6875rem !important;
    margin-left: 4.6875rem !important;
  }
  .mx-sp--80 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sp--85 {
    margin-right: 5.3125rem !important;
    margin-left: 5.3125rem !important;
  }
  .mx-sp--90 {
    margin-right: 5.625rem !important;
    margin-left: 5.625rem !important;
  }
  .mx-sp--95 {
    margin-right: 5.9375rem !important;
    margin-left: 5.9375rem !important;
  }
  .mx-sp--100 {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }
  .mx-sp--105 {
    margin-right: 6.5625rem !important;
    margin-left: 6.5625rem !important;
  }
  .mx-sp--110 {
    margin-right: 6.875rem !important;
    margin-left: 6.875rem !important;
  }
  .mx-sp--115 {
    margin-right: 7.1875rem !important;
    margin-left: 7.1875rem !important;
  }
  .mx-sp--120 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-sp--125 {
    margin-right: 7.8125rem !important;
    margin-left: 7.8125rem !important;
  }
  .mx-sp--130 {
    margin-right: 8.125rem !important;
    margin-left: 8.125rem !important;
  }
  .mx-sp--135 {
    margin-right: 8.4375rem !important;
    margin-left: 8.4375rem !important;
  }
  .mx-sp--140 {
    margin-right: 8.75rem !important;
    margin-left: 8.75rem !important;
  }
  .mx-sp--145 {
    margin-right: 9.0625rem !important;
    margin-left: 9.0625rem !important;
  }
  .mx-sp--150 {
    margin-right: 9.375rem !important;
    margin-left: 9.375rem !important;
  }
  .mx-sp--155 {
    margin-right: 9.6875rem !important;
    margin-left: 9.6875rem !important;
  }
  .mx-sp--160 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-sp--165 {
    margin-right: 10.3125rem !important;
    margin-left: 10.3125rem !important;
  }
  .mx-sp--170 {
    margin-right: 10.625rem !important;
    margin-left: 10.625rem !important;
  }
  .mx-sp--175 {
    margin-right: 10.9375rem !important;
    margin-left: 10.9375rem !important;
  }
  .mx-sp--180 {
    margin-right: 11.25rem !important;
    margin-left: 11.25rem !important;
  }
  .mx-sp--185 {
    margin-right: 11.5625rem !important;
    margin-left: 11.5625rem !important;
  }
  .mx-sp--190 {
    margin-right: 11.875rem !important;
    margin-left: 11.875rem !important;
  }
  .mx-sp--195 {
    margin-right: 12.1875rem !important;
    margin-left: 12.1875rem !important;
  }
  .mx-sp--200 {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }
  .mx-sp--205 {
    margin-right: 12.8125rem !important;
    margin-left: 12.8125rem !important;
  }
  .mx-sp--210 {
    margin-right: 13.125rem !important;
    margin-left: 13.125rem !important;
  }
  .mx-sp--215 {
    margin-right: 13.4375rem !important;
    margin-left: 13.4375rem !important;
  }
  .mx-sp--220 {
    margin-right: 13.75rem !important;
    margin-left: 13.75rem !important;
  }
  .mx-sp--225 {
    margin-right: 14.0625rem !important;
    margin-left: 14.0625rem !important;
  }
  .mx-sp--230 {
    margin-right: 14.375rem !important;
    margin-left: 14.375rem !important;
  }
  .mx-sp--235 {
    margin-right: 14.6875rem !important;
    margin-left: 14.6875rem !important;
  }
  .mx-sp--240 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-sp--245 {
    margin-right: 15.3125rem !important;
    margin-left: 15.3125rem !important;
  }
  .mx-sp--250 {
    margin-right: 15.625rem !important;
    margin-left: 15.625rem !important;
  }
  /* margin y */
  .my-sp--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .my-sp--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
  .my-sp--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
  .my-sp--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
  .my-sp--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-sp--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
  .my-sp--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .my-sp--35 {
    margin-top: 2.1875rem !important;
    margin-bottom: 2.1875rem !important;
  }
  .my-sp--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sp--45 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
  }
  .my-sp--50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }
  .my-sp--55 {
    margin-top: 3.4375rem !important;
    margin-bottom: 3.4375rem !important;
  }
  .my-sp--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-sp--65 {
    margin-top: 4.0625rem !important;
    margin-bottom: 4.0625rem !important;
  }
  .my-sp--70 {
    margin-top: 4.375rem !important;
    margin-bottom: 4.375rem !important;
  }
  .my-sp--75 {
    margin-top: 4.6875rem !important;
    margin-bottom: 4.6875rem !important;
  }
  .my-sp--80 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sp--85 {
    margin-top: 5.3125rem !important;
    margin-bottom: 5.3125rem !important;
  }
  .my-sp--90 {
    margin-top: 5.625rem !important;
    margin-bottom: 5.625rem !important;
  }
  .my-sp--95 {
    margin-top: 5.9375rem !important;
    margin-bottom: 5.9375rem !important;
  }
  .my-sp--100 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }
  .my-sp--105 {
    margin-top: 6.5625rem !important;
    margin-bottom: 6.5625rem !important;
  }
  .my-sp--110 {
    margin-top: 6.875rem !important;
    margin-bottom: 6.875rem !important;
  }
  .my-sp--115 {
    margin-top: 7.1875rem !important;
    margin-bottom: 7.1875rem !important;
  }
  .my-sp--120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-sp--125 {
    margin-top: 7.8125rem !important;
    margin-bottom: 7.8125rem !important;
  }
  .my-sp--130 {
    margin-top: 8.125rem !important;
    margin-bottom: 8.125rem !important;
  }
  .my-sp--135 {
    margin-top: 8.4375rem !important;
    margin-bottom: 8.4375rem !important;
  }
  .my-sp--140 {
    margin-top: 8.75rem !important;
    margin-bottom: 8.75rem !important;
  }
  .my-sp--145 {
    margin-top: 9.0625rem !important;
    margin-bottom: 9.0625rem !important;
  }
  .my-sp--150 {
    margin-top: 9.375rem !important;
    margin-bottom: 9.375rem !important;
  }
  .my-sp--155 {
    margin-top: 9.6875rem !important;
    margin-bottom: 9.6875rem !important;
  }
  .my-sp--160 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-sp--165 {
    margin-top: 10.3125rem !important;
    margin-bottom: 10.3125rem !important;
  }
  .my-sp--170 {
    margin-top: 10.625rem !important;
    margin-bottom: 10.625rem !important;
  }
  .my-sp--175 {
    margin-top: 10.9375rem !important;
    margin-bottom: 10.9375rem !important;
  }
  .my-sp--180 {
    margin-top: 11.25rem !important;
    margin-bottom: 11.25rem !important;
  }
  .my-sp--185 {
    margin-top: 11.5625rem !important;
    margin-bottom: 11.5625rem !important;
  }
  .my-sp--190 {
    margin-top: 11.875rem !important;
    margin-bottom: 11.875rem !important;
  }
  .my-sp--195 {
    margin-top: 12.1875rem !important;
    margin-bottom: 12.1875rem !important;
  }
  .my-sp--200 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }
  .my-sp--205 {
    margin-top: 12.8125rem !important;
    margin-bottom: 12.8125rem !important;
  }
  .my-sp--210 {
    margin-top: 13.125rem !important;
    margin-bottom: 13.125rem !important;
  }
  .my-sp--215 {
    margin-top: 13.4375rem !important;
    margin-bottom: 13.4375rem !important;
  }
  .my-sp--220 {
    margin-top: 13.75rem !important;
    margin-bottom: 13.75rem !important;
  }
  .my-sp--225 {
    margin-top: 14.0625rem !important;
    margin-bottom: 14.0625rem !important;
  }
  .my-sp--230 {
    margin-top: 14.375rem !important;
    margin-bottom: 14.375rem !important;
  }
  .my-sp--235 {
    margin-top: 14.6875rem !important;
    margin-bottom: 14.6875rem !important;
  }
  .my-sp--240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-sp--245 {
    margin-top: 15.3125rem !important;
    margin-bottom: 15.3125rem !important;
  }
  .my-sp--250 {
    margin-top: 15.625rem !important;
    margin-bottom: 15.625rem !important;
  }
}

.m--auto {
  margin-right: auto;
  margin-left: auto;
}

.ml--auto {
  margin-left: auto;
}

.mr--auto {
  margin-right: auto;
}

@media (min-width: 601px) {
  .mx__pc--auto {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .mx__sp--auto {
    margin-right: auto;
    margin-left: auto;
  }
}

.mx--auto {
  margin-right: auto;
  margin-left: auto;
}

.p--auto {
  padding-right: auto;
  padding-left: auto;
}

.pl--auto {
  padding-left: auto;
}

.pr--auto {
  padding-right: auto;
}

@media (min-width: 601px) {
  .px__pc--auto {
    padding-right: auto;
    padding-left: auto;
  }
}

@media (max-width: 600px) {
  .px__sp--auto {
    padding-right: auto;
    padding-left: auto;
  }
}

.px--auto {
  padding-right: auto;
  padding-left: auto;
}

/* ==========================================================================
   #Text
   ========================================================================== */
.u-text--white {
  color: #ffffff !important;
}

.u-text--black {
  color: #000000 !important;
}

.u-text--green {
  color: #99cc66 !important;
}

.u-text--red {
  color: red !important;
}

.u-text--gray {
  color: #444444 !important;
}

.u-text--yellow {
  color: #030303 !important;
}

.u-text--orange {
  color: #f39800 !important;
}

.u-text--blue {
  color: #7ecef4 !important;
}

.u-text--pink {
  color: #f19ec2 !important;
}

.u-text--center {
  text-align: center !important;
}

.u-text--right {
  text-align: right !important;
}

@media (min-width: 601px) {
  .u-text__pc--center {
    text-align: center !important;
  }
  .u-text__pc--right {
    text-align: right !important;
  }
}

@media (max-width: 600px) {
  .u-text__sp--center {
    text-align: center !important;
  }
  .u-text__sp--right {
    text-align: right !important;
  }
}

/* ==========================================================================
   #Width
   ========================================================================== */
.u-width--0 {
  width: 0rem !important;
}

.u-width--10 {
  width: 0.625rem !important;
}

.u-width--20 {
  width: 1.25rem !important;
}

.u-width--30 {
  width: 1.875rem !important;
}

.u-width--40 {
  width: 2.5rem !important;
}

.u-width--50 {
  width: 3.125rem !important;
}

.u-width--60 {
  width: 3.75rem !important;
}

.u-width--70 {
  width: 4.375rem !important;
}

.u-width--80 {
  width: 5rem !important;
}

.u-width--90 {
  width: 5.625rem !important;
}

.u-width--100 {
  width: 6.25rem !important;
}

.u-width--110 {
  width: 6.875rem !important;
}

.u-width--120 {
  width: 7.5rem !important;
}

.u-width--130 {
  width: 8.125rem !important;
}

.u-width--140 {
  width: 8.75rem !important;
}

.u-width--150 {
  width: 9.375rem !important;
}

.u-width--160 {
  width: 10rem !important;
}

.u-width--170 {
  width: 10.625rem !important;
}

.u-width--180 {
  width: 11.25rem !important;
}

.u-width--190 {
  width: 11.875rem !important;
}

.u-width--200 {
  width: 12.5rem !important;
}

.u-width--210 {
  width: 13.125rem !important;
}

.u-width--220 {
  width: 13.75rem !important;
}

.u-width--230 {
  width: 14.375rem !important;
}

.u-width--240 {
  width: 15rem !important;
}

.u-width--250 {
  width: 15.625rem !important;
}

.u-width--260 {
  width: 16.25rem !important;
}

.u-width--270 {
  width: 16.875rem !important;
}

.u-width--280 {
  width: 17.5rem !important;
}

.u-width--290 {
  width: 18.125rem !important;
}

.u-width--300 {
  width: 18.75rem !important;
}

.u-width--310 {
  width: 19.375rem !important;
}

.u-width--320 {
  width: 20rem !important;
}

.u-width--330 {
  width: 20.625rem !important;
}

.u-width--340 {
  width: 21.25rem !important;
}

.u-width--350 {
  width: 21.875rem !important;
}

.u-width--360 {
  width: 22.5rem !important;
}

.u-width--370 {
  width: 23.125rem !important;
}

.u-width--380 {
  width: 23.75rem !important;
}

.u-width--390 {
  width: 24.375rem !important;
}

.u-width--400 {
  width: 25rem !important;
}

.u-width--410 {
  width: 25.625rem !important;
}

.u-width--420 {
  width: 26.25rem !important;
}

.u-width--430 {
  width: 26.875rem !important;
}

.u-width--440 {
  width: 27.5rem !important;
}

.u-width--450 {
  width: 28.125rem !important;
}

.u-width--460 {
  width: 28.75rem !important;
}

.u-width--470 {
  width: 29.375rem !important;
}

.u-width--480 {
  width: 30rem !important;
}

.u-width--490 {
  width: 30.625rem !important;
}

.u-width--500 {
  width: 31.25rem !important;
}

.u-width--510 {
  width: 31.875rem !important;
}

.u-width--520 {
  width: 32.5rem !important;
}

.u-width--530 {
  width: 33.125rem !important;
}

.u-width--540 {
  width: 33.75rem !important;
}

.u-width--550 {
  width: 34.375rem !important;
}

.u-width--560 {
  width: 35rem !important;
}

.u-width--570 {
  width: 35.625rem !important;
}

.u-width--580 {
  width: 36.25rem !important;
}

.u-width--590 {
  width: 36.875rem !important;
}

.u-width--600 {
  width: 37.5rem !important;
}

.u-width--610 {
  width: 38.125rem !important;
}

.u-width--620 {
  width: 38.75rem !important;
}

.u-width--630 {
  width: 39.375rem !important;
}

.u-width--640 {
  width: 40rem !important;
}

.u-width--650 {
  width: 40.625rem !important;
}

.u-width--660 {
  width: 41.25rem !important;
}

.u-width--670 {
  width: 41.875rem !important;
}

.u-width--680 {
  width: 42.5rem !important;
}

.u-width--690 {
  width: 43.125rem !important;
}

.u-width--700 {
  width: 43.75rem !important;
}

.u-width--710 {
  width: 44.375rem !important;
}

.u-width--720 {
  width: 45rem !important;
}

.u-width--730 {
  width: 45.625rem !important;
}

.u-width--740 {
  width: 46.25rem !important;
}

.u-width--750 {
  width: 46.875rem !important;
}

.u-width--760 {
  width: 47.5rem !important;
}

.u-width--770 {
  width: 48.125rem !important;
}

.u-width--780 {
  width: 48.75rem !important;
}

.u-width--790 {
  width: 49.375rem !important;
}

.u-width--800 {
  width: 50rem !important;
}

.u-width--810 {
  width: 50.625rem !important;
}

.u-width--820 {
  width: 51.25rem !important;
}

.u-width--830 {
  width: 51.875rem !important;
}

.u-width--840 {
  width: 52.5rem !important;
}

.u-width--850 {
  width: 53.125rem !important;
}

.u-width--860 {
  width: 53.75rem !important;
}

.u-width--870 {
  width: 54.375rem !important;
}

.u-width--880 {
  width: 55rem !important;
}

.u-width--890 {
  width: 55.625rem !important;
}

.u-width--900 {
  width: 56.25rem !important;
}

.u-width--910 {
  width: 56.875rem !important;
}

.u-width--920 {
  width: 57.5rem !important;
}

.u-width--930 {
  width: 58.125rem !important;
}

.u-width--940 {
  width: 58.75rem !important;
}

.u-width--950 {
  width: 59.375rem !important;
}

.u-width--960 {
  width: 60rem !important;
}

.u-width--970 {
  width: 60.625rem !important;
}

.u-width--980 {
  width: 61.25rem !important;
}

.u-width--990 {
  width: 61.875rem !important;
}

.u-width--1000 {
  width: 62.5rem !important;
}

.u-width--1010 {
  width: 63.125rem !important;
}

.u-width--1020 {
  width: 63.75rem !important;
}

.u-width--1030 {
  width: 64.375rem !important;
}

.u-width--1040 {
  width: 65rem !important;
}

.u-width--1050 {
  width: 65.625rem !important;
}

.u-width--1060 {
  width: 66.25rem !important;
}

.u-width--1070 {
  width: 66.875rem !important;
}

.u-width--1080 {
  width: 67.5rem !important;
}

.u-width--1090 {
  width: 68.125rem !important;
}

.u-width--1100 {
  width: 68.75rem !important;
}

.u-width--1110 {
  width: 69.375rem !important;
}

.u-width--1120 {
  width: 70rem !important;
}

.u-width--1130 {
  width: 70.625rem !important;
}

.u-width--1140 {
  width: 71.25rem !important;
}

.u-width--1150 {
  width: 71.875rem !important;
}

.u-width--1160 {
  width: 72.5rem !important;
}

.u-width--1170 {
  width: 73.125rem !important;
}

.u-width--1180 {
  width: 73.75rem !important;
}

.u-width--1190 {
  width: 74.375rem !important;
}

.u-width--1200 {
  width: 75rem !important;
}

@media (min-width: 601px) {
  .u-width__pc--0 {
    width: 0rem !important;
  }
  .u-width__pc--10 {
    width: 0.625rem !important;
  }
  .u-width__pc--20 {
    width: 1.25rem !important;
  }
  .u-width__pc--30 {
    width: 1.875rem !important;
  }
  .u-width__pc--40 {
    width: 2.5rem !important;
  }
  .u-width__pc--50 {
    width: 3.125rem !important;
  }
  .u-width__pc--60 {
    width: 3.75rem !important;
  }
  .u-width__pc--70 {
    width: 4.375rem !important;
  }
  .u-width__pc--80 {
    width: 5rem !important;
  }
  .u-width__pc--90 {
    width: 5.625rem !important;
  }
  .u-width__pc--100 {
    width: 6.25rem !important;
  }
  .u-width__pc--110 {
    width: 6.875rem !important;
  }
  .u-width__pc--120 {
    width: 7.5rem !important;
  }
  .u-width__pc--130 {
    width: 8.125rem !important;
  }
  .u-width__pc--140 {
    width: 8.75rem !important;
  }
  .u-width__pc--150 {
    width: 9.375rem !important;
  }
  .u-width__pc--160 {
    width: 10rem !important;
  }
  .u-width__pc--170 {
    width: 10.625rem !important;
  }
  .u-width__pc--180 {
    width: 11.25rem !important;
  }
  .u-width__pc--190 {
    width: 11.875rem !important;
  }
  .u-width__pc--200 {
    width: 12.5rem !important;
  }
  .u-width__pc--210 {
    width: 13.125rem !important;
  }
  .u-width__pc--220 {
    width: 13.75rem !important;
  }
  .u-width__pc--230 {
    width: 14.375rem !important;
  }
  .u-width__pc--240 {
    width: 15rem !important;
  }
  .u-width__pc--250 {
    width: 15.625rem !important;
  }
  .u-width__pc--260 {
    width: 16.25rem !important;
  }
  .u-width__pc--270 {
    width: 16.875rem !important;
  }
  .u-width__pc--280 {
    width: 17.5rem !important;
  }
  .u-width__pc--290 {
    width: 18.125rem !important;
  }
  .u-width__pc--300 {
    width: 18.75rem !important;
  }
  .u-width__pc--310 {
    width: 19.375rem !important;
  }
  .u-width__pc--320 {
    width: 20rem !important;
  }
  .u-width__pc--330 {
    width: 20.625rem !important;
  }
  .u-width__pc--340 {
    width: 21.25rem !important;
  }
  .u-width__pc--350 {
    width: 21.875rem !important;
  }
  .u-width__pc--360 {
    width: 22.5rem !important;
  }
  .u-width__pc--370 {
    width: 23.125rem !important;
  }
  .u-width__pc--380 {
    width: 23.75rem !important;
  }
  .u-width__pc--390 {
    width: 24.375rem !important;
  }
  .u-width__pc--400 {
    width: 25rem !important;
  }
  .u-width__pc--410 {
    width: 25.625rem !important;
  }
  .u-width__pc--420 {
    width: 26.25rem !important;
  }
  .u-width__pc--430 {
    width: 26.875rem !important;
  }
  .u-width__pc--440 {
    width: 27.5rem !important;
  }
  .u-width__pc--450 {
    width: 28.125rem !important;
  }
  .u-width__pc--460 {
    width: 28.75rem !important;
  }
  .u-width__pc--470 {
    width: 29.375rem !important;
  }
  .u-width__pc--480 {
    width: 30rem !important;
  }
  .u-width__pc--490 {
    width: 30.625rem !important;
  }
  .u-width__pc--500 {
    width: 31.25rem !important;
  }
  .u-width__pc--510 {
    width: 31.875rem !important;
  }
  .u-width__pc--520 {
    width: 32.5rem !important;
  }
  .u-width__pc--530 {
    width: 33.125rem !important;
  }
  .u-width__pc--540 {
    width: 33.75rem !important;
  }
  .u-width__pc--550 {
    width: 34.375rem !important;
  }
  .u-width__pc--560 {
    width: 35rem !important;
  }
  .u-width__pc--570 {
    width: 35.625rem !important;
  }
  .u-width__pc--580 {
    width: 36.25rem !important;
  }
  .u-width__pc--590 {
    width: 36.875rem !important;
  }
  .u-width__pc--600 {
    width: 37.5rem !important;
  }
  .u-width__pc--610 {
    width: 38.125rem !important;
  }
  .u-width__pc--620 {
    width: 38.75rem !important;
  }
  .u-width__pc--630 {
    width: 39.375rem !important;
  }
  .u-width__pc--640 {
    width: 40rem !important;
  }
  .u-width__pc--650 {
    width: 40.625rem !important;
  }
  .u-width__pc--660 {
    width: 41.25rem !important;
  }
  .u-width__pc--670 {
    width: 41.875rem !important;
  }
  .u-width__pc--680 {
    width: 42.5rem !important;
  }
  .u-width__pc--690 {
    width: 43.125rem !important;
  }
  .u-width__pc--700 {
    width: 43.75rem !important;
  }
  .u-width__pc--710 {
    width: 44.375rem !important;
  }
  .u-width__pc--720 {
    width: 45rem !important;
  }
  .u-width__pc--730 {
    width: 45.625rem !important;
  }
  .u-width__pc--740 {
    width: 46.25rem !important;
  }
  .u-width__pc--750 {
    width: 46.875rem !important;
  }
  .u-width__pc--760 {
    width: 47.5rem !important;
  }
  .u-width__pc--770 {
    width: 48.125rem !important;
  }
  .u-width__pc--780 {
    width: 48.75rem !important;
  }
  .u-width__pc--790 {
    width: 49.375rem !important;
  }
  .u-width__pc--800 {
    width: 50rem !important;
  }
  .u-width__pc--810 {
    width: 50.625rem !important;
  }
  .u-width__pc--820 {
    width: 51.25rem !important;
  }
  .u-width__pc--830 {
    width: 51.875rem !important;
  }
  .u-width__pc--840 {
    width: 52.5rem !important;
  }
  .u-width__pc--850 {
    width: 53.125rem !important;
  }
  .u-width__pc--860 {
    width: 53.75rem !important;
  }
  .u-width__pc--870 {
    width: 54.375rem !important;
  }
  .u-width__pc--880 {
    width: 55rem !important;
  }
  .u-width__pc--890 {
    width: 55.625rem !important;
  }
  .u-width__pc--900 {
    width: 56.25rem !important;
  }
  .u-width__pc--910 {
    width: 56.875rem !important;
  }
  .u-width__pc--920 {
    width: 57.5rem !important;
  }
  .u-width__pc--930 {
    width: 58.125rem !important;
  }
  .u-width__pc--940 {
    width: 58.75rem !important;
  }
  .u-width__pc--950 {
    width: 59.375rem !important;
  }
  .u-width__pc--960 {
    width: 60rem !important;
  }
  .u-width__pc--970 {
    width: 60.625rem !important;
  }
  .u-width__pc--980 {
    width: 61.25rem !important;
  }
  .u-width__pc--990 {
    width: 61.875rem !important;
  }
  .u-width__pc--1000 {
    width: 62.5rem !important;
  }
  .u-width__pc--1010 {
    width: 63.125rem !important;
  }
  .u-width__pc--1020 {
    width: 63.75rem !important;
  }
  .u-width__pc--1030 {
    width: 64.375rem !important;
  }
  .u-width__pc--1040 {
    width: 65rem !important;
  }
  .u-width__pc--1050 {
    width: 65.625rem !important;
  }
  .u-width__pc--1060 {
    width: 66.25rem !important;
  }
  .u-width__pc--1070 {
    width: 66.875rem !important;
  }
  .u-width__pc--1080 {
    width: 67.5rem !important;
  }
  .u-width__pc--1090 {
    width: 68.125rem !important;
  }
  .u-width__pc--1100 {
    width: 68.75rem !important;
  }
  .u-width__pc--1110 {
    width: 69.375rem !important;
  }
  .u-width__pc--1120 {
    width: 70rem !important;
  }
  .u-width__pc--1130 {
    width: 70.625rem !important;
  }
  .u-width__pc--1140 {
    width: 71.25rem !important;
  }
  .u-width__pc--1150 {
    width: 71.875rem !important;
  }
  .u-width__pc--1160 {
    width: 72.5rem !important;
  }
  .u-width__pc--1170 {
    width: 73.125rem !important;
  }
  .u-width__pc--1180 {
    width: 73.75rem !important;
  }
  .u-width__pc--1190 {
    width: 74.375rem !important;
  }
  .u-width__pc--1200 {
    width: 75rem !important;
  }
}

@media (max-width: 600px) {
  .u-width__sp--0 {
    width: 0rem !important;
  }
  .u-width__sp--10 {
    width: 0.625rem !important;
  }
  .u-width__sp--20 {
    width: 1.25rem !important;
  }
  .u-width__sp--30 {
    width: 1.875rem !important;
  }
  .u-width__sp--40 {
    width: 2.5rem !important;
  }
  .u-width__sp--50 {
    width: 3.125rem !important;
  }
  .u-width__sp--60 {
    width: 3.75rem !important;
  }
  .u-width__sp--70 {
    width: 4.375rem !important;
  }
  .u-width__sp--80 {
    width: 5rem !important;
  }
  .u-width__sp--90 {
    width: 5.625rem !important;
  }
  .u-width__sp--100 {
    width: 6.25rem !important;
  }
  .u-width__sp--110 {
    width: 6.875rem !important;
  }
  .u-width__sp--120 {
    width: 7.5rem !important;
  }
  .u-width__sp--130 {
    width: 8.125rem !important;
  }
  .u-width__sp--140 {
    width: 8.75rem !important;
  }
  .u-width__sp--150 {
    width: 9.375rem !important;
  }
  .u-width__sp--160 {
    width: 10rem !important;
  }
  .u-width__sp--170 {
    width: 10.625rem !important;
  }
  .u-width__sp--180 {
    width: 11.25rem !important;
  }
  .u-width__sp--190 {
    width: 11.875rem !important;
  }
  .u-width__sp--200 {
    width: 12.5rem !important;
  }
  .u-width__sp--210 {
    width: 13.125rem !important;
  }
  .u-width__sp--220 {
    width: 13.75rem !important;
  }
  .u-width__sp--230 {
    width: 14.375rem !important;
  }
  .u-width__sp--240 {
    width: 15rem !important;
  }
  .u-width__sp--250 {
    width: 15.625rem !important;
  }
  .u-width__sp--260 {
    width: 16.25rem !important;
  }
  .u-width__sp--270 {
    width: 16.875rem !important;
  }
  .u-width__sp--280 {
    width: 17.5rem !important;
  }
  .u-width__sp--290 {
    width: 18.125rem !important;
  }
  .u-width__sp--300 {
    width: 18.75rem !important;
  }
  .u-width__sp--310 {
    width: 19.375rem !important;
  }
  .u-width__sp--320 {
    width: 20rem !important;
  }
  .u-width__sp--330 {
    width: 20.625rem !important;
  }
  .u-width__sp--340 {
    width: 21.25rem !important;
  }
  .u-width__sp--350 {
    width: 21.875rem !important;
  }
  .u-width__sp--360 {
    width: 22.5rem !important;
  }
  .u-width__sp--370 {
    width: 23.125rem !important;
  }
  .u-width__sp--380 {
    width: 23.75rem !important;
  }
  .u-width__sp--390 {
    width: 24.375rem !important;
  }
  .u-width__sp--400 {
    width: 25rem !important;
  }
  .u-width__sp--410 {
    width: 25.625rem !important;
  }
  .u-width__sp--420 {
    width: 26.25rem !important;
  }
  .u-width__sp--430 {
    width: 26.875rem !important;
  }
  .u-width__sp--440 {
    width: 27.5rem !important;
  }
  .u-width__sp--450 {
    width: 28.125rem !important;
  }
  .u-width__sp--460 {
    width: 28.75rem !important;
  }
  .u-width__sp--470 {
    width: 29.375rem !important;
  }
  .u-width__sp--480 {
    width: 30rem !important;
  }
  .u-width__sp--490 {
    width: 30.625rem !important;
  }
  .u-width__sp--500 {
    width: 31.25rem !important;
  }
  .u-width__sp--510 {
    width: 31.875rem !important;
  }
  .u-width__sp--520 {
    width: 32.5rem !important;
  }
  .u-width__sp--530 {
    width: 33.125rem !important;
  }
  .u-width__sp--540 {
    width: 33.75rem !important;
  }
  .u-width__sp--550 {
    width: 34.375rem !important;
  }
  .u-width__sp--560 {
    width: 35rem !important;
  }
  .u-width__sp--570 {
    width: 35.625rem !important;
  }
  .u-width__sp--580 {
    width: 36.25rem !important;
  }
  .u-width__sp--590 {
    width: 36.875rem !important;
  }
  .u-width__sp--600 {
    width: 37.5rem !important;
  }
  .u-width__sp--610 {
    width: 38.125rem !important;
  }
  .u-width__sp--620 {
    width: 38.75rem !important;
  }
  .u-width__sp--630 {
    width: 39.375rem !important;
  }
  .u-width__sp--640 {
    width: 40rem !important;
  }
  .u-width__sp--650 {
    width: 40.625rem !important;
  }
  .u-width__sp--660 {
    width: 41.25rem !important;
  }
  .u-width__sp--670 {
    width: 41.875rem !important;
  }
  .u-width__sp--680 {
    width: 42.5rem !important;
  }
  .u-width__sp--690 {
    width: 43.125rem !important;
  }
  .u-width__sp--700 {
    width: 43.75rem !important;
  }
  .u-width__sp--710 {
    width: 44.375rem !important;
  }
  .u-width__sp--720 {
    width: 45rem !important;
  }
  .u-width__sp--730 {
    width: 45.625rem !important;
  }
  .u-width__sp--740 {
    width: 46.25rem !important;
  }
  .u-width__sp--750 {
    width: 46.875rem !important;
  }
  .u-width__sp--760 {
    width: 47.5rem !important;
  }
  .u-width__sp--770 {
    width: 48.125rem !important;
  }
  .u-width__sp--780 {
    width: 48.75rem !important;
  }
  .u-width__sp--790 {
    width: 49.375rem !important;
  }
  .u-width__sp--800 {
    width: 50rem !important;
  }
  .u-width__sp--810 {
    width: 50.625rem !important;
  }
  .u-width__sp--820 {
    width: 51.25rem !important;
  }
  .u-width__sp--830 {
    width: 51.875rem !important;
  }
  .u-width__sp--840 {
    width: 52.5rem !important;
  }
  .u-width__sp--850 {
    width: 53.125rem !important;
  }
  .u-width__sp--860 {
    width: 53.75rem !important;
  }
  .u-width__sp--870 {
    width: 54.375rem !important;
  }
  .u-width__sp--880 {
    width: 55rem !important;
  }
  .u-width__sp--890 {
    width: 55.625rem !important;
  }
  .u-width__sp--900 {
    width: 56.25rem !important;
  }
  .u-width__sp--910 {
    width: 56.875rem !important;
  }
  .u-width__sp--920 {
    width: 57.5rem !important;
  }
  .u-width__sp--930 {
    width: 58.125rem !important;
  }
  .u-width__sp--940 {
    width: 58.75rem !important;
  }
  .u-width__sp--950 {
    width: 59.375rem !important;
  }
  .u-width__sp--960 {
    width: 60rem !important;
  }
  .u-width__sp--970 {
    width: 60.625rem !important;
  }
  .u-width__sp--980 {
    width: 61.25rem !important;
  }
  .u-width__sp--990 {
    width: 61.875rem !important;
  }
  .u-width__sp--1000 {
    width: 62.5rem !important;
  }
  .u-width__sp--1010 {
    width: 63.125rem !important;
  }
  .u-width__sp--1020 {
    width: 63.75rem !important;
  }
  .u-width__sp--1030 {
    width: 64.375rem !important;
  }
  .u-width__sp--1040 {
    width: 65rem !important;
  }
  .u-width__sp--1050 {
    width: 65.625rem !important;
  }
  .u-width__sp--1060 {
    width: 66.25rem !important;
  }
  .u-width__sp--1070 {
    width: 66.875rem !important;
  }
  .u-width__sp--1080 {
    width: 67.5rem !important;
  }
  .u-width__sp--1090 {
    width: 68.125rem !important;
  }
  .u-width__sp--1100 {
    width: 68.75rem !important;
  }
  .u-width__sp--1110 {
    width: 69.375rem !important;
  }
  .u-width__sp--1120 {
    width: 70rem !important;
  }
  .u-width__sp--1130 {
    width: 70.625rem !important;
  }
  .u-width__sp--1140 {
    width: 71.25rem !important;
  }
  .u-width__sp--1150 {
    width: 71.875rem !important;
  }
  .u-width__sp--1160 {
    width: 72.5rem !important;
  }
  .u-width__sp--1170 {
    width: 73.125rem !important;
  }
  .u-width__sp--1180 {
    width: 73.75rem !important;
  }
  .u-width__sp--1190 {
    width: 74.375rem !important;
  }
  .u-width__sp--1200 {
    width: 75rem !important;
  }
}
