@charset "utf-8";

@import "settings.css";

/*============================================================================================
      Initialize
=============================================================================================*/
/*		html, body
=====================================================*/
html {
  font-size: 10px;
}
body {
  /* ベースが明朝体の場合以下を有効化 */
  /* font-family: YakuHanJPs, var(--font-en), var(--font-jp), "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", Georgia, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif; */
  /* ベースがゴシック体の場合以下を有効化 */
  font-family: YakuHanJPs, var(--font-jp), -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "Segoe UI", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: var(--color-black);
  font-size: var(--fz-main);
  line-height: var(--line-height);
  -webkit-text-size-adjust: 100%;
  background-color: var(--color-sub);
}
@media (max-width: 896px) {
  body {
    font-size: 1.4rem;
  }
}
@media (max-width: 374px) {
  html {
    font-size: 2.6vw;
  }
}

/*    a
=====================================================*/
a {
  color: inherit;
  text-decoration: inherit;
  font-size: inherit;
  text-align: inherit;
}

/*    img
=====================================================*/
img {
  line-height: 0;
  max-width: 100%;
  height: auto;
}

/*    button
=====================================================*/
button {
  font-size: inherit;
  font-family: inherit;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
}
button:focus {
  outline: none;
}

/*    Form parts
=====================================================*/
input[type="text"],
select,
textarea {
  color: inherit;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  border-radius: 0;
}
input[type="submit"],
input[type="button"],
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  outline: none;
}
input,
select {
  line-height: 1;
}
select {
  color: inherit;
}
textarea {
  resize: vertical;
}
input[type="submit"],
input[type="button"],
input[type="radio"],
input[type="checkbox"],
label,
button,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: var(--color-border);
}
::-moz-placeholder {
  /* Others */
  color: var(--color-border);
}
:-ms-input-placeholder {
  /* Others */
  color: var(--color-border);
}
::-ms-input-placeholder {
  /* Others */
  color: var(--color-border);
}
::placeholder {
  /* Others */
  color: var(--color-border);
}

@media (max-width: 896px) {
  /* iOSでタップ時のズームを防ぐ */
  input,
  button,
  select,
  textarea {
    font-size: 1.6rem;
  }
}

/*    Superscript
=====================================================*/
sup {
  vertical-align: super;
  font-size: smaller;
}

/*    word wrap
=====================================================*/
* {
  word-wrap: break-word;
}

/*    figure
=====================================================*/
figure {
  margin-bottom: 0 !important;
}

/*============================================================================================
      Utility
=============================================================================================*/
/*    Display
=====================================================*/
/*-- PC --*/
.u_tbl {
  display: none !important;
}
.u_sp {
  display: none !important;
}
.u_pc {
  display: block !important;
}
.u_pc.u_inlineB {
  display: inline-block !important;
}
.u_pc.u_inline {
  display: inline !important;
}
@media (max-width: 896px) {
  .u_pc {
    display: none !important;
  }
  .u_sp {
    display: none !important;
  }
  .u_tbl {
    display: block !important;
  }
  .u_tbl.u_pc {
    display: block !important;
  }
  .u_pc.u_inlineB {
    display: none !important;
  }
  .u_tbl.u_inlineB {
    display: inline-block !important;
  }
  .u_tbl.u_pc.u_inlineB {
    display: inline-block !important;
  }
  .u_pc.u_inline {
    display: none !important;
  }
  .u_tbl.u_inline {
    display: inline !important;
  }
  .u_tbl.u_pc.u_inline {
    display: inline !important;
  }
  .u_sp.u_tbl {
    display: block !important;
  }
  .u_sp.u_tbl.u_inlineB {
    display: inline-block !important;
  }
  .u_sp.u_tbl.u_inline {
    display: inline !important;
  }
}
/*-- SP --*/
@media (max-width: 576px) {
  .u_pc {
    display: none !important;
  }
  .u_tbl {
    display: none !important;
  }
  .u_sp {
    display: block !important;
  }
  .u_tbl.u_pc {
    display: none !important;
  }
  .u_sp.u_tbl {
    display: block !important;
  }
  .u_sp.u_inlineB {
    display: inline-block !important;
  }
  .u_sp.u_tbl.u_inlineB {
    display: inline-block !important;
  }
  .u_sp.u_inline {
    display: inline !important;
  }
  .u_sp.u_tbl.u_inline {
    display: inline !important;
  }
}

/*    Contents
=====================================================*/
/*-- Images --*/
.u_img,
.u_img_def {
  display: block;
  line-height: 0;
}
.u_img img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.u_img video {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.u_img_def img {
  display: block;
  margin: 0 auto;
}
.u_img figcaption,
.u_img_def figcaption {
  line-height: var(--line-height);
}

/*-- Icon --*/
.u_ic {
  position: relative;
}
.u_ic::before,
.u_ic::after {
  content: "";
  margin: auto;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  position: absolute;
  pointer-events: none;
}

/* pattern background */
.u_bg {
  background-repeat: repeat;
  background-position: left top;
  background-size: auto;
}

/*-- Text Indent --*/
.u_indent {
  text-indent: -1em;
  padding-left: 1em;
}

/*-- Text Align --*/
.u_alignC {
  text-align: center;
}
.u_alignL {
  text-align: left;
}
.u_alignR {
  text-align: right;
}
/*-- lg --*/
@media (max-width: 1040px) {
  .u_alignC_lg {
    text-align: center;
  }
  .u_alignL_lg {
    text-align: left;
  }
  .u_alignR_lg {
    text-align: right;
  }
}
/*-- md --*/
@media (max-width: 896px) {
  .u_alignC_md {
    text-align: center;
  }
  .u_alignL_md {
    text-align: left;
  }
  .u_alignR_md {
    text-align: right;
  }
}
/*-- sm --*/
@media (max-width: 576px) {
  .u_alignC_sm {
    text-align: center;
  }
  .u_alignL_sm {
    text-align: left;
  }
  .u_alignR_sm {
    text-align: right;
  }
}

/*-- Font Size --*/
.u_fz40 {
  font-size: 4rem;
}
.u_fz38 {
  font-size: 3.8rem;
}
.u_fz36 {
  font-size: 3.6rem;
}
.u_fz34 {
  font-size: 3.4rem;
}
.u_fz32 {
  font-size: 3.2rem;
}
.u_fz30 {
  font-size: 3rem;
}
.u_fz28 {
  font-size: 2.8rem;
}
.u_fz26 {
  font-size: 2.6rem;
}
.u_fz24 {
  font-size: 2.4rem;
}
.u_fz22 {
  font-size: 2.2rem;
}
.u_fz20 {
  font-size: 2rem;
}
.u_fz18 {
  font-size: 1.8rem;
}
.u_fz16 {
  font-size: 1.6rem;
}
.u_fz15 {
  font-size: 1.5rem;
}
.u_fz14 {
  font-size: 1.4rem;
}
.u_fz13 {
  font-size: 1.3rem;
}
.u_fz12 {
  font-size: 1.2rem;
}
.u_fz11 {
  font-size: 1.1rem;
}
.u_fz10 {
  font-size: 1rem;
}
@media (max-width: 896px) {
  .u_fz30_md {
    font-size: 3rem;
  }
  .u_fz28_md {
    font-size: 2.8rem;
  }
  .u_fz26_md {
    font-size: 2.6rem;
  }
  .u_fz24_md {
    font-size: 2.4rem;
  }
  .u_fz22_md {
    font-size: 2.2rem;
  }
  .u_fz20_md {
    font-size: 2rem;
  }
  .u_fz18_md {
    font-size: 1.8rem;
    /* font-size: clamp(1rem,calc((100vw / var(--vw-value-sm)) * 18),3.2rem); */
  }
  .u_fz16_md {
    font-size: 1.6rem;
    /* font-size: clamp(1rem,calc((100vw / var(--vw-value-sm)) * 16),3.2rem); */
  }
  .u_fz15_md {
    font-size: 1.5rem;
    /* font-size: clamp(1rem,calc((100vw / var(--vw-value-sm)) * 15),3rem); */
  }
  .u_fz14_md {
    font-size: 1.4rem;
    /* font-size: clamp(1rem,calc((100vw / var(--vw-value-sm)) * 14),2.8rem); */
  }
  .u_fz13_md {
    font-size: 1.3rem;
    /* font-size: clamp(1rem,calc((100vw / var(--vw-value-sm)) * 13),2.6rem); */
  }
  .u_fz12_md {
    font-size: 1.2rem;
  }
  .u_fz11_md {
    font-size: 1.1rem;
  }
  .u_fz10_md {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .u_fz30_sm {
    font-size: 3rem;
  }
  .u_fz28_sm {
    font-size: 2.8rem;
  }
  .u_fz26_sm {
    font-size: 2.6rem;
  }
  .u_fz24_sm {
    font-size: 2.4rem;
  }
  .u_fz22_sm {
    font-size: 2.2rem;
  }
  .u_fz20_sm {
    font-size: 2rem;
  }
  .u_fz18_sm {
    font-size: 1.8rem;
  }
  .u_fz16_sm {
    font-size: 1.6rem;
  }
  .u_fz15_sm {
    font-size: 1.5rem;
  }
  .u_fz14_sm {
    font-size: 1.4rem;
  }
  .u_fz13_sm {
    font-size: 1.3rem;
  }
  .u_fz12_sm {
    font-size: 1.2rem;
  }
  .u_fz11_sm {
    font-size: 1.1rem;
  }
  .u_fz10_sm {
    font-size: 1rem;
  }
}

/*-- Font Weight --*/
.u_black {
  font-weight: 900;
}
.u_bold {
  font-weight: 700;
}
.u_semibold {
  font-weight: 600;
}
.u_medium {
  font-weight: 500;
}
.u_regular {
  font-weight: 400;
}
.u_light {
  font-weight: 300;
}
.u_exlight {
  font-weight: 200;
}
.u_thin {
  font-weight: 100;
}

/*-- Text Transform --*/
.u_tt_up {
  text-transform: uppercase;
}
.u_tt_low {
  text-transform: lowercase;
}

/*-- Scroll prevent --*/
.u_scrollPrevent {
  overflow: hidden;
}

/*============================================================================================
      Layout
=============================================================================================*/
/*    Wrapper
=====================================================*/
.l_wrap {
  width: 100%;
  margin: auto;
}
.l_wrap_inr {
  max-width: var(--cont-width); /* コンテンツ幅 */
  width: 90vw;
  margin: auto;
}
.l_wrapper {
  width: 100%;
  /*   overflow: hidden; */
}

@media (max-width: 1040px) {
  .l_wrap_inr {
  }
}

@media (max-width: 576px) {
  .l_wrap_inr {
    width: 90vw;
    margin: auto;
  }
}

/*    Grid
=====================================================*/
.l_grid {
  display: -ms-grid;
  display: grid;
}
.l_grid_1 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.l_grid_2 {
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
}
.l_grid_3 {
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
}
.l_grid_4 {
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
}
.l_grid_5 {
  -ms-grid-columns: (1fr) [5];
  grid-template-columns: repeat(5, 1fr);
}
.l_grid_6 {
  -ms-grid-columns: (1fr) [6];
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1040px) {
  .l_grid_lg {
    display: -ms-grid;
    display: grid;
  }
  .l_grid_lg_1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .l_grid_lg_2 {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .l_grid_lg_3 {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
  }
  .l_grid_lg_4 {
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
  }
  .l_grid_lg_5 {
    -ms-grid-columns: (1fr) [5];
    grid-template-columns: repeat(5, 1fr);
  }
  .l_grid_lg_6 {
    -ms-grid-columns: (1fr) [6];
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 896px) {
  .l_grid_md {
    display: -ms-grid;
    display: grid;
  }
  .l_grid_md_1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .l_grid_md_2 {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .l_grid_md_3 {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
  }
  .l_grid_md_4 {
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
  }
  .l_grid_md_5 {
    -ms-grid-columns: (1fr) [5];
    grid-template-columns: repeat(5, 1fr);
  }
  .l_grid_md_6 {
    -ms-grid-columns: (1fr) [6];
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 576px) {
  .l_grid_sm {
    display: -ms-grid;
    display: grid;
  }
  .l_grid_sm_1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .l_grid_sm_2 {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .l_grid_sm_3 {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
  }
  .l_grid_sm_4 {
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
  }
  .l_grid_sm_5 {
    -ms-grid-columns: (1fr) [5];
    grid-template-columns: repeat(5, 1fr);
  }
  .l_grid_sm_6 {
    -ms-grid-columns: (1fr) [6];
    grid-template-columns: repeat(6, 1fr);
  }
}

/*    Flex box
=====================================================*/
.l_flex {
  display: flex;
}
.l_flexWrap {
  flex-wrap: wrap;
}
.l_flexNoShrink {
  flex-shrink: 0;
}
.l_directionColumn {
  flex-direction: column !important;
}
.l_directionRow {
  flex-direction: row !important;
}
.l_alignItemsCenter {
  align-items: center !important;
}
.l_alignItemsStart {
  align-items: flex-start !important;
}
.l_alignItemsEnd {
  align-items: flex-end !important;
}
.l_alignContentCenter {
  align-content: center !important;
}
.l_alignContentStart {
  align-content: flex-start !important;
}
.l_alignContentEnd {
  align-content: flex-end !important;
}
.l_alignSelfCenter {
  -ms-grid-row-align: center !important;
  align-self: center !important;
}
.l_alignSelfStart {
  align-self: flex-start !important;
}
.l_alignSelfEnd {
  align-self: flex-end !important;
}
.l_justifyContentCenter {
  justify-content: center !important;
}
.l_justifyContentStart {
  justify-content: flex-start !important;
}
.l_justifyContentEnd {
  justify-content: flex-end !important;
}
.l_justifyContentAround {
  justify-content: space-around !important;
}
.l_justifyContentBetween {
  justify-content: space-between !important;
}
.l_placeItemsStart {
  place-items: start !important;
}
.l_placeItemsEnd {
  place-items: end !important;
}
.l_placeItemsCenter {
  place-items: center !important;
}
.l_order_1 {
  order: 1;
}
.l_order_2 {
  order: 2;
}

/* Large devices (desktops, 992px and under) */
@media (max-width: 1040px) {
  .l_flex_lg {
    display: flex;
  }
  .l_flexWrap_lg {
    flex-wrap: wrap;
  }
  .l_flexNoShrink_lg {
    flex-shrink: 0;
  }
  .l_directionColumn_lg {
    flex-direction: column !important;
  }
  .l_directionRow_lg {
    flex-direction: row !important;
  }
  .l_alignItemsCenter_lg {
    align-items: center !important;
  }
  .l_alignItemsStart_lg {
    align-items: flex-start !important;
  }
  .l_alignItemsEnd_lg {
    align-items: flex-end !important;
  }
  .l_alignContentCenter_lg {
    align-content: center !important;
  }
  .l_alignContentStart_lg {
    align-content: flex-start !important;
  }
  .l_alignContentEnd_lg {
    align-content: flex-end !important;
  }
  .l_alignSelfCenter_lg {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }
  .l_alignSelfStart_lg {
    align-self: flex-start !important;
  }
  .l_alignSelfEnd_lg {
    align-self: flex-end !important;
  }
  .l_justifyContentCenter_lg {
    justify-content: center !important;
  }
  .l_justifyContentStart_lg {
    justify-content: flex-start !important;
  }
  .l_justifyContentEnd_lg {
    justify-content: flex-end !important;
  }
  .l_justifyContentAround_lg {
    justify-content: space-around !important;
  }
  .l_justifyContentBetween_lg {
    justify-content: space-between !important;
  }
  .l_placeItemsStart_lg {
    place-items: start !important;
  }
  .l_placeItemsEnd_lg {
    place-items: end !important;
  }
  .l_placeItemsCenter_lg {
    place-items: center !important;
  }
  .l_order_1_lg {
    order: 1;
  }
  .l_order_2_lg {
    order: 2;
  }
}

/* Medium devices (tablets, 768px and under) */
@media (max-width: 896px) {
  .l_flex_md {
    display: flex;
  }
  .l_flexWrap_md {
    flex-wrap: wrap;
  }
  .l_flexNoShrink_md {
    flex-shrink: 0;
  }
  .l_directionColumn_md {
    flex-direction: column !important;
  }
  .l_directionRow_md {
    flex-direction: row !important;
  }
  .l_alignItemsCenter_md {
    align-items: center !important;
  }
  .l_alignItemsStart_md {
    align-items: flex-start !important;
  }
  .l_alignItemsEnd_md {
    align-items: flex-end !important;
  }
  .l_alignContentCenter_md {
    align-content: center !important;
  }
  .l_alignContentStart_md {
    align-content: flex-start !important;
  }
  .l_alignContentEnd_md {
    align-content: flex-end !important;
  }
  .l_alignSelfCenter_md {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }
  .l_alignSelfStart_md {
    align-self: flex-start !important;
  }
  .l_alignSelfEnd_md {
    align-self: flex-end !important;
  }
  .l_justifyContentCenter_md {
    justify-content: center !important;
  }
  .l_justifyContentStart_md {
    justify-content: flex-start !important;
  }
  .l_justifyContentEnd_md {
    justify-content: flex-end !important;
  }
  .l_justifyContentAround_md {
    justify-content: space-around !important;
  }
  .l_justifyContentBetween_md {
    justify-content: space-between !important;
  }
  .l_placeItemsStart_md {
    place-items: start !important;
  }
  .l_placeItemsEnd_md {
    place-items: end !important;
  }
  .l_placeItemsCenter_md {
    place-items: center !important;
  }
  .l_order_1_md {
    order: 1;
  }
  .l_order_2_md {
    order: 2;
  }
}

/* Small devices (landscape phones, 576px and under) */
@media (max-width: 576px) {
  .l_flex_sm {
    display: flex;
  }
  .l_flexWrap_sm {
    flex-wrap: wrap;
  }
  .l_flexNoShrink_sm {
    flex-shrink: 0;
  }
  .l_directionColumn_sm {
    flex-direction: column !important;
  }
  .l_directionRow_sm {
    flex-direction: row !important;
  }
  .l_alignItemsCenter_sm {
    align-items: center !important;
  }
  .l_alignItemsStart_sm {
    align-items: flex-start !important;
  }
  .l_alignItemsEnd_sm {
    align-items: flex-end !important;
  }
  .l_alignContentCenter_sm {
    align-content: center !important;
  }
  .l_alignContentStart_sm {
    align-content: flex-start !important;
  }
  .l_alignContentEnd_sm {
    align-content: flex-end !important;
  }
  .l_alignSelfCenter_sm {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }
  .l_alignSelfStart_sm {
    align-self: flex-start !important;
  }
  .l_alignSelfEnd_sm {
    align-self: flex-end !important;
  }
  .l_justifyContentCenter_sm {
    justify-content: center !important;
  }
  .l_justifyContentStart_sm {
    justify-content: flex-start !important;
  }
  .l_justifyContentEnd_sm {
    justify-content: flex-end !important;
  }
  .l_justifyContentAround_sm {
    justify-content: space-around !important;
  }
  .l_justifyContentBetween_sm {
    justify-content: space-between !important;
  }
  .l_placeItemsStart_sm {
    place-items: start !important;
  }
  .l_placeItemsEnd_sm {
    place-items: end !important;
  }
  .l_placeItemsCenter_sm {
    place-items: center !important;
  }
  .l_order_1_sm {
    order: 1;
  }
  .l_order_2_sm {
    order: 2;
  }
}

/*    Inline block
=====================================================*/
.l_col {
  font-size: 0;
}
.l_col_chd {
  display: inline-block;
}

/*    Ratio
=====================================================*/
.l_ratio3_1 {
  width: 32%;
}
.l_ratio3_2 {
  width: 66%;
}

.l_ratio4_1 {
  width: 23%;
}
.l_ratio4_3 {
  width: 75%;
}

@media (max-width: 896px) {
  .l_ratio3_1,
  .l_ratio3_2 {
    width: 48.5%;
  }

  .l_ratio4_1 {
    width: 32%;
  }
  .l_ratio4_3 {
    width: 66%;
  }
}

@media (max-width: 576px) {
  .l_ratio3_1 {
    width: 100%;
    order: 1;
  }
  .l_ratio3_2 {
    width: 100%;
    order: 2;
  }

  .l_ratio4_1 {
    width: 100%;
    order: 1;
  }
  .l_ratio4_3 {
    width: 100%;
    order: 2;
  }
}

/*    Gap
=====================================================*/
/*-- Horizontal / Vertical --*/
.l_gap_0 {
  gap: 0;
}
.l_gap_5 {
  gap: 5px;
}
.l_gap_10 {
  gap: 10px;
}
.l_gap_15 {
  gap: 15px;
}
.l_gap_20 {
  gap: 20px;
}
.l_gap_25 {
  gap: 25px;
}
.l_gap_30 {
  gap: 30px;
}
.l_gap_35 {
  gap: 35px;
}
.l_gap_40 {
  gap: 40px;
}
.l_gap_45 {
  gap: 45px;
}
.l_gap_50 {
  gap: 50px;
}
.l_gap_60 {
  gap: 60px;
}
.l_gap_70 {
  gap: 70px;
}
.l_gap_80 {
  gap: 80px;
}
.l_gap_90 {
  gap: 90px;
}
.l_gap_100 {
  gap: 100px;
}

/*-- Horizontal --*/
.l_gap_0_x {
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
}
.l_gap_5_x {
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
.l_gap_10_x {
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.l_gap_15_x {
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
.l_gap_20_x {
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.l_gap_25_x {
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}
.l_gap_30_x {
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.l_gap_35_x {
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
}
.l_gap_40_x {
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.l_gap_45_x {
  -webkit-column-gap: 45px;
  -moz-column-gap: 45px;
  column-gap: 45px;
}
.l_gap_50_x {
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
.l_gap_60_x {
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
.l_gap_70_x {
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  column-gap: 70px;
}
.l_gap_80_x {
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
}
.l_gap_90_x {
  -webkit-column-gap: 90px;
  -moz-column-gap: 90px;
  column-gap: 90px;
}
.l_gap_100_x {
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
}

/*-- Vertical --*/
.l_gap_0_y {
  row-gap: 0;
}
.l_gap_5_y {
  row-gap: 5px;
}
.l_gap_10_y {
  row-gap: 10px;
}
.l_gap_15_y {
  row-gap: 15px;
}
.l_gap_20_y {
  row-gap: 20px;
}
.l_gap_25_y {
  row-gap: 25px;
}
.l_gap_30_y {
  row-gap: 30px;
}
.l_gap_35_y {
  row-gap: 35px;
}
.l_gap_40_y {
  row-gap: 40px;
}
.l_gap_45_y {
  row-gap: 45px;
}
.l_gap_50_y {
  row-gap: 50px;
}
.l_gap_60_y {
  row-gap: 60px;
}
.l_gap_70_y {
  row-gap: 70px;
}
.l_gap_80_y {
  row-gap: 80px;
}
.l_gap_90_y {
  row-gap: 90px;
}
.l_gap_100_y {
  row-gap: 100px;
}
@media (max-width: 1040px) {
  /*-- Horizontal / Vertical --*/
  .l_gap_lg_0 {
    gap: 0;
  }
  .l_gap_lg_5 {
    gap: 5px;
  }
  .l_gap_lg_10 {
    gap: 10px;
  }
  .l_gap_lg_15 {
    gap: 15px;
  }
  .l_gap_lg_20 {
    gap: 20px;
  }
  .l_gap_lg_25 {
    gap: 25px;
  }
  .l_gap_lg_30 {
    gap: 30px;
  }
  .l_gap_lg_35 {
    gap: 35px;
  }
  .l_gap_lg_40 {
    gap: 40px;
  }
  .l_gap_lg_45 {
    gap: 45px;
  }
  .l_gap_lg_50 {
    gap: 50px;
  }
  .l_gap_lg_60 {
    gap: 60px;
  }
  .l_gap_lg_70 {
    gap: 70px;
  }
  .l_gap_lg_80 {
    gap: 80px;
  }
  .l_gap_lg_90 {
    gap: 90px;
  }
  .l_gap_lg_100 {
    gap: 100px;
  }

  /*-- Horizontal --*/
  .l_gap_lg_0_x {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
  .l_gap_lg_5_x {
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
  .l_gap_lg_10_x {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .l_gap_lg_15_x {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .l_gap_lg_20_x {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .l_gap_lg_25_x {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
  .l_gap_lg_30_x {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .l_gap_lg_35_x {
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px;
  }
  .l_gap_lg_40_x {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .l_gap_lg_45_x {
    -webkit-column-gap: 45px;
    -moz-column-gap: 45px;
    column-gap: 45px;
  }
  .l_gap_lg_50_x {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .l_gap_lg_60_x {
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
  .l_gap_lg_70_x {
    -webkit-column-gap: 70px;
    -moz-column-gap: 70px;
    column-gap: 70px;
  }
  .l_gap_lg_80_x {
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
  }
  .l_gap_lg_90_x {
    -webkit-column-gap: 90px;
    -moz-column-gap: 90px;
    column-gap: 90px;
  }
  .l_gap_lg_100_x {
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
  }

  /*-- Vertical --*/
  .l_gap_lg_0_y {
    row-gap: 0;
  }
  .l_gap_lg_5_y {
    row-gap: 5px;
  }
  .l_gap_lg_10_y {
    row-gap: 10px;
  }
  .l_gap_lg_15_y {
    row-gap: 15px;
  }
  .l_gap_lg_20_y {
    row-gap: 20px;
  }
  .l_gap_lg_25_y {
    row-gap: 25px;
  }
  .l_gap_lg_30_y {
    row-gap: 30px;
  }
  .l_gap_lg_35_y {
    row-gap: 35px;
  }
  .l_gap_lg_40_y {
    row-gap: 40px;
  }
  .l_gap_lg_45_y {
    row-gap: 45px;
  }
  .l_gap_lg_50_y {
    row-gap: 50px;
  }
  .l_gap_lg_60_y {
    row-gap: 60px;
  }
  .l_gap_lg_70_y {
    row-gap: 70px;
  }
  .l_gap_lg_80_y {
    row-gap: 80px;
  }
  .l_gap_lg_90_y {
    row-gap: 90px;
  }
  .l_gap_lg_100_y {
    row-gap: 100px;
  }
}
@media (max-width: 896px) {
  /*-- Horizontal / Vertical --*/
  .l_gap_md_0 {
    gap: 0;
  }
  .l_gap_md_5 {
    gap: 5px;
  }
  .l_gap_md_10 {
    gap: 10px;
  }
  .l_gap_md_15 {
    gap: 15px;
  }
  .l_gap_md_20 {
    gap: 20px;
  }
  .l_gap_md_25 {
    gap: 25px;
  }
  .l_gap_md_30 {
    gap: 30px;
  }
  .l_gap_md_35 {
    gap: 35px;
  }
  .l_gap_md_40 {
    gap: 40px;
  }
  .l_gap_md_45 {
    gap: 45px;
  }
  .l_gap_md_50 {
    gap: 50px;
  }
  .l_gap_md_60 {
    gap: 60px;
  }
  .l_gap_md_70 {
    gap: 70px;
  }
  .l_gap_md_80 {
    gap: 80px;
  }
  .l_gap_md_90 {
    gap: 90px;
  }
  .l_gap_md_100 {
    gap: 100px;
  }

  /*-- Horizontal --*/
  .l_gap_md_0_x {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
  .l_gap_md_5_x {
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
  .l_gap_md_10_x {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .l_gap_md_15_x {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .l_gap_md_20_x {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .l_gap_md_25_x {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
  .l_gap_md_30_x {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .l_gap_md_35_x {
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px;
  }
  .l_gap_md_40_x {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .l_gap_md_45_x {
    -webkit-column-gap: 45px;
    -moz-column-gap: 45px;
    column-gap: 45px;
  }
  .l_gap_md_50_x {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .l_gap_md_60_x {
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
  .l_gap_md_70_x {
    -webkit-column-gap: 70px;
    -moz-column-gap: 70px;
    column-gap: 70px;
  }
  .l_gap_md_80_x {
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
  }
  .l_gap_md_90_x {
    -webkit-column-gap: 90px;
    -moz-column-gap: 90px;
    column-gap: 90px;
  }
  .l_gap_md_100_x {
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
  }

  /*-- Vertical --*/
  .l_gap_md_0_y {
    row-gap: 0;
  }
  .l_gap_md_5_y {
    row-gap: 5px;
  }
  .l_gap_md_10_y {
    row-gap: 10px;
  }
  .l_gap_md_15_y {
    row-gap: 15px;
  }
  .l_gap_md_20_y {
    row-gap: 20px;
  }
  .l_gap_md_25_y {
    row-gap: 25px;
  }
  .l_gap_md_30_y {
    row-gap: 30px;
  }
  .l_gap_md_35_y {
    row-gap: 35px;
  }
  .l_gap_md_40_y {
    row-gap: 40px;
  }
  .l_gap_md_45_y {
    row-gap: 45px;
  }
  .l_gap_md_50_y {
    row-gap: 50px;
  }
  .l_gap_md_60_y {
    row-gap: 60px;
  }
  .l_gap_md_70_y {
    row-gap: 70px;
  }
  .l_gap_md_80_y {
    row-gap: 80px;
  }
  .l_gap_md_90_y {
    row-gap: 90px;
  }
  .l_gap_md_100_y {
    row-gap: 100px;
  }
}
@media (max-width: 576px) {
  /*-- Horizontal / Vertical --*/
  .l_gap_sm_0 {
    gap: 0;
  }
  .l_gap_sm_5 {
    gap: 1.3vw;
  }
  .l_gap_sm_10 {
    gap: 2.6vw;
  }
  .l_gap_sm_15 {
    gap: 4vw;
  }
  .l_gap_sm_20 {
    gap: 5.3vw;
  }
  .l_gap_sm_25 {
    gap: 6.6vw;
  }
  .l_gap_sm_30 {
    gap: 8vw;
  }
  .l_gap_sm_35 {
    gap: 9.3vw;
  }
  .l_gap_sm_40 {
    gap: 10.6vw;
  }
  .l_gap_sm_45 {
    gap: 12vw;
  }
  .l_gap_sm_50 {
    gap: 13.3vw;
  }
  .l_gap_sm_60 {
    gap: 16vw;
  }
  .l_gap_sm_70 {
    gap: 18.6vw;
  }
  .l_gap_sm_80 {
    gap: 21.3vw;
  }
  .l_gap_sm_90 {
    gap: 24vw;
  }
  .l_gap_sm_100 {
    gap: 26.6vw;
  }

  /*-- Horizontal --*/
  .l_gap_sm_0_x {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
  .l_gap_sm_5_x {
    -webkit-column-gap: 1.3vw;
    -moz-column-gap: 1.3vw;
    column-gap: 1.3vw;
  }
  .l_gap_sm_10_x {
    -webkit-column-gap: 2.6vw;
    -moz-column-gap: 2.6vw;
    column-gap: 2.6vw;
  }
  .l_gap_sm_15_x {
    -webkit-column-gap: 4vw;
    -moz-column-gap: 4vw;
    column-gap: 4vw;
  }
  .l_gap_sm_20_x {
    -webkit-column-gap: 5.3vw;
    -moz-column-gap: 5.3vw;
    column-gap: 5.3vw;
  }
  .l_gap_sm_25_x {
    -webkit-column-gap: 6.6vw;
    -moz-column-gap: 6.6vw;
    column-gap: 6.6vw;
  }
  .l_gap_sm_30_x {
    -webkit-column-gap: 8vw;
    -moz-column-gap: 8vw;
    column-gap: 8vw;
  }
  .l_gap_sm_35_x {
    -webkit-column-gap: 9.3vw;
    -moz-column-gap: 9.3vw;
    column-gap: 9.3vw;
  }
  .l_gap_sm_40_x {
    -webkit-column-gap: 10.6vw;
    -moz-column-gap: 10.6vw;
    column-gap: 10.6vw;
  }
  .l_gap_sm_45_x {
    -webkit-column-gap: 12vw;
    -moz-column-gap: 12vw;
    column-gap: 12vw;
  }
  .l_gap_sm_50_x {
    -webkit-column-gap: 13.3vw;
    -moz-column-gap: 13.3vw;
    column-gap: 13.3vw;
  }
  .l_gap_sm_60_x {
    -webkit-column-gap: 16vw;
    -moz-column-gap: 16vw;
    column-gap: 16vw;
  }
  .l_gap_sm_70_x {
    -webkit-column-gap: 18.6vw;
    -moz-column-gap: 18.6vw;
    column-gap: 18.6vw;
  }
  .l_gap_sm_80_x {
    -webkit-column-gap: 21.3vw;
    -moz-column-gap: 21.3vw;
    column-gap: 21.3vw;
  }
  .l_gap_sm_90_x {
    -webkit-column-gap: 24vw;
    -moz-column-gap: 24vw;
    column-gap: 24vw;
  }
  .l_gap_sm_100_x {
    -webkit-column-gap: 26.6vw;
    -moz-column-gap: 26.6vw;
    column-gap: 26.6vw;
  }

  /*-- Vertical --*/
  .l_gap_sm_0_y {
    row-gap: 0;
  }
  .l_gap_sm_5_y {
    row-gap: 1.3vw;
  }
  .l_gap_sm_10_y {
    row-gap: 2.6vw;
  }
  .l_gap_sm_15_y {
    row-gap: 4vw;
  }
  .l_gap_sm_20_y {
    row-gap: 5.3vw;
  }
  .l_gap_sm_25_y {
    row-gap: 6.6vw;
  }
  .l_gap_sm_30_y {
    row-gap: 8vw;
  }
  .l_gap_sm_35_y {
    row-gap: 9.3vw;
  }
  .l_gap_sm_40_y {
    row-gap: 10.6vw;
  }
  .l_gap_sm_45_y {
    row-gap: 12vw;
  }
  .l_gap_sm_50_y {
    row-gap: 13.3vw;
  }
  .l_gap_sm_60_y {
    row-gap: 16vw;
  }
  .l_gap_sm_70_y {
    row-gap: 18.6vw;
  }
  .l_gap_sm_80_y {
    row-gap: 21.3vw;
  }
  .l_gap_sm_90_y {
    row-gap: 24vw;
  }
  .l_gap_sm_100_y {
    row-gap: 26.6vw;
  }
}

/*    Padding
=====================================================*/
/*-- Horizontal / Vertical--*/
.px_0 {
  padding-left: auto !important;
  padding-right: auto !important;
}
.py_0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@media (max-width: 1040px) {
  .px_0_lg {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .py_0_lg {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 896px) {
  .px_0_md {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .py_0_md {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 576px) {
  .px_0_sm {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .py_0_sm {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/*-- top --*/
.pt_0 {
  padding-top: 0 !important;
}
.pt_5 {
  padding-top: 5px !important;
}
.pt_10 {
  padding-top: 10px !important;
}
.pt_15 {
  padding-top: 15px !important;
}
.pt_20 {
  padding-top: 20px !important;
}
.pt_25 {
  padding-top: 25px !important;
}
.pt_30 {
  padding-top: 30px !important;
}
.pt_35 {
  padding-top: 35px !important;
}
.pt_40 {
  padding-top: 40px !important;
}
.pt_45 {
  padding-top: 45px !important;
}
.pt_50 {
  padding-top: 50px !important;
}
.pt_60 {
  padding-top: 60px !important;
}
.pt_70 {
  padding-top: 70px !important;
}
.pt_80 {
  padding-top: 80px !important;
}
.pt_90 {
  padding-top: 90px !important;
}
.pt_100 {
  padding-top: 100px !important;
}
@media (max-width: 1040px) {
  .pt_0_lg {
    padding-top: 0 !important;
  }
  .pt_5_lg {
    padding-top: 5px !important;
  }
  .pt_10_lg {
    padding-top: 10px !important;
  }
  .pt_15_lg {
    padding-top: 15px !important;
  }
  .pt_20_lg {
    padding-top: 20px !important;
  }
  .pt_25_lg {
    padding-top: 25px !important;
  }
  .pt_30_lg {
    padding-top: 30px !important;
  }
  .pt_35_lg {
    padding-top: 35px !important;
  }
  .pt_40_lg {
    padding-top: 40px !important;
  }
  .pt_45_lg {
    padding-top: 45px !important;
  }
  .pt_50_lg {
    padding-top: 50px !important;
  }
  .pt_60_lg {
    padding-top: 60px !important;
  }
  .pt_70_lg {
    padding-top: 70px !important;
  }
  .pt_80_lg {
    padding-top: 80px !important;
  }
  .pt_90_lg {
    padding-top: 90px !important;
  }
  .pt_100_lg {
    padding-top: 100px !important;
  }
}
@media (max-width: 896px) {
  .pt_0_md {
    padding-top: 0 !important;
  }
  .pt_5_md {
    padding-top: 5px !important;
  }
  .pt_10_md {
    padding-top: 10px !important;
  }
  .pt_15_md {
    padding-top: 15px !important;
  }
  .pt_20_md {
    padding-top: 20px !important;
  }
  .pt_25_md {
    padding-top: 25px !important;
  }
  .pt_30_md {
    padding-top: 30px !important;
  }
  .pt_35_md {
    padding-top: 35px !important;
  }
  .pt_40_md {
    padding-top: 40px !important;
  }
  .pt_45_md {
    padding-top: 45px !important;
  }
  .pt_50_md {
    padding-top: 50px !important;
  }
  .pt_60_md {
    padding-top: 60px !important;
  }
  .pt_70_md {
    padding-top: 70px !important;
  }
  .pt_80_md {
    padding-top: 80px !important;
  }
  .pt_90_md {
    padding-top: 90px !important;
  }
  .pt_100_md {
    padding-top: 100px !important;
  }
}
@media (max-width: 576px) {
  .pt_5_sm {
    padding-top: 1.3vw !important;
  }
  .pt_10_sm {
    padding-top: 2.6vw !important;
  }
  .pt_15_sm {
    padding-top: 4vw !important;
  }
  .pt_20_sm {
    padding-top: 5.3vw !important;
  }
  .pt_25_sm {
    padding-top: 6.6vw !important;
  }
  .pt_30_sm {
    padding-top: 8vw !important;
  }
  .pt_35_sm {
    padding-top: 9.3vw !important;
  }
  .pt_40_sm {
    padding-top: 10.6vw !important;
  }
  .pt_45_sm {
    padding-top: 12vw !important;
  }
  .pt_50_sm {
    padding-top: 13.3vw !important;
  }
  .pt_60_sm {
    padding-top: 16vw !important;
  }
  .pt_70_sm {
    padding-top: 18.6vw !important;
  }
  .pt_80_sm {
    padding-top: 21.3vw !important;
  }
  .pt_90_sm {
    padding-top: 24vw !important;
  }
  .pt_100_sm {
    padding-top: 26.6vw !important;
  }
}

/*-- bottom --*/
.pb_0 {
  padding-bottom: 0 !important;
}
.pb_5 {
  padding-bottom: 5px !important;
}
.pb_10 {
  padding-bottom: 10px !important;
}
.pb_15 {
  padding-bottom: 15px !important;
}
.pb_20 {
  padding-bottom: 20px !important;
}
.pb_25 {
  padding-bottom: 25px !important;
}
.pb_30 {
  padding-bottom: 30px !important;
}
.pb_35 {
  padding-bottom: 35px !important;
}
.pb_40 {
  padding-bottom: 40px !important;
}
.pb_45 {
  padding-bottom: 45px !important;
}
.pb_50 {
  padding-bottom: 50px !important;
}
.pb_60 {
  padding-bottom: 60px !important;
}
.pb_70 {
  padding-bottom: 70px !important;
}
.pb_80 {
  padding-bottom: 80px !important;
}
.pb_90 {
  padding-bottom: 90px !important;
}
.pb_100 {
  padding-bottom: 100px !important;
}
@media (max-width: 1040px) {
  .pb_0_lg {
    padding-bottom: 0 !important;
  }
  .pb_5_lg {
    padding-bottom: 5px !important;
  }
  .pb_10_lg {
    padding-bottom: 10px !important;
  }
  .pb_15_lg {
    padding-bottom: 15px !important;
  }
  .pb_20_lg {
    padding-bottom: 20px !important;
  }
  .pb_25_lg {
    padding-bottom: 25px !important;
  }
  .pb_30_lg {
    padding-bottom: 30px !important;
  }
  .pb_35_lg {
    padding-bottom: 35px !important;
  }
  .pb_40_lg {
    padding-bottom: 40px !important;
  }
  .pb_45_lg {
    padding-bottom: 45px !important;
  }
  .pb_50_lg {
    padding-bottom: 50px !important;
  }
  .pb_60_lg {
    padding-bottom: 60px !important;
  }
  .pb_70_lg {
    padding-bottom: 70px !important;
  }
  .pb_80_lg {
    padding-bottom: 80px !important;
  }
  .pb_90_lg {
    padding-bottom: 90px !important;
  }
  .pb_100_lg {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 896px) {
  .pb_0_md {
    padding-bottom: 0 !important;
  }
  .pb_5_md {
    padding-bottom: 5px !important;
  }
  .pb_10_md {
    padding-bottom: 10px !important;
  }
  .pb_15_md {
    padding-bottom: 15px !important;
  }
  .pb_20_md {
    padding-bottom: 20px !important;
  }
  .pb_25_md {
    padding-bottom: 25px !important;
  }
  .pb_30_md {
    padding-bottom: 30px !important;
  }
  .pb_35_md {
    padding-bottom: 35px !important;
  }
  .pb_40_md {
    padding-bottom: 40px !important;
  }
  .pb_45_md {
    padding-bottom: 45px !important;
  }
  .pb_50_md {
    padding-bottom: 50px !important;
  }
  .pb_60_md {
    padding-bottom: 60px !important;
  }
  .pb_70_md {
    padding-bottom: 70px !important;
  }
  .pb_80_md {
    padding-bottom: 80px !important;
  }
  .pb_90_md {
    padding-bottom: 90px !important;
  }
  .pb_100_md {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 576px) {
  .pb_5_sm {
    padding-bottom: 1.3vw !important;
  }
  .pb_10_sm {
    padding-bottom: 2.6vw !important;
  }
  .pb_15_sm {
    padding-bottom: 4vw !important;
  }
  .pb_20_sm {
    padding-bottom: 5.3vw !important;
  }
  .pb_25_sm {
    padding-bottom: 6.6vw !important;
  }
  .pb_30_sm {
    padding-bottom: 8vw !important;
  }
  .pb_35_sm {
    padding-bottom: 9.3vw !important;
  }
  .pb_40_sm {
    padding-bottom: 10.6vw !important;
  }
  .pb_45_sm {
    padding-bottom: 12vw !important;
  }
  .pb_50_sm {
    padding-bottom: 13.3vw !important;
  }
  .pb_60_sm {
    padding-bottom: 16vw !important;
  }
  .pb_70_sm {
    padding-bottom: 18.6vw !important;
  }
  .pb_80_sm {
    padding-bottom: 21.3vw !important;
  }
  .pb_90_sm {
    padding-bottom: 24vw !important;
  }
  .pb_100_sm {
    padding-bottom: 26.6vw !important;
  }
}

/*    Margin
=====================================================*/
/*-- Horizontal / Vertical --*/
.mx_auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.mx_0 {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my_auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.my_0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.ml_auto {
  margin-left: auto !important;
}
@media (max-width: 1040px) {
  .mx_auto_lg {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx_0_lg {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my_auto_lg {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my_0_lg {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .ml_auto_lg {
    margin-left: auto !important;
  }
}
@media (max-width: 896px) {
  .mx_auto_md {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx_0_md {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my_auto_md {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my_0_md {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .ml_auto_md {
    margin-left: auto !important;
  }
}
@media (max-width: 576px) {
  .mx_auto_sm {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx_0_sm {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my_auto_sm {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my_0_sm {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .ml_auto_sm {
    margin-left: auto !important;
  }
}

/*-- top --*/
.mt_0 {
  margin-top: 0 !important;
}
.mt_5 {
  margin-top: 5px !important;
}
.mt_10 {
  margin-top: 10px !important;
}
.mt_15 {
  margin-top: 15px !important;
}
.mt_20 {
  margin-top: 20px !important;
}
.mt_25 {
  margin-top: 25px !important;
}
.mt_30 {
  margin-top: 30px !important;
}
.mt_35 {
  margin-top: 35px !important;
}
.mt_40 {
  margin-top: 40px !important;
}
.mt_45 {
  margin-top: 45px !important;
}
.mt_50 {
  margin-top: 50px !important;
}
.mt_60 {
  margin-top: 60px !important;
}
.mt_70 {
  margin-top: 70px !important;
}
.mt_80 {
  margin-top: 80px !important;
}
.mt_90 {
  margin-top: 90px !important;
}
.mt_100 {
  margin-top: 100px !important;
}
@media (max-width: 1040px) {
  .mt_0_lg {
    margin-top: 0 !important;
  }
  .mt_5_lg {
    margin-top: 5px !important;
  }
  .mt_10_lg {
    margin-top: 10px !important;
  }
  .mt_15_lg {
    margin-top: 15px !important;
  }
  .mt_20_lg {
    margin-top: 20px !important;
  }
  .mt_25_lg {
    margin-top: 25px !important;
  }
  .mt_30_lg {
    margin-top: 30px !important;
  }
  .mt_35_lg {
    margin-top: 35px !important;
  }
  .mt_40_lg {
    margin-top: 40px !important;
  }
  .mt_45_lg {
    margin-top: 45px !important;
  }
  .mt_50_lg {
    margin-top: 50px !important;
  }
  .mt_60_lg {
    margin-top: 60px !important;
  }
  .mt_70_lg {
    margin-top: 70px !important;
  }
  .mt_80_lg {
    margin-top: 80px !important;
  }
  .mt_90_lg {
    margin-top: 90px !important;
  }
  .mt_100_lg {
    margin-top: 100px !important;
  }
}
@media (max-width: 896px) {
  .mt_0_md {
    margin-top: 0 !important;
  }
  .mt_5_md {
    margin-top: 5px !important;
  }
  .mt_10_md {
    margin-top: 10px !important;
  }
  .mt_15_md {
    margin-top: 15px !important;
  }
  .mt_20_md {
    margin-top: 20px !important;
  }
  .mt_25_md {
    margin-top: 25px !important;
  }
  .mt_30_md {
    margin-top: 30px !important;
  }
  .mt_35_md {
    margin-top: 35px !important;
  }
  .mt_40_md {
    margin-top: 40px !important;
  }
  .mt_45_md {
    margin-top: 45px !important;
  }
  .mt_50_md {
    margin-top: 50px !important;
  }
  .mt_60_md {
    margin-top: 60px !important;
  }
  .mt_70_md {
    margin-top: 70px !important;
  }
  .mt_80_md {
    margin-top: 80px !important;
  }
  .mt_90_md {
    margin-top: 90px !important;
  }
  .mt_100_md {
    margin-top: 100px !important;
  }
}
@media (max-width: 576px) {
  .mt_5_sm {
    margin-top: 1.3vw !important;
  }
  .mt_10_sm {
    margin-top: 2.6vw !important;
  }
  .mt_15_sm {
    margin-top: 4vw !important;
  }
  .mt_20_sm {
    margin-top: 5.3vw !important;
  }
  .mt_25_sm {
    margin-top: 6.6vw !important;
  }
  .mt_30_sm {
    margin-top: 8vw !important;
  }
  .mt_35_sm {
    margin-top: 9.3vw !important;
  }
  .mt_40_sm {
    margin-top: 10.6vw !important;
  }
  .mt_45_sm {
    margin-top: 12vw !important;
  }
  .mt_50_sm {
    margin-top: 13.3vw !important;
  }
  .mt_60_sm {
    margin-top: 16vw !important;
  }
  .mt_70_sm {
    margin-top: 18.6vw !important;
  }
  .mt_80_sm {
    margin-top: 21.3vw !important;
  }
  .mt_90_sm {
    margin-top: 24vw !important;
  }
  .mt_100_sm {
    margin-top: 26.6vw !important;
  }
}

/*-- bottom --*/
.mb_0 {
  margin-bottom: 0 !important;
}
.mb_5 {
  margin-bottom: 5px !important;
}
.mb_10 {
  margin-bottom: 10px !important;
}
.mb_15 {
  margin-bottom: 15px !important;
}
.mb_20 {
  margin-bottom: 20px !important;
}
.mb_25 {
  margin-bottom: 25px !important;
}
.mb_30 {
  margin-bottom: 30px !important;
}
.mb_35 {
  margin-bottom: 35px !important;
}
.mb_40 {
  margin-bottom: 40px !important;
}
.mb_45 {
  margin-bottom: 45px !important;
}
.mb_50 {
  margin-bottom: 50px !important;
}
.mb_60 {
  margin-bottom: 60px !important;
}
.mb_70 {
  margin-bottom: 70px !important;
}
.mb_80 {
  margin-bottom: 80px !important;
}
.mb_90 {
  margin-bottom: 90px !important;
}
.mb_100 {
  margin-bottom: 100px !important;
}
@media (max-width: 1040px) {
  .mb_0_lg {
    margin-bottom: 0 !important;
  }
  .mb_5_lg {
    margin-bottom: 5px !important;
  }
  .mb_10_lg {
    margin-bottom: 10px !important;
  }
  .mb_15_lg {
    margin-bottom: 15px !important;
  }
  .mb_20_lg {
    margin-bottom: 20px !important;
  }
  .mb_25_lg {
    margin-bottom: 25px !important;
  }
  .mb_30_lg {
    margin-bottom: 30px !important;
  }
  .mb_35_lg {
    margin-bottom: 35px !important;
  }
  .mb_40_lg {
    margin-bottom: 40px !important;
  }
  .mb_45_lg {
    margin-bottom: 45px !important;
  }
  .mb_50_lg {
    margin-bottom: 50px !important;
  }
  .mb_60_lg {
    margin-bottom: 60px !important;
  }
  .mb_70_lg {
    margin-bottom: 70px !important;
  }
  .mb_80_lg {
    margin-bottom: 80px !important;
  }
  .mb_90_lg {
    margin-bottom: 90px !important;
  }
  .mb_100_lg {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 896px) {
  .mb_0_md {
    margin-bottom: 0 !important;
  }
  .mb_5_md {
    margin-bottom: 5px !important;
  }
  .mb_10_md {
    margin-bottom: 10px !important;
  }
  .mb_15_md {
    margin-bottom: 15px !important;
  }
  .mb_20_md {
    margin-bottom: 20px !important;
  }
  .mb_25_md {
    margin-bottom: 25px !important;
  }
  .mb_30_md {
    margin-bottom: 30px !important;
  }
  .mb_35_md {
    margin-bottom: 35px !important;
  }
  .mb_40_md {
    margin-bottom: 40px !important;
  }
  .mb_45_md {
    margin-bottom: 45px !important;
  }
  .mb_50_md {
    margin-bottom: 50px !important;
  }
  .mb_60_md {
    margin-bottom: 60px !important;
  }
  .mb_70_md {
    margin-bottom: 70px !important;
  }
  .mb_80_md {
    margin-bottom: 80px !important;
  }
  .mb_90_md {
    margin-bottom: 90px !important;
  }
  .mb_100_md {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 576px) {
  .mb_5_sm {
    margin-bottom: 1.3vw !important;
  }
  .mb_10_sm {
    margin-bottom: 2.6vw !important;
  }
  .mb_15_sm {
    margin-bottom: 4vw !important;
  }
  .mb_20_sm {
    margin-bottom: 5.3vw !important;
  }
  .mb_25_sm {
    margin-bottom: 6.6vw !important;
  }
  .mb_30_sm {
    margin-bottom: 8vw !important;
  }
  .mb_35_sm {
    margin-bottom: 9.3vw !important;
  }
  .mb_40_sm {
    margin-bottom: 10.6vw !important;
  }
  .mb_45_sm {
    margin-bottom: 12vw !important;
  }
  .mb_50_sm {
    margin-bottom: 13.3vw !important;
  }
  .mb_60_sm {
    margin-bottom: 16vw !important;
  }
  .mb_70_sm {
    margin-bottom: 18.6vw !important;
  }
  .mb_80_sm {
    margin-bottom: 21.3vw !important;
  }
  .mb_90_sm {
    margin-bottom: 24vw !important;
  }
  .mb_100_sm {
    margin-bottom: 26.6vw !important;
  }
}