@charset "UTF-8";
/*******************

base

*******************/
html {
  font-size: clamp(0.938rem, 0.909rem + 0.14vw, 1rem);
}

body {
  position: relative;
  color: #333333;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

img {
  max-width: 100%;
}

iframe {
  width: 100%;
  height: 300px;
}

small {
  display: block;
  text-align: center;
  font-size: 12px;
}

a {
  text-decoration: none !important;
}

.fixed-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: url(../images/bg.jpg) center center no-repeat;
  background-size: cover;
  z-index: -100;
}

.fixed-contact {
  position: fixed;
  z-index: 200;
  bottom: 60px;
  right: 0.5%;
  width: 120px;
  height: 120px;
  animation: float 3s linear infinite;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
@media screen and (max-width: 767px) {
  .fixed-contact {
    bottom: 20px;
    width: 80px;
    height: 80px;
  }
}

.fixed-contact.is-show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.wrapper {
  background-color: #FFFFFF;
  width: 98%;
  margin-inline: auto;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  z-index: 200;
}
#loader svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.js-target {
  opacity: 0;
  transform: translateY(20px);
}

.is-fadeIn {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease-in-out;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

.wpcf7-spinner {
  display: none;
}

/*******************

layout

*******************/
.main {
  padding: 80px 0 0;
}

.section {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .section {
    margin-bottom: 64px;
  }
}
.section--secondary {
  background-color: #F7F7F7;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .section--secondary {
    padding-bottom: 64px;
  }
}
.section--tertiary {
  background-color: #eaf9f2;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .section--tertiary {
    padding-bottom: 64px;
  }
}
.section__inner {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .section__inner {
    padding-top: 64px;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

.flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}
.flex-col-2 {
  gap: 2rem;
}
.flex-col-3 {
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .flex-col-3 {
    gap: 3rem;
  }
}
.flex-col-3--works {
  gap: 3rem 1.5rem;
}
.flex-item-2 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .flex-item-2 {
    width: 100%;
  }
}
.flex-item-3 {
  width: calc((100% - 3rem) / 3);
}
@media screen and (max-width: 767px) {
  .flex-item-3 {
    width: 100%;
  }
}
.flex--wrap {
  flex-wrap: wrap;
}

.header {
  position: fixed;
  width: 98%;
  height: 80px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 5%;
}
.header__logo {
  position: relative;
  height: 60px;
  z-index: 100;
}
.header__logo a,
.header__logo img {
  height: 100%;
}
.header__logo a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 979px) {
  .header__nav {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../images/bg.svg) center center no-repeat;
    background-size: cover;
    background-color: white;
    z-index: 90;
  }
}
@media screen and (max-width: 979px) and (max-width: 979px) {
  .header__nav {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 979px) {
  .header__nav-list {
    width: 100%;
    padding: 0 5%;
    flex-direction: column;
  }
}
.header__nav-item {
  border-radius: 50px;
  transition: background-color 0.3s;
}
@media screen and (max-width: 979px) {
  .header__nav-item {
    min-width: 280px;
    text-align: center;
  }
}
.header__nav-item:first-child {
  display: none;
}
.header__nav-item a {
  display: inline-block;
  padding: 0.75em 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}
.header__nav-item:nth-child(2):hover {
  background-color: #009944;
}
.header__nav-item:nth-child(3):hover {
  background-color: #e0636b;
}
.header__nav-item:nth-child(4):hover {
  background-color: #0373B1;
}
.header__nav-item:last-child:hover {
  background-color: #e64d23;
}

.footer {
  padding: 80px 0 20px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 48px 0 20px;
    text-align: center;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__info {
  width: 35%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .footer__info {
    width: 100%;
  }
}
.footer__logo {
  height: 100px;
  margin-bottom: 1.5rem;
}
.footer__logo img,
.footer__logo a {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.footer__item {
  margin-bottom: 0.75em;
  line-height: 1.5;
}
.footer__item:last-child {
  margin-bottom: 0;
}
.footer__container {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .footer__container {
    width: 100%;
  }
}
.footer__nav {
  padding-top: 30px;
  margin-bottom: 3rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    max-width: 500px;
    margin-inline: auto;
    text-align: center;
  }
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-item {
    width: calc((100% - 1.5rem) / 2);
  }
}
.footer__map {
  text-align: right;
}

.banner {
  background-color: #F7F7F7;
}
.banner__img {
  text-align: center;
}
.banner__img img {
  transition: opacity 0.3s;
}
.banner__img img:hover {
  opacity: 0.8;
}

/*******************

component

*******************/
.descri {
  line-height: 1.7;
}

.headline {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 0.611rem + 1.85vw, 2rem);
  padding: 1em 5%;
  background: #E97251;
  background: linear-gradient(144deg, rgb(233, 114, 81) 0%, rgb(255, 222, 89) 64%, rgb(119, 175, 42) 80%, rgb(0, 144, 217) 100%);
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 4em;
}
@media screen and (max-width: 1199px) {
  .section-title {
    margin-bottom: 2.5em;
  }
}
.section-title img {
  height: 64px;
}
.section-title span {
  display: block;
  margin-left: 1rem;
  font-size: clamp(1.25rem, 1.114rem + 0.68vw, 1.625rem);
  letter-spacing: 0.05em;
  color: #2b2972;
}

.menu {
  display: none;
}
@media screen and (max-width: 979px) {
  .menu {
    position: relative;
    display: block;
    width: 26px;
    height: 100%;
    z-index: 100;
  }
}
@media screen and (max-width: 1199px) {
  .menu__line {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border-radius: 2px;
    transition: 0.3s;
  }
  .menu__line:first-child {
    top: calc(50% - 7px);
    background-color: #77AF2A;
  }
  .menu__line:nth-child(2) {
    background-color: #E97251;
  }
  .menu__line:last-child {
    top: calc(50% + 7px);
    background-color: #0090D9;
  }
}

.is-active:first-child {
  top: 50%;
  rotate: 135deg;
}
.is-active:nth-child(2) {
  opacity: 0;
}
.is-active:last-child {
  top: 50%;
  rotate: -135deg;
}

.is-open {
  opacity: 1;
  visibility: visible;
}

.btn-container {
  text-align: center;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 0.75rem 3rem;
  border-radius: 50px;
  color: #FFFFFF;
  min-width: 280px;
  transition: background-color 0.3s;
  font-weight: 600;
}
.btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 1rem;
  height: 1rem;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: url(../images/arrow-right.svg) center center no-repeat;
  background-size: cover;
}
.btn--green {
  background-color: #77AF2A;
}
.btn--green:hover {
  background-color: #009944;
}
.btn--pink {
  background-color: #EF858C;
}
.btn--pink:hover {
  background-color: #e0636b;
}
.btn--blue {
  background-color: #0090D9;
}
.btn--blue:hover {
  background-color: #0373B1;
}
.btn--orange {
  background-color: #E97251;
}
.btn--orange:hover {
  background-color: #e64d23;
}
.btn--navy {
  background-color: #2b2972;
}
.btn--navy:hover {
  background-color: #03003E;
}

.card {
  opacity: 1;
  transition: opacity 0.3s;
}
.card:hover {
  opacity: 0.8;
}
.card__img {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .card__img {
    margin-bottom: 1rem;
  }
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card__date {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 0.5em;
}
.card__title {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1199px) {
  .card__title {
    font-size: 1.05rem;
  }
}
.card__border {
  border: 1px solid #858585;
}

.voice {
  display: flex;
  flex-direction: column;
}
.voice__title {
  font-size: 1.15rem;
  color: #FFFFFF;
  padding: 1em;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
.voice__inner {
  display: flex;
  padding: 2em;
  background-color: #FFFFFF;
  border-radius: 0 0 10px 10px;
  flex-grow: 1;
  gap: 1.5rem;
}
@media screen and (max-width: 1199px) {
  .voice__inner {
    flex-direction: column-reverse;
  }
}
.voice__descri {
  width: 60%;
  line-height: 1.5;
  flex-grow: 1;
}
@media screen and (max-width: 1199px) {
  .voice__descri {
    width: 100%;
    justify-content: center;
  }
}
.voice__img {
  width: 40%;
}
@media screen and (max-width: 1199px) {
  .voice__img {
    width: 50%;
    margin-inline: auto;
  }
}

.policy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 720px;
  margin-inline: auto;
}
@media screen and (max-width: 979px) {
  .policy {
    flex-direction: column;
  }
}
.policy__title {
  font-size: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
  font-weight: 600;
  color: #E97251;
}
@media screen and (max-width: 979px) {
  .policy__title {
    font-size: clamp(3rem, 1.864rem + 4.85vw, 5.5rem);
    margin-bottom: 2rem;
  }
}
.policy__descri {
  line-height: 1.5;
  font-weight: 600;
  color: #2b2972;
}
@media screen and (max-width: 979px) {
  .policy__descri {
    text-align: center;
  }
}

.page-head__title {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 0.611rem + 1.85vw, 2rem);
  padding: 1em 5%;
}

.breadcrumb {
  padding: 1rem 0 0 5%;
  display: flex;
  align-items: center;
  font-size: 10px;
}
.breadcrumb__item {
  position: relative;
  color: #858585;
  line-height: 1.5;
}
.breadcrumb__item:first-child {
  padding-right: 35px;
  margin-right: 20px;
}
.breadcrumb__item:first-child::after {
  content: ">";
  position: absolute;
  display: block;
  font-size: 10px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.breadcrumb__item img {
  width: 12px;
  height: 12px;
}
.breadcrumb__item a {
  display: flex;
  align-items: center;
}

.news-head {
  padding: 1em 5% 4em 0;
}

.news-page {
  max-width: 960px;
  margin-inline: auto;
}
.news-page__date {
  display: inline-block;
  margin-bottom: 1em;
}
.news-page__title {
  font-size: clamp(1.5rem, 0.611rem + 1.85vw, 2rem);
  line-height: 1.5;
}
.news-page .breadcrumb {
  padding-left: 0;
}
.news-page__thumbnail {
  margin-bottom: 100px;
}
.news-page__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
.news-page__content {
  margin-bottom: 100px;
}
.news-page__content p {
  line-height: 2;
  letter-spacing: 0.05em;
}

.media-block {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .media-block {
    flex-direction: column;
  }
}
.media-block__txt {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .media-block__txt {
    width: 100%;
  }
}
.media-block__img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .media-block__img {
    width: 100%;
  }
}
.media-block__img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/11;
}
.media-block__descri {
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.contact__descri {
  text-align: center;
  line-height: 1.7;
}

.contact__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__item {
  display: flex;
  flex-direction: column;
}

.contact__item label {
  font-weight: 600;
  margin-bottom: 0.75em;
  display: inline-block;
}

.contact__item input[type=text],
.contact__item input[type=email],
.contact__item input[type=tel],
.contact__item textarea {
  width: 100%;
  border: 1px solid #858585;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__item textarea {
  resize: vertical;
  min-height: 140px;
}

.contact__item input:focus,
.contact__item textarea:focus {
  outline: none;
  border-color: var(--accent-color, #0078d7);
  box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.15);
  background-color: #fff;
}

.asterisk {
  color: #e63946;
  margin-left: 0.25em;
}

.contact__item--checkbox {
  display: flex;
  align-items: center;
}

.contact__item--checkbox input[type=checkbox] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.5rem;
  cursor: pointer;
  accent-color: var(--accent-color, #0078d7);
  vertical-align: middle;
}

/* ボタンエリア */
.contact__button-wrapper {
  text-align: center;
  margin-top: 0.5rem;
}

/* 送信ボタン */
.submit-button {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.submit-button::after {
  display: none;
}

.submit-button:hover {
  background-color: #03003E;
  transform: translateY(-1px);
}

.submit-button:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .contact__container {
    padding: 1.5rem 1rem;
  }
  .submit-button {
    width: 100%;
  }
}
/*******************

project

*******************/
.fv {
  width: 100%;
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .fv {
    padding: 56px 0 0;
  }
}
.fv__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    flex-direction: column;
  }
}
.fv__txt {
  width: 50%;
}
@media screen and (max-width: 979px) {
  .fv__txt {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .fv__txt {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.fv__tagline {
  font-size: clamp(3rem, 1.864rem + 4.85vw, 5.5rem);
  color: #E97251;
  margin-bottom: 1rem;
}
.fv__descri {
  font-weight: 600;
  font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  line-height: 1.5;
  color: #2b2972;
}
@media screen and (max-width: 767px) {
  .fv__descri {
    width: 90%;
    line-height: 1.7;
  }
}
.fv__img {
  width: 50%;
}
@media screen and (max-width: 979px) {
  .fv__img {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .fv__img {
    width: 100%;
  }
}

.service {
  overflow: hidden;
}
.service__list {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 300px 0;
}
@media screen and (max-width: 767px) {
  .service__list {
    padding: 0;
  }
}
.service__list::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: url(../images/service-bg.svg) center center no-repeat;
  background-size: contain;
  animation: rotate 60s linear infinite;
}
@keyframes rotate {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.service__item {
  position: absolute;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .service__item {
    position: relative;
    flex-direction: column;
    margin-bottom: 3rem;
  }
  .service__item:last-child {
    margin-bottom: 0;
  }
}
.service__item:first-child {
  top: 0;
  left: 10%;
}
@media screen and (max-width: 767px) {
  .service__item:first-child {
    left: 0;
  }
}
.service__item:nth-child(2) {
  top: 27.5%;
  right: 10%;
}
@media screen and (max-width: 767px) {
  .service__item:nth-child(2) {
    top: 0;
    right: 0;
  }
}
.service__item:nth-child(3) {
  bottom: 0;
  right: 10%;
}
@media screen and (max-width: 767px) {
  .service__item:nth-child(3) {
    bottom: 0;
    right: 0;
  }
}
.service__item:last-child {
  bottom: 27.5%;
  left: 10%;
}
@media screen and (max-width: 767px) {
  .service__item:last-child {
    bottom: 0;
    left: 0;
  }
}
.service__inner {
  text-align: center;
}
.service__descri {
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.service__img {
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .service__img {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.service__img img {
  height: 100px;
}

.news__item {
  opacity: 1;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .news__item {
    max-width: 480px;
    margin-inline: auto;
  }
}
.news__item:hover {
  opacity: 0.8;
}

.concept__container {
  width: 90%;
  max-width: 720px;
  margin: 64px auto;
  text-align: center;
}
@media screen and (max-width: 979px) {
  .concept__container {
    margin: 48px auto;
  }
}
@media screen and (max-width: 767px) {
  .concept__container {
    text-align: left;
  }
}
.concept__descri {
  line-height: 2;
  margin-bottom: 1.25rem;
}
.concept__descri:last-child {
  margin-bottom: 0;
  text-align: center;
  margin-top: 1.5rem;
}

.about {
  width: 90%;
  max-width: 960px;
  margin-inline: auto;
}
.about__img {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.about__item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dotted #2b2972;
}
.about__item dt {
  margin-bottom: 1em;
}
.about__item dd {
  line-height: 1.5;
}

.business {
  display: flex;
  flex-direction: column;
}
.business__title {
  font-size: 1.15rem;
  padding: 1em;
  color: #FFFFFF;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}
.business__descri {
  line-height: 1.5;
  letter-spacing: 0.02em;
  flex-grow: 1;
}
.business__list-title {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1em;
  padding: 1em 0 1em 1.5em;
}
.business__list-title span {
  font-size: 0.85rem;
  margin-left: 1rem;
}
.business__list-title::before {
  content: "";
  position: absolute;
  display: block;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.business__list-title--green {
  border-bottom: 1px dotted #77AF2A;
}
.business__list-title--green::before {
  background-color: #77AF2A;
}
.business__list-title--orange {
  border-bottom: 1px dotted #E97251;
}
.business__list-title--orange::before {
  background-color: #E97251;
}
.business__list-title--blue {
  border-bottom: 1px dotted #0090D9;
}
.business__list-title--blue::before {
  background-color: #0090D9;
}
.business__list-title--pink {
  border-bottom: 1px dotted #EF858C;
}
.business__list-title--pink::before {
  background-color: #EF858C;
}
.business__list-title--yellow {
  border-bottom: 1px dotted #FFDE59;
}
.business__list-title--yellow::before {
  background-color: #FFDE59;
}
.business__list-item {
  line-height: 1.7;
}
.business__list-item span {
  display: block;
}
.business__list-item span:first-child {
  font-weight: 600;
  margin-bottom: 0.25em;
}
.business__list-item .business__descri {
  line-height: 1.7;
}

/*******************

utility

*******************/
.sp {
  display: none;
}
@media screen and (max-width: 979px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 979px) {
  .pc {
    display: none;
  }
}

.mb-sm {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: 2rem;
}

.mb-lr {
  margin-bottom: 3rem;
}
@media screen and (max-width: 1199px) {
  .mb-lr {
    margin-bottom: 2.5rem;
  }
}

.mb-xl {
  margin-bottom: 4rem;
}

.clr-orange {
  color: #E97251;
}

.clr-white {
  color: #FFFFFF;
}

.clr-black {
  color: #333333;
}

.bg-orange {
  background-color: #E97251;
}

.bg-green {
  background-color: #77AF2A;
}

.bg-blue {
  background-color: #0090D9;
}

.bg-pink {
  background-color: #EF858C;
}

.bg-navy {
  background-color: #2b2972;
}

.bg-yellow {
  background-color: #FFDE59;
}/*# sourceMappingURL=style.css.map */