@charset "UTF-8";
/***   랜딩페이지 css ***/
/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --white:#fff;
  --black:#000;
  --border-color:#cccccc;
  --bg-color:#fafbfd;
  --point-color:#3853c9;
  --point-over-color: #010A65;
  --point-sub-color:#ec5300;
  --point-color-bg: #f0f1fa;
  --point-sub-color-bg: #fff5ef;
  --text-color:#566685;
  --bg-color:#fafbfd;
  --table-header:#f2f2f2;
  --top-navigation-bg-color:#2d3134;
  --left-menu-bg-color:#f0f3f8;
  --prev-menu-bg-color:#72809d;
  --depth1-bg-color:#d7e1ea;
  --percent-color: #77ea3b;
  --gray-d8:#d8d8d8;
  --gray-e5:#e5e5e5;
  --gray-fa:#fafafa;
  --gray-f8:#f8f8f8;
  --gray-cc:#ccc;
  --gray-7c:#7c7c7c;
  --gray-d5:#d5d5d5;
  /* btn color */
  --btn-white-over-color: #f1edef;
  --btn-secondary-color:#673fe9;
  --btn-secondary-over-color: #3d278d;
  --btn-third-color:#75777e;
  --btn-third-over-color: #5d5e64;
}

/* font-size */
/* absolute-center */
/* transition */
/* common */
html {
  font-size: 62.5%;
}

body {
  font-family: "Pretendard", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
@media (max-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
body a {
  color: var(--black);
  text-decoration: none;
}
body:has(#modal.show) {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

a, input, button, select {
  outline-offset: 2px;
  outline-color: #000000;
}

input,
select {
  padding: 0.8em 1.2em;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
}

/* table */
table {
  width: 100%;
}

/* wrap */
.wrap {
  max-width: 1410px;
  margin: 0 auto;
}
@media (max-width: 1460px) {
  .wrap {
    max-width: 96%;
  }
}
@media (max-width: 768px) {
  .wrap {
    max-width: 94%;
  }
}
@media (max-width: 480px) {
  .wrap {
    max-width: 92%;
  }
}

.c-white {
  color: #ffffff;
}

/* margin-common */
.mr-60 {
  margin-right: 60px;
}
@media (max-width: 1416px) {
  .mr-60 {
    margin-right: 40px;
  }
}
@media (max-width: 768px) {
  .mr-60 {
    margin-right: 24px;
  }
}

.pr-60 {
  padding-right: 60px;
}
@media (max-width: 1416px) {
  .pr-60 {
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .pr-60 {
    padding-right: 24px;
  }
}

.sub-cont-bottom {
  margin-bottom: 6em;
}
@media (max-width: 1024px) {
  .sub-cont-bottom {
    margin-bottom: 4.8em;
  }
}
@media (max-width: 768px) {
  .sub-cont-bottom {
    margin-bottom: 3.6em;
  }
}

/*----------------------------- header ------------------------------*/
:root {
  --header-height: 100px;
  --header-padding: 60px;
  --breadcrumb-height: 62px;
}

@media (max-width: 1460px) {
  :root {
    --header-padding: 2%;
  }
}
@media (max-width: 1024px) {
  :root {
    --header-height: 80px;
    --breadcrumb-height: 56px;
  }
}
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --header-padding: 3%;
    --breadcrumb-height: 48px;
  }
}
@media (max-width: 480px) {
  :root {
    --header-height: 56px;
    --header-padding: 4%;
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  z-index: 100;
  /* nav */
}
#header .logo {
  position: absolute;
  left: var(--header-padding);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
}
#header .logo a {
  display: block;
  width: 276px;
  height: 34px;
  background: url("/images/bsia/common/logo.svg") no-repeat center/100% 100%;
}
#header .nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-color: #ffffff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#header .nav::before, #header .nav::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #d6d6d6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 99;
}
#header .nav::before {
  top: var(--header-height);
  left: 0;
}
#header .nav::after {
  bottom: 0;
  left: 0;
}
#header .nav .click-close {
  display: none;
}
#header .nav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 13%;
}
#header .nav nav .dep1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header .nav nav .dep1 > li {
  width: 188px;
}
#header .nav nav .dep1 > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: var(--header-height);
  text-align: center;
  font-weight: 600;
  background-color: #ffffff;
  z-index: 100;
}
#header .nav nav .dep1 > li .dep2 {
  opacity: 0;
  height: calc(100% - var(--header-height));
  margin-top: -200%;
  padding: 0;
  border-left: 1px solid #d6d6d6;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 99;
}
#header .nav nav .dep1 > li .dep2 li {
  text-align: center;
}
#header .nav nav .dep1 > li .dep2 li a {
  position: relative;
  display: inline-block;
  padding: 8px 2px;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  #header .nav nav .dep1 > li .dep2 li a {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  #header .nav nav .dep1 > li .dep2 li a {
    font-size: 1.4rem;
  }
}
#header .nav nav .dep1 > li .dep2 li a::after {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
}
#header .nav nav .dep1 > li .dep2 li a:hover::after {
  opacity: 1;
}
#header .nav nav .dep1 > li .dep2.--open {
  opacity: 1;
  margin-top: 0;
  padding: 1em 0 3em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#header .nav nav .dep1 > li .dep2.--open li {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#header .nav nav .dep1 > li:last-child .dep2 {
  border-right: 1px solid #d6d6d6;
}
#header .nav nav .dep1 > li:hover > a {
  color: #3853c9;
}
#header .nav nav .dep1 > li:hover .dep2 {
  background-color: #f8f8f8;
}
#header .nav.active::before, #header .nav.active::after {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 1;
}
#header .util {
  position: absolute;
  right: var(--header-padding);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .util .item {
  width: 40px;
  height: 40px;
  margin-right: 4px;
}
#header .util .item a {
  display: block;
  width: 100%;
  height: 100%;
}
#header .util .login {
  background: url("/images/bsia/common/login.svg") no-repeat center/27px 27px;
}
#header .util .my {
  background: url("/images/bsia/common/my.svg") no-repeat center/27px 27px;
}
#header .util .burger {
  margin-right: 0;
  background: url("/images/bsia/common/burger.svg") no-repeat center/26px 26px;
}
@media (max-width: 1460px) {
  #header .nav nav .dep1 > li {
    width: 144px;
  }
}
@media (max-width: 1280px) {
  #header {
    /* nav */
  }
  #header .nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    right: 0;
    -webkit-transition: unset;
    transition: unset;
  }
  #header .nav::before, #header .nav::after {
    z-index: 101;
  }
  #header .nav::before {
    top: 0;
    left: 0;
  }
  #header .nav nav {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  #header .nav nav .dep1 > li {
    width: 20%;
    border-left: 1px solid #d6d6d6;
  }
  #header .nav nav .dep1 > li > a {
    height: 60px;
  }
  #header .nav nav .dep1 > li .dep2 {
    height: calc(100% - 60px);
    padding: 1em 0 2em;
    border-left: 0;
    background-color: #f8f8f8;
    -webkit-transition: unset;
    transition: unset;
  }
  #header .nav nav .dep1 > li .dep2 li {
    -webkit-transition: unset;
    transition: unset;
  }
  #header .nav nav .dep1 > li .dep2.--open {
    -webkit-transition: unset;
    transition: unset;
  }
  #header .nav nav .dep1 > li .dep2.--open > li {
    -webkit-transition: unset;
    transition: unset;
  }
  #header .nav nav .dep1 > li:last-child .dep2 {
    border-right: 0;
  }
  #header .nav nav .dep1 > li:first-child {
    border-left: 0;
  }
}
@media (max-width: 1024px) {
  #header {
    /* nav */
  }
  #header .logo a {
    width: 220px;
    height: 27px;
  }
  #header .nav {
    display: none;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: unset;
    transition: unset;
  }
  #header .nav .click-close {
    position: absolute;
    display: block;
    width: 20%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
  }
  #header .nav nav {
    position: absolute;
    width: 80%;
    height: 100vh;
    margin-left: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #ffffff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #header .nav nav .dep1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #header .nav nav .dep1 > li {
    width: 100%;
    border-left: 0;
  }
  #header .nav nav .dep1 > li > a {
    position: relative;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1.2em 2em;
    text-align: left;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #header .nav nav .dep1 > li > a::after {
    content: "";
    display: block;
    width: 14px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 2em;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url("/images/bsia/main/arw_next_b.svg") no-repeat center/100% 100%;
  }
  #header .nav nav .dep1 > li .dep2 {
    display: none;
    height: auto;
    margin-top: 0;
    opacity: 1;
    -webkit-transition: unset;
    transition: unset;
    background-color: #f8f8f8;
  }
  #header .nav nav .dep1 > li .dep2 li {
    text-align: left;
  }
  #header .nav nav .dep1 > li .dep2 li a {
    padding: 0.5em 2em 0.5em 2.5em;
    display: block;
  }
  #header .nav nav .dep1 > li .dep2 li a::after {
    display: none;
  }
  #header .nav nav .dep1 > li.active > a::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  #header .nav nav .dep1 > li.active .dep2 {
    display: block;
  }
  #header .nav nav.--open {
    margin-left: 20%;
  }
  #header .nav::after {
    display: none;
  }
  #header .util .item {
    width: 32px;
    height: 32px;
  }
  #header .util .login,
  #header .util .my,
  #header .util .burger {
    background-size: 24px 24px;
  }
}
@media (max-width: 768px) {
  #header .logo a {
    width: 179px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  #header .util {
    margin-right: -5px;
  }
  #header .util .login,
  #header .util .my,
  #header .util .burger {
    background-size: 20px 21px;
  }
}

/*----------------------------- family-link ------------------------------*/
.family-link {
  position: relative;
  padding: 1.1em 0;
  border-top: 1px solid #d6d6d6;
}
.family-link .arw {
  position: absolute;
  top: 50%;
  margin-top: -20px;
}
.family-link .arw button {
  width: 40px;
  height: 40px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background: url("/images/bsia/main/arw_prev_b.svg") no-repeat center/7px 12px;
}
.family-link .arw.arw-prev {
  left: calc((100% - 1416px) / 2 - 40px);
}
.family-link .arw.arw-next {
  right: calc((100% - 1416px) / 2 - 40px);
}
.family-link .arw.arw-next button {
  background: url("/images/bsia/main/arw_next_b.svg") no-repeat center/7px 12px;
}
@media (max-width: 1680px) {
  .family-link .link-sld {
    padding: 0 50px;
  }
  .family-link .arw.arw-prev {
    left: 10px;
  }
  .family-link .arw.arw-next {
    right: 10px;
  }
}
@media (max-width: 1024px) {
  .family-link .link-sld {
    padding: 0 42px;
  }
  .family-link .arw {
    margin-top: -16px;
  }
  .family-link .arw button {
    width: 32px;
    height: 32px;
    border: 0;
  }
  .family-link .arw.arw-prev {
    left: 10px;
  }
  .family-link .arw.arw-next {
    right: 10px;
  }
}
@media (max-width: 768px) {
  .family-link {
    padding: 0.5em 0;
  }
}

/*----------------------------- footer ------------------------------*/
.to-top {
  display: none;
  position: fixed;
  width: 48px;
  height: 48px;
  right: 2em;
  bottom: 2em;
}
.to-top a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.to-top a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -6px;
  width: 12px;
  height: 6px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: url("/images/bsia/sub/arw_down_w.svg") no-repeat center/100% 100%;
}
@media (max-width: 768px) {
  .to-top {
    width: 40px;
    height: 40px;
    right: 1.2em;
    bottom: 1.2em;
  }
}

/*퀵메뉴 quick 2025.07.21*/
#quick_wrap {
  position: fixed;
  _position: absolute;
  right: 30px;
  top: 477px;
  width: 80px;
  height: 50px;
  z-index: 10000;
}

#quick_wrap li {
  font-size: 0.933em;
  text-align: center;
  margin-bottom: 19px;
}

#quick_wrap li span {
  display: block;
  width: 65px;
  height: 65px;
  padding-bottom: 12px;
  margin: 0 auto;
  border-radius: 50%;
  /*border: 1px solid #d8d8d8;
  background-color: #fff;*/
}

.quick_insta {
  background: url("/images/bsia/common/quick_insta.png") no-repeat center;
}

.quick_blog {
  background: url("/images/bsia/common/quick_blog.png") no-repeat center;
}

.quick_sitemap {
  background: url("/images/bsia/common/quick_sitemap.png") no-repeat center;
}

@media (max-width: 768px) {
  #quick_wrap {
    top: 548px;
    width: 55px;
    height: 40px;
  }
}
#footer {
  background-color: #232323;
  padding: 2.7em 0 2.7em;
}
#footer .top-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 2.5em;
  border-bottom: 1px solid #4a4a4a;
}
#footer .top-cont .logo {
  width: 323px;
  height: 40px;
  background: url("/images/bsia/common/logo_g.svg") no-repeat center/100% auto;
}
#footer .top-cont .f-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
#footer .top-cont .f-nav a {
  display: inline-block;
  padding: 0.9em 1.5em;
  margin-left: 6px;
  border-radius: 100px;
  border: 2px solid #686868;
  color: #bababa;
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  #footer .top-cont .f-nav a {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  #footer .top-cont .f-nav a {
    font-size: 1.2rem;
  }
}
#footer .bottom-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  #footer .bottom-cont {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  #footer .bottom-cont {
    font-size: 1.4rem;
  }
}
#footer .bottom-cont .cont {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 2.2em;
  padding-right: 10%;
}
#footer .bottom-cont .cont .item {
  margin-right: 3.2em;
  margin-top: 0.8em;
  color: #7c7c7c;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  #footer .bottom-cont .cont .item {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  #footer .bottom-cont .cont .item {
    font-size: 1.4rem;
  }
}
#footer .bottom-cont .cont .item span:first-child {
  margin-right: 1em;
}
#footer .bottom-cont .copy {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  color: #7c7c7c;
}
@media (max-width: 1024px) {
  #footer .top-cont {
    display: block;
  }
  #footer .top-cont .logo {
    width: 258px;
    height: 32px;
    margin-bottom: 1em;
  }
}
@media (max-width: 768px) {
  #footer .top-cont {
    text-align: center;
    padding-bottom: 1.5em;
  }
  #footer .top-cont .logo {
    margin: 0 auto 2em;
    width: 193px;
    height: 24px;
  }
  #footer .top-cont .f-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #footer .top-cont .f-nav a {
    border: 0;
    padding: 0.5em;
  }
  #footer .bottom-cont {
    display: block;
    text-align: center;
    margin-top: 1.2em;
  }
  #footer .bottom-cont .cont {
    width: 100%;
    padding-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
  #footer .bottom-cont .cont .item {
    margin: 0.8em 1em 0;
    font-size: 1.2rem;
  }
  #footer .bottom-cont .cont .item span:first-child {
    margin-right: 0.5em;
  }
  #footer .bottom-cont .copy {
    width: 100%;
    margin-top: 2.5em;
    font-size: 1.2rem;
  }
}

h1 {
  font-size: 1.7em;
  font-weight: 500;
  margin-bottom: 0.5em;
}
h1 br {
  display: none;
}

h2 {
  font-size: 1.5em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1em;
}

.intro {
  width: 100%;
  height: 100%;
  color: var(--white);
  background: url("/images/bsia/landing/bg.jpg") center/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro::before, .intro::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.intro::before {
  background: var(--black);
  opacity: 0.2;
}
.intro::after {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.intro div {
  z-index: 10;
}

.intro-content {
  max-width: 780px;
  padding: 1rem;
}
.intro-content .intro-content-inner article {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1em 1rem;
  margin-bottom: 1em;
}
.intro-content .intro-content-inner article p {
  color: #cbcbcb;
  margin-bottom: 1em;
}
.intro-content .intro-content-inner article a {
  width: 180px;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 1em;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro-content .intro-content-inner article a figure {
  margin-left: 2rem;
}
.intro-content .intro-content-inner article:first-child h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.footer {
  width: 100%;
  font-size: 0.85em;
  text-align: center;
  padding: 1em;
  position: absolute;
  bottom: 0;
}
.footer figure {
  margin-bottom: 1em;
}
.footer figure img {
  height: 25px;
}

@media screen and (min-width: 600px) {
  h1 {
    font-size: 2.5em;
  }
  h1 br {
    display: block;
  }
  .intro-content {
    max-width: 780px;
    padding: 1rem;
  }
  .intro-content .intro-content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1em;
  }
  .intro-content .intro-content-inner article {
    padding: 1em;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .intro-content .intro-content-inner article p {
    margin-bottom: 0;
  }
  .intro-content .intro-content-inner article a {
    padding: 0.5em 1em;
  }
  .intro-content .intro-content-inner article:first-child {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .intro-content .intro-content-inner article:first-child > div {
    width: calc(100% - 180px);
  }
  .intro-content .intro-content-inner article:first-child > div p {
    margin-right: 2em;
  }
  .footer {
    padding: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer figure {
    margin-bottom: 0;
  }
}
