@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&family=Oswald:wght@200;400;600&family=Roboto:wght@400;700&family=Shippori+Mincho:wght@400;600;700&display=swap");
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  font-family: "Roboto", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

code,
kbd,
pre,
samp {
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

menu,
ol,
ul {
  list-style: none;
  list-style-image: none;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.35);
}
a:active, a:hover {
  outline: 0;
}
a:focus {
  outline: none;
}
a img, a svg {
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

.scroll {
  opacity: 0;
}

.scroll.is-scroll.is-scroll--top {
  -webkit-animation: fadein 0.8s ease forwards;
          animation: fadein 0.8s ease forwards;
}

.scroll.is-scroll.is-scroll--right {
  -webkit-animation: right 0.6s ease forwards;
          animation: right 0.6s ease forwards;
}

.scroll.is-scroll.is-scroll--left {
  -webkit-animation: left 0.6s ease forwards;
          animation: left 0.6s ease forwards;
}

@-webkit-keyframes fadein {
  0%, 10% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadein {
  0%, 10% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes right {
  0%, 10% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes right {
  0%, 10% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes left {
  0%, 10% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes left {
  0%, 10% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slide-bg {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes slide-bg {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes slide-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slide-bg {
  position: relative;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slide-bg:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: #c51e25;
}

.slide-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.is-move .slide-bg:before {
  -webkit-animation: slide-bg 1s ease 0s 1 normal forwards;
  animation: slide-bg 1s ease 0s 1 normal forwards;
}

.is-move .slide-txt {
  -webkit-animation: slide-txt 0s ease 0.55s 1 normal forwards;
  animation: slide-txt 0s ease 0.55s 1 normal forwards;
}

@-webkit-keyframes shiny {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1) rotate(25deg);
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
@keyframes shiny {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1) rotate(25deg);
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
.pc {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
.header {
  width: 100%;
  padding: 1.5rem;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #f6f6f6;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 9999;
}
.header-logo {
  width: 200px;
  line-height: 0;
  position: relative;
  z-index: 10001;
}
.header-trigger {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 30px;
  height: 22px;
  border: none;
  display: block;
  background: transparent;
  cursor: pointer;
  outline: 0;
  z-index: 10000;
}
.header-trigger span {
  width: 100%;
  height: 2px;
  background: #c51e25;
  display: inline-block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
}
.header-trigger span:nth-of-type(1) {
  top: 0;
}
.header-trigger span:nth-of-type(2) {
  top: 10px;
}
.header-trigger span:nth-of-type(3) {
  bottom: 0;
}
.header-trigger.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}
.header-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header-trigger.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}
.header-inner {
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  overflow-y: auto;
}
.header-inner__nav > li {
  font-size: 1.6rem;
}
.header-mark {
  text-align: center;
  padding: 2.5rem 0;
}
.header-mark li {
  width: 45px;
  margin: 0 1.5rem;
  display: inline-block;
}
.header h1 {
  font-family: "Shippori Mincho", serif;
}
.header-visual {
  margin-top: 3rem;
}
.header-visual-img {
  width: 80vw;
  margin: 0 auto;
}
.header-visual-topics {
  margin-top: 3rem;
}
.header-visual-topics li {
  font-size: 1.5rem;
}
.header-visual-topics li + li {
  margin-top: 0.5rem;
}
.header-visual-topics li a {
  color: #c51e25;
  text-decoration: underline;
}

body.js-nav-open {
  height: 100%;
}
body.js-nav-open .header-nav {
  opacity: 1;
  visibility: visible;
  -webkit-overflow-scrolling: touch;
}
body.js-nav-open .btn a {
  z-index: -1;
}

@media screen and (max-width: 1023px) {
  .header {
    padding-bottom: 6rem;
  }
  .header-nav {
    width: 100%;
    height: 100%;
    padding: 49.33px 0 0;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #fff;
  }
  .header-inner__nav {
    padding-bottom: 1.5rem;
  }
  .header-inner__nav > li {
    border-bottom: 1px solid #e5e5e5;
  }
  .header-inner__nav > li > a {
    padding: 1.3rem;
    display: block;
    position: relative;
  }
  .header-inner__nav > li > a:after {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border: 0px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1.3rem;
  }
  .header h1 {
    text-align: center;
    font-size: 9vw;
    margin-top: 3rem;
  }
  body.js-nav-open {
    overflow: hidden;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    padding: 2.5rem 6rem 0;
  }
  .header-logo {
    width: 230px;
  }
  .header-trigger {
    display: none;
  }
  .header-nav {
    position: absolute;
    top: 2.3rem;
    right: 6rem;
  }
  .header-inner {
    width: auto;
    background: none;
    display: table;
  }
  .header-inner__nav {
    display: table-cell;
    position: relative;
  }
  .header-inner__nav > li {
    font-size: 1.7rem;
    font-weight: 700;
    margin-right: 3rem;
    display: inline-block;
    opacity: 1;
  }
  .header-mark {
    padding: 0;
  }
  .header-mark li {
    margin: 0 0.25rem;
  }
  .header-inner__nav li > a {
    padding: 0;
    position: relative;
    display: inline-block;
  }
  .header-inner__nav li > a:before {
    content: "";
    height: 2px;
    background: #000;
    margin-top: -1px;
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.96, 0.07, 0.28, 0.78);
    transition: -webkit-transform 0.4s cubic-bezier(0.96, 0.07, 0.28, 0.78);
    transition: transform 0.4s cubic-bezier(0.96, 0.07, 0.28, 0.78);
    transition: transform 0.4s cubic-bezier(0.96, 0.07, 0.28, 0.78), -webkit-transform 0.4s cubic-bezier(0.96, 0.07, 0.28, 0.78);
  }
  .header-inner__nav li > a:hover:before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .header-inner__nav > li:hover > a:before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .header-visual {
    margin-top: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-visual-img {
    width: 35%;
    margin-right: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header-visual-tt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header-visual-tt h1 {
    font-size: 3vw;
  }
  .header-visual-topics {
    margin: 4rem 0;
  }
  .header-visual-topics li {
    font-size: 1.6rem;
  }
  .header-visual-topics li + li {
    margin-top: 1rem;
  }
  .header-visual-topics li a:hover {
    color: #c51e25;
    text-decoration: none;
  }
  .js-fade {
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  body.js-nav-open .header-inner__nav > li,
  .js-fade.is-js-fade {
    opacity: 1;
  }
}
@media screen and (min-width: 1024px) {
  .header-logo {
    width: 250px;
  }
  .header-visual {
    margin-top: 10rem;
  }
  .header-visual-img {
    margin-right: 10rem;
  }
  .header-visual-tt h1 {
    font-size: 3.8vw;
  }
}
.footer-contact a {
  text-align: center;
  padding: 10rem 1.5rem;
  display: block;
  position: relative;
}
.footer-contact a:before {
  content: "";
  background: #bf2224;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.footer-contact .f-contact {
  margin: 0 auto;
  display: table;
  text-align: center;
}
.footer-contact .f-contact > div {
  display: table-cell;
  vertical-align: middle;
}
.footer-contact .f-contact-mail {
  width: 70px;
  padding-right: 2rem;
}
.footer-contact .f-contact-sub {
  color: #fff;
}
.footer-contact .f-contact-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.footer-contact .f-contact-icon {
  width: 8rem;
  height: 8rem;
  margin: 1.5rem auto 0;
  border: 1px solid #fff;
  border-radius: 50px;
  position: relative;
}
.footer-contact .f-contact-icon:after {
  content: "";
  width: 30px;
  height: 8px;
  margin: -7px 0 0 -17px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
.footer-wrap {
  padding: 5.5vh 1.5rem;
  background-image: url(../images/footer-bg.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
}
.footer-wrap:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  left: 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-inner + .footer-inner {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #fff;
}
.footer-inner .f-logo {
  width: 150px;
  margin: 0 auto;
}
.footer-inner .f-nav-list {
  margin-top: 3.5rem;
}
.footer-inner .f-nav-heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.footer-inner .f-nav-heading a {
  color: #fff;
}
.footer-inner .f-nav-child li {
  font-size: 1.4rem;
  display: inline-block;
  margin: 0.5rem 2rem 0 0;
}
.footer-inner .f-nav-child li a {
  color: #fff;
  padding-left: 1.2rem;
  display: inline-block;
  position: relative;
}
.footer-inner .f-nav-child li a:before {
  content: "";
  width: 4px;
  height: 4px;
  margin-top: -3px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.footer-inner .f-copy-nav {
  text-align: center;
}
.footer-inner .f-copy-nav li {
  font-size: 1.2rem;
  display: inline-block;
  margin: 0 1rem;
}
.footer-inner .f-copy-nav a {
  color: #fff;
}
.footer-inner .f-copy {
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  margin-top: 2rem;
  letter-spacing: 0.25rem;
}
.footer-mark {
  text-align: center;
  margin-top: 2.5rem;
}
.footer-mark li {
  width: 35px;
  margin: 0 0.25rem;
  display: inline-block;
}

@media (min-width: 1024px) {
  .footer-contact a {
    text-align: center;
    padding: 11rem 1.5rem;
    display: block;
    position: relative;
  }
  .footer-contact a:before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.96, 0.07, 0.28, 0.78);
    transition: -webkit-transform 0.35s cubic-bezier(0.96, 0.07, 0.28, 0.78);
    transition: transform 0.35s cubic-bezier(0.96, 0.07, 0.28, 0.78);
    transition: transform 0.35s cubic-bezier(0.96, 0.07, 0.28, 0.78), -webkit-transform 0.35s cubic-bezier(0.96, 0.07, 0.28, 0.78);
  }
  .footer-contact a:hover:before {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  .footer-contact a:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #ab181a;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  .footer-contact a:hover .f-contact-icon {
    background: #fff;
  }
  .footer-contact a:hover .f-contact-icon:after {
    border-bottom: 1px solid #ab181a;
    border-right: 1px solid #ab181a;
  }
  .footer-contact .f-contact {
    margin: 0 auto;
    display: table;
    text-align: center;
  }
  .footer-contact .f-contact > div {
    display: table-cell;
    vertical-align: middle;
  }
  .footer-contact .f-contact-mail {
    width: 90px;
    padding-right: 2rem;
  }
  .footer-contact .f-contact-sub {
    font-size: 2rem;
  }
  .footer-contact .f-contact-heading {
    font-size: 4.4rem;
    letter-spacing: 0.55rem;
  }
  .footer-contact .f-contact-icon {
    margin: 2rem auto 0;
    border: 1px solid #fff;
    border-radius: 50px;
    position: relative;
  }
  .footer-contact .f-contact-icon:after {
    content: "";
    width: 26px;
    height: 8px;
    margin: -8px 0 0 -16px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: skew(45deg);
            transform: skew(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.35s ease-out;
    transition: all 0.35s ease-out;
  }
  .footer-wrap {
    padding: 8rem 1.5rem;
  }
  .footer-inner {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
  }
  .footer-inner + .footer-inner {
    margin-top: 4rem;
    padding-top: 4rem;
    position: relative;
  }
  .footer-inner .f-logo {
    width: 180px;
    margin: 0 20rem 0 0;
  }
  .footer-inner .f-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
            flex: 1;
    -ms-flex: 1;
  }
  .footer-inner .f-nav-list {
    width: 33%;
    margin-top: 0;
  }
  .footer-inner .f-nav-heading {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
  }
  .footer-inner .f-nav-heading a:hover {
    text-decoration: underline;
  }
  .footer-inner .f-nav-child li {
    font-size: 1.3rem;
    display: block;
    margin: 0.5rem 2.5rem 0 0;
  }
  .footer-inner .f-nav-child li a:hover {
    text-decoration: underline;
  }
  .footer-inner .f-copy-nav {
    position: absolute;
    top: 3.5rem;
    left: 30rem;
  }
  .footer-inner .f-copy-nav a:hover {
    text-decoration: underline;
  }
  .footer-inner .f-copy {
    text-align: left;
    margin-top: 0;
  }
  .footer-mark {
    position: absolute;
    top: 0;
    right: 0;
  }
  .footer-mark li {
    width: 40px;
    margin: 0 0.25rem;
    display: inline-block;
  }
}
#dify-chatbot-bubble-button {
  background-color: #1c64f2 !important;
}

.main {
  display: block;
}
.main .heading {
  font-size: 5.8vw;
  text-align: center;
  margin-bottom: 2rem;
}
.main .heading--g {
  color: #c51e25;
}
.main .heading--w {
  color: #fff;
}
.main .heading span {
  font-size: 4vw;
}
.main .sub-heading {
  font-size: 4vw;
  font-weight: bold;
  color: #c51e25;
  text-align: center;
  margin-bottom: 1rem;
}
.main .txt {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin: -1.5rem 0 3rem;
}
.main-cv {
  margin-top: 4rem;
  padding: 0 1.5rem;
}
.main-cv a {
  font-size: 2rem;
}

@media screen and (max-width: 1023px) {
  .main-cv div + div {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .main .heading {
    font-size: 3.8rem;
  }
  .main .heading span {
    font-size: 2.8rem;
  }
  .main .sub-heading {
    font-size: 2.6rem;
  }
  .main .txt {
    font-size: 1.76rem;
    text-align: center;
  }
  .main-cv {
    max-width: 800px;
    margin: 5rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main-cv div {
    width: 48%;
    margin: 0 0.5rem;
    text-align: center;
  }
  .main-cv div a {
    font-size: 2.2rem;
  }
}
.about {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 3rem;
  overflow: hidden;
}
.about-heading {
  font-size: 2.5rem;
  text-align: center;
}
.about-heading span {
  display: inline-block;
  position: relative;
}
.about-heading span:before {
  content: "“";
}
.about-heading span:after {
  content: "”";
}
.about-inner {
  margin-top: 2rem;
}
.about-txt p {
  font-size: 1.6rem;
  line-height: 2;
}
.about-txt p + p {
  margin-top: 2.5rem;
}
.about-illust {
  width: 60vw;
  margin: 3rem 0 0 auto;
}

@media screen and (min-width: 1024px) {
  .about {
    padding: 9rem 4rem;
    overflow: hidden;
  }
  .about-heading {
    font-size: 4rem;
  }
  .about-inner {
    margin-top: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .about-txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .about-txt p {
    font-size: 1.7rem;
    line-height: 2;
  }
  .about-txt p + p {
    margin-top: 2.5rem;
  }
  .about-illust {
    width: 320px;
    margin: 0 0 0 7rem;
  }
}
.point {
  padding: 6rem 3rem;
  background: #f6f6f6;
}
.point-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.point-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.point-heading h1 {
  font-size: 2.6rem;
  display: inline-block;
  line-height: 1.2;
}
.point-heading span.small {
  font-size: 2rem;
}
.point-heading span.icon {
  max-width: 80px;
  margin: 0 auto;
  display: block;
}
.point-txt {
  font-size: 1.6rem;
  line-height: 2;
}
.point-col:after {
  font-size: 20rem;
  line-height: 0.5;
  content: "+";
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  margin: 2rem 0;
  display: block;
  text-align: center;
}
.point-col-block {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: #fff;
  border-radius: 4px;
}
.point-col-block h3 {
  font-size: 2.2rem;
  text-align: center;
  color: #c51e25;
  margin: 2rem 0 1rem;
}
.point-col-block p {
  font-size: 1.5rem;
}
.point-col-block p span {
  font-weight: bold;
  text-decoration: underline;
}
.point-col-block p a {
  color: #c51e25;
  text-decoration: underline;
}
.point-more {
  margin-top: 3rem;
  padding: 2.5rem;
  background: #fff;
  border-radius: 4px;
}
.point-more-tt {
  margin-top: 3rem;
}
.point-more-tt h3 {
  font-size: 2.8rem;
  text-align: center;
  color: #c51e25;
  margin-bottom: 2rem;
}
.point-more-tt p {
  font-size: 1.7rem;
}
.point-more-tt p span {
  font-weight: bold;
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .point {
    padding: 9rem 4rem;
    overflow: hidden;
  }
  .point-heading {
    text-align: center;
    margin-bottom: 3rem;
  }
  .point-heading h1 {
    font-size: 4.5rem;
    position: relative;
    padding-left: 80px;
  }
  .point-heading span.small {
    font-size: 3rem;
  }
  .point-heading span.icon {
    width: 70px;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .point-txt {
    font-size: 1.8rem;
    line-height: 2;
    text-align: center;
  }
  .point-txt + p {
    margin-top: 2.5rem;
  }
  .point-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .point-col:after {
    width: 100%;
    font-size: 20rem;
    line-height: 0.5;
    content: "+";
    font-family: "Oswald", sans-serif;
    font-weight: 200;
    margin: 2rem 0;
    display: block;
    text-align: center;
  }
  .point-col-block {
    width: 32%;
    margin-top: 3rem;
    padding: 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .point-col-block:nth-of-type(2) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .point-col-block h3 {
    font-size: 2.6rem;
    margin: 3rem 0 1.5rem;
  }
  .point-col-block p {
    font-size: 1.6rem;
  }
  .point-col-block p a:hover {
    text-decoration: none;
  }
  .point-more {
    margin-top: 1rem;
    padding: 3.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .point-more-img {
    width: 300px;
  }
  .point-more-tt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 0 0 4rem;
  }
  .point-more-tt h3 {
    font-size: 3rem;
    text-align: left;
  }
  .point-more-tt p {
    font-size: 1.8rem;
  }
  .point-more-tt p span {
    font-weight: bold;
    text-decoration: underline;
  }
}
.case {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 3rem;
}
.case-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.case-heading h1 {
  font-size: 2.6rem;
  display: inline-block;
  line-height: 1.2;
}
.case-heading span.icon {
  max-width: 80px;
  margin: 0 auto 1.2rem;
  display: block;
}
.case-inner {
  margin-top: 3rem;
}
.case-inner h2 {
  text-align: center;
  position: relative;
}
.case-inner h2.human:before {
  background: #78bfce;
}
.case-inner h2.human span {
  color: #78bfce;
}
.case-inner h2.consulting:before {
  background: #3d69de;
}
.case-inner h2.consulting span {
  color: #3d69de;
}
.case-inner h2.web:before {
  background: #fcaf2b;
}
.case-inner h2.web span {
  color: #fcaf2b;
}
.case-inner h2:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}
.case-inner h2 span {
  font-size: 2.2rem;
  font-weight: bold;
  padding: 0 2rem;
  background: #fff;
  position: relative;
  display: inline-block;
}
.case-block + div {
  margin-top: 6rem;
}
.case-block-img {
  text-align: center;
}
.case-block-tt {
  margin-top: 3rem;
}
.case-block-tt h2 {
  font-size: 2.3rem;
  line-height: 1;
  padding-left: 1rem;
  border-left: 3px solid #c51e25;
}
.case-block-tt p {
  font-size: 1.5rem;
}
.case-block-heading {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
}
.case-list-block {
  padding: 2rem;
  -webkit-box-shadow: 0px 0px 15px -9px #777777;
          box-shadow: 0px 0px 15px -9px #777777;
  border-radius: 6px;
  margin-top: 2rem;
  position: relative;
}
.case-list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}
.case-list-img {
  width: 70px;
  margin-right: 2rem;
}
.case-list-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.case-list-title h3 {
  font-size: 1.7rem;
  font-weight: bold;
}
.case-list-txt {
  font-size: 1.4rem;
  line-height: 1.7;
}
.case-list a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1024px) {
  .case {
    padding: 9rem 4rem;
  }
  .case-heading {
    text-align: center;
    margin-bottom: 3rem;
  }
  .case-heading h1 {
    font-size: 5rem;
    position: relative;
    padding-left: 80px;
  }
  .case-heading span.icon {
    width: 70px;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: -1rem;
  }
  .case-inner {
    margin-top: 6rem;
  }
  .case-inner h2 span {
    font-size: 2.8rem;
    font-weight: bold;
    padding: 0 2rem;
    background: #fff;
    position: relative;
    display: inline-block;
  }
  .case-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .case-block + div {
    margin-top: 8rem;
  }
  .case-block-img {
    width: 300px;
    margin-right: 4rem;
  }
  .case-block-tt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
  .case-block-tt h2 {
    font-size: 3.2rem;
    line-height: 1;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-left: 4px solid #c51e25;
  }
  .case-block-tt p {
    font-size: 1.7rem;
    line-height: 1.8;
  }
  .case-block-heading {
    font-size: 2rem;
    font-weight: bold;
    margin: 3rem 0 2rem;
  }
  .case-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .case-list-block {
    width: 31%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 2.5rem 1.1% 0;
    padding: 2.5rem;
  }
  .case-list-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2rem;
  }
  .case-list-img {
    width: 80px;
  }
  .case-list-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .case-list-title h3 {
    font-size: 1.8rem;
  }
  .case-list-txt {
    font-size: 1.5rem;
  }
}
.flow {
  padding: 6rem 3rem;
  background: #f6f6f6;
}
.flow-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.flow-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.flow-heading h1 {
  font-size: 2.6rem;
  display: inline-block;
  line-height: 1.2;
}
.flow-heading span.small {
  font-size: 2rem;
}
.flow-heading span.icon {
  max-width: 80px;
  margin: 0 auto;
  display: block;
}
.flow-inner {
  max-width: 1100px;
  margin: 3rem auto 0;
}
.flow-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.flow-list dl:nth-of-type(n + 5) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow-list dl + dl {
  margin-top: 7rem;
}
.flow-list dl + dl:before {
  content: "";
  width: 12px;
  height: 30px;
  background-image: url(../../assets/images/svg/arrow.svg);
  background-size: 12px 30px;
  position: absolute;
  top: -5rem;
  left: 3rem;
}
.flow-list dl dt {
  width: 70px;
  margin-right: 2rem;
}
.flow-list dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flow-list dl dd .f-title {
  font-size: 2rem;
  font-weight: bold;
}
.flow-list dl dd .f-txt {
  font-size: 15px;
  margin-top: 1rem;
}

@media screen and (min-width: 1024px) {
  .flow {
    padding: 9rem 4rem;
    overflow: hidden;
  }
  .flow-heading {
    text-align: center;
    margin-bottom: 3rem;
  }
  .flow-heading h1 {
    font-size: 4.5rem;
    position: relative;
    padding-left: 80px;
  }
  .flow-heading span.small {
    font-size: 3rem;
  }
  .flow-heading span.icon {
    width: 70px;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.contact {
  max-width: 850px;
  margin: 0 auto;
  padding: 6rem 3rem;
}
.contact-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-heading h1 {
  font-size: 2.6rem;
  display: inline-block;
  line-height: 1.2;
}
.contact-heading span.icon {
  max-width: 80px;
  margin: 0 auto 1.2rem;
  display: block;
}
.contact-txt {
  font-size: 1.6rem;
  line-height: 2;
}
.contact-txt a {
  color: #c51e25;
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .contact {
    padding: 9rem 4rem;
  }
  .contact-heading {
    text-align: center;
    margin-bottom: 3rem;
  }
  .contact-heading h1 {
    font-size: 5rem;
    position: relative;
    padding-left: 80px;
  }
  .contact-heading span.icon {
    width: 70px;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .contact-txt {
    font-size: 1.7rem;
    text-align: center;
  }
  .contact-txt a:hover {
    text-decoration: none;
  }
}
.btn {
  max-width: 350px;
  margin: 2rem auto 0;
}
.btn a {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  padding: 1.5rem;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  position: relative;
}
.btn a:after {
  content: "";
  width: 25px;
  height: 6px;
  margin-top: -4px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  position: absolute;
  top: 50%;
  right: 1.5rem;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
.btn a.primary {
  background: #c51e25;
  border: 1px solid #c51e25;
}
.btn a.second {
  color: #c51e25;
  background: #fff;
  border: 1px solid #c51e25;
}

.cv {
  max-width: 700px;
  margin: 2rem auto 0;
}
.cv a {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  padding: 1.5rem;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  position: relative;
}
.cv a:after {
  content: "";
  width: 25px;
  height: 6px;
  margin-top: -4px;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  position: absolute;
  top: 50%;
  right: 1.5rem;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
.cv a.primary {
  background: #c51e25;
  border: 1px solid #c51e25;
}
.cv a.primary:after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.cv a.second {
  color: #000;
  background: #fff;
  border: 1px solid #000;
}
.cv a.second:after {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}

@media screen and (max-width: 1023px) {
  .cv div + div {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .btn {
    margin: 3rem 0 0;
  }
  .btn a {
    font-size: 2rem;
    font-weight: 600;
    display: block;
    padding: 1.8rem;
  }
  .btn a:hover:after {
    border-bottom: 1px solid #c51e25;
    border-right: 1px solid #c51e25;
    right: -1rem;
  }
  .btn a.primary:hover {
    background: #fff;
    color: #c51e25;
  }
  .btn a.second {
    color: #c51e25;
    background: #fff;
    border: 2px solid #c51e25;
  }
  .btn--1 {
    margin: 5rem auto 0;
  }
  .cv {
    margin-top: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cv div {
    width: 48.5%;
  }
  .cv a {
    font-size: 2rem;
    font-weight: 600;
    display: block;
    padding: 1.8rem;
  }
  .cv a.primary:hover {
    background: #fff;
    color: #c51e25;
  }
  .cv a.primary:hover:after {
    border-bottom: 1px solid #c51e25;
    border-right: 1px solid #c51e25;
    right: -1rem;
  }
  .cv a.second:hover {
    color: #fff;
    background: #000;
  }
  .cv a.second:hover:after {
    border-bottom: 1px solid #818181;
    border-right: 1px solid #818181;
    right: -1rem;
  }
}
.hbspt-form {
  padding: 0 10px;
}

body input[type=text],
body input[type=password],
body input[type=datetime],
body input[type=datetime-local],
body input[type=date],
body input[type=month],
body input[type=time],
body input[type=week],
body input[type=number],
body input[type=email],
body input[type=url],
body input[type=search],
body input[type=tel],
body input[type=color],
body input[type=file],
body textarea,
body select {
  width: 100%;
  font-size: 15px;
  line-height: 1.1;
  color: #414141;
  margin: 5px 0 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body input::-webkit-input-placeholder {
  color: #414141;
}

body input::-moz-placeholder {
  color: #414141;
}

body input:-ms-input-placeholder {
  color: #414141;
}

body input::-ms-input-placeholder {
  color: #414141;
}

body input::placeholder {
  color: #414141;
}

body label {
  font-size: 16px;
  font-weight: bold;
}

body .hs-button.primary,
body input[type=submit],
body input[type=button] {
  cursor: pointer;
}

.hs_cos_wrapper_type_form {
  width: 100%;
  float: inherit;
}

.hs-input {
  height: 45px;
  padding: 10px;
  font-size: 15px;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  background: #f1f1f1;
}

.hs-form-field {
  margin-top: 25px;
}

.hs-form-radio {
  list-style-type: none;
  margin: 10px 15px 0 0; /*display: inline-block;*/
}

.hs-form-booleancheckbox {
  display: inline-block;
  vertical-align: middle;
  list-style-type: none;
}

.hs-fieldtype-checkbox li {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 15px 0 0;
}

.hs-form fieldset {
  max-width: none !important;
}

.hs-form fieldset .hs-input {
  width: 100% !important;
}

.hs-form fieldset.form-columns-1 input[type=checkbox],
.hs-form fieldset.form-columns-1 input[type=radio] {
  width: auto !important;
}

.hs-field-desc {
  font-size: 1.2rem;
}

.hs-button {
  -webkit-appearance: none;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  background: #c51e25;
  border: 1px solid #c51e25;
  cursor: pointer;
  border-radius: 6px;
  text-transform: uppercase;
  display: block;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

.hs-richtext {
  margin-top: 25px;
}

.hs-richtext h1 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
  margin: 15px 0 10px !important;
}

/*.hs-button.primary {width: 100%; margin: 0 auto;}*/
.hs-form-required {
  color: #e9000b;
}

.hs-error-msgs {
  margin: 0 !important;
  padding: 0 !important;
}

.hs-error-msgs li {
  margin-top: 5px;
  list-style: none;
}

.hs-error-msgs label {
  font-size: 11px;
  color: #e9000b;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  background: #fff7f7;
  border-color: #e9000b;
}

textarea.hs-input {
  height: 100px;
}

.form-columns-1 .input,
.form-columns-2 .input {
  margin-right: 0 !important;
}

.inputs-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none;
}

.inputs-list .hs-input {
  height: auto;
  margin-right: 8px;
  position: relative;
  top: -1px;
}

.inputs-list input[type=checkbox] {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.hs-dateinput {
  position: relative;
}

.hs-dateinput .hs-input {
  padding-left: 50px;
}

.hs-dateinput:before {
  content: "\f073";
  font-family: "ForkAwesome";
  font-size: 22px;
  position: absolute;
  top: 10px;
  left: 15px;
}

.hs-dateinput .fn-date-picker .is-today .pika-button {
  color: #333;
  font-weight: bold;
}

.hs-datepicker .fn-date-picker .pika-button:hover {
  color: #fff !important;
  background: #666 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 4px !important;
}

.hs-datepicker .fn-date-picker .is-selected .pika-button {
  color: #fff !important;
  font-weight: bold !important;
  background: #333 !important;
  -webkit-box-shadow: inset 0 1px 3px #000 !important;
          box-shadow: inset 0 1px 3px #000 !important;
  border-radius: 4px !important;
}

.hs-file .hs-input {
  font-size: 12px !important;
  line-height: 22px !important;
}

.privacy {
  width: 100%;
  height: 200px;
  font-size: 13px;
  line-height: 1.8;
  margin: 0 auto;
  padding: 15px;
  border: 1px solid #ccc;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 768px) {
  .hs-form-field {
    margin-top: 30px;
  }
  fieldset.form-columns-2 .hs-form-field {
    width: 49% !important;
    float: left !important;
  }
  fieldset.form-columns-2 .hs-form-field + .hs-form-field {
    margin-left: 2% !important;
  }
  .hs-button.primary {
    max-width: 480px;
    margin-top: 35px;
  }
  .hs-button {
    max-width: 480px;
    margin-top: 35px;
    font-size: 24px;
    padding: 20px;
  }
  body .hs-button:hover {
    background: #fff;
    color: #c51e25;
  }
  .privacy {
    width: 100%;
    height: 250px;
  }
}
@media only screen and (max-width: 1200px) {
  #form-pad {
    padding: 20px;
    z-index: 1;
  }
  .float-form {
    padding: 20px 10px 10px;
  }
  .addl-info {
    padding-top: 30px;
  }
  .image-holder-left {
    padding-left: 10%;
  }
}
@media only screen and (max-width: 767px) {
  .header-content {
    padding: 5px 0;
  }
  .page-center {
    padding: 0 10px;
  }
  .company-logo {
    text-align: center;
    margin: 0 auto;
    float: none;
  }
  .social-sharing {
    text-align: center;
  }
  #form-pad {
    padding: 20px;
    z-index: 1;
  }
  .float-form {
    margin-top: 0;
    padding: 20px 10px 10px;
  }
  .addl-info {
    padding-top: 30px;
  }
  .image-holder-left {
    padding-left: 35%;
    padding-right: 35%;
  }
  .image-holder-right {
    padding-left: 35%;
    padding-right: 35%;
  }
  .left-form {
    margin-top: 20px;
    padding-left: 0;
  }
  .phone-number {
    display: none !important;
  }
  fieldset.form-columns-2 .hs-form-field + .hs-form-field {
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .right-form {
    padding: 0;
    z-index: 1;
  }
  .float-offer {
    margin-top: 0;
    padding: 20px 10px 10px;
    background-color: rgb(248, 248, 248);
  }
  .float-form {
    margin-top: 0;
    padding: 20px 10px 10px;
  }
  .addl-info {
    padding-top: 20px;
  }
  .image-holder-left {
    padding-left: 35%;
    padding-right: 35%;
  }
  .image-holder-right {
    padding-left: 35%;
    padding-right: 35%;
  }
  .left-form {
    margin-top: 20px;
    padding-left: 0;
  }
  body label {
    font-size: 13px;
  }
  form.hs-form-f490753d-a9df-44f1-864b-cfe60333b0c5_ab49d754-e979-4b2f-aa7c-2d54551fe269:not(.hs-video-form) .form-columns-2 .hs-form-field,
  form.hs-form-f490753d-a9df-44f1-864b-cfe60333b0c5_ab49d754-e979-4b2f-aa7c-2d54551fe269:not(.hs-video-form) .form-columns-3 .hs-form-field {
    float: none !important;
    width: 100% !important;
  }
  fieldset.form-columns-2 .hs-form-field + .hs-form-field {
    margin-left: 0% !important;
  }
}
.hs-richtext p a {
  color: #c51e25;
  text-decoration: underline;
}

.hs-richtext p a:hover {
  text-decoration: none;
}

.legal-consent-container .hs-richtext {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.legal-consent-container .hs-richtext:nth-child(3) {
  height: 120px;
  overflow-y: scroll;
}

@media screen and (min-width: 1024px) {
  .legal-consent-container .hs-form-booleancheckbox .hs-form-booleancheckbox-display > span {
    display: inline-block !important;
    margin-left: 0;
    position: relative;
    top: -3px;
  }
}