/* CONTAINER */
.l-container {
  width: 90%;
  margin: 0 auto;
}
.l-container--1600 {
  max-width: 1600px;
}
.l-container--1400 {
  max-width: 1400px;
}
.l-container--1260 {
  max-width: 1260px;
}
.l-container--1080 {
  max-width: 1080px;
}
.l-container--1000 {
  max-width: 1000px;
}
.l-container--800 {
  max-width: 800px;
}
.l-fullscreen__right {
  width: calc((100% + (100vw - 100%) / 2));
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 84%;
  }
}
/* ULTILITIES */
.u-cl--black {
  color: #000;
}
.u-cl--gray {
  color: #787878;
}
.u-cl--green {
  color: #a9d11e;
}
.u-cl--red {
  color: #c50000;
}
.u-bg--greenlight {
  background-color: #a9d11e;
}
.u-bg--greendark {
  background-color: #95b319;
}
.u-bg--white {
  background-color: #fff;
}
.u-bg--gray {
  background-color: #f9f9f9;
}
.u-bg--gradient {
  background-image: -webkit-gradient(linear, left top, right top, from(#a9d11e), to(#5abdc7));
  background-image: linear-gradient(90deg, #a9d11e 0%, #5abdc7 100%);
}
/* LOGO */
.c-logo {
  margin-bottom: 0;
}
.c-logo a, .c-logo img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ======================================================================================= */
/* BTN  */
.c-btn1 {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  border-radius: 23px;
  border: 1px solid #fff;
  padding: 11px 30px;
  min-width: 180px;
  display: inline-block;
  text-align: center;
}
.c-btn1:hover {
  background-color: #b3d048;
  border-color: #b3d048;
  color: #fff;
}
/* BTN 2 */
.c-btn2 {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  border-radius: 40px;
  border: 1px solid #fff;
  display: inline-block;
  padding: 24px 30px;
  min-width: 400px;
}
.c-btn2:hover {
  opacity: 1;
  background-color: #fff;
  color: #95b319;
}
@media screen and (max-width: 767px) {
  .c-btn2 {
    width: 100%;
    min-width: unset;
    padding: 15px;
  }
}
/* ======================================================================================= */
/* IMAGE */
.c-section-img {
  position: relative;
}
.c-section-img::before, .c-section-img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* IMG WRAPPER */
.c-img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
}
.c-img-wrapper--default {
  position: relative;
  overflow: hidden;
  background-color: #f4f4f4;
}
.c-img-wrapper--default img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
  object-fit: contain;
}
/* IMG HOVER ZOOM */
.c-img-hover--zoom {
  display: block;
  position: relative;
  overflow: hidden;
}
.c-img-hover--default {
  background-color: #f4f4f4;
}
.c-img-hover--zoom img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.c-img-hover--default img.eye-img {
  height: auto !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 992px) {
  .c-img-hover--zoom:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .c-img-hover--default:hover img.eye-img {
    -webkit-transform: scale(1) translateY(-50%);
    transform: scale(1) translateY(-50%);
  }
}
/* IMAGE */
.c-svg-img {
  -o-object-fit: contain;
  object-fit: contain;
}
/* BACKGROUND IMAGE */
.c-bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* ======================================================================================= */
/* LAYOUT */
.c-main {
  padding-bottom: 142px;
}
@media screen and (max-width: 767px) {
  .c-main {
    padding-bottom: 70px;
  }
}
/* SECTION */
.c-section__padding {
  padding-top: 156px;
  padding-bottom: 156px;
}
.c-section__padding--top {
  padding-top: 156px;
}
.c-section__padding--bottom {
  padding-bottom: 156px;
}
@media screen and (max-width: 767px) {
  .c-section__padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .c-section__padding--top {
    padding-top: 70px;
  }
  .c-section__padding--bottom {
    padding-bottom: 70px;
  }
}
.c-section__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.c-section__row-item {
  margin-bottom: 30px;
}
.c-section__row-fixed {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 30px;
}
.c-section__row-col {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.c-section__row-col p {
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .c-section__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .c-section__row-col {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .c-section__row-fixed {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-section__row {
    margin-bottom: 20px;
  }
  .c-section__row-item, .c-section__row-col p {
    margin-bottom: 15px;
  }
}
/* SECTION TEXT IMAGE */
.c-section-textimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-section-textimg .c-section-img {
  width: 50%;
}
.c-section-textimg .c-section-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* SECTION INFO */
/* SECTION LIST */
.c-section-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.c-section-list a, .c-section-list img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 576px) {}
/* ======================================================================================= */
/* TEXT */
.c-text {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 28px;
}
.c-text--md {
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
.c-text--big {
  font-weight: 400;
  font-size: 5rem;
  letter-spacing: 0.05em;
}
.c-text--eng {
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}
.c-text--700 {
  font-weight: 700;
}
.c-text--500 {
  font-weight: 500;
}
/* PARAGRAPH */
.c-text--phone {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0;
}
.c-text--phone i {
  font-size: 1.8rem;
}
.c-text--phone--big {
  font-size: 3.9rem;
}
.c-text--phone--big i {
  font-size: 3.2rem;
}
/* INFOR */
.c-info .c-text--phone {
  display: inline-block;
  margin-bottom: -5px;
}
.c-info p {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.c-info--md p {
  font-weight: 700;
  font-size: 1.4rem;
}
/* TEXT BG */
.c-text--bg {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 40px;
  letter-spacing: 0.05em;
  display: block;
  text-align: center;
  padding: 45px 20px;
  margin-bottom: 0;
}
.c-text--bg.u-bg--greendark {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 1.3rem;
    line-height: 25px;
  }
  .c-text--phone--big {
    font-size: 3.5rem;
  }
  .c-text--big {
    font-size: 3.5rem;
  }
  .c-text--eng {
    font-size: 1.4rem;
  }
  /* TEXT BG */
  .c-text--bg {
    font-size: 1.6rem;
    line-height: 28px;
    padding: 20px;
  }
}
/* ICON ARROW */
.c-arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-left: 8px solid #a9d11e;
  border-bottom: 8px solid transparent;
}
.c-arrow--white::after {
  border-left-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-arrow::after {
    border-top-width: 5px;
    border-left-width: 5px;
    border-bottom-width: 5px;
  }
}
/* LINK */
.c-link1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 300px;
  padding: 15px 0;
  border-bottom: 1px solid #dbdbdb;
}
.c-link1::after {
  margin-left: 20px;
}
.c-link1--center {
  margin-left: auto;
  margin-right: auto;
}
.c-link1--white {
  border-bottom-color: #fff;
}
.c-link1--big {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .c-link1 {
    width: 100%;
    min-width: unset;
    max-width: 280px;
    padding-bottom: 8px;
  }
}
/* LINK 2 */
.c-link2 {
  display: inline-block;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0;
}
.c-link2--underline {
  text-decoration: underline;
}
.c-link2 i {
  display: block;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .c-link2 {
    font-size: 2rem;
  }
  .c-link2 i {
    margin-bottom: 0;
  }
}
/* LINK ICON */
.c-link__icon {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .c-link__icon {
    font-size: 3.2rem;
  }
}
/* VERTICAL TEXT */
.c-vertical-text {
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  text-orientation: upright;
  -webkit-text-orientation: upright;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
}
/* COPY RIGHT */
.c-copy-right {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-copy-right {
    font-size: 1rem;
  }
}
/* TITLE */
.c-title1 {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
.c-title1 .f-eng {
  display: block;
  font-weight: 500;
  font-size: 8.5rem;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.c-title1--sm .f-eng {
  font-size: 6rem;
  margin-bottom: 12px;
}
.c-title2 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: 0.05em;
}
.c-title2__item {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 10px;
}
.c-title2 .f-eng {
  display: inline-block;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-title1 {
    font-size: 1.4rem;
  }
  .c-title1 .f-eng {
    font-size: 4.2rem;
    margin-bottom: 0;
  }
  .c-title2 {
    font-size: 3rem;
  }
  .c-title2__item {
    margin-right: 0;
  }
  .c-title2 .f-eng {
    display: block;
    font-size: 1.4rem;
  }
}
/* LIMIT LINE PARAGRAPH */
.c-limit-line {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS styles go here */
  .c-limit-line {
    max-height: 2.4rem;
    line-height: 1.2rem;
  }
}
/* ======================================================================================= */
/* LAYOUT */
.l-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
/* LEFT */
.l-layout__left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 94px 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-layout__left-inner {
  max-width: 558px;
}
.l-layout .c-logo {
  width: 258px;
  margin-bottom: 80px;
}
.l-layout__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-layout__row-expand {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.l-layout2 .l-layout__left {
  display: block;
  padding: 100px 8.4vw;
}
.l-layout2 .l-layout__left .c-logo {
  width: 300px;
  margin-bottom: 64px;
}
.l-layout2 .l-layout__row {
  margin-bottom: 94px;
}
.l-layout2 .l-layout__row-expand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.l-layout2 .c-link__icon {
  display: inline-block;
  margin-bottom: 10px;
}
.l-layout2 .l-layout__row-last {
  margin-top: auto;
}
/* NAV */
.l-layout__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 26px;
}
.l-layout__nav li {
  width: 50%;
  margin-bottom: 40px;
}
.l-layout__nav li:nth-child(even) {
  width: 190px;
}
.l-layout__nav a {
  display: inline-block;
  font-weight: 500;
  font-size: 1.63rem;
  letter-spacing: 0.05em;
}
.l-layout__nav a .f-eng {
  display: block;
  font-size: 2.73rem;
  letter-spacing: 0;
  margin-bottom: -2px;
}
/* NAV 2 */
.l-layout__row .l-layout__nav2 {
  width: 228px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  margin-right: 12.6%;
  margin-bottom: 0;
}
.l-layout__row .l-layout__nav2::after {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.l-layout__nav2 {
  display: block;
}
.l-layout__nav2 li, .l-layout__nav2 li:nth-child(even) {
  width: auto;
}
.l-layout__nav2 li {
  margin-bottom: 0;
}
.l-layout__nav2 li:not(:last-child) {
  margin-bottom: 14px;
}
.l-layout__nav2 a {
  font-size: 1.2rem;
}
.l-layout__nav2 a .f-eng {
  font-size: 2rem;
}
/* TEXT */
.l-layout__text {
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.l-layout__text {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
.l-layout__text--big {
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: 0.05em;
}
.l-layout__text--eng {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
.l-layout .c-copy-right {
  margin-top: 66px;
}
.l-layout2 .c-copy-right {
  margin-top: 0;
}
/* RIGHT */
.l-layout__right {
  width: 40%;
}
.l-layout__right .l-layout__linksection {
  width: 100%;
  height: 50%;
  padding: 42px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-layout__right .l-layout__linksection + .l-layout__linksection {
  border-top: 2px solid #a9d11e;
}
.l-layout__linksection-title {
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.l-layout__right .c-info .c-text--phone {
  margin-bottom: 0;
}
@media screen and (max-width: 1300px) {
  .l-layout2 .l-layout__left {
    padding: 100px 5vw;
  }
  .l-layout__row .l-layout__nav2 {
    width: 200px;
    margin-right: 8%;
  }
}
@media screen and (max-width: 991px) {
  .l-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l-layout__left, .l-layout__right {
    width: 100%;
  }
  .l-layout__left-inner {
    max-width: unset;
  }
  .l-layout__nav li:nth-child(even) {
    width: 230px;
  }
  .l-layout .c-copy-right {
    margin-top: 0;
    padding: 44px 0;
  }
  /* LAYOUT 2 */
  .l-layout2 .l-layout__left {
    padding-bottom: 60px;
  }
  .l-layout2 .c-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .l-layout2 .l-layout__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
    text-align: center;
  }
  .l-layout__row .l-layout__nav2 {
    width: 100%;
    margin-right: 0;
    border-right: unset;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .l-layout__row .l-layout__nav2::after {
    width: 60%;
    max-width: 200px;
    height: 1px;
    top: auto;
    bottom: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  .l-layout__nav2 li:nth-child(even) {
    width: 100%;
  }
  .l-layout2 .l-layout__row-last {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-layout__left {
    text-align: center;
    padding-bottom: 55px;
  }
  .l-layout__nav {
    margin-bottom: 38px;
  }
  .l-layout__nav li, .l-layout__nav li:nth-child(even) {
    width: 100%;
  }
  .l-layout__nav li {
    margin-bottom: 0;
  }
  .l-layout__nav li:not(:last-child) {
    margin-bottom: 18px;
  }
  .l-layout__nav a {
    font-size: 1.5rem;
  }
  .l-layout__nav a .f-eng {
    font-size: 2.45rem;
  }
  /* TEXT */
  .l-layout__text {
    font-size: 1.2rem;
  }
  .l-layout__linksection-title {
    margin-bottom: 25px;
  }
  .l-layout__right .l-layout__linksection {
    padding: 35px 0 43px;
  }
  /* LAYOUT 2 */
  .l-layout2 .l-layout__left {
    padding-top: 70px;
  }
  .l-layout2 .l-layout__left .c-logo {
    width: 200px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .l-layout .c-copy-right {
    padding-bottom: 12rem;
  }
}
/* ======================================================================================= */
/* SLIDE */
.c-slider-wrapper {
  position: relative;
}
.c-slide {
  width: 100%;
  text-align: left;
  margin-bottom: 0;
}
.c-slide .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.c-slide .slide-item {
  height: inherit;
}
.c-slide a, .c-slide img {
  display: block;
}
.c-slide a {
  height: 100%;
}
.c-slide img {
  width: 100%;
}
/* SLIDE ARROW */
.c-slide__arrows .slick-arrow {
  width: 50px;
  height: 60px;
  border-radius: 0;
  z-index: 10;
  background: transparent;
}
.c-slide__arrows .slick-arrow::before {
  content: none;
}
.c-slide__arrows .slick-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("./../../images/svg/icon-arrow.svg");
  background-size: 12px 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.c-slide__arrows .slick-prev::after {
  background-image: url("./../../images/svg/icon-arrow-left.svg");
}
.c-slide__arrows .slick-prev {
  background-color: #d1d1d1;
  left: 0;
}
.c-slide__arrows .slick-next {
  background-color: #a9d11e;
  right: 0;
}
.c-slide__arrows .slick-prev:hover, .c-slide__arrows .slick-prev:focus, .c-slide__arrows .slick-next:hover, .c-slide__arrows .slick-next:focus {
  color: transparent;
  outline: none;
  /* background: transparent; */
  opacity: 0.7;
}
@-webkit-keyframes arrow_slide {
  0% {
    margin-left: 0px;
  }
  50% {
    margin-left: 5px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes arrow_slide {
  0% {
    margin-left: 0px;
  }
  50% {
    margin-left: 5px;
  }
  100% {
    margin-left: 0;
  }
}
@media screen and (min-width: 992px) {
  .c-slide-arrow:hover::after {
    -webkit-animation: arrow_slide 0.5s ease-out alternate;
    animation: arrow_slide 0.5s ease-out alternate;
  }
}
/* ================================================================== */
/* POST LOADING  */
.c-post-loading__wrapper {
  position: relative;
}
.c-post-loading {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 1px);
  transform: translate3d(-50%, -50%, 1px);
  display: none;
}
.c-post-loading__wrapper.loading .c-post-loading {
  display: inline-block;
}
.c-post-loading div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #95b319;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.c-post-loading div:nth-child(1) {
  left: 8px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
  animation: lds-ellipsis1 0.6s infinite;
}
.c-post-loading div:nth-child(2) {
  left: 8px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
  animation: lds-ellipsis2 0.6s infinite;
}
.c-post-loading div:nth-child(3) {
  left: 32px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
  animation: lds-ellipsis2 0.6s infinite;
}
.c-post-loading div:nth-child(4) {
  left: 56px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
  animation: lds-ellipsis3 0.6s infinite;
}
@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
    transform: translate(24px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
    transform: translate(24px, 0);
  }
}
@media screen and (max-width: 767px) {
  .c-post-loading {
    -webkit-transform: translate3d(-50%, -50%, 1px) scale(0.6);
    transform: translate3d(-50%, -50%, 1px) scale(0.6);
  }
}
/* ================================================================== */
/* PAGINATION  */
.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 116px;
  margin-bottom: 0;
}
.c-pagination--center .c-pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-pagination a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
}
.c-pagination a:hover {
  opacity: 1;
}
.c-pagination li {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 2.4rem;
  background-color: #dae5b4;
  color: #fff;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 8px;
  min-width: 70px;
  margin: 5px;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-pagination li.active {
  background-color: #a9d11e;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 30px;
  }
  .c-pagination li {
    font-size: 1.6rem;
    padding: 2px 10px;
    border-radius: 5px;
    min-width: 45px;
  }
}
/* ================================================================== */
/* POST CAT */
.c-post-cat__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.25rem;
}
.c-post-cat__list--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-post-cat__list .c-post-cat {
  margin: 0.25rem;
}
.c-post-cat {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #a9d11e;
  border: 2px solid #a9d11e;
  display: inline-block;
  text-align: center;
  min-width: 120px;
  padding: 4px 10px;
}
.c-post-cat:hover {
  color: #fff;
}
.c-post-cat.active {
  color: #95b319;
  background-color: #fff;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .c-post-cat {
    min-width: 70px;
    padding: 0 6px;
    font-size: 1rem;
  }
}
/* ================================================================== */
/* NAV */
.c-gallery-nav {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .c-gallery-nav {
    margin-bottom: 30px;
  }
}
/* GALLERY LIST */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .c-post-gallery__list .c-post-gallery:nth-child(n + 3) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 992px) {
  .c-post-gallery__list .c-post-gallery:nth-child(n + 4) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 991px) {
  .c-post-gallery__relate-list .c-post-gallery + .c-post-gallery {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-post-gallery__relate-list .c-post-gallery + .c-post-gallery {
    margin-top: 30px;
  }
  .c-post-gallery__list .c-post-gallery:nth-child(n + 2) {
    margin-top: 30px;
  }
}
/* GALLERY */
.c-post-gallery .post-img {
  display: block;
  width: 100%;
  height: 280px;
  margin-bottom: 25px;
}
.c-post-gallery .post-title {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 32px;
  margin-bottom: 0;
}
.c-post-gallery .post-title--big {
  font-size: 2.5rem;
}
.c-post-gallery .post-text {
  font-weight: 500;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .c-post-gallery .post-img {
    height: 250px;
  }
}
/* ================================================================== */
/* SINGLE PAGE */
.p-single__heading {
  margin-bottom: 30px;
}
.p-single__heading--border {
  border-bottom: 1px solid rgba(170, 170, 170, 0.5);
  margin-bottom: 70px;
  padding-bottom: 40px;
}
.p-single__heading .c-post-cat__list {
  margin-top: 20px;
}
.p-single__mainimg {
  margin-bottom: 50px;
}
.p-single__list {
  margin-bottom: 80px;
}
.p-single__list2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-single__mainimg {
    margin-bottom: 25px;
  }
  .p-single__list {
    margin-bottom: 30px;
  }
  .p-single__list2 {
    margin-bottom: 40px;
  }
}
/* ================================================================== */
/* INFORMATION */
.c-infor__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.c-infor__content .infor-col {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15.6%;
}
.c-infor__content .infor-post__wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 5px;
  min-height: 300px;
}
.p-information .c-infor__content {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.p-information .infor-col {
  position: sticky;
  top: 125px;
  left: 0;
}
/* INFOR NAV */
.c-infor-nav {
  margin-bottom: 0;
}
.c-infor-nav li {
  position: relative;
  color: #959595;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  cursor: pointer;
}
.c-infor-nav--md li {
  font-size: 1.6rem;
}
.c-infor-nav--cl-black li {
  color: #000;
}
.c-infor-nav li::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -16px;
  background-color: currentColor;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.c-infor-nav li.active {
  color: #a9d11e;
}
.c-infor-nav li.active::before {
  opacity: 1;
}
/* INFOR POST */
.c-post-infor__list .c-post-infor {
  border-top: 1px solid #c7c7c7;
}
.c-post-infor__list .c-post-infor:last-child {
  border-bottom: 1px solid #c7c7c7;
}
.c-post-infor a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-post-infor .post-img {
  display: block;
  width: 350px;
  height: 248px;
}
.c-post-infor .post-infor {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px 5%;
}
.c-post-infor .post-heading {
  margin-bottom: 15px;
}
.c-post-infor .post-date {
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0;
  margin-right: 10px;
}
.c-post-infor .post-title {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 32px;
  max-height: 96px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}
@media screen and (max-width: 1100px) {
  .c-infor__content .infor-col {
    margin-right: 8%;
  }
}
@media screen and (max-width: 991px) {
  .c-infor__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .c-infor__content .infor-col {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .c-infor__content .infor-post__wrapper {
    padding-top: 0;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    min-height: 200px;
  }
  .p-information .infor-col {
    position: static;
    top: auto;
  }
  .p-information .c-pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  /* INFOR NAV */
  .c-infor-nav {
    text-align: center;
  }
  .c-infor-nav li {
    display: inline-block;
    margin: 10px 20px;
  }
  .c-infor-nav li::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -10px;
  }
}
@media screen and (max-width: 767px) {
  .c-infor__content .infor-col {
    margin-bottom: 5px;
  }
  .c-infor__content .infor-post__wrapper {
    min-height: 100px;
  }
  /* INFOR NAV */
  .c-infor-nav li {
    display: inline-block;
    font-size: 1.4rem;
    margin: 10px;
  }
  /* POST INFOR */
  .c-post-infor .post-img {
    width: 100px;
    height: 100px;
  }
  .c-post-infor .post-infor {
    padding: 0 5%;
  }
  .c-post-infor .post-heading {
    margin-bottom: 5px;
  }
  .c-post-infor .post-date {
    font-size: 1rem;
    margin-right: 5px;
  }
  .c-post-infor .post-title {
    font-size: 1.3rem;
    line-height: 22px;
    max-height: 66px;
    -webkit-line-clamp: 2;
  }
}
/* ================================================================== */
/* PAGE HEADING */
.c-page-heading {
  padding-top: 155px;
  padding-bottom: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 700px;
}
.c-page-heading--dynamnic {
  min-height: unset;
  padding-top: 300px;
  padding-bottom: 100px;
}
.c-page-heading__hasbg {
  width: 100%;
  position: relative;
}
.c-page-heading__hasbg::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.c-page-heading__hasbg--noblack::before {
  content: none;
}
.c-page-heading__title {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 2.4rem;
  padding: 0 5%;
  letter-spacing: 0.05em;
}
.c-page-heading__title .f-eng {
  display: block;
  font-weight: 500;
  font-size: 10rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.c-page-heading__hasbg .c-page-heading__title {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .c-page-heading {
    min-height: 500px;
    padding-bottom: 50px;
  }
  .c-page-heading--dynamnic {
    padding-top: 250px;
  }
  .c-page-heading__title {
    font-size: 2rem;
  }
  .c-page-heading__title .f-eng {
    font-size: 7rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .c-page-heading {
    padding-top: 140px;
    min-height: unset;
  }
  .c-page-heading__title {
    padding: 0 8%;
    font-size: 1.4rem;
  }
  .c-page-heading__title .f-eng {
    font-size: 4rem;
  }
  .c-page-heading__hasbg .c-page-heading__title {
    top: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    bottom: 15%;
  }
}
/* ================================================================ */
/* LIST  */
.c-list1 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid rgba(169, 169, 169, 0.5);
  padding: 26px 0;
}
.c-list1 li:first-child {
  border-top: 1px solid rgba(169, 169, 169, 0.5);
}
.c-list1--white li, .c-list1--white li:first-child {
  border-color: #fff;
}
.c-list1 .item-fixed {
  width: 220px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.c-list1 .item-expand {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.c-list1__text {
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-list1 li {
    padding: 20px 0;
  }
  .c-list1 .item-fixed {
    width: 100px;
  }
  .c-list1__text {
    font-size: 1.2rem;
  }
}
/* LIST 2*/
.c-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -35px;
  margin-right: -35px;
  position: relative;
}
.c-list2 li {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding: 0 35px;
  position: relative;
}
.c-list2 li.c-arrow::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -7px;
  border-width: 14px;
}
.c-list2 li .c-list2__item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.c-list2 li .c-list2__item-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  display: inline-block;
  min-width: 120px;
  text-align: center;
  padding: 4px 10px;
}
.c-list2 li:first-child .c-list2__item-inner::before {
  content: "BEFORE";
  background-color: #fff;
  color: #aad21e;
}
.c-list2 li:last-child .c-list2__item-inner::before {
  content: "AFTER";
  background-color: #aad21e;
  color: #fff;
}
.c-list2 li img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-list2 {
    margin-left: 0;
    margin-right: 0;
  }
  .c-list2 li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 0;
  }
  .c-list2 li.c-arrow {
    margin-bottom: 50px;
  }
  .c-list2 li.c-arrow::after {
    top: auto;
    right: 50%;
    bottom: -35px;
    -webkit-transform: translateX(50%) rotate(90deg);
    transform: translateX(50%) rotate(90deg);
    border-width: 10px;
  }
  .c-list2 li .c-list2__item-inner::before {
    font-size: 1.2rem;
    min-width: 100px;
  }
  .c-list2 li:last-child .c-list2__item-inner::before {
    left: auto;
    right: 0;
  }
}
/* ================================================================ */
/* IFRAME	 */
.c-iframe {
  display: block;
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 991px) {
  .c-iframe {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .c-iframe {
    height: 300px;
  }
}
/* ================================================================ */
/* FORM */
/* FORM MODEL */ ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #9d9d9d;
  letter-spacing: 0.05em;
  font-family: inherit;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #9d9d9d;
  letter-spacing: 0.05em;
  opacity: 1;
  font-family: inherit;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9d9d9d;
  letter-spacing: 0.05em;
  font-family: inherit;
}
::-ms-input-placeholder {
  /*
Microsoft Edge */
  color: #9d9d9d;
  letter-spacing: 0.05em;
  font-family: inherit;
}
::placeholder {
  /* Most modern browsers support this now. */
  color: #9d9d9d;
  letter-spacing: 0.05em;
  font-family: inherit;
}
.form-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#form-model .form-row1 {
  margin-bottom: 45px;
}
#form-model .form-group {
  width: 100%;
  margin-bottom: 0;
}
#form-model .form-row1--half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
#form-model .form-row1--half .form-group {
  width: calc((100% - 20px) / 2);
}
#form-model .form-row1--half .form-group + .form-group {
  margin-left: 20px;
}
#form-model .form-imp__icon {
  display: inline-block;
  color: #c50000;
  margin-left: 6px;
}
#form-model .form-label {
  margin-bottom: 18px;
}
#form-model input, #form-model textarea, #form-model select, #form-model .form-label {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 23px;
  color: #000000;
}
#form-model input, #form-model textarea, #form-model select {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  margin: 0;
  padding: 34px 30px;
  background-color: #f4f4f4;
}
#form-model input[type="submit"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 250px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.1em;
  font-weight: 700;
  background-color: #a9d11e;
  color: #fff;
  border-radius: 35px;
  padding: 0;
  margin-top: 63px;
}
#form-model .wpcf7-list-item {
  margin: 0;
}
#form-model .form-textwrapper .form-label {
  margin-bottom: 10px;
  margin-top: 56px;
}
/* ================================ */
/*
CUSTOM CHECKBOX */
#form-model .form-input__checkbox {
  margin-bottom: 0;
}
#form-model .form-input__checkbox label {
  cursor: pointer;
}
#form-model .form-input__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
} /* Create a custom checkbox */
#form-model .form-input__checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 55px;
  line-height: 35px;
}
#form-model .form-input__checkbox--round .wpcf7-list-item-label {
  border-radius: 50%;
  padding-left: 53px;
  line-height: 35px;
}
#form-model .form-input__checkbox .wpcf7-list-item-label::before, #form-model .form-input__checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#form-model .form-input__checkbox .wpcf7-list-item-label::before {
  left: 0;
  display: block;
  height: 35px;
  width: 35px;
  background-color: #f4f4f4;
}
#form-model .form-input__checkbox--round .wpcf7-list-item-label::before {
  width: 35px;
  height: 35px;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
}
#form-model .form-input__checkbox .wpcf7-list-item-label::after {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  opacity: 0;
  background-color: #000;
}
#form-model .form-input__checkbox--round .wpcf7-list-item-label::after {
  left: 12px;
}
#form-model .form-input__checkbox input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #form-model .form-row1 {
    margin-bottom: 35px;
  }
  #form-model .form-row1--half .form-group {
    width: 100%;
  }
  #form-model .form-row1--half .form-group + .form-group {
    margin-left: 0;
    margin-top: 35px;
  }
  #form-model input, #form-model textarea, #form-model select {
    padding: 25px;
  }
  #form-model input, #form-model textarea, #form-model select, #form-model .form-label {
    font-size: 1.3rem;
  }
  #form-model .form-label {
    margin-bottom: 8px;
  }
  #form-model .form-textwrapper .form-label {
    margin-top: 0;
  }
  #form-model input[type="submit"] {
    margin-top: 30px;
  }
}
/* ================================================================ */
/* RELATE SECTION */
.c-relate-section {
  margin-top: 100px;
}
.c-relate-section .c-title1 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .c-relate-section {
    margin-top: 60px;
  }
  .c-relate-section .c-title1 {
    margin-bottom: 30px;
  }
}
/* ================================================================ */
/* NEXT PREV LINK */
.c-prevnext-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid rgba(170, 170, 170, 0.5);
  padding-top: 55px;
  margin-top: 55px;
  margin-bottom: 0;
}
.c-prevnext-post li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-prevnext-post .item-link {
  width: calc((100% - 100px) / 2);
}
.c-prevnext-post #nextlink {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.c-prevnext-post a.c-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-prevnext-post #prevlink a.c-arrow {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.c-prevnext-post a.c-arrow::after {
  border-width: 16px;
  margin-left: 15px;
}
.c-prevnext-post #prevlink a.c-arrow::after {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  margin-left: 0;
  margin-right: 15px;
}
.c-prevnext-post .c-middlelink {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-prevnext-post {
    margin-top: 40px;
    padding-top: 40px;
  }
  .c-prevnext-post a.c-arrow::after {
    border-width: 10px;
  }
}
/* ================================================================ */