/** @format */
/** @format */
/** @format */
/** @format */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Open+Sans+Condensed:wght@300;700&family=Shippori+Antique+B1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  list-style-type: none;
  text-decoration: none;
  outline: none; }

html {
  box-sizing: border-box;
  font-size: 62.5%; }

body {
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 1.5px;
  font-family: 'Work Sans', sans-serif; }

.main {
  width: 100%; }

.section {
  padding: 15rem 0;
  font-family: 'Open Sans', sans-serif; }
  .section__title {
    font-size: 6rem;
    padding-bottom: 5rem;
    font-family: 'Shippori Antique B1', sans-serif; }
    .section__title--sub {
      font-size: 4rem;
      padding-bottom: 0.5rem;
      text-align: center;
      font-family: 'Shippori Antique B1', sans-serif;
      color: #0d0784;
      border-bottom: 5px double #0d0784;
      display: inline-block; }

a:link, a:visited {
  color: inherit; }

.tab {
  padding-left: 2rem; }

@media (min-width: 768px) and (max-width: 1024px) {
  .section {
    padding: 5rem 0 10rem; } }

@media (min-width: 450px) and (max-width: 767px) {
  .section {
    padding: 4rem 0 8rem; } }

@media (max-width: 449px) {
  .section {
    padding: 10rem 0; }
    .section__title {
      font-size: 4rem; } }

/** @format */
@keyframes lantern-float {
  0% {
    transform: translateZ(30rem);
    opacity: 1; }
  20% {
    transform: translateZ(-100rem) translateY(-30rem) rotate(40deg);
    opacity: 0.8; }
  50% {
    transform: translateZ(-500rem) translateY(100rem) rotate(-30deg);
    opacity: 0.7; }
  70% {
    transform: translateZ(-1200rem) translateY(-250rem) translateX(500rem) rotate(30deg);
    opacity: 0.4; }
  80% {
    transform: translateZ(-900rem) translateY(-250rem) translateX(350rem) rotate(-20deg);
    opacity: 0.6; }
  100% {
    transform: translateZ(-1700rem) translateY(-500rem) translateX(650rem) rotate(-10deg);
    opacity: 0; } }

@keyframes btn-wave {
  0% {
    transform: rotate(0deg);
    transform-origin: top center; }
  25% {
    transform: rotate(25deg);
    transform-origin: top center; }
  75% {
    transform: rotate(-15deg);
    transform-origin: top center; }
  100% {
    transform: rotate(0deg);
    transform-origin: top center; } }

/** @format */
.btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
  font-family: 'Work Sans', sans-serif; }
  .btn:focus {
    outline: none; }
  .btn--open {
    background-color: orange;
    padding: 1.5rem;
    border-radius: 50%;
    border: 5px solid white;
    position: fixed;
    top: 3rem;
    right: 3rem;
    z-index: 2; }
  .btn--close {
    position: absolute;
    top: 4rem;
    right: 4rem;
    z-index: 3; }
    .btn--close:hover {
      animation: btn-wave 3s infinite; }
  .btn--medium {
    margin: 1rem;
    padding: 1rem 5rem;
    background-color: white;
    font-size: 1.6rem;
    font-weight: 500;
    color: #082032;
    border-radius: 5rem;
    position: relative;
    overflow: hidden;
    display: inline-block; }
    .btn--medium:active {
      transform: scale(0.96); }
  .btn--small {
    background: transparent;
    border: 2px solid;
    font: inherit;
    font-size: 1.2rem;
    font-weight: border;
    line-height: 1;
    margin: 0.5em;
    padding: 1em 2em;
    border-radius: 50rem; }
  .btn--toDown {
    overflow: hidden; }
    .btn--toDown::before {
      content: "Yeah~";
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      background-color: #082032;
      color: orange;
      z-index: 1;
      border-radius: 5rem;
      transform: translateY(100%);
      transition: all 0.6s;
      display: flex;
      justify-content: center;
      align-items: center; }
    .btn--toDown:hover::before {
      transform: translate(0); }
  .btn--toUp::before {
    content: "Thank you!!";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #082032;
    color: orange;
    z-index: 1;
    border-radius: 5rem;
    transform: translateY(-100%);
    transition: all 0.6s;
    display: flex;
    justify-content: center;
    align-items: center; }
  .btn--toUp:hover::before {
    transform: translate(0); }
  .btn--search {
    background-color: #fff;
    border: 0;
    cursor: pointer;
    font-size: 1.8rem;
    position: absolute;
    top: 3.7px;
    right: 0.5rem;
    height: 3rem;
    width: 3rem;
    transition: transform 0.3s ease;
    border-radius: 50rem; }
  .btn--red {
    border: 2px solid #ff7f82;
    color: #ff7f82; }
    .btn--red:hover {
      box-shadow: 0 0.5em 1em -0.3em #ff7f82;
      transform: translateY(-0.4rem); }
  .btn--orange {
    border: 2px solid #ffa260;
    color: #ffa260; }
    .btn--orange:hover {
      box-shadow: 0 0.5em 1em -0.3em #ffa260;
      transform: translateY(-0.4rem); }
  .btn--yellow {
    border: 2px solid #e4cb58;
    color: #e4cb58; }
    .btn--yellow:hover {
      box-shadow: 0 0.5em 1em -0.3em #e4cb58;
      transform: translateY(-0.4rem); }
  .btn--green {
    border: 2px solid #8fc866;
    color: #8fc866; }
    .btn--green:hover {
      box-shadow: 0 0.5em 1em -0.3em #8fc866;
      transform: translateY(-0.4rem); }
  .btn--purple {
    border: 2px solid #a972cb;
    color: #a972cb; }
    .btn--purple:hover {
      box-shadow: 0 0.5em 1em -0.3em #a972cb;
      transform: translateY(-0.4rem); }
  .btn--back {
    margin-top: 3rem;
    margin-right: 1rem;
    margin: 3rem 0.5rem 0 0.5rem;
    background-color: white;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem; }
    .btn--back:hover {
      opacity: 0.8; }
    .btn--back:focus {
      outline: none; }
    .btn--back:active {
      transform: scale(0.9); }
  .btn--contact {
    width: 100%;
    margin: 2rem 0;
    padding: 1rem 0;
    background-color: white;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: background-color 1s ease; }
    .btn--contact:hover {
      background-color: orange; }
    .btn--contact:active {
      transform: scale(0.98); }

@media (max-width: 659px) {
  .mobile {
    width: 100%;
    text-align: center;
    margin: auto;
    margin-bottom: 1rem; } }

/** @format */
/** @format */
.nav__container {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url("../../img/bg_nav_lantern.jpg") center no-repeat;
  background-size: cover;
  position: fixed;
  left: 0;
  z-index: 3;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out; }
  .nav__container.change {
    transform: translateY(0); }

.nav__wrapper {
  width: 100%;
  height: 100%;
  position: relative; }

.nav__list {
  height: 100%;
  width: 100%;
  display: flex; }

.nav__link {
  width: 100%;
  height: 100%;
  font-size: 2.5rem;
  font-weight: 700;
  opacity: 0.8;
  position: relative;
  transform: translateY(-100%);
  display: flex;
  justify-content: center;
  align-items: center; }
  .nav__link:hover {
    opacity: 1;
    color: #f9f7f6; }
  .nav__link.change {
    transform: translateY(0); }

@media (max-width: 850px) {
  .nav__container {
    transform: translateX(-100%); }
    .nav__container.change {
      transform: translateX(0); }
  .nav__link {
    transform: translateX(-100%); }
    .nav__link.change {
      transform: translateX(0); }
  .nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; } }

/** @format */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10rem;
  height: calc(100vh - 7rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Shippori Antique B1', sans-serif;
  color: #f9f7f6;
  text-shadow: 0.2rem 0.2rem 1rem black, 0.3rem 0.3rem 2rem black, 0.4rem 0.4rem 3rem black, 0.6rem 0.6rem 4rem black;
  position: relative;
  perspective: 100rem; }
  .header__title--main {
    font-size: 5rem;
    line-height: 7.5rem; }
  .header__title--sub {
    font-size: 5rem;
    margin-top: 3rem; }
  .header__img {
    width: 35%;
    animation: lantern-float 190s infinite; }

@media (min-width: 768px) and (max-width: 1024px) {
  .header {
    max-height: 55rem; }
    .header__title--main {
      font-size: 4rem;
      line-height: 6rem; }
    .header__title--sub {
      font-size: 3.8rem;
      margin-top: 3rem; } }

@media (max-width: 767px) {
  .header {
    max-height: 40rem; }
    .header__title--main, .header__title--sub {
      font-size: 3rem;
      line-height: 4rem; } }

/** @format */
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: orange; }
  .about__contents {
    display: flex;
    min-width: 95%;
    padding: 3rem 10%; }
    .about__contents--left {
      width: 25%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2rem; }
    .about__contents--right {
      width: 75%;
      padding: 2rem 2rem 2rem 6rem;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
  .about__img {
    width: 25rem;
    clip-path: circle(44% at 50% 42%);
    object-fit: cover; }
  .about__texts {
    font-size: 2rem;
    font-family: 'Work Sans', sans-serif; }
  .about__emphasis {
    color: black;
    font-weight: 600;
    font-size: 2.2rem; }
  .about__btns {
    width: 100%;
    margin-top: 3rem; }

@media (min-width: 660px) and (max-width: 820px) {
  .about__contents {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
    .about__contents--left {
      height: 25rem; }
    .about__contents--right {
      padding: 2rem 3rem;
      width: 100%;
      flex-shrink: 1; }
  .about__texts {
    font-size: 1.7rem; }
  .about__emphasis {
    font-weight: 600;
    font-size: 2rem; }
  .about__btns {
    width: 100%;
    margin-top: 2.5rem auto;
    text-align: center; } }

@media (max-width: 659px) {
  .about__contents {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
    .about__contents--left {
      height: 20rem; }
    .about__contents--right {
      width: 100%;
      padding: 2rem; }
  .about__texts {
    font-size: 1.5rem; }
  .about__emphasis {
    font-weight: 600;
    font-size: 1.7rem; }
  .about__img {
    width: 20rem; } }

/** @format */
.skills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: black;
  width: 100%; }
  .skills__contents {
    padding: 3rem 10%; }
  .skills__icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 90rem;
    margin-top: -4rem; }
  .skills img {
    height: 15rem;
    margin: 4rem; }
  .skills__title {
    color: white;
    font-size: 6rem;
    padding-bottom: 5rem;
    font-family: 'Shippori Antique B1', sans-serif;
    margin-top: 10rem;
    text-align: center;
    font-weight: 400; }
    .skills__title--main {
      margin-top: -1rem; }

.skills__icon {
  width: 15rem;
  height: 8rem;
  font-size: 2rem;
  border: 5px solid;
  font-weight: 700;
  margin-top: 4rem;
  font-family: 'Work Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center; }
  .skills__icon:hover {
    cursor: none; }

/** @format */
.projects {
  background-color: orange;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .projects--top {
    height: 40rem;
    display: flex;
    justify-content: center;
    align-items: center; }
  .projects--main {
    margin-top: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
  .projects__topCard {
    width: 100rem;
    height: 35rem;
    height: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .projects__topCard--left {
      width: 32.5rem;
      height: 100%;
      position: absolute;
      top: 50%;
      left: -1.5rem;
      transform: translateY(-50%);
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
    .projects__topCard--right {
      width: 95%;
      height: 38rem;
      margin-left: 8rem;
      background-color: #082032;
      border-radius: 2rem;
      overflow: hidden;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      align-items: start; }
    .projects__topCard--img {
      width: 93%;
      height: 80%;
      border-radius: 2rem;
      cursor: pointer; }
    .projects__topCard--slide {
      width: 100%;
      height: 30rem;
      margin-bottom: 4rem; }
      .projects__topCard--slide--btns {
        position: absolute;
        top: 50%;
        right: 3rem;
        transform: translateY(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column; }
      .projects__topCard--slide--btn--top {
        font-size: 4rem; }
      .projects__topCard--slide--btn--bottom {
        font-size: 5rem; }
      .projects__topCard--slide--btn--top, .projects__topCard--slide--btn--bottom {
        margin: 3rem 0;
        color: white; }
        .projects__topCard--slide--btn--top:hover, .projects__topCard--slide--btn--bottom:hover {
          color: skyblue;
          color: crimson; }
    .projects__topCard--content {
      width: 65%;
      padding: 1rem;
      color: white;
      position: absolute;
      top: 8%;
      right: 7%; }
    .projects__topCard--top {
      font-size: 2.3rem;
      padding-bottom: 0.3rem;
      border-bottom: 1px solid orange;
      color: orange; }
    .projects__topCard--info {
      margin: 1.5rem 0; }
    .projects__topCard--title {
      font-size: 2rem; }
      .projects__topCard--title--sub {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: skyblue; }
    .projects__topCard--desc {
      font-size: 1.65rem;
      margin-top: 0.3rem; }
    .projects__topCard--dot {
      margin: 0.5rem; }
    .projects__topCard--mobile {
      display: none; }
    .projects__topCard--li {
      font-size: 1.5rem;
      line-height: 2.5rem;
      margin-left: 1rem; }
    .projects__topCard--stacks {
      margin-top: 2rem;
      font-size: 1.5rem; }
      .projects__topCard--stacks--ul {
        margin-top: 1rem;
        margin-bottom: 5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        justify-content: start; }
      .projects__topCard--stacks--left, .projects__topCard--stacks--right {
        width: 30%; }
    .projects__topCard--btns {
      margin: 3rem 2rem 0;
      display: flex;
      justify-content: center;
      align-items: center;
      justify-content: end; }
    .projects__topCard--button {
      padding: 0.7rem 1.5rem;
      margin-right: 1.5rem;
      border-radius: 0.5rem;
      border: none;
      background-color: orange;
      color: #082032;
      font-size: 600;
      transition: background-color 1s ease; }
      .projects__topCard--button:hover {
        background-color: white; }
      .projects__topCard--button:active {
        transform: scale(0.98); }

.options {
  width: 90%;
  background-color: #082032;
  border-radius: 50rem;
  margin-bottom: 5rem;
  margin-top: 4rem;
  padding: 1rem 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between; }

.search {
  position: relative; }
  .search__box {
    background-color: #fff;
    border: 0;
    font-size: 1.8rem;
    padding: 1.5rem;
    height: 3.8rem;
    width: 12rem;
    transition: width 0.3s ease;
    border-radius: 5rem; }
  .search.active input {
    width: 23rem; }

.result__mainProj,
.result__toyProj {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px; }

.card {
  width: 300px;
  margin: 2rem; }

.name--main {
  text-align: center;
  font-family: 'Lobster', cursive;
  font-size: 40px; }

.span--main {
  color: transparent; }

.stacks--main {
  font-size: 18px;
  font-family: 'Open Sans Condensed', sans-serif;
  color: #082032;
  font-weight: 700; }

.hidden {
  display: none; }

.front--main,
.back--main {
  background-size: cover;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  text-align: center;
  min-height: 280px;
  height: auto;
  border-radius: 10px;
  color: white;
  font-size: 1.5rem; }

.front--main {
  transform: rotateY(0deg); }
  .front--main:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: 0.6;
    background-color: #000;
    backface-visibility: hidden;
    border-radius: 10px; }

.back--main {
  background: linear-gradient(-45deg, #e2e4e4 0%, #116d82 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotateY(180deg); }

.container--main {
  transform-style: preserve-3d;
  perspective: 1000px; }
  .container--main:hover .front--main {
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform: rotateY(-180deg);
    transform-style: preserve-3d; }
  .container--main:hover .back--main {
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform: rotateY(0deg);
    transform-style: preserve-3d; }

.inner--main {
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
  outline: 1px solid transparent;
  perspective: inherit;
  z-index: 2; }

@media (min-width: 768px) and (max-width: 1024px) {
  .projects--top {
    margin: 2rem auto;
    width: 100vw; }
  .projects__topCard {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
    .projects__topCard--left {
      display: none; }
    .projects__topCard--right {
      width: 90%;
      margin: auto; }
    .projects__topCard--content {
      width: 90%;
      padding: 1.5rem 3rem; }
  .options {
    width: 70%;
    border-radius: 2rem;
    padding: 3rem 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
  .search {
    position: relative; }
    .search__box {
      width: 15rem;
      margin-bottom: 3rem; }
    .search.active input {
      width: 30rem; } }

@media (min-width: 450px) and (max-width: 767px) {
  .projects--top {
    margin: 2rem auto;
    width: 100vw; }
  .projects__topCard--left {
    display: none; }
  .projects__topCard--img {
    width: 13rem;
    height: 13rem;
    border-radius: 2rem;
    margin-bottom: -3rem; }
  .projects__topCard--right {
    width: 90%;
    margin: auto; }
  .projects__topCard--top {
    font-size: 1.7rem; }
  .projects__topCard--title--sub {
    font-size: 1.6rem; }
  .projects__topCard--content {
    width: 90%;
    padding: 1rem 0rem; }
  .projects__topCard--mobile {
    display: block;
    padding-right: 5rem; }
  .projects__topCard--li {
    font-size: 1.5rem; }
  .projects__topCard--desktop {
    display: none; }
  .projects__topCard--btns {
    margin: 2rem 1rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: start; }
  .projects__topCard--stacks--left, .projects__topCard--stacks--right {
    width: 40%; }
  .options {
    width: 70%;
    border-radius: 2rem;
    padding: 3rem 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
  .search {
    position: relative; }
    .search__box {
      width: 15rem;
      margin-bottom: 3rem; }
    .search.active input {
      width: 30rem; } }

@media (max-width: 450px) {
  .projects {
    padding-top: 7rem;
    padding-bottom: 10rem; }
    .projects__topCard {
      margin-top: 30rem; }
      .projects__topCard--left {
        width: 35%;
        height: 17rem;
        top: -40%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #082032;
        border-radius: 2rem 2rem 0 0; }
      .projects__topCard--img {
        width: 13rem;
        height: 13rem;
        border-radius: 2rem;
        margin-bottom: -3rem; }
      .projects__topCard--right {
        width: 35%;
        margin: auto; }
      .projects__topCard--top {
        font-size: 1.7rem; }
      .projects__topCard--title--sub {
        font-size: 1.6rem; }
      .projects__topCard--content {
        width: 90%;
        padding: 1rem 0rem; }
      .projects__topCard--mobile {
        display: block;
        padding-right: 5rem; }
      .projects__topCard--li {
        font-size: 1.5rem; }
      .projects__topCard--desktop {
        display: none; }
      .projects__topCard--btns {
        margin: 0 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        justify-content: center; }
        .projects__topCard--btns.mobile {
          display: none; }
      .projects__topCard--stacks--left, .projects__topCard--stacks--right {
        width: 45%; }
  .options {
    width: 35%;
    margin-top: 10rem;
    border-radius: 2rem;
    padding: 3rem 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
  .search {
    position: relative; }
    .search__box {
      width: 15rem;
      margin-bottom: 3rem; }
    .search.active input {
      width: 30rem; }
  .result__mainProj {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 37rem; } }

/** @format */
.experience {
  background-color: #00070e;
  font-family: 'Work Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .experience__contents {
    width: 50%;
    max-width: 80rem; }
  .experience__title {
    color: white; }
  .experience__timeline {
    width: 100%;
    position: relative; }
    .experience__timeline::before {
      content: '';
      width: 0.7rem;
      height: 100%;
      background: #f9f7f6;
      position: absolute;
      top: 0;
      left: 0rem;
      transform: translateX(-170%); }
  .experience__item {
    margin: 7rem 4rem;
    padding: 3rem 5rem;
    border-radius: 5px;
    position: relative;
    color: #082032;
    background-color: orange;
    box-shadow: 1rem 1rem 0.5rem rgba(249, 247, 225, 0.927); }
    .experience__item h2 {
      text-transform: uppercase;
      letter-spacing: 2px;
      line-height: 3rem;
      font-size: 2rem;
      border-bottom: 1px solid #082032;
      border-bottom: 1px solid #f9f7f6;
      display: inline-block; }
    .experience__item h3 {
      font-size: 1.9rem;
      margin: 1rem 0; }
    .experience__item p {
      font-size: 1.8rem;
      padding: 1.5rem 0; }
    .experience__item span {
      font-size: 3.5rem; }
    .experience__item div {
      display: flex;
      justify-content: right;
      text-align: center;
      margin-top: 2rem; }
    .experience__item small {
      font-size: 1.6rem;
      background-color: white;
      border-radius: 5rem;
      width: 33rem;
      padding: 0.5rem 0; }
    .experience__item::before {
      content: '';
      width: 2.7rem;
      height: 2.7rem;
      background: #f9f7f6;
      position: absolute;
      top: 14.5%;
      left: -6.2rem;
      border-radius: 50%;
      cursor: pointer; }
    .experience__item:hover::before {
      border: 3px solid #f9f7f6;
      background-color: orange; }

@media (min-width: 450px) and (max-width: 1024px) {
  .experience__contents {
    width: 80%; } }

@media (max-width: 449px) {
  .experience__contents {
    width: 92%; }
  .experience__timeline::before {
    content: '';
    width: 0.5rem;
    left: 0.5rem; }
  .experience__item {
    margin: 7rem 2rem;
    padding: 3rem; }
    .experience__item::before {
      left: -3.5rem; } }

/** @format */
.testimonial {
  background-color: #ffa500;
  padding-bottom: 20rem;
  height: auto;
  font-family: 'Work Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .testimonial__contents {
    position: relative;
    width: 100%;
    min-width: 35rem;
    padding-bottom: 5rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-items: start;
    padding: 3rem 10%; }
  .testimonial__wrapper {
    width: 500%;
    margin-bottom: 2rem;
    transition: 1s;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .testimonial__card {
    width: 100%;
    margin-right: 5%;
    background: #f9f7f6;
    border-radius: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    background-color: #ebe8e8;
    display: flex;
    justify-content: center;
    align-items: center; }
    .testimonial__card--top {
      width: 100%;
      height: auto;
      position: relative;
      padding: 4rem 6rem;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
      .testimonial__card--top.t2, .testimonial__card--top.t3, .testimonial__card--top.t4 {
        padding: 5rem 15rem; }
    .testimonial__card--review {
      width: 100%;
      font-size: 1.7rem; }
    .testimonial__card--bottom {
      margin-top: 4rem;
      display: flex;
      justify-content: center;
      align-items: center; }
    .testimonial__card--img {
      width: 8rem;
      height: 8rem;
      border-radius: 50rem;
      border: 3px solid white;
      object-fit: cover; }
      .testimonial__card--img.chloe {
        transform: scale(1.48); }
    .testimonial__card--name {
      font-weight: 600;
      margin: 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
      .testimonial__card--name span {
        border-radius: 0.5rem;
        font-size: 1.5rem;
        line-height: 2.5rem; }
      .testimonial__card--name > small {
        font-size: 1.3rem;
        letter-spacing: 0.11rem; }
  .testimonial__indicators {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }
    .testimonial__indicators button {
      background: none;
      border: none;
      outline: none;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      border: 2px solid #082032;
      cursor: pointer;
      margin-left: 0.5rem;
      transition: 0.5s; }
      .testimonial__indicators button.active {
        width: 4rem;
        border-radius: 5rem;
        background: #082032; }

.chloe {
  width: 8rem;
  height: 8rem;
  background-color: oldlace;
  border-radius: 50rem;
  border: solid 4px white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center; }

.fa-quote-left {
  font-size: 2.5rem;
  margin-right: 1rem;
  color: crimson;
  transform: rotate(15deg); }

.fa-quote-right {
  font-size: 2.5rem;
  margin-left: 1rem;
  color: crimson;
  transform: rotate(-15deg); }

@media (max-width: 767px) {
  .testimonial {
    display: none; } }

/** @format */
.contact {
  background-color: #f9f7f6;
  width: 100%;
  height: auto;
  font-family: 'Work Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .contact__contents {
    width: 70%;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 100rem; }
    .contact__contents:hover > div {
      transform: rotateY(0);
      transition: transform 0.7s ease-in-out; }
  .contact__left {
    height: 45rem;
    width: 50%;
    color: #00070e;
    display: flex;
    align-items: center;
    justify-content: right;
    transform: rotateY(20deg);
    transition: transform 0.7s ease-in-out; }
  .contact__right {
    height: 45rem;
    width: 50%;
    border-radius: 1rem;
    transform: rotateY(-20deg);
    transition: transform 0.7s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: left; }
  .contact__info {
    width: 40rem;
    min-width: 40rem;
    height: 41rem;
    margin-right: 2rem;
    padding: 2rem 3rem;
    border-radius: 1rem;
    background-color: orange;
    box-shadow: -2.5rem 2rem 3rem #aaa; }
  .contact__title {
    font-size: 2.4rem;
    margin: 2rem 0 1rem; }
    .contact__title--social {
      margin-top: 5rem;
      margin-bottom: 0; }
  .contact__text {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    font-weight: 400; }
  .contact__icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 1rem 1.5rem; }
    .contact__icon.sns {
      fill: #082032; }
      .contact__icon.sns:hover {
        fill: white; }
  .contact__form {
    width: 40rem;
    min-width: 40rem;
    height: 41rem;
    padding: 0 10%;
    margin-left: 2rem;
    box-shadow: 2.5rem 2rem 3rem #aaa;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #082032; }

.input__control {
  position: relative;
  width: 100%;
  margin-top: 1rem; }

.input__text {
  width: 100%;
  background-color: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
  border: 2px solid white;
  border-width: 0 0 2px 0;
  font-size: 1.5rem;
  color: white; }
  .input__text:focus {
    outline: none;
    border-bottom-color: orange; }
    .input__text:focus + label span {
      color: orange;
      transform: translateY(-30px); }
  .input__text:valid {
    outline: none;
    border-bottom-color: orange; }
    .input__text:valid + label span {
      color: orange;
      transform: translateY(-30px); }

.input__label {
  position: absolute;
  top: 10px;
  left: 0;
  pointer-events: none;
  font-size: 1.5rem;
  color: white; }
  .input__label span {
    display: inline-block;
    min-width: 5px;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

@media (min-width: 450px) and (max-width: 850px) {
  .contact__contents {
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    perspective: 100rem; }
  .contact__left, .contact__right {
    transform: rotateY(0);
    align-items: center;
    justify-content: center; }
  .contact__info, .contact__form {
    margin: 0;
    box-shadow: 2.5rem 2rem 3rem #aaa; } }

@media (max-width: 449px) {
  .contact {
    width: 100%; }
    .contact__contents {
      padding: 1rem;
      border-radius: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      perspective: 100rem; }
    .contact__left, .contact__right {
      width: 35rem;
      transform: rotateY(0);
      align-items: center;
      justify-content: center; }
    .contact__info, .contact__form {
      margin: 0; } }

/** @format */
.thankyou {
  width: 100%;
  height: 100%;
  color: white;
  background-color: #082032;
  display: flex;
  justify-content: center;
  align-items: center; }
  .thankyou__right {
    padding: 5rem; }
    .thankyou__right--main {
      font-size: 3rem; }
    .thankyou__right--sub {
      font-size: 2rem; }
    .thankyou__right button {
      margin-top: 4rem;
      margin-left: -0.5rem; }
      .thankyou__right button:hover {
        background-color: orange;
        color: white; }
  .thankyou__logo {
    width: 20rem;
    height: 20rem;
    border: 5px solid white;
    border-radius: 50%; }
