@charset "UTF-8";
/* https://piccalil.li/blog/a-more-modern-css-reset */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

p {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

html {
  font-size: 16px;
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  scroll-behavior: smooth;
  color: #1a1a1a;
}

img {
  max-width: 100%;
}

[id] {
  scroll-margin-top: 110px;
}
@media screen and (max-width: 991px) {
  [id] {
    scroll-margin-top: 92px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0 !important;
  letter-spacing: 0.1em;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.l-header {
  height: 92px;
  padding: 0 20px;
  -ms-flex-line-pack: center;
  align-content: center;
  position: sticky;
  top: 0;
  margin: 0 auto;
  z-index: 100;
  background-color: #ffffff;
}
@media screen and (min-width: 992px) {
  .l-header {
    height: 110px;
    padding: 0 42px;
  }
}

.l-header::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 3.6px;
  background-color: #5eff00;
}

.l-header__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .l-header__container {
    max-width: 1440px;
    margin: 0 auto;
  }
}

.l-header__container-desc {
  display: none;
}
@media screen and (min-width: 992px) {
  .l-header__container-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
}
.l-header__container-desc :hover {
  color: #41cc00;
  opacity: 1 !important;
}

.l-header__logo {
  position: relative;
  width: 84px;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-footer {
  position: relative;
}

.l-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 94%;
  height: 1px;
  top: 0px;
  background-color: #000000;
}

.l-footer__container {
  margin: 0 auto 60px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .l-footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 0 100px;
    text-align: end;
    max-width: 1440px;
    margin: 0 auto;
  }
}

.l-footer__container-logo {
  width: 112px;
  margin: 0 auto 60px;
  padding-top: 54px;
}
@media screen and (min-width: 992px) {
  .l-footer__container-logo {
    width: 75px;
    padding: 0;
    margin: 0;
  }
}

@media screen and (min-width: 992px) {
  .l-footer__container-desc-wrapper {
    margin-top: 14px;
  }
}

.l-footer__container-desc {
  margin: 0 auto 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 272px;
}
@media screen and (min-width: 992px) {
  .l-footer__container-desc {
    width: auto;
    gap: 16px;
    margin-bottom: 20px;
  }
}

.l-footer__container-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  height: 104px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (min-width: 992px) {
  .l-footer__container-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: auto;
  }
}
.l-footer__container-item :hover {
  color: #41cc00;
  opacity: 1 !important;
}

.l-footer__container-item--end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (min-width: 992px) {
  .l-footer__container-item--end {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.l-footer__container-privacy {
  font-size: 12px;
}
.l-footer__container-privacy:hover {
  color: #41cc00;
  opacity: 1 !important;
}

.l-padding {
  padding: 30px 20px;
}
@media screen and (min-width: 992px) {
  .l-padding {
    padding: 0 60px 80px;
  }
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
@media screen and (min-width: 992px) {
  .c-link-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 72%;
  }
}

.c-link-cards__item {
  background-color: rgba(128, 128, 128, 0.1254901961);
  border-radius: 16px;
  width: 292px;
  height: 164px;
  margin: 20px auto;
  position: relative;
  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;
}
@media screen and (min-width: 992px) {
  .c-link-cards__item {
    margin: 0;
    width: 48%;
    height: 220px;
  }
}
.c-link-cards__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
}
.c-link-cards__item a:hover {
  background-color: #ffffff;
  border: solid 1px #41cc00;
}
.c-link-cards__item a:hover div {
  color: #41cc00;
}

.c-link-cards__item-title {
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .c-link-cards__item-title {
    font-size: 20px;
  }
}

.c-link-cards__item-tab {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 12px;
  color: #999999;
}
@media screen and (min-width: 992px) {
  .c-link-cards__item-tab {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-0 {
    padding-top: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-0 {
    padding-top: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-0 {
    padding-top: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-0 {
    padding-top: 0px !important;
  }
}

.u-pt-5 {
  padding-top: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-5 {
    padding-top: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-5 {
    padding-top: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-5 {
    padding-top: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-5 {
    padding-top: 5px !important;
  }
}

.u-pt-10 {
  padding-top: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-10 {
    padding-top: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-10 {
    padding-top: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-10 {
    padding-top: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-10 {
    padding-top: 10px !important;
  }
}

.u-pt-15 {
  padding-top: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-15 {
    padding-top: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-15 {
    padding-top: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-15 {
    padding-top: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-15 {
    padding-top: 15px !important;
  }
}

.u-pt-20 {
  padding-top: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-20 {
    padding-top: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-20 {
    padding-top: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-20 {
    padding-top: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-20 {
    padding-top: 20px !important;
  }
}

.u-pt-25 {
  padding-top: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-25 {
    padding-top: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-25 {
    padding-top: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-25 {
    padding-top: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-25 {
    padding-top: 25px !important;
  }
}

.u-pt-30 {
  padding-top: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-30 {
    padding-top: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-30 {
    padding-top: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-30 {
    padding-top: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-30 {
    padding-top: 30px !important;
  }
}

.u-pt-35 {
  padding-top: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-35 {
    padding-top: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-35 {
    padding-top: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-35 {
    padding-top: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-35 {
    padding-top: 35px !important;
  }
}

.u-pt-40 {
  padding-top: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-40 {
    padding-top: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-40 {
    padding-top: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-40 {
    padding-top: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-40 {
    padding-top: 40px !important;
  }
}

.u-pt-45 {
  padding-top: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-45 {
    padding-top: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-45 {
    padding-top: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-45 {
    padding-top: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-45 {
    padding-top: 45px !important;
  }
}

.u-pt-50 {
  padding-top: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-50 {
    padding-top: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-50 {
    padding-top: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-50 {
    padding-top: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-50 {
    padding-top: 50px !important;
  }
}

.u-pt-55 {
  padding-top: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-55 {
    padding-top: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-55 {
    padding-top: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-55 {
    padding-top: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-55 {
    padding-top: 55px !important;
  }
}

.u-pt-60 {
  padding-top: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-60 {
    padding-top: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-60 {
    padding-top: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-60 {
    padding-top: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-60 {
    padding-top: 60px !important;
  }
}

.u-pt-65 {
  padding-top: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-65 {
    padding-top: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-65 {
    padding-top: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-65 {
    padding-top: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-65 {
    padding-top: 65px !important;
  }
}

.u-pt-70 {
  padding-top: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-70 {
    padding-top: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-70 {
    padding-top: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-70 {
    padding-top: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-70 {
    padding-top: 70px !important;
  }
}

.u-pt-75 {
  padding-top: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-75 {
    padding-top: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-75 {
    padding-top: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-75 {
    padding-top: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-75 {
    padding-top: 75px !important;
  }
}

.u-pt-80 {
  padding-top: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-80 {
    padding-top: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-80 {
    padding-top: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-80 {
    padding-top: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-80 {
    padding-top: 80px !important;
  }
}

.u-pt-85 {
  padding-top: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-85 {
    padding-top: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-85 {
    padding-top: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-85 {
    padding-top: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-85 {
    padding-top: 85px !important;
  }
}

.u-pt-90 {
  padding-top: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-90 {
    padding-top: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-90 {
    padding-top: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-90 {
    padding-top: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-90 {
    padding-top: 90px !important;
  }
}

.u-pt-95 {
  padding-top: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-95 {
    padding-top: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-95 {
    padding-top: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-95 {
    padding-top: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-95 {
    padding-top: 95px !important;
  }
}

.u-pt-100 {
  padding-top: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-pt-xl-100 {
    padding-top: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pt-lg-100 {
    padding-top: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pt-md-100 {
    padding-top: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pt-sm-100 {
    padding-top: 100px !important;
  }
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-0 {
    padding-bottom: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-0 {
    padding-bottom: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-0 {
    padding-bottom: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-0 {
    padding-bottom: 0px !important;
  }
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-5 {
    padding-bottom: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-5 {
    padding-bottom: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-5 {
    padding-bottom: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-5 {
    padding-bottom: 5px !important;
  }
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-10 {
    padding-bottom: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-10 {
    padding-bottom: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-10 {
    padding-bottom: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-10 {
    padding-bottom: 10px !important;
  }
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-15 {
    padding-bottom: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-15 {
    padding-bottom: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-15 {
    padding-bottom: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-15 {
    padding-bottom: 15px !important;
  }
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-20 {
    padding-bottom: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-20 {
    padding-bottom: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-20 {
    padding-bottom: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-20 {
    padding-bottom: 20px !important;
  }
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-25 {
    padding-bottom: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-25 {
    padding-bottom: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-25 {
    padding-bottom: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-25 {
    padding-bottom: 25px !important;
  }
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-30 {
    padding-bottom: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-30 {
    padding-bottom: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-30 {
    padding-bottom: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-30 {
    padding-bottom: 30px !important;
  }
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-35 {
    padding-bottom: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-35 {
    padding-bottom: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-35 {
    padding-bottom: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-35 {
    padding-bottom: 35px !important;
  }
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-40 {
    padding-bottom: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-40 {
    padding-bottom: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-40 {
    padding-bottom: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-40 {
    padding-bottom: 40px !important;
  }
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-45 {
    padding-bottom: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-45 {
    padding-bottom: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-45 {
    padding-bottom: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-45 {
    padding-bottom: 45px !important;
  }
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-50 {
    padding-bottom: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-50 {
    padding-bottom: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-50 {
    padding-bottom: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-50 {
    padding-bottom: 50px !important;
  }
}

.u-pb-55 {
  padding-bottom: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-55 {
    padding-bottom: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-55 {
    padding-bottom: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-55 {
    padding-bottom: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-55 {
    padding-bottom: 55px !important;
  }
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-60 {
    padding-bottom: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-60 {
    padding-bottom: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-60 {
    padding-bottom: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-60 {
    padding-bottom: 60px !important;
  }
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-65 {
    padding-bottom: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-65 {
    padding-bottom: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-65 {
    padding-bottom: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-65 {
    padding-bottom: 65px !important;
  }
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-70 {
    padding-bottom: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-70 {
    padding-bottom: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-70 {
    padding-bottom: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-70 {
    padding-bottom: 70px !important;
  }
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-75 {
    padding-bottom: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-75 {
    padding-bottom: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-75 {
    padding-bottom: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-75 {
    padding-bottom: 75px !important;
  }
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-80 {
    padding-bottom: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-80 {
    padding-bottom: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-80 {
    padding-bottom: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-80 {
    padding-bottom: 80px !important;
  }
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-85 {
    padding-bottom: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-85 {
    padding-bottom: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-85 {
    padding-bottom: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-85 {
    padding-bottom: 85px !important;
  }
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-90 {
    padding-bottom: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-90 {
    padding-bottom: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-90 {
    padding-bottom: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-90 {
    padding-bottom: 90px !important;
  }
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-95 {
    padding-bottom: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-95 {
    padding-bottom: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-95 {
    padding-bottom: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-95 {
    padding-bottom: 95px !important;
  }
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-pb-xl-100 {
    padding-bottom: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pb-lg-100 {
    padding-bottom: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pb-md-100 {
    padding-bottom: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pb-sm-100 {
    padding-bottom: 100px !important;
  }
}

.u-pl-0 {
  padding-left: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-0 {
    padding-left: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-0 {
    padding-left: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-0 {
    padding-left: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-0 {
    padding-left: 0px !important;
  }
}

.u-pl-5 {
  padding-left: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-5 {
    padding-left: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-5 {
    padding-left: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-5 {
    padding-left: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-5 {
    padding-left: 5px !important;
  }
}

.u-pl-10 {
  padding-left: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-10 {
    padding-left: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-10 {
    padding-left: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-10 {
    padding-left: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-10 {
    padding-left: 10px !important;
  }
}

.u-pl-15 {
  padding-left: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-15 {
    padding-left: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-15 {
    padding-left: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-15 {
    padding-left: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-15 {
    padding-left: 15px !important;
  }
}

.u-pl-20 {
  padding-left: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-20 {
    padding-left: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-20 {
    padding-left: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-20 {
    padding-left: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-20 {
    padding-left: 20px !important;
  }
}

.u-pl-25 {
  padding-left: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-25 {
    padding-left: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-25 {
    padding-left: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-25 {
    padding-left: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-25 {
    padding-left: 25px !important;
  }
}

.u-pl-30 {
  padding-left: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-30 {
    padding-left: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-30 {
    padding-left: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-30 {
    padding-left: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-30 {
    padding-left: 30px !important;
  }
}

.u-pl-35 {
  padding-left: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-35 {
    padding-left: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-35 {
    padding-left: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-35 {
    padding-left: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-35 {
    padding-left: 35px !important;
  }
}

.u-pl-40 {
  padding-left: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-40 {
    padding-left: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-40 {
    padding-left: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-40 {
    padding-left: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-40 {
    padding-left: 40px !important;
  }
}

.u-pl-45 {
  padding-left: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-45 {
    padding-left: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-45 {
    padding-left: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-45 {
    padding-left: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-45 {
    padding-left: 45px !important;
  }
}

.u-pl-50 {
  padding-left: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-50 {
    padding-left: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-50 {
    padding-left: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-50 {
    padding-left: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-50 {
    padding-left: 50px !important;
  }
}

.u-pl-55 {
  padding-left: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-55 {
    padding-left: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-55 {
    padding-left: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-55 {
    padding-left: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-55 {
    padding-left: 55px !important;
  }
}

.u-pl-60 {
  padding-left: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-60 {
    padding-left: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-60 {
    padding-left: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-60 {
    padding-left: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-60 {
    padding-left: 60px !important;
  }
}

.u-pl-65 {
  padding-left: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-65 {
    padding-left: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-65 {
    padding-left: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-65 {
    padding-left: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-65 {
    padding-left: 65px !important;
  }
}

.u-pl-70 {
  padding-left: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-70 {
    padding-left: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-70 {
    padding-left: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-70 {
    padding-left: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-70 {
    padding-left: 70px !important;
  }
}

.u-pl-75 {
  padding-left: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-75 {
    padding-left: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-75 {
    padding-left: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-75 {
    padding-left: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-75 {
    padding-left: 75px !important;
  }
}

.u-pl-80 {
  padding-left: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-80 {
    padding-left: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-80 {
    padding-left: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-80 {
    padding-left: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-80 {
    padding-left: 80px !important;
  }
}

.u-pl-85 {
  padding-left: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-85 {
    padding-left: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-85 {
    padding-left: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-85 {
    padding-left: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-85 {
    padding-left: 85px !important;
  }
}

.u-pl-90 {
  padding-left: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-90 {
    padding-left: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-90 {
    padding-left: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-90 {
    padding-left: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-90 {
    padding-left: 90px !important;
  }
}

.u-pl-95 {
  padding-left: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-95 {
    padding-left: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-95 {
    padding-left: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-95 {
    padding-left: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-95 {
    padding-left: 95px !important;
  }
}

.u-pl-100 {
  padding-left: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-pl-xl-100 {
    padding-left: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pl-lg-100 {
    padding-left: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pl-md-100 {
    padding-left: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pl-sm-100 {
    padding-left: 100px !important;
  }
}

.u-pr-0 {
  padding-right: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-0 {
    padding-right: 0px !important;
  }
}

.u-pr-5 {
  padding-right: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-5 {
    padding-right: 5px !important;
  }
}

.u-pr-10 {
  padding-right: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-10 {
    padding-right: 10px !important;
  }
}

.u-pr-15 {
  padding-right: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-15 {
    padding-right: 15px !important;
  }
}

.u-pr-20 {
  padding-right: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-20 {
    padding-right: 20px !important;
  }
}

.u-pr-25 {
  padding-right: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-25 {
    padding-right: 25px !important;
  }
}

.u-pr-30 {
  padding-right: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-30 {
    padding-right: 30px !important;
  }
}

.u-pr-35 {
  padding-right: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-35 {
    padding-right: 35px !important;
  }
}

.u-pr-40 {
  padding-right: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-40 {
    padding-right: 40px !important;
  }
}

.u-pr-45 {
  padding-right: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-45 {
    padding-right: 45px !important;
  }
}

.u-pr-50 {
  padding-right: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-50 {
    padding-right: 50px !important;
  }
}

.u-pr-55 {
  padding-right: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-55 {
    padding-right: 55px !important;
  }
}

.u-pr-60 {
  padding-right: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-60 {
    padding-right: 60px !important;
  }
}

.u-pr-65 {
  padding-right: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-65 {
    padding-right: 65px !important;
  }
}

.u-pr-70 {
  padding-right: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-70 {
    padding-right: 70px !important;
  }
}

.u-pr-75 {
  padding-right: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-75 {
    padding-right: 75px !important;
  }
}

.u-pr-80 {
  padding-right: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-80 {
    padding-right: 80px !important;
  }
}

.u-pr-85 {
  padding-right: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-85 {
    padding-right: 85px !important;
  }
}

.u-pr-90 {
  padding-right: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-90 {
    padding-right: 90px !important;
  }
}

.u-pr-95 {
  padding-right: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-95 {
    padding-right: 95px !important;
  }
}

.u-pr-100 {
  padding-right: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-pr-xl-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-pr-lg-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pr-md-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-pr-sm-100 {
    padding-right: 100px !important;
  }
}

.u-px-0 {
  padding-right: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-0 {
    padding-right: 0px !important;
  }
}

.u-px-5 {
  padding-right: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-5 {
    padding-right: 5px !important;
  }
}

.u-px-10 {
  padding-right: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-10 {
    padding-right: 10px !important;
  }
}

.u-px-15 {
  padding-right: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-15 {
    padding-right: 15px !important;
  }
}

.u-px-20 {
  padding-right: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-20 {
    padding-right: 20px !important;
  }
}

.u-px-25 {
  padding-right: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-25 {
    padding-right: 25px !important;
  }
}

.u-px-30 {
  padding-right: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-30 {
    padding-right: 30px !important;
  }
}

.u-px-35 {
  padding-right: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-35 {
    padding-right: 35px !important;
  }
}

.u-px-40 {
  padding-right: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-40 {
    padding-right: 40px !important;
  }
}

.u-px-45 {
  padding-right: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-45 {
    padding-right: 45px !important;
  }
}

.u-px-50 {
  padding-right: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-50 {
    padding-right: 50px !important;
  }
}

.u-px-55 {
  padding-right: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-55 {
    padding-right: 55px !important;
  }
}

.u-px-60 {
  padding-right: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-60 {
    padding-right: 60px !important;
  }
}

.u-px-65 {
  padding-right: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-65 {
    padding-right: 65px !important;
  }
}

.u-px-70 {
  padding-right: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-70 {
    padding-right: 70px !important;
  }
}

.u-px-75 {
  padding-right: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-75 {
    padding-right: 75px !important;
  }
}

.u-px-80 {
  padding-right: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-80 {
    padding-right: 80px !important;
  }
}

.u-px-85 {
  padding-right: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-85 {
    padding-right: 85px !important;
  }
}

.u-px-90 {
  padding-right: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-90 {
    padding-right: 90px !important;
  }
}

.u-px-95 {
  padding-right: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-95 {
    padding-right: 95px !important;
  }
}

.u-px-100 {
  padding-right: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-px-xl-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-px-lg-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-px-md-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-px-sm-100 {
    padding-right: 100px !important;
  }
}

.u-py-0 {
  padding-right: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-0 {
    padding-right: 0px !important;
  }
}

.u-py-5 {
  padding-right: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-5 {
    padding-right: 5px !important;
  }
}

.u-py-10 {
  padding-right: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-10 {
    padding-right: 10px !important;
  }
}

.u-py-15 {
  padding-right: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-15 {
    padding-right: 15px !important;
  }
}

.u-py-20 {
  padding-right: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-20 {
    padding-right: 20px !important;
  }
}

.u-py-25 {
  padding-right: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-25 {
    padding-right: 25px !important;
  }
}

.u-py-30 {
  padding-right: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-30 {
    padding-right: 30px !important;
  }
}

.u-py-35 {
  padding-right: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-35 {
    padding-right: 35px !important;
  }
}

.u-py-40 {
  padding-right: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-40 {
    padding-right: 40px !important;
  }
}

.u-py-45 {
  padding-right: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-45 {
    padding-right: 45px !important;
  }
}

.u-py-50 {
  padding-right: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-50 {
    padding-right: 50px !important;
  }
}

.u-py-55 {
  padding-right: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-55 {
    padding-right: 55px !important;
  }
}

.u-py-60 {
  padding-right: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-60 {
    padding-right: 60px !important;
  }
}

.u-py-65 {
  padding-right: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-65 {
    padding-right: 65px !important;
  }
}

.u-py-70 {
  padding-right: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-70 {
    padding-right: 70px !important;
  }
}

.u-py-75 {
  padding-right: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-75 {
    padding-right: 75px !important;
  }
}

.u-py-80 {
  padding-right: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-80 {
    padding-right: 80px !important;
  }
}

.u-py-85 {
  padding-right: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-85 {
    padding-right: 85px !important;
  }
}

.u-py-90 {
  padding-right: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-90 {
    padding-right: 90px !important;
  }
}

.u-py-95 {
  padding-right: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-95 {
    padding-right: 95px !important;
  }
}

.u-py-100 {
  padding-right: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-py-xl-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-py-lg-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-py-md-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-py-sm-100 {
    padding-right: 100px !important;
  }
}

.u-p-0 {
  padding-right: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-0 {
    padding-right: 0px !important;
  }
}

.u-p-5 {
  padding-right: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-5 {
    padding-right: 5px !important;
  }
}

.u-p-10 {
  padding-right: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-10 {
    padding-right: 10px !important;
  }
}

.u-p-15 {
  padding-right: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-15 {
    padding-right: 15px !important;
  }
}

.u-p-20 {
  padding-right: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-20 {
    padding-right: 20px !important;
  }
}

.u-p-25 {
  padding-right: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-25 {
    padding-right: 25px !important;
  }
}

.u-p-30 {
  padding-right: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-30 {
    padding-right: 30px !important;
  }
}

.u-p-35 {
  padding-right: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-35 {
    padding-right: 35px !important;
  }
}

.u-p-40 {
  padding-right: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-40 {
    padding-right: 40px !important;
  }
}

.u-p-45 {
  padding-right: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-45 {
    padding-right: 45px !important;
  }
}

.u-p-50 {
  padding-right: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-50 {
    padding-right: 50px !important;
  }
}

.u-p-55 {
  padding-right: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-55 {
    padding-right: 55px !important;
  }
}

.u-p-60 {
  padding-right: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-60 {
    padding-right: 60px !important;
  }
}

.u-p-65 {
  padding-right: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-65 {
    padding-right: 65px !important;
  }
}

.u-p-70 {
  padding-right: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-70 {
    padding-right: 70px !important;
  }
}

.u-p-75 {
  padding-right: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-75 {
    padding-right: 75px !important;
  }
}

.u-p-80 {
  padding-right: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-80 {
    padding-right: 80px !important;
  }
}

.u-p-85 {
  padding-right: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-85 {
    padding-right: 85px !important;
  }
}

.u-p-90 {
  padding-right: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-90 {
    padding-right: 90px !important;
  }
}

.u-p-95 {
  padding-right: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-95 {
    padding-right: 95px !important;
  }
}

.u-p-100 {
  padding-right: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-p-xl-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-p-lg-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-p-md-100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-p-sm-100 {
    padding-right: 100px !important;
  }
}

.u-mt-0 {
  margin-top: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-0 {
    margin-top: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-0 {
    margin-top: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-0 {
    margin-top: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-0 {
    margin-top: 0px !important;
  }
}

.u-mt-5 {
  margin-top: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-5 {
    margin-top: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-5 {
    margin-top: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-5 {
    margin-top: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-5 {
    margin-top: 5px !important;
  }
}

.u-mt-10 {
  margin-top: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-10 {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-10 {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-10 {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-10 {
    margin-top: 10px !important;
  }
}

.u-mt-15 {
  margin-top: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-15 {
    margin-top: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-15 {
    margin-top: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-15 {
    margin-top: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-15 {
    margin-top: 15px !important;
  }
}

.u-mt-20 {
  margin-top: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-20 {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-20 {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-20 {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-20 {
    margin-top: 20px !important;
  }
}

.u-mt-25 {
  margin-top: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-25 {
    margin-top: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-25 {
    margin-top: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-25 {
    margin-top: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-25 {
    margin-top: 25px !important;
  }
}

.u-mt-30 {
  margin-top: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-30 {
    margin-top: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-30 {
    margin-top: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-30 {
    margin-top: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-30 {
    margin-top: 30px !important;
  }
}

.u-mt-35 {
  margin-top: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-35 {
    margin-top: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-35 {
    margin-top: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-35 {
    margin-top: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-35 {
    margin-top: 35px !important;
  }
}

.u-mt-40 {
  margin-top: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-40 {
    margin-top: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-40 {
    margin-top: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-40 {
    margin-top: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-40 {
    margin-top: 40px !important;
  }
}

.u-mt-45 {
  margin-top: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-45 {
    margin-top: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-45 {
    margin-top: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-45 {
    margin-top: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-45 {
    margin-top: 45px !important;
  }
}

.u-mt-50 {
  margin-top: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-50 {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-50 {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-50 {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-50 {
    margin-top: 50px !important;
  }
}

.u-mt-55 {
  margin-top: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-55 {
    margin-top: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-55 {
    margin-top: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-55 {
    margin-top: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-55 {
    margin-top: 55px !important;
  }
}

.u-mt-60 {
  margin-top: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-60 {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-60 {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-60 {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-60 {
    margin-top: 60px !important;
  }
}

.u-mt-65 {
  margin-top: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-65 {
    margin-top: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-65 {
    margin-top: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-65 {
    margin-top: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-65 {
    margin-top: 65px !important;
  }
}

.u-mt-70 {
  margin-top: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-70 {
    margin-top: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-70 {
    margin-top: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-70 {
    margin-top: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-70 {
    margin-top: 70px !important;
  }
}

.u-mt-75 {
  margin-top: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-75 {
    margin-top: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-75 {
    margin-top: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-75 {
    margin-top: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-75 {
    margin-top: 75px !important;
  }
}

.u-mt-80 {
  margin-top: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-80 {
    margin-top: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-80 {
    margin-top: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-80 {
    margin-top: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-80 {
    margin-top: 80px !important;
  }
}

.u-mt-85 {
  margin-top: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-85 {
    margin-top: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-85 {
    margin-top: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-85 {
    margin-top: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-85 {
    margin-top: 85px !important;
  }
}

.u-mt-90 {
  margin-top: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-90 {
    margin-top: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-90 {
    margin-top: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-90 {
    margin-top: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-90 {
    margin-top: 90px !important;
  }
}

.u-mt-95 {
  margin-top: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-95 {
    margin-top: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-95 {
    margin-top: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-95 {
    margin-top: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-95 {
    margin-top: 95px !important;
  }
}

.u-mt-100 {
  margin-top: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-mt-xl-100 {
    margin-top: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mt-lg-100 {
    margin-top: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mt-md-100 {
    margin-top: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mt-sm-100 {
    margin-top: 100px !important;
  }
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-0 {
    margin-bottom: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-0 {
    margin-bottom: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-0 {
    margin-bottom: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-0 {
    margin-bottom: 0px !important;
  }
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-5 {
    margin-bottom: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-5 {
    margin-bottom: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-5 {
    margin-bottom: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-5 {
    margin-bottom: 5px !important;
  }
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-10 {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-10 {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-10 {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-10 {
    margin-bottom: 10px !important;
  }
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-15 {
    margin-bottom: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-15 {
    margin-bottom: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-15 {
    margin-bottom: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-15 {
    margin-bottom: 15px !important;
  }
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-20 {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-20 {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-20 {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-20 {
    margin-bottom: 20px !important;
  }
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-25 {
    margin-bottom: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-25 {
    margin-bottom: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-25 {
    margin-bottom: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-25 {
    margin-bottom: 25px !important;
  }
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-30 {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-30 {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-30 {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-30 {
    margin-bottom: 30px !important;
  }
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-35 {
    margin-bottom: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-35 {
    margin-bottom: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-35 {
    margin-bottom: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-35 {
    margin-bottom: 35px !important;
  }
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-40 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-40 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-40 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-40 {
    margin-bottom: 40px !important;
  }
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-45 {
    margin-bottom: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-45 {
    margin-bottom: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-45 {
    margin-bottom: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-45 {
    margin-bottom: 45px !important;
  }
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-50 {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-50 {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-50 {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-50 {
    margin-bottom: 50px !important;
  }
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-55 {
    margin-bottom: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-55 {
    margin-bottom: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-55 {
    margin-bottom: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-55 {
    margin-bottom: 55px !important;
  }
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-60 {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-60 {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-60 {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-60 {
    margin-bottom: 60px !important;
  }
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-65 {
    margin-bottom: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-65 {
    margin-bottom: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-65 {
    margin-bottom: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-65 {
    margin-bottom: 65px !important;
  }
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-70 {
    margin-bottom: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-70 {
    margin-bottom: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-70 {
    margin-bottom: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-70 {
    margin-bottom: 70px !important;
  }
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-75 {
    margin-bottom: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-75 {
    margin-bottom: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-75 {
    margin-bottom: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-75 {
    margin-bottom: 75px !important;
  }
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-80 {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-80 {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-80 {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-80 {
    margin-bottom: 80px !important;
  }
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-85 {
    margin-bottom: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-85 {
    margin-bottom: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-85 {
    margin-bottom: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-85 {
    margin-bottom: 85px !important;
  }
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-90 {
    margin-bottom: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-90 {
    margin-bottom: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-90 {
    margin-bottom: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-90 {
    margin-bottom: 90px !important;
  }
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-95 {
    margin-bottom: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-95 {
    margin-bottom: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-95 {
    margin-bottom: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-95 {
    margin-bottom: 95px !important;
  }
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-mb-xl-100 {
    margin-bottom: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mb-lg-100 {
    margin-bottom: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mb-md-100 {
    margin-bottom: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mb-sm-100 {
    margin-bottom: 100px !important;
  }
}

.u-ml-0 {
  margin-left: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-0 {
    margin-left: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-0 {
    margin-left: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-0 {
    margin-left: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-0 {
    margin-left: 0px !important;
  }
}

.u-ml-5 {
  margin-left: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-5 {
    margin-left: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-5 {
    margin-left: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-5 {
    margin-left: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-5 {
    margin-left: 5px !important;
  }
}

.u-ml-10 {
  margin-left: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-10 {
    margin-left: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-10 {
    margin-left: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-10 {
    margin-left: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-10 {
    margin-left: 10px !important;
  }
}

.u-ml-15 {
  margin-left: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-15 {
    margin-left: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-15 {
    margin-left: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-15 {
    margin-left: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-15 {
    margin-left: 15px !important;
  }
}

.u-ml-20 {
  margin-left: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-20 {
    margin-left: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-20 {
    margin-left: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-20 {
    margin-left: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-20 {
    margin-left: 20px !important;
  }
}

.u-ml-25 {
  margin-left: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-25 {
    margin-left: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-25 {
    margin-left: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-25 {
    margin-left: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-25 {
    margin-left: 25px !important;
  }
}

.u-ml-30 {
  margin-left: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-30 {
    margin-left: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-30 {
    margin-left: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-30 {
    margin-left: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-30 {
    margin-left: 30px !important;
  }
}

.u-ml-35 {
  margin-left: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-35 {
    margin-left: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-35 {
    margin-left: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-35 {
    margin-left: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-35 {
    margin-left: 35px !important;
  }
}

.u-ml-40 {
  margin-left: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-40 {
    margin-left: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-40 {
    margin-left: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-40 {
    margin-left: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-40 {
    margin-left: 40px !important;
  }
}

.u-ml-45 {
  margin-left: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-45 {
    margin-left: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-45 {
    margin-left: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-45 {
    margin-left: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-45 {
    margin-left: 45px !important;
  }
}

.u-ml-50 {
  margin-left: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-50 {
    margin-left: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-50 {
    margin-left: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-50 {
    margin-left: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-50 {
    margin-left: 50px !important;
  }
}

.u-ml-55 {
  margin-left: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-55 {
    margin-left: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-55 {
    margin-left: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-55 {
    margin-left: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-55 {
    margin-left: 55px !important;
  }
}

.u-ml-60 {
  margin-left: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-60 {
    margin-left: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-60 {
    margin-left: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-60 {
    margin-left: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-60 {
    margin-left: 60px !important;
  }
}

.u-ml-65 {
  margin-left: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-65 {
    margin-left: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-65 {
    margin-left: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-65 {
    margin-left: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-65 {
    margin-left: 65px !important;
  }
}

.u-ml-70 {
  margin-left: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-70 {
    margin-left: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-70 {
    margin-left: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-70 {
    margin-left: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-70 {
    margin-left: 70px !important;
  }
}

.u-ml-75 {
  margin-left: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-75 {
    margin-left: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-75 {
    margin-left: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-75 {
    margin-left: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-75 {
    margin-left: 75px !important;
  }
}

.u-ml-80 {
  margin-left: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-80 {
    margin-left: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-80 {
    margin-left: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-80 {
    margin-left: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-80 {
    margin-left: 80px !important;
  }
}

.u-ml-85 {
  margin-left: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-85 {
    margin-left: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-85 {
    margin-left: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-85 {
    margin-left: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-85 {
    margin-left: 85px !important;
  }
}

.u-ml-90 {
  margin-left: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-90 {
    margin-left: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-90 {
    margin-left: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-90 {
    margin-left: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-90 {
    margin-left: 90px !important;
  }
}

.u-ml-95 {
  margin-left: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-95 {
    margin-left: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-95 {
    margin-left: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-95 {
    margin-left: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-95 {
    margin-left: 95px !important;
  }
}

.u-ml-100 {
  margin-left: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-ml-xl-100 {
    margin-left: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-ml-lg-100 {
    margin-left: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-ml-md-100 {
    margin-left: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-ml-sm-100 {
    margin-left: 100px !important;
  }
}

.u-mr-0 {
  margin-right: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-0 {
    margin-right: 0px !important;
  }
}

.u-mr-5 {
  margin-right: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-5 {
    margin-right: 5px !important;
  }
}

.u-mr-10 {
  margin-right: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-10 {
    margin-right: 10px !important;
  }
}

.u-mr-15 {
  margin-right: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-15 {
    margin-right: 15px !important;
  }
}

.u-mr-20 {
  margin-right: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-20 {
    margin-right: 20px !important;
  }
}

.u-mr-25 {
  margin-right: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-25 {
    margin-right: 25px !important;
  }
}

.u-mr-30 {
  margin-right: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-30 {
    margin-right: 30px !important;
  }
}

.u-mr-35 {
  margin-right: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-35 {
    margin-right: 35px !important;
  }
}

.u-mr-40 {
  margin-right: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-40 {
    margin-right: 40px !important;
  }
}

.u-mr-45 {
  margin-right: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-45 {
    margin-right: 45px !important;
  }
}

.u-mr-50 {
  margin-right: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-50 {
    margin-right: 50px !important;
  }
}

.u-mr-55 {
  margin-right: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-55 {
    margin-right: 55px !important;
  }
}

.u-mr-60 {
  margin-right: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-60 {
    margin-right: 60px !important;
  }
}

.u-mr-65 {
  margin-right: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-65 {
    margin-right: 65px !important;
  }
}

.u-mr-70 {
  margin-right: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-70 {
    margin-right: 70px !important;
  }
}

.u-mr-75 {
  margin-right: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-75 {
    margin-right: 75px !important;
  }
}

.u-mr-80 {
  margin-right: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-80 {
    margin-right: 80px !important;
  }
}

.u-mr-85 {
  margin-right: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-85 {
    margin-right: 85px !important;
  }
}

.u-mr-90 {
  margin-right: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-90 {
    margin-right: 90px !important;
  }
}

.u-mr-95 {
  margin-right: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-95 {
    margin-right: 95px !important;
  }
}

.u-mr-100 {
  margin-right: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-mr-xl-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mr-lg-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mr-md-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mr-sm-100 {
    margin-right: 100px !important;
  }
}

.u-mx-0 {
  margin-right: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-0 {
    margin-right: 0px !important;
  }
}

.u-mx-5 {
  margin-right: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-5 {
    margin-right: 5px !important;
  }
}

.u-mx-10 {
  margin-right: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-10 {
    margin-right: 10px !important;
  }
}

.u-mx-15 {
  margin-right: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-15 {
    margin-right: 15px !important;
  }
}

.u-mx-20 {
  margin-right: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-20 {
    margin-right: 20px !important;
  }
}

.u-mx-25 {
  margin-right: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-25 {
    margin-right: 25px !important;
  }
}

.u-mx-30 {
  margin-right: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-30 {
    margin-right: 30px !important;
  }
}

.u-mx-35 {
  margin-right: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-35 {
    margin-right: 35px !important;
  }
}

.u-mx-40 {
  margin-right: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-40 {
    margin-right: 40px !important;
  }
}

.u-mx-45 {
  margin-right: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-45 {
    margin-right: 45px !important;
  }
}

.u-mx-50 {
  margin-right: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-50 {
    margin-right: 50px !important;
  }
}

.u-mx-55 {
  margin-right: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-55 {
    margin-right: 55px !important;
  }
}

.u-mx-60 {
  margin-right: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-60 {
    margin-right: 60px !important;
  }
}

.u-mx-65 {
  margin-right: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-65 {
    margin-right: 65px !important;
  }
}

.u-mx-70 {
  margin-right: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-70 {
    margin-right: 70px !important;
  }
}

.u-mx-75 {
  margin-right: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-75 {
    margin-right: 75px !important;
  }
}

.u-mx-80 {
  margin-right: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-80 {
    margin-right: 80px !important;
  }
}

.u-mx-85 {
  margin-right: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-85 {
    margin-right: 85px !important;
  }
}

.u-mx-90 {
  margin-right: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-90 {
    margin-right: 90px !important;
  }
}

.u-mx-95 {
  margin-right: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-95 {
    margin-right: 95px !important;
  }
}

.u-mx-100 {
  margin-right: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-mx-xl-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-mx-lg-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-mx-md-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-mx-sm-100 {
    margin-right: 100px !important;
  }
}

.u-my-0 {
  margin-right: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-0 {
    margin-right: 0px !important;
  }
}

.u-my-5 {
  margin-right: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-5 {
    margin-right: 5px !important;
  }
}

.u-my-10 {
  margin-right: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-10 {
    margin-right: 10px !important;
  }
}

.u-my-15 {
  margin-right: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-15 {
    margin-right: 15px !important;
  }
}

.u-my-20 {
  margin-right: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-20 {
    margin-right: 20px !important;
  }
}

.u-my-25 {
  margin-right: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-25 {
    margin-right: 25px !important;
  }
}

.u-my-30 {
  margin-right: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-30 {
    margin-right: 30px !important;
  }
}

.u-my-35 {
  margin-right: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-35 {
    margin-right: 35px !important;
  }
}

.u-my-40 {
  margin-right: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-40 {
    margin-right: 40px !important;
  }
}

.u-my-45 {
  margin-right: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-45 {
    margin-right: 45px !important;
  }
}

.u-my-50 {
  margin-right: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-50 {
    margin-right: 50px !important;
  }
}

.u-my-55 {
  margin-right: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-55 {
    margin-right: 55px !important;
  }
}

.u-my-60 {
  margin-right: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-60 {
    margin-right: 60px !important;
  }
}

.u-my-65 {
  margin-right: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-65 {
    margin-right: 65px !important;
  }
}

.u-my-70 {
  margin-right: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-70 {
    margin-right: 70px !important;
  }
}

.u-my-75 {
  margin-right: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-75 {
    margin-right: 75px !important;
  }
}

.u-my-80 {
  margin-right: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-80 {
    margin-right: 80px !important;
  }
}

.u-my-85 {
  margin-right: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-85 {
    margin-right: 85px !important;
  }
}

.u-my-90 {
  margin-right: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-90 {
    margin-right: 90px !important;
  }
}

.u-my-95 {
  margin-right: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-95 {
    margin-right: 95px !important;
  }
}

.u-my-100 {
  margin-right: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-my-xl-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-my-lg-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-my-md-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-my-sm-100 {
    margin-right: 100px !important;
  }
}

.u-m-0 {
  margin-right: 0px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-0 {
    margin-right: 0px !important;
  }
}

.u-m-5 {
  margin-right: 5px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-5 {
    margin-right: 5px !important;
  }
}

.u-m-10 {
  margin-right: 10px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-10 {
    margin-right: 10px !important;
  }
}

.u-m-15 {
  margin-right: 15px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-15 {
    margin-right: 15px !important;
  }
}

.u-m-20 {
  margin-right: 20px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-20 {
    margin-right: 20px !important;
  }
}

.u-m-25 {
  margin-right: 25px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-25 {
    margin-right: 25px !important;
  }
}

.u-m-30 {
  margin-right: 30px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-30 {
    margin-right: 30px !important;
  }
}

.u-m-35 {
  margin-right: 35px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-35 {
    margin-right: 35px !important;
  }
}

.u-m-40 {
  margin-right: 40px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-40 {
    margin-right: 40px !important;
  }
}

.u-m-45 {
  margin-right: 45px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-45 {
    margin-right: 45px !important;
  }
}

.u-m-50 {
  margin-right: 50px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-50 {
    margin-right: 50px !important;
  }
}

.u-m-55 {
  margin-right: 55px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-55 {
    margin-right: 55px !important;
  }
}

.u-m-60 {
  margin-right: 60px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-60 {
    margin-right: 60px !important;
  }
}

.u-m-65 {
  margin-right: 65px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-65 {
    margin-right: 65px !important;
  }
}

.u-m-70 {
  margin-right: 70px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-70 {
    margin-right: 70px !important;
  }
}

.u-m-75 {
  margin-right: 75px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-75 {
    margin-right: 75px !important;
  }
}

.u-m-80 {
  margin-right: 80px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-80 {
    margin-right: 80px !important;
  }
}

.u-m-85 {
  margin-right: 85px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-85 {
    margin-right: 85px !important;
  }
}

.u-m-90 {
  margin-right: 90px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-90 {
    margin-right: 90px !important;
  }
}

.u-m-95 {
  margin-right: 95px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-95 {
    margin-right: 95px !important;
  }
}

.u-m-100 {
  margin-right: 100px !important;
}

@media screen and (max-width: 1199px) {
  .u-m-xl-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .u-m-lg-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-m-md-100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 543px) {
  .u-m-sm-100 {
    margin-right: 100px !important;
  }
}

.u-text-center {
  text-align: center !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-right {
  text-align: right !important;
}

.u-flex-center {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-font-bold {
  font-weight: bold !important;
}

@media screen and (min-width: 992px) {
  .u-sp {
    display: none !important;
  }
}

.u-se {
  display: none;
}
@media (max-width: 499px) {
  .u-se {
    display: block !important;
  }
}

.u-pc {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .u-pc {
    display: block !important;
  }
}

.u-opacity-0 {
  opacity: 0 !important;
}

.u-overflow-visible {
  overflow: visible !important;
}

.u-w-25 {
  width: 25% !important;
}

.u-w-50 {
  width: 50% !important;
}

.u-w-100 {
  width: 100% !important;
}

.u-mw-25 {
  max-width: 25% !important;
}

.u-mw-50 {
  max-width: 50% !important;
}

.u-mw-90 {
  max-width: 90% !important;
}

.u-mw-100 {
  max-width: 100% !important;
}

/*--------------------------------------------------------------
# Component
--------------------------------------------------------------*/
.c-title {
  max-width: 768px;
  padding: 30px 20px;
  letter-spacing: 4px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .c-title {
    max-width: 1440px;
    padding: 60px;
  }
}

.c-title__main {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #1a1a1a;
}
@media screen and (min-width: 992px) {
  .c-title__main {
    font-size: 24px;
  }
}

.c-title__sub {
  font-size: 14px;
  font-weight: 400;
  color: #41cc06;
}
@media screen and (min-width: 992px) {
  .c-title__sub {
    font-size: 18px;
  }
}

.c-top-page-category {
  color: #41cc06;
}

.c-top-page-category__number {
  margin-top: 0;
  font-size: 10px;
  margin-bottom: 16px;
}
@media screen and (min-width: 992px) {
  .c-top-page-category__number {
    font-size: 12px;
  }
}

.c-top-page-category__text {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .c-top-page-category__text {
    font-size: 20px;
  }
}

.c-link-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  font-size: 14px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (min-width: 992px) {
  .c-link-button {
    font-size: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.c-link-button__arrow {
  display: block;
}

.c-link-button__arrow--left {
  display: none;
}
@media screen and (min-width: 992px) {
  .c-link-button__arrow--left {
    display: block;
  }
}

.c-button {
  display: table;
  position: relative;
  color: #41cc06;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 8px 60px 8px 40px;
  border: solid 1px #000000;
  border-radius: 24px;
  max-height: 42px;
  z-index: 10;
}

.c-button::after {
  content: "→";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  color: #41cc06;
}

/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.p-hamburger {
  width: 34px;
  height: 14px;
  margin-right: -16px;
  padding: 30px 24px 32px 16px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 10000;
  position: relative;
}
@media screen and (min-width: 992px) {
  .p-hamburger {
    display: none;
  }
}

.p-hamburger span {
  display: block;
  height: 1px;
  background: #000000;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(6.5px) rotate(26.5deg);
  -ms-transform: translateY(6.5px) rotate(26.5deg);
  transform: translateY(6.5px) rotate(26.5deg);
}

.p-hamburger.active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: opacity 0.1s ease;
  -ms-transform: opacity 0.1s ease;
  transform: opacity 0.1s ease;
}

.p-hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-6.5px) rotate(-26.5deg);
  -ms-transform: translateY(-6.5px) rotate(-26.5deg);
  transform: translateY(-6.5px) rotate(-26.5deg);
}

.p-hamburger__menu-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  padding: 24px 17px;
  position: relative;
}

.p-hamburger__menu-header::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 3.6px;
  background-color: #5eff00;
}

.p-hamburger__toggle {
  position: fixed;
  inset: 0;
  height: 100vh;
  background-color: #ffffff !important;
  color: #000000;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
}

.p-hamburger__toggle.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-hamburger__toggle.is-active .p-hamburger__nav {
  position: relative;
  gap: 60px;
  padding: 0px 30px 80px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-hamburger__container {
  width: 100%;
  position: relative;
  height: 100vh;
}

.p-hamburger__item-desc {
  gap: 16px;
}

.p-hamburger-desc {
  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;
  gap: 26px;
}

.l-header__logo-toggle {
  width: 120px;
  margin-top: 92px;
}

.p-hamburger__nav a.is-active,
.p-hamburger-desc a.is-active {
  color: #41cc00;
}

.p-recruit__container {
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-recruit__container {
    max-width: 1440px;
  }
}

@media screen and (min-width: 992px) {
  .p-recruit__container .c-link-cards {
    width: 820px;
    margin: 0 auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.p-news {
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-news {
    max-width: 1440px;
  }
}

.p-news__list {
  width: 100%;
  padding: 0;
  margin-top: 80px;
}
@media screen and (min-width: 992px) {
  .p-news__list {
    margin-top: 0;
    width: 72%;
  }
}

.p-archive-item {
  list-style: none;
}

.p-archive-item__inner {
  color: #666666;
}

.p-news__pulldown-wrapper {
  position: relative;
  width: 92%;
  margin: 0 auto;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
.p-news__pulldown-wrapper * {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.p-news__pulldown {
  position: relative;
  width: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.p-news__pulldown-selected {
  padding: 12px;
  text-align: center;
  border: 1px solid rgba(102, 102, 102, 0.4);
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
.p-news__pulldown-selected:focus, .p-news__pulldown-selected:active {
  outline: none;
  background-color: #fff;
}
.p-news__pulldown-selected.is-open {
  border-color: #41cc06;
}
.p-news__pulldown-selected::after {
  content: "";
  position: absolute;
  background-image: url("../img/news-pulldown-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  pointer-events: none;
}
.p-news__pulldown-selected::before {
  content: "Category";
  position: absolute;
  top: -34px;
  left: -84px;
  width: 200px;
  font-size: 12px;
  color: #1a1a1a;
}

.p-news__pulldown-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(102, 102, 102, 0.4);
  border-radius: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 10;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
.p-news__pulldown-list.is-open {
  display: block;
  background-color: #808080;
  color: #fff;
  width: 92%;
  left: 4%;
}

.p-news__pulldown-item {
  padding: 12px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
  text-align: start;
  padding-left: 60px;
}
.p-news__pulldown-item:hover {
  background-color: #f0f0f0;
}
.p-news__pulldown-item:focus, .p-news__pulldown-item:active {
  outline: none;
}
.p-news__pulldown-item:first-child {
  border-radius: 8px 8px 0 0;
  border-bottom: solid 1px #ffffff;
}
.p-news__pulldown-item:last-child {
  border-radius: 0 0 8px 8px;
  border-top: solid 1px #ffffff;
}
.p-news__pulldown-item.is-selected::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 16px;
}

.p-archive-item {
  padding: 20px 0;
  position: relative;
}

.p-archive-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-archive-item__link:hover {
  opacity: 0.7;
}

.p-archive-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  top: 0px;
  background-color: #808080;
}

.p-archive-item:last-child {
  position: relative;
}

.p-archive-item:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: 0px;
  background-color: #808080;
}

.p-archive-item__inner {
  color: #808080;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  font-size: 12px;
  margin-bottom: 12px;
}

.p-archive-item__category {
  position: relative;
}

.p-archive-item__category::before {
  content: "・";
  position: absolute;
  left: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
}

.p-archive-item__title {
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 992px) {
  .p-archive-item__title {
    margin-left: 80px;
    white-space: nowrap;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }
}

.p-news__wrapper {
  margin-top: -40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .p-news__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    margin-bottom: 0;
    gap: 120px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.pagination,
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto 40px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .pagination,
  .nav-links {
    margin: 20px auto;
  }
}

.page-numbers {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: #cbcbcb;
  color: #808080;
  border-radius: 8px;
  font-weight: 500;
  line-height: 30px;
}
.page-numbers.current {
  background-color: #41cc06;
  color: #ffffff;
}

.next,
.prev {
  background-color: transparent;
  color: #2d2d2d;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .p-sidebar {
    border-radius: 8px;
    padding: 0;
    width: 96px;
    position: sticky;
    top: 176px;
  }
  .p-sidebar__title {
    font-size: 18px;
    margin: 0 0 40px;
    font-weight: 400;
    color: #1a1a1a;
  }
  .p-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .p-sidebar__item {
    margin-bottom: 12px;
  }
  .p-sidebar__item:last-child {
    margin-bottom: 0;
  }
  .p-sidebar__link {
    display: block;
    background-color: #fff;
    border-radius: 6px;
    color: #1a1a1a;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    outline: none;
    margin: 20px 0 0 auto;
    width: 64px;
  }
  .p-sidebar__link:focus, .p-sidebar__link:active {
    outline: none;
    background-color: #fff;
  }
  .p-sidebar__link.is-active {
    color: #41cc06;
  }
}
.entry-title {
  font-size: 20px;
  margin-top: 20px !important;
}

.post-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
  margin-bottom: 12px;
  gap: 20px;
  font-size: 12px;
  padding-bottom: 12px;
  position: relative;
}

.post-info-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: 0px;
  background-color: #41cc00;
}

.cat-links {
  position: relative;
}

.cat-links::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -14px;
  width: 10px;
  font-size: 12px;
  color: #41cc00;
}

.post-edit-link {
  display: none;
}

.entry-content {
  margin-bottom: 40px;
}

.post-navigation-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav-previous,
.nav-next {
  position: relative;
}
.nav-previous:empty,
.nav-next:empty {
  display: none;
}
.nav-previous > a,
.nav-next > a {
  background-color: transparent;
  color: #808080;
  font-weight: 500;
  font-size: 14px;
  border-radius: 10%;
  padding: 4px 8px;
  text-decoration: none;
  display: inline-block;
}
.nav-previous > a:hover,
.nav-next > a:hover {
  opacity: 0.9;
}

.nav-center > a {
  background-color: #41cc00;
  color: #ffffff;
  font-weight: 500;
  font-size: 12px;
  border-radius: 4%;
  padding: 4px 12px;
  text-decoration: none;
  display: inline-block;
}
.nav-center > a:hover {
  opacity: 0.9;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent !important;
  color: #808080 !important;
  font-weight: 500;
  font-size: 20px !important;
  border-radius: 0;
  padding: 4px 8px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.nav-arrow:hover {
  opacity: 0.7;
}

.nav-arrow-prev {
  left: -28px;
}

.nav-arrow-next {
  right: -28px;
}

.p-site-main {
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-site-main {
    max-width: 1440px;
    width: 90%;
  }
}

.p-information {
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-information {
    max-width: 1440px;
  }
}

@media screen and (min-width: 992px) {
  .p-information__corporate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 120px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.p-information__corporate-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 32px;
}

@media screen and (min-width: 992px) {
  .p-information__corporate-container {
    width: 72%;
  }
}

.p-information-inner {
  width: 100%;
  padding: 14px 2px;
  color: #1a1a1a;
  position: relative;
}
@media screen and (min-width: 992px) {
  .p-information-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 2px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-information-inner::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: 0px;
  background-color: #999999;
}

.p-information-inner--first::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  top: 0px;
  background-color: #999999;
}

.p-information-inner--last {
  margin-bottom: 42px;
}

.p-information-inner__title {
  font-size: 10px;
  margin-bottom: 6px;
}
@media screen and (min-width: 992px) {
  .p-information-inner__title {
    font-size: 12px;
    width: 100px;
    margin-bottom: 0;
  }
}

.p-information-inner__desc {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .p-information-inner__desc {
    font-size: 16px;
  }
}

.p-information-map__link {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  margin: 0 auto;
}
.p-information-map__link iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media screen and (min-width: 992px) {
  .p-information-map__link {
    max-width: 100%;
    height: 206px;
  }
}

.p-information-map__access {
  margin-top: 12px;
  margin-bottom: 40px;
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .p-information-map__access {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (min-width: 992px) {
  .p-information__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 120px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.p-information__group-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 32px;
}

@media screen and (min-width: 992px) {
  .p-about .c-title {
    padding-bottom: 0;
  }
}

.p-about-banner {
  overflow: hidden;
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-about-banner {
    max-width: 1440px;
    padding: 80px 80px 120px;
  }
}

.p-about-banner__card {
  padding: 60px 20px;
  color: #ffffff;
  background-color: #41cc06;
  border-radius: 14px;
  max-width: 472px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 992px) {
  .p-about-banner__card {
    padding: 60px 0;
    max-width: none;
    width: 84%;
  }
}

.p-about-banner__card-container {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .p-about-banner__card-container {
    width: 60%;
    margin: 0 auto;
  }
}

.p-about-banner__card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: 80px;
  border: solid 0.8px #3ef900;
  border-radius: 50%;
  opacity: 0.6;
  max-width: none;
  z-index: 0;
  -webkit-animation: slide-left 7s 0s infinite;
  animation: slide-left 7s 0s infinite;
}
@media screen and (min-width: 992px) {
  .p-about-banner__card::before {
    width: 260px;
    height: 260px;
    top: 60px;
  }
}

@-webkit-keyframes slide-left {
  0% {
    left: -200px;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 0.6;
  }
  30% {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }
  60% {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(2);
    transform: translateX(-50%) scale(2);
    opacity: 0;
  }
  60.1%, 100% {
    left: -200px;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 0;
  }
}

@keyframes slide-left {
  0% {
    left: -200px;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 0.6;
  }
  30% {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }
  60% {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(2);
    transform: translateX(-50%) scale(2);
    opacity: 0;
  }
  60.1%, 100% {
    left: -200px;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 0;
  }
}
.p-about-banner__card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: 80px;
  right: -12px;
  border: solid 0.8px #3ef900;
  border-radius: 50%;
  opacity: 0.6;
  max-width: none;
  z-index: 0;
  -webkit-animation: slide-right 7s 0s infinite;
  animation: slide-right 7s 0s infinite;
}
@media screen and (min-width: 992px) {
  .p-about-banner__card::after {
    width: 260px;
    height: 260px;
    top: 60px;
    right: 30%;
  }
}

@-webkit-keyframes slide-right {
  0% {
    right: -200px;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 0.6;
  }
  30% {
    right: 50%;
    -webkit-transform: translateX(50%) scale(1);
    transform: translateX(50%) scale(1);
    opacity: 0.6;
  }
  60% {
    right: 50%;
    -webkit-transform: translateX(50%) scale(2);
    transform: translateX(50%) scale(2);
    opacity: 0;
  }
  60.1%, 100% {
    right: -200px;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 0;
  }
}

@keyframes slide-right {
  0% {
    right: -200px;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 0.6;
  }
  30% {
    right: 50%;
    -webkit-transform: translateX(50%) scale(1);
    transform: translateX(50%) scale(1);
    opacity: 0.6;
  }
  60% {
    right: 50%;
    -webkit-transform: translateX(50%) scale(2);
    transform: translateX(50%) scale(2);
    opacity: 0;
  }
  60.1%, 100% {
    right: -200px;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 0;
  }
}
.p-about-banner__card-sub {
  font-weight: 300;
  margin-bottom: 10px;
}

.p-about-banner__card-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
  position: relative;
}

.p-about-banner__card-text {
  line-height: 1.5;
  font-weight: 500;
}

.p-about-message {
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-about-message {
    max-width: 1440px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 62px;
  }
}

.p-about-message__title {
  font-size: 16px;
  font-weight: 400;
  color: #41cc06;
  margin-bottom: 20px;
}

.p-about-message__img {
  width: 100%;
  height: 332px;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 380px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 992px) {
  .p-about-message__img {
    max-width: none;
    height: 400px;
    -o-object-fit: contain;
    object-fit: contain;
    position: relative;
    margin-bottom: 60px;
  }
}

.p-about-message__logo {
  margin: 0 auto 60px;
  width: 160px;
}
@media screen and (min-width: 992px) {
  .p-about-message__logo {
    position: absolute;
    width: 16%;
    max-width: 232px;
    margin-top: 140px;
    margin-left: 8%;
  }
}

@media screen and (min-width: 992px) {
  .p-about-message__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 70%;
  }
}

.p-about-message__text-title {
  margin-bottom: 16px;
  font-size: 18px;
}
@media screen and (min-width: 992px) {
  .p-about-message__text-title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.p-about-message__text-desc {
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.7;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 992px) {
  .p-about-message__text-desc {
    font-size: 16px;
  }
}

.p-about-message__text-name {
  font-size: 12px;
  text-align: end;
  margin-bottom: 64px;
}
@media screen and (min-width: 992px) {
  .p-about-message__text-name {
    font-size: 16px;
  }
}

@media screen and (min-width: 992px) {
  .p-about-message__img-wrapper {
    margin-left: auto;
    position: relative;
  }
}

@media screen and (min-width: 992px) {
  .p-about-message__img-background {
    position: relative;
  }
  .p-about-message__img-background::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 400px;
    top: 0;
    background-color: #f5f3f3;
  }
}
.p-solution-card__visual-btn {
  list-style: none;
  display: block;
  height: 0;
  overflow: visible;
  padding: 0;
  margin: 0;
  line-height: 0;
  font-size: 0;
}

.p-solution-card__visual-btn-arrow {
  border: none;
  border-radius: 50%;
  color: #ffffff;
  background: #4d4d4d;
  position: absolute;
  bottom: 20px;
  right: 10px;
  width: 24px;
  height: 24px;
  font-size: 8px;
}

details.is-open .p-solution-card__visual-btn-arrow {
  display: none;
}

.p-solution-card__visual-btn-arrow img {
  width: 20px !important;
  height: auto;
  margin: 0 !important;
}

.p-solution-card__visual-desc {
  position: relative;
  padding: 10px;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: visible;
  z-index: 2;
  -webkit-transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
}

.p-solution-card__visual-desc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #41cc66;
  z-index: 2;
}

.p-solution-card__visual-desc::after {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 20px);
  margin-left: -10px;
  height: 400px;
  top: -84px;
  background-color: #ffffff;
  opacity: 0.6;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .p-solution-card__visual-desc::after {
    display: none !important;
  }
}

.p-solution-card__visual-desc > p {
  position: relative;
  z-index: 2;
  line-height: 1.7;
  letter-spacing: 0.2em;
}

.p-solution-card__visual-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.p-solution-card__visual-close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-page/close-button.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

details {
  position: relative;
}

details:not(.is-open) {
  z-index: 1;
}

details.is-open {
  z-index: 10;
}

details:not(.is-open) .p-solution-card__visual-desc {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

details.is-open .p-solution-card__visual-desc {
  max-height: 1000px;
  opacity: 1;
  pointer-events: auto;
}

.p-solution-card__visual-filter {
  display: none;
}

.p-solution-card__visual-filter.is-active {
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  left: 0;
  top: 0;
  background-color: transparent;
}

.p-service__cards {
  margin: 40px auto 0;
}
@media screen and (min-width: 992px) {
  .p-service__cards {
    margin-top: 80px;
  }
}

@media screen and (min-width: 992px) {
  .p-service__cards-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    margin-left: 60px;
  }
}

.p-service__cards-title h4 {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 14px;
  color: #41cc00;
}
@media screen and (min-width: 992px) {
  .p-service__cards-title h4 {
    font-size: 16px;
  }
}

.p-service__cards-title p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .p-service__cards-title p {
    font-size: 14px;
  }
}

.p-service-card {
  position: relative;
  margin-bottom: 100px;
  z-index: 1;
}
.p-service-card:has(details.is-open) {
  z-index: 10;
}
.p-service-card details.is-open::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.668);
  pointer-events: none;
  z-index: 5;
}
@media screen and (min-width: 992px) {
  .p-service-card {
    width: 542px;
    margin: 0 auto 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-service-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}

.p-service-card__title-main {
  font-size: 12px;
}
@media screen and (min-width: 992px) {
  .p-service-card__title-main {
    font-size: 14px;
  }
}

.p-service-card__title-num {
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .p-service-card__title-num {
    font-size: 20px;
  }
}

.p-service-card__visual {
  background-color: rgba(62, 249, 0, 0.137254902);
  padding: 20px 10px 20px;
  position: relative;
  margin-bottom: 28px;
  max-width: 380px;
  margin: 0 auto 28px;
  cursor: pointer;
}

.p-service-card__visual-title {
  font-size: 14px;
  font-weight: 500;
}

.p-service-card__visual img {
  width: 40%;
  margin: 40px auto;
}
@media screen and (min-width: 992px) {
  .p-service-card__visual img {
    margin: 60px auto;
  }
}

.p-service-card__desc {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .p-service-card__desc {
    text-align: start;
  }
}

.p-solution-card__visual-desc {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  padding: 40px 30px;
  position: absolute;
  width: 100%;
  top: -180px;
}
@media screen and (min-width: 992px) {
  .p-solution-card__visual-desc {
    padding: 38px 40px;
    width: 112%;
    left: 92%;
    top: -300px;
    min-height: 220px;
  }
}

.p-service {
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-service {
    max-width: 1440px;
  }
}

.p-service-mainvisual {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.p-service-mainvisual__bg-canvas {
  position: absolute !important;
  top: 110px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 140% !important;
  height: auto !important;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .p-service-mainvisual__bg-canvas {
    top: 40px;
  }
}

.p-service-mainvisual__title {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .p-service-mainvisual__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    margin-left: 60px;
  }
}

.p-service-mainvisual__title-main {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 14px;
  color: #41cc00;
}
@media screen and (min-width: 992px) {
  .p-service-mainvisual__title-main {
    font-size: 16px;
  }
}

.p-service-mainvisual__title-sub {
  font-size: 14px;
  font-weight: 500;
}

.p-service-mainvisual__desc {
  height: 360px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .p-service-mainvisual__desc {
    height: 768px;
  }
}

.p-service-mainvisual__desc-title {
  font-size: 32px;
  color: #41cc00;
  display: inline;
  margin-left: 32px;
}
@media screen and (min-width: 992px) {
  .p-service-mainvisual__desc-title {
    font-size: 56px;
    margin-left: 14%;
  }
}

.p-service-mainvisual__desc-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
  top: 136px;
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .p-service-mainvisual__desc-img {
    font-size: 20px;
    top: 292px !important;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.2);
  }
}

.p-service-mainvisual__desc-img::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #64cd39;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .p-service-mainvisual__desc-img::before {
    width: 200px;
    height: 200px;
    top: 50%;
  }
}

.fade-animation-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  line-height: 0;
}

.img-layer {
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-animation: fadeIn 3s ease-out forwards;
  animation: fadeIn 3s ease-out forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-service-mainvisual__background {
  bottom: -16px !important;
}
@media screen and (min-width: 992px) {
  .p-service-mainvisual__background {
    height: 848px !important;
    top: 100px !important;
  }
}

.p-contact {
  max-width: 768px;
  margin: 0 auto;
  padding-top: 0;
}
@media screen and (min-width: 992px) {
  .p-contact {
    max-width: 1000px;
  }
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-select,
.wpcf7-textarea {
  width: 100%;
  height: 92px;
  border-radius: 7px;
  padding: 0 10px;
  background-color: rgba(61, 61, 61, 0.1254901961);
  border: 2px solid transparent;
  color: #333333;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}
.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-select:focus,
.wpcf7-textarea:focus {
  background-color: #ffffff;
  border-color: #41cc00;
  outline: none;
}
.wpcf7-text:-webkit-autofill, .wpcf7-text:-webkit-autofill:hover, .wpcf7-text:-webkit-autofill:focus,
.wpcf7-email:-webkit-autofill,
.wpcf7-email:-webkit-autofill:hover,
.wpcf7-email:-webkit-autofill:focus,
.wpcf7-select:-webkit-autofill,
.wpcf7-select:-webkit-autofill:hover,
.wpcf7-select:-webkit-autofill:focus,
.wpcf7-textarea:-webkit-autofill,
.wpcf7-textarea:-webkit-autofill:hover,
.wpcf7-textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px rgba(61, 61, 61, 0.1254901961) inset !important;
  -webkit-text-fill-color: #333333 !important;
  border: 2px solid transparent !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
@media screen and (min-width: 992px) {
  .wpcf7-text,
  .wpcf7-email,
  .wpcf7-select,
  .wpcf7-textarea {
    height: 48px;
  }
}

.wpcf7-textarea {
  height: 250px;
  padding-top: 32px;
}
@media screen and (min-width: 992px) {
  .wpcf7-textarea {
    padding-top: 12px;
  }
}

.wpcf7-form-control-wrap {
  display: block;
  margin: 0;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-not-valid {
  border-color: #dc3232 !important;
  background-color: #fff5f5 !important;
}

.custom-invalid {
  border-color: #dc3232 !important;
  background-color: #fff5f5 !important;
}

.wpcf7 p {
  margin: -32px 0 0 0 !important;
}

.wpcf7-checkbox {
  background-color: transparent;
  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;
}
@media screen and (min-width: 992px) {
  .wpcf7-checkbox {
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.wpcf7-submit {
  background-color: #41cc00;
  color: #ffffff;
  border: none;
  border-radius: 7px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: 40px;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-contact__select-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.p-contact__select-wrapper.wpcf7-not-valid .p-contact__select-selected, .p-contact__select-wrapper.custom-invalid .p-contact__select-selected {
  border-color: #dc3232 !important;
  background-color: #fff5f5 !important;
}

.p-contact__select-selected {
  padding: 12px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: rgba(61, 61, 61, 0.1254901961);
  cursor: pointer;
  color: rgb(118, 118, 118);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: 92px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 18px;
}
.p-contact__select-selected.open {
  background: #ffffff;
  border-color: #41cc00;
}
@media screen and (min-width: 992px) {
  .p-contact__select-selected {
    height: 48px !important;
  }
}

.p-contact__select-selected::after {
  content: "";
  position: absolute;
  background-image: url("../img/contact-page/pulldown-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  pointer-events: none;
}

.p-contact__select-selected.active {
  background: rgba(61, 61, 61, 0.1254901961);
  border: 2px solid transparent;
  color: #000;
}
.p-contact__select-selected.active.open {
  background: #ffffff;
  border-color: #41cc00;
}

.p-contact__select-list {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 88%;
  display: none;
  border: 1px solid #ccc;
  border-radius: 8px;
  color: #ffffff;
  background: #808080;
  list-style: none;
  padding: 0;
  margin: 10px auto 0;
  z-index: 10;
}

.p-contact__select-item {
  padding: 12px;
  cursor: pointer;
  border-bottom: solid 1px;
}
.p-contact__select-item:last-child {
  border-bottom: none;
}

.p-contact__select-item:hover {
  background-color: #f0f0f0;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
  margin: 0 auto 20px;
  border: none;
  padding: 12px 20px;
  color: #dc3232;
  background-color: #fff5f5;
  border-radius: 7px;
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: 16px;
  }
}

.wpcf7-mail-sent-ok .wpcf7-response-output,
.wpcf7.wpcf7-mail-sent-ok .wpcf7-response-output,
form.wpcf7-mail-sent-ok .wpcf7-response-output {
  background-color: transparent !important;
}

.p-mainvisual {
  position: relative;
  height: calc(100svh - 92px);
  max-width: 768px;
  margin: 0 auto;
  overflow: visible;
}
@media screen and (min-width: 992px) {
  .p-mainvisual {
    max-width: 1440px;
    height: calc(100vh - 110px);
  }
}
.p-mainvisual #ecosystem-container {
  position: absolute;
  top: calc(-16% + 30px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  max-width: none;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 992px) {
  .p-mainvisual #ecosystem-container {
    top: -10%;
  }
}

.p-mainvisual__background-wrapper img {
  position: absolute;
  z-index: 2;
  width: 74%;
  height: auto;
  top: 58%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 992px) {
  .p-mainvisual__background-wrapper img {
    width: 70%;
    height: auto;
    top: 34%;
    left: 62%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.p-mainvisual__background-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 18%;
  left: 9%;
  background-image: url("/wp-content/themes/theme/img/top-page/top-page_skill-sp.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (min-width: 992px) {
  .p-mainvisual__background-wrapper::after {
    background-image: url("/wp-content/themes/theme/img/top-page/top-page_skill-pc.png");
    top: 6%;
    left: 29%;
  }
}

.p-mainvisual__title {
  font-size: 24px;
  font-weight: 500;
  padding-left: 20px;
  background: linear-gradient(300deg, #5eff00 32%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 5%;
}
@media screen and (min-width: 992px) {
  .p-mainvisual__title {
    font-size: 32px;
    padding-left: 60px;
    background: linear-gradient(280deg, #5eff00 46%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 20%;
  }
}

.p-top-news {
  overflow: hidden;
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-top-news {
    max-width: 1440px;
  }
}

.p-top-news__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin: 16px -20px;
  width: auto;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.p-top-news__cards::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 992px) {
  .p-top-news__cards {
    margin: 30px -60px;
    max-width: 1440px;
  }
}

.p-top-news__card {
  padding: 10px 20px 60px;
  border: 1px solid #696868;
  border-radius: 10px;
  position: relative;
}

.p-top-news__card div {
  margin-bottom: 10px;
}

.p-top-news__card-date {
  font-size: 18px;
  font-weight: 500;
}

.p-top-news__card-category {
  font-size: 10px;
  font-weight: 500;
}

.p-top-news__card-title {
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.p-top-news__card-arrow {
  position: absolute;
  bottom: 0px;
  right: 0px;
  left: auto;
  padding: 20px;
  font-size: 20px;
}

.p-top-news__cards .slick-slider {
  display: block;
}
.p-top-news__cards .slick-slide {
  height: 200px;
}
.p-top-news__cards .slick-prev,
.p-top-news__cards .slick-next {
  position: absolute;
  display: block;
  cursor: pointer;
  background-color: transparent !important;
  border: none !important;
  font-size: 0 !important;
  color: #000;
  line-height: 1;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 0 !important;
  outline: none !important;
}
.p-top-news__cards .slick-prev:hover, .p-top-news__cards .slick-prev:focus,
.p-top-news__cards .slick-next:hover,
.p-top-news__cards .slick-next:focus {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
}
.p-top-news__cards .slick-prev {
  width: 48px;
  height: 48px;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  background-image: url("../img/top-page/slick-prev.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-top-news__cards .slick-prev:before {
  content: "" !important;
  display: none !important;
}
.p-top-news__cards .slick-next {
  width: 48px;
  height: 48px;
  left: auto;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  background-image: url("../img/top-page/slick-next.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-top-news__cards .slick-next:before {
  content: "" !important;
  display: none !important;
}
.p-top-news__cards .slick-list {
  margin: 0 -10px;
}
.p-top-news__cards .slick-slide {
  margin: 0 10px;
}
.p-top-news__cards .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.p-top-about {
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-top-about {
    max-width: 1440px;
  }
}

.p-top-about__card {
  background-color: #ccffc9;
  border-radius: 10px;
  padding: 30px;
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .p-top-about__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 120px 60px;
    position: relative;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 992px) {
  .p-top-about__card-container {
    width: 240px;
  }
}

.p-top-about__card-title {
  font-size: 18px;
  font-weight: 500;
  color: #4d4d4d;
  opacity: 0.7;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .p-top-about__card-title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.p-top-about__card-text {
  letter-spacing: 4px;
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .p-top-about__card-text {
    width: 86%;
  }
}

@media screen and (min-width: 992px) {
  .p-top-about__card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10%;
  }
}

.p-top-about__card-img {
  position: relative;
}

.p-top-about__card-img img {
  margin: 80px 0;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.p-top-about__card-img::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  bottom: -40px;
  border-radius: 50%;
  background-color: #41cc06;
  z-index: 0;
}
@media screen and (min-width: 992px) {
  .p-top-about__card-img::after {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .p-top-about__background {
    position: absolute;
    left: 0;
    top: 26%;
    height: auto;
    width: 100% !important;
  }
}

.p-top-about__background img {
  position: relative;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 992px) {
  .p-top-about__background::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 29%;
    height: 170%;
    bottom: -40%;
    border-radius: 50%;
    background-color: #41cc06;
    z-index: 1;
  }
}

.p-top-service {
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 1120px;
}
@media screen and (min-width: 992px) {
  .p-top-service {
    max-width: 1440px;
    height: 740px;
  }
}

.p-top-service__background {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100vw;
  max-width: none;
  z-index: -1;
  pointer-events: none;
}
.p-top-service__background canvas {
  width: 100%;
  height: auto;
}

.p-top-service__title {
  margin-top: 20px;
  font-weight: 500;
}

.p-top-service__cards {
  width: 100%;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 992px) {
  .p-top-service__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
  }
}

.p-top-service__card {
  background-color: #ccffc9;
  border-radius: 8px;
  padding: 30px 18px 40px;
  margin: 48px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
  width: 248px;
}
@media screen and (min-width: 992px) {
  .p-top-service__card {
    margin: 0;
  }
}

@media screen and (min-width: 992px) {
  .p-top-service__card:nth-child(1) {
    margin-top: 80px;
  }
}

@media screen and (min-width: 992px) {
  .p-top-service__card:nth-child(2) {
    margin-bottom: 80px;
  }
}

.p-top-service__card-title {
  text-align: start;
  color: #4d4d4d;
  font-weight: 500;
}

.p-top-service__card-img {
  width: 140px;
  margin: 0 auto;
}

.p-top-service__card-desc {
  color: #41cc06;
  font-weight: 500;
  margin-top: 32px;
}

@media screen and (min-width: 992px) {
  .p-top-service__button {
    position: absolute;
    right: 22%;
    bottom: 0;
  }
}

.p-top-report {
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-top-report {
    max-width: 1440px;
  }
}

.p-top-report__cards {
  margin: 40px auto;
  max-width: 440px;
}
@media screen and (min-width: 992px) {
  .p-top-report__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
    max-width: none;
  }
}

.p-top-report__card {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .p-top-report__card {
    margin-bottom: 0;
  }
}

.p-top-report__card-container {
  position: relative;
  margin-bottom: 10px;
}

.p-top-report__card-category {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 600;
}

.p-top-report__card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.p-top-report__card-title {
  position: relative;
  margin-left: 40px;
  color: #1a1a1a;
  font-weight: 600;
}

.p-top-report__card-title::before {
  content: "title";
  position: absolute;
  bottom: 0;
  left: -40px;
  font-size: 16px;
}

.p-top-report__card-date {
  color: #666666;
  font-size: 14px;
}

.p-top-report__card-text {
  width: 90%;
}
@media screen and (min-width: 992px) {
  .p-top-report__card-text {
    width: 80%;
  }
}

.p-top-blog {
  overflow: hidden;
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-top-blog {
    max-width: 1440px;
  }
}

.p-top-blog__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: auto;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.p-top-blog__cards::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 991px) {
  .p-top-blog__cards {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-left: 20px;
    padding-right: 20px;
    margin: 16px 0 0;
  }
}
@media screen and (min-width: 992px) {
  .p-top-blog__cards {
    margin: 30px -60px;
    max-width: 1440px;
  }
}
.p-top-blog__cards .slick-slider {
  display: block;
}
.p-top-blog__cards .slick-slide {
  width: 320px !important;
  margin-right: 16px !important;
  height: 220px !important;
}
@media screen and (min-width: 992px) {
  .p-top-blog__cards .slick-slide {
    width: 400px !important;
    margin-right: 40px !important;
    margin-left: 60px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-blog__cards .slick-slide:first-child {
    margin-left: 0;
  }
}
.p-top-blog__cards .slick-prev,
.p-top-blog__cards .slick-next {
  position: absolute;
  display: block;
  cursor: pointer;
  background-color: transparent !important;
  border: none !important;
  font-size: 0 !important;
  color: #000;
  line-height: 1;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 0 !important;
  outline: none !important;
}
.p-top-blog__cards .slick-prev:hover, .p-top-blog__cards .slick-prev:focus,
.p-top-blog__cards .slick-next:hover,
.p-top-blog__cards .slick-next:focus {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
}
.p-top-blog__cards .slick-prev {
  width: 48px;
  height: 48px;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  background-image: url("../img/top-page/slick-prev.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-top-blog__cards .slick-prev:before {
  content: "" !important;
  display: none !important;
}
.p-top-blog__cards .slick-next {
  width: 48px;
  height: 48px;
  left: auto;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  background-image: url("../img/top-page/slick-next.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-top-blog__cards .slick-next:before {
  content: "" !important;
  display: none !important;
}
.p-top-blog__cards .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991px) {
  .p-top-blog__cards .note-embed {
    width: 92%;
    height: 220px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .p-top-blog__cards .note-embed:first-child {
    margin-left: 20px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-blog__cards .note-embed {
    height: 440px;
  }
}

.p-top-gallery {
  overflow: hidden;
}

.p-top-gallery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  margin-top: 40px;
}

.p-top-gallery__inner-img {
  width: 172px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-top-bottom {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .p-top-bottom {
    padding: 80px 0 160px;
  }
}

.p-top-bottom img {
  width: 38px;
}

.p-top-bottom__note {
  border: solid 1px #999999;
  border-radius: 8px;
}

.p-not-found {
  max-width: 768px;
  margin: 0 auto;
  height: calc(100vh - 92px);
  padding-top: 50%;
}
@media screen and (min-width: 992px) {
  .p-not-found {
    max-width: 1440px;
    height: calc(100vh - 110px - 222px);
    padding-top: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    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;
  }
}

.p-not-found h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .p-not-found h2 {
    font-size: 42px;
  }
}

.p-privacy {
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .p-privacy {
    max-width: 1440px;
  }
}

.p-privacy-container h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
}

.p-privacy-container h2 {
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (min-width: 992px) {
  .p-privacy-container h2 {
    font-size: 24px;
  }
}

.p-privacy-container h3 {
  font-size: 12px;
  margin-left: 1rem;
}
@media screen and (min-width: 992px) {
  .p-privacy-container h3 {
    font-size: 20px;
  }
}

.p-privacy-container h4 {
  font-size: 12px;
  margin-left: 1.5rem;
}
@media screen and (min-width: 992px) {
  .p-privacy-container h4 {
    font-size: 18px;
  }
}

.p-privacy-container h5 {
  font-size: 12px;
  margin-left: 2rem;
}
@media screen and (min-width: 992px) {
  .p-privacy-container h5 {
    font-size: 16px;
  }
}

.p-privacy-container h6 {
  font-size: 12px;
  margin-left: 2.5rem;
}
@media screen and (min-width: 992px) {
  .p-privacy-container h6 {
    font-size: 16px;
  }
}

.p-privacy-container p {
  font-size: 12px;
  margin-left: 1rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 992px) {
  .p-privacy-container p {
    font-size: 16px;
    margin-bottom: 2rem;
  }
}

.p-privacy-container__desc-inner p {
  margin-left: 2.5rem;
}

@media screen and (min-width: 992px) {
  .p-privacy-container {
    margin-left: 80px;
  }
}

.p-privacy-container__desc {
  margin-bottom: 60px;
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
/*# sourceMappingURL=sass/style.css.map */
