@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
@charset "UTF-8";
/*----- メディアクエリ -----*/
/* 使い方
@include mq_sp{
}
*/
/*----- font -----*/
/* 使い方
font-family: $yugo;
*/
/*----- px変換 -----*/
/* 使い方
font-size: rem(16);
font-size: vw(16);
line-height: lh(16,28);
letter-spacing: ls(50);
*/
* {
  font-family: helvetica-w01-bold, helvetica-w02-bold, helvetica-lt-w10-bold, sans-serif;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: helvetica-w01-bold, helvetica-w02-bold, helvetica-lt-w10-bold, sans-serif;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.sp {
    display: block;
  }
}

.header {
  position: fixed;
  z-index: 150;
  top: 0;
  width: 100%;
  padding: 70px 10px 16px;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 10px;
  }
}
.header .pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.header .pc .nav {
  display: flex;
  gap: 1rem;
}
.header .pc .nav a {
  color: #333;
  text-decoration: none;
  line-height: 41px;
  padding: 0 10px;
}
.header .pc .nav a.active {
  color: #fd6262;
}
.header .pc .logo {
  width: 240px;
}
.header .sp {
  display: none;
}
.header .sp .logo {
  max-width: 94px;
}
.header .sp .tgl {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 101;
}
.header .sp .tgl .span {
  display: block;
  height: 4px;
  background: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.header .sp .tgl.open .span--1 {
  transform: rotate(45deg) translateY(12px);
}
.header .sp .tgl.open .span--2 {
  opacity: 0;
}
.header .sp .tgl.open .span--3 {
  transform: rotate(-45deg) translateY(-13px);
}
@media (max-width: 768px) {
  .header .pc {
    display: none;
  }
  .header .sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
}

.sp-inner {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
  transition: right 0.3s ease;
  padding: 9rem 2rem;
}
.sp-inner .nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sp-inner .nav a {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
}
.sp-inner.open {
  right: 0;
}

.footer {
  margin-top: -620px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: -1030px;
  }
}
.footer--common {
  margin-top: 0;
  background: #141416;
}
@media screen and (max-width: 767px) {
  .footer--about {
    margin-top: -1030px;
  }
}
.footer .parallax--footer {
  position: relative;
  z-index: 2;
}
.footer .parallax--footer .box {
  display: flex;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
}
@media screen and (max-width: 767px) {
  .footer .parallax--footer .box {
    flex-direction: column;
  }
}
.footer .parallax--footer .box .left {
  background: #fff;
  width: 30%;
  padding: 82px 0 238px;
}
@media screen and (max-width: 767px) {
  .footer .parallax--footer .box .left {
    width: 100%;
    padding: 40px 0;
  }
}
.footer .parallax--footer .box .left .inner {
  display: block;
  max-width: 290px;
  margin: 0 auto;
}
.footer .parallax--footer .box .left .inner .logo {
  max-width: 249px;
  margin-bottom: 38px;
}
.footer .parallax--footer .box .left .inner .read {
  color: #8a8a8a;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 200% */
}
.footer .parallax--footer .box .right {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .footer .parallax--footer .box .right {
    padding: 40px 20px;
    width: 100%;
    flex-direction: column;
  }
}
.footer .parallax--footer .box .right .col {
  display: flex;
  flex-direction: column;
  color: #4d4d4d;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer .parallax--footer .box .right .col {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer .parallax--footer .box .right .col .form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .parallax--footer .box .right .col .form .input {
  border-radius: 5px;
  border: 1px solid #8a8a8a;
  background: #141416;
  color: #fff;
  padding: 5px 10px;
}
.footer .parallax--footer .box .right .col .form .submit {
  border-radius: 5px;
  border: 1px solid #8a8a8a;
  background: #141416;
  padding: 10px;
  color: #8a8a8a;
  max-width: 120px;
  text-align: center;
}
.footer .parallax--footer .box .right .col .copy {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
}
.footer .parallax--footer .box .right .col .sns .title {
  margin-bottom: 1rem;
  color: #8a8a8a;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.footer .parallax--footer .box .right .col .sns .inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .parallax--footer .box .right .col .sns .inner .item {
  max-width: 25px;
}
.footer .parallax--footer-common {
  position: relative;
  z-index: 2;
  margin-top: -100px;
}
.footer .parallax--footer-common .box {
  display: flex;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
}
@media screen and (max-width: 767px) {
  .footer .parallax--footer-common .box {
    flex-direction: column;
  }
}
.footer .parallax--footer-common .box .left {
  background: #fff;
  width: 30%;
  padding: 82px 0 238px;
}
@media screen and (max-width: 767px) {
  .footer .parallax--footer-common .box .left {
    width: 100%;
    padding: 40px 0;
  }
}
.footer .parallax--footer-common .box .left .inner {
  display: block;
  max-width: 290px;
  margin: 0 auto;
}
.footer .parallax--footer-common .box .left .inner .logo {
  max-width: 249px;
  margin-bottom: 38px;
}
.footer .parallax--footer-common .box .left .inner .read {
  color: #8a8a8a;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 200% */
}
.footer .parallax--footer-common .box .right {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #141416;
}
@media screen and (max-width: 767px) {
  .footer .parallax--footer-common .box .right {
    padding: 40px 20px;
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
}
.footer .parallax--footer-common .box .right .col {
  display: flex;
  flex-direction: column;
  color: #4d4d4d;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer .parallax--footer-common .box .right .col {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer .parallax--footer-common .box .right .col .form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .parallax--footer-common .box .right .col .form .input {
  border-radius: 5px;
  border: 1px solid #8a8a8a;
  background: #141416;
  color: #fff;
  padding: 5px 10px;
}
.footer .parallax--footer-common .box .right .col .form .submit {
  border-radius: 5px;
  border: 1px solid #8a8a8a;
  background: #141416;
  padding: 10px;
  color: #8a8a8a;
  max-width: 120px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer .parallax--footer-common .box .right .col .form .submit {
    display: block;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.footer .parallax--footer-common .box .right .col .copy {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
}
.footer .parallax--footer-common .box .right .col .sns {
  text-align: center;
}
.footer .parallax--footer-common .box .right .col .sns .title {
  margin-bottom: 1rem;
  color: #8a8a8a;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.footer .parallax--footer-common .box .right .col .sns .inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .footer .parallax--footer-common .box .right .col .sns .inner {
    justify-content: center;
  }
}
.footer .parallax--footer-common .box .right .col .sns .inner .item {
  max-width: 25px;
}

.top .hero {
  padding-top: 340px;
  height: 100vh;
  background: url("../images/top-hero.png") no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top .hero {
    padding-top: 160px;
  }
}
.top .hero .container {
  max-width: 1400px;
}
@media screen and (max-width: 767px) {
  .top .hero .container .content-top {
    padding: 0 30px;
  }
}
.top .hero .container .content-top .heading {
  color: #fff;
  font-family: Poppins;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 96px; /* 120% */
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .top .hero .container .content-top .heading {
    font-size: 32px;
    line-height: 1;
    text-align: center;
  }
}
.top .hero .container .content-top .read {
  color: #fff;
  font-family: "Open Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top .hero .container .content-top .read {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
  }
}
.top .hero .container .content-top .link {
  border-radius: 5px;
  border: 1px solid #fd6262;
  background: #fd6262;
  color: #141416;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px; /* 140% */
  padding: 16px 28px;
}
@media screen and (max-width: 767px) {
  .top .hero .container .content-top .link {
    display: block;
    max-width: 160px;
    margin: 0 auto;
    text-align: center;
  }
}
.top .parallax_content {
  display: flex;
  height: 80vh;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .top .parallax_content {
    height: 2200px;
  }
}
.top .img_bg_01 {
  background-image: url("../images/parallax.png");
}
.top .content-bottom {
  margin-top: -1400px;
  margin-bottom: 275px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top .content-bottom {
    flex-direction: column;
    margin-top: -2400px;
    margin-bottom: 45px;
    padding: 0 20px;
    gap: 50px;
  }
}
.top .content-bottom .left {
  padding-top: 270px;
  position: relative;
  color: #fff;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top .content-bottom .left {
    width: 100%;
  }
}
.top .content-bottom .left .img {
  width: 388px;
  height: 336px;
  position: absolute;
  top: 0;
  left: -20px;
  right: 0;
  margin: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .top .content-bottom .left .img {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    left: 0;
  }
}
.top .content-bottom .left .sub-heading {
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 23px;
  max-width: 350px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top .content-bottom .left .sub-heading {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.top .content-bottom .left .text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
  max-width: 280.98px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top .content-bottom .left .text {
    max-width: 100%;
  }
}
.top .content-bottom .right {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top .content-bottom .right {
    flex-direction: column;
    width: 100%;
  }
}
.top .content-bottom .right .box {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.top .content-bottom .right .box .col {
  border-radius: 10px;
  background: #3f4349;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  padding: 30px;
  max-width: 240px;
}
@media screen and (max-width: 767px) {
  .top .content-bottom .right .box .col {
    max-width: 100%;
    text-align: center;
  }
}
.top .content-bottom .right .box .col .icon {
  width: 46px;
  height: 34px;
  flex-shrink: 0;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .top .content-bottom .right .box .col .icon {
    margin-bottom: 20px;
  }
}
.top .content-bottom .right .box .col .title {
  color: #889ce7;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.top .content-bottom .right .box .col .text {
  color: #8a8a8a;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px; /* 160% */
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .top .content-bottom .right .box .col .text {
    text-align: left;
  }
}
.top .content-bottom .right .box .col .line {
  height: 4px;
  width: 100%;
  border-radius: 7px;
  background: #3f4349;
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.1), 0px 1px 0px 0px rgba(0, 0, 0, 0.25) inset;
}
.top .policy {
  background: url("../images/top-hero.png") no-repeat;
  background-size: cover;
  padding: 43px 0 130px;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .top .policy {
    padding: 40px 20px;
  }
}
.top .policy .container .charm {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top .policy .container .charm {
    margin-bottom: 60px;
  }
}
.top .policy .container .charm .icon {
  max-width: 107px;
  margin-bottom: 31px;
}
@media screen and (max-width: 767px) {
  .top .policy .container .charm .icon {
    margin-bottom: 10px;
  }
}
.top .policy .container .charm .heading {
  color: #fd6262;
  font-family: Inter;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 5px;
}
.top .policy .container .box {
  display: flex;
  justify-content: space-between;
  gap: 8%;
}
@media screen and (max-width: 767px) {
  .top .policy .container .box {
    flex-direction: column;
    gap: 50px;
  }
}
.top .policy .container .box .col {
  width: 25%;
  flex-grow: initial;
}
@media screen and (max-width: 767px) {
  .top .policy .container .box .col {
    width: 100%;
  }
}
.top .policy .container .box .col .title {
  color: #ff6161;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  margin-bottom: 38px;
}
.top .policy .container .box .col .read {
  background: rgba(255, 255, 255, 0.77);
  padding: 21px 1rem;
  min-height: 330px;
}
@media screen and (max-width: 767px) {
  .top .policy .container .box .col .read {
    min-height: auto;
  }
}
.top .team {
  background: url("../images/top6.png") no-repeat;
  background-size: cover;
  padding: 124px 0 143px;
}
@media screen and (max-width: 767px) {
  .top .team {
    padding: 40px 20px;
  }
}
.top .team .container .content {
  display: block;
  width: 580px;
  height: 264px;
  padding: 8px;
  margin: 0 auto;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top .team .container .content {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}
.top .team .container .content .inner {
  border: 1px solid #333;
  width: 100%;
  height: 100%;
}
.top .team .container .content .inner .heading {
  color: #282626;
  text-align: center;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.5px; /* 170% */
  letter-spacing: 2.25px;
}
@media screen and (max-width: 767px) {
  .top .team .container .content .inner .heading {
    margin-bottom: 20px;
  }
}
.top .parallax--map {
  position: relative;
}
.top .parallax--map .inner {
  display: block;
  margin: 0 auto;
  width: 1000px;
  height: 500px;
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
}
@media screen and (max-width: 767px) {
  .top .parallax--map .inner {
    width: 80%;
    height: 400px;
  }
}
.top .parallax--map .img_bg_01 {
  height: 1200px;
}
@media screen and (max-width: 767px) {
  .top .parallax--map .img_bg_01 {
    height: 1450px;
  }
}

*,
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  line-height: inherit;
  letter-spacing: inherit;
  box-sizing: border-box;
}

img {
  border: 0;
  vertical-align: bottom;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

body {
  color: #323232;
  font-family: Yu Gothic, "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 1px;
}

img {
  width: 100%;
  height: auto;
}

br.sp {
  display: none;
}
@media screen and (max-width: 750px) {
  br.sp {
    display: block;
  }
}

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

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

img.sp {
  display: none;
}
@media screen and (max-width: 750px) {
  img.sp {
    display: block;
  }
}

.components {
  padding-top: 43px;
}

html {
  scroll-behavior: smooth;
}

select {
  color: #666666;
  background-color: #fafafa;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html.is-changing .transition-fade {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.is-animating .transition-fade {
  opacity: 0;
  transform: translateY(-100px);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-timing-function: ease-out;
}
.fade-in.in-view {
  opacity: 1;
  transform: translate(0, 0);
}
.fade-in.left {
  transform: translateX(-50px);
}
.fade-in.left.in-view {
  transform: translateX(0);
}
.fade-in.right {
  transform: translateX(50px);
}
.fade-in.right.in-view {
  transform: translateX(0);
}
.fade-in.top {
  transform: translateY(-50px);
}
.fade-in.top.in-view {
  transform: translateY(0);
}
.fade-in.bottom {
  transform: translateY(50px);
}
.fade-in.bottom.in-view {
  transform: translateY(0);
}
.fade-in.slow {
  transition-duration: 1.2s;
}
.fade-in.normal {
  transition-duration: 0.8s;
}
.fade-in.fast {
  transition-duration: 0.4s;
}

.vision .parallax_content {
  display: flex;
  height: 80vh;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .vision .parallax_content {
    height: 400px;
  }
}
.vision .img_bg_01 {
  background-image: url("../images/vision2.png");
}
.vision .hero {
  color: #fff;
  position: absolute;
  top: 160px;
  margin: auto;
  width: 900px;
  display: block;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .vision .hero {
    width: 100%;
    padding: 20px;
    text-align: center;
    top: 120px;
  }
}
.vision .hero .container .sub-heading {
  font-family: Poppins;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .vision .hero .container .sub-heading {
    font-size: 42px;
    margin-bottom: 20px;
  }
}
.vision .hero .container .heading {
  font-family: "Open Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
}
@media screen and (max-width: 767px) {
  .vision .hero .container .heading {
    font-size: 18px;
    line-height: 1.5;
  }
}
.vision .story {
  background: #141416;
  margin-bottom: -370px;
}
@media screen and (max-width: 767px) {
  .vision .story {
    margin-bottom: 0;
  }
}
.vision .story .container {
  max-width: 1100px;
}
.vision .story .container .top,
.vision .story .container .bottom {
  position: relative;
  top: -400px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .vision .story .container .top,
  .vision .story .container .bottom {
    top: 0;
  }
}
.vision .story .container .top .image,
.vision .story .container .bottom .image {
  position: relative;
  width: 40%;
  margin-right: -1px;
  border: 1px solid #5b5b5b;
}
@media screen and (max-width: 767px) {
  .vision .story .container .top .image,
  .vision .story .container .bottom .image {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
}
.vision .story .container .top .image .title,
.vision .story .container .bottom .image .title {
  position: absolute;
  color: #fff;
  display: block;
  margin: auto;
  top: 45%;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .vision .story .container .top .image .title--bottom,
  .vision .story .container .bottom .image .title--bottom {
    top: 30%;
  }
}
.vision .story .container .top .text,
.vision .story .container .bottom .text {
  width: 60%;
  color: #8a8a8a;
  background: #141416;
  padding: 70px 150px;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
  border: 1px solid #5b5b5b;
}
@media screen and (max-width: 767px) {
  .vision .story .container .top .text,
  .vision .story .container .bottom .text {
    width: 100%;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .vision .story .container .top {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .vision .story .container .bottom {
    flex-direction: column-reverse;
  }
}

.about {
  background: url("../images/parallax.png") no-repeat;
  background-size: cover;
  padding-bottom: 620px;
}
@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 1030px;
  }
}
.about .hero {
  padding: 200px 0 86px;
}
@media screen and (max-width: 767px) {
  .about .hero {
    padding: 100px 0 40px;
  }
}
.about .hero .container .content {
  padding: 126px;
  display: block;
  margin: 0 auto;
  background: url("../images/vision1.png") no-repeat;
  background-size: cover;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about .hero .container .content {
    padding: 40px;
  }
}
.about .hero .container .content .heading {
  display: block;
  padding: 20px 12px;
  color: #dbdbdb;
  text-align: center;
  font-family: Poppins;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  max-width: 300px;
  background: #141416;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about .hero .container .content .heading {
    max-width: 100%;
    padding: 40px 20px;
    font-size: 45px;
  }
}
.about .profile {
  padding-bottom: 178px;
}
@media screen and (max-width: 767px) {
  .about .profile {
    padding: 20px 20px 50px;
  }
}
.about .profile .container .heading {
  color: #fff;
  font-family: Poppins;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 55px;
}
.about .profile .container .table {
  text-align: left;
}
.about .profile .container .table .tr {
  color: #8a8a8a;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px; /* 180% */
}
.about .profile .container .table .tr .th {
  width: 30%;
}
.about .profile .container .table .tr .td {
  width: 70%;
}
.about .contact {
  padding: 42px 0 70px;
}
@media screen and (max-width: 767px) {
  .about .contact {
    padding: 40px 20px;
  }
}
.about .contact .heading {
  color: #fff;
  font-family: Poppins;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}
.about .contact .text1 {
  color: #8a8a8a;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px; /* 180% */
  margin-bottom: 57px;
}
.about .contact .form .text {
  color: #fff;
}
.about .contact .form .cf7-two-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about .contact .form .cf7-two-columns {
    flex-direction: column;
    gap: 20px;
  }
}
.about .contact .form .cf7-two-columns .left-column {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .about .contact .form .cf7-two-columns .left-column {
    width: 100%;
  }
}
.about .contact .form .cf7-two-columns .left-column input {
  width: 100%;
  padding: 10px;
  border: 2px solid #fff;
  background: transparent;
  font-size: 14px;
}
.about .contact .form .cf7-two-columns .right-column {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about .contact .form .cf7-two-columns .right-column {
    width: 100%;
  }
}
.about .contact .form .cf7-two-columns .right-column textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #fff;
  background: transparent;
  font-size: 14px;
}
.about .contact .form .wpcf7-spinner {
  position: absolute !important;
  left: 0;
}
.about .contact .form .submit-button-wrap {
  margin-top: 20px;
  text-align: right;
}
.about .contact .form .submit-button-wrap input[type=submit] {
  background-color: #f46e6e;
  padding: 10px 40px;
  border: none;
  cursor: pointer;
}

.solutions .parallax_content {
  display: flex;
  height: 900px;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .solutions .parallax_content {
    height: 450px;
  }
}
.solutions .img_bg_01 {
  background-image: url("../images/vision2.png");
}
.solutions .hero {
  color: #fff;
  position: absolute;
  top: 160px;
  margin: auto;
  width: 900px;
  display: block;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .solutions .hero {
    width: 100%;
    padding: 20px;
    text-align: center;
    top: 120px;
  }
}
.solutions .hero .container .heading {
  color: #fff;
  font-family: Poppins;
  font-size: 49px;
  font-style: normal;
  font-weight: 700;
  line-height: 58.8px;
  margin-bottom: 51px;
}
@media screen and (max-width: 767px) {
  .solutions .hero .container .heading {
    font-size: 24px;
    line-height: 1.5;
  }
}
.solutions .hero .container .read {
  color: #fff;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.solutions .services {
  background: #141416;
  margin-bottom: -480px;
}
@media screen and (max-width: 767px) {
  .solutions .services {
    margin-bottom: 0;
  }
}
.solutions .services .container .top,
.solutions .services .container .bottom {
  position: relative;
  top: -400px;
  background: #141416;
}
@media screen and (max-width: 767px) {
  .solutions .services .container .top,
  .solutions .services .container .bottom {
    top: -100px;
  }
}
.solutions .services .container .top {
  border: 1px solid #8a8a8a;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .solutions .services .container .top {
    border: none;
  }
}
.solutions .services .container .top .col {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .solutions .services .container .top .col {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }
}
.solutions .services .container .top .col:not(.solutions .services .container .top .col:last-child) {
  border-bottom: 1px solid #8a8a8a;
}
@media screen and (max-width: 767px) {
  .solutions .services .container .top .col:not(.solutions .services .container .top .col:last-child) {
    border: none;
    margin-bottom: 60px;
  }
}
.solutions .services .container .top .col .left {
  width: 25%;
  padding: 25px;
  border-right: 1px solid #8a8a8a;
}
@media screen and (max-width: 767px) {
  .solutions .services .container .top .col .left {
    padding: 0;
    border: none;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .solutions .services .container .top .col .left .img {
    width: 60%;
  }
}
.solutions .services .container .top .col .right {
  width: 75%;
  padding: 50px 25px;
}
@media screen and (max-width: 767px) {
  .solutions .services .container .top .col .right {
    width: 100%;
    padding: 0;
  }
}
.solutions .services .container .top .col .right .title {
  color: #fff;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .solutions .services .container .top .col .right .title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
  }
}
.solutions .services .container .top .col .right .read {
  color: rgb(138, 138, 138);
}
.solutions .services .container .bottom {
  display: flex;
  border: 1px solid #8a8a8a;
}
@media screen and (max-width: 767px) {
  .solutions .services .container .bottom {
    flex-direction: column;
  }
}
.solutions .services .container .bottom .left {
  background: url("../images/solutions4.png") no-repeat center center;
  background-size: cover;
  width: 40%;
  padding: 130px 40px;
}
@media screen and (max-width: 767px) {
  .solutions .services .container .bottom .left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .solutions .services .container .bottom .left {
    padding: 100px 20px;
  }
}
.solutions .services .container .bottom .left .text {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px; /* 140% */
}
.solutions .services .container .bottom .right {
  width: 60%;
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .solutions .services .container .bottom .right {
    width: 100%;
    padding: 40px 20px;
  }
}
.solutions .services .container .bottom .right .text {
  color: #8a8a8a;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px; /* 140% */
}
