@charset "UTF-8";
:root {
  --bs-black: #171717;
  --bs-white: #fff;
  --bs-gray: gray;
  --bs-primary: #ffe579;
  --bs-secondary: #743f05;
  --bs-third: #e60012;
  --bs-fourth: #F3F3C9;
  --bs-fifth: #E0C9F3;
  --bs-sixth: #C9E7F3;
  --bs-white: #fff;
  --bs-gray: gray;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

*, *:before, *:after {
  box-sizing: border-box;
}

body {
  font-size: 1rem;
  letter-spacing: 0.05em;
  background: white;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

.post-thumbnail {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 576px) {
  .post-thumbnail {
    margin-bottom: 70px;
  }
}

.text-decoration-none {
  text-decoration: none !important;
}

.hover_gray {
  transition: all 0.3s;
  text-decoration: none;
}
.hover_gray:hover {
  text-decoration: none !important;
  color: gray !important;
}

.hover_img__invert {
  transition: all 0.5s;
}
.hover_img__invert:hover {
  filter: invert(70%);
  -webkit-filter: invert(70%);
  -moz-filter: invert(70%);
  -ms-filter: invert(70%);
  -o-filter: invert(70%);
}
.hover_img__zoom {
  transition: all 0.5s;
}
.hover_img__zoom:hover {
  transform: scale(1.2);
}

.line-appear-center, .footer-nav-item a, .header-nav .nav-item a {
  position: relative;
  display: inline-block;
  transition: 0.3s;
}
.line-appear-center::after, .footer-nav-item a::after, .header-nav .nav-item a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 2px;
  background-color: gray;
  transition: 0.3s;
  transform: translateX(-50%);
}
.line-appear-center:hover::after, .footer-nav-item a:hover::after, .header-nav .nav-item a:hover::after {
  width: 100%;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: gray;
}

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

.pc-br {
  display: block;
}
@media (max-width: 767.98px) {
  .pc-br {
    display: none;
  }
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

body.noscroll {
  overflow: hidden;
}

.header {
  position: absolute;
  width: 100%;
  padding: 19px 30px;
  margin: 0 auto;
}
.header-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .header-inner {
    display: block;
  }
}
.header-inner .site-title img {
  width: 50px;
}
.header-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .header-nav {
    position: fixed;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    background-color: rgba(34, 34, 34, 0.95);
    transform: translateX(100%);
    z-index: 200;
    align-items: start;
    padding-top: 150px;
    top: 0;
    right: 0;
  }
  .header-nav.open {
    height: 100vh;
    opacity: 1;
    transform: translateX(0%);
  }
}
.header-nav .nav-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 0;
  margin-left: 0;
}
@media (max-width: 767.98px) {
  .header-nav .nav-list {
    flex-flow: column;
  }
}
.header-nav .nav-item {
  padding-left: 150px;
}
@media (max-width: 767.98px) {
  .header-nav .nav-item {
    display: block;
    width: 100%;
    padding-left: 10px;
    padding-right: 30px;
    padding-bottom: 50px;
  }
}
.header-nav .nav-item a {
  color: white;
  font-size: calc(1.28125rem + 0.375vw);
}
@media (min-width: 1200px) {
  .header-nav .nav-item a {
    font-size: 1.5625rem;
  }
}
.header-nav .nav-item a:hover {
  color: gray;
}
.header .burger-btn {
  display: none;
  top: 38px;
  right: 4vw;
  z-index: 9999;
}
@media (max-width: 767.98px) {
  .header .burger-btn {
    display: block;
    position: fixed;
  }
}
.header .burger-btn .bar {
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 14px;
  background-color: #333;
  transition: backgroud-color 0.3s;
  border-radius: 1px;
  transition: 0.3s;
}
.header .burger-btn.cross .bar_top {
  transform: translateY(15px) rotate(45deg);
  transition: 0.3s;
  background-color: white;
}
.header .burger-btn.cross .bar_middle {
  opacity: 0;
  transition: 0.3s;
}
.header .burger-btn.cross .bar_bottom {
  transform: translateY(-15px) rotate(-45deg);
  transition: 0.3s;
  background-color: white;
}
.header .burger-mask {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.5s;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.header .burger-mask.show {
  display: block;
  opacity: 1;
  transition: 0.5s;
}

.to-top {
  position: fixed;
  overflow: hidden;
  display: block;
  transition: 0.5s;
  width: 100px;
  height: 100px;
  bottom: 10px;
  right: 10px;
  z-index: 100;
  opacity: 0;
}
@media screen and (min-width: 0) {
  .to-top {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 576px) {
  .to-top {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 768px) {
  .to-top {
    width: 70px;
    height: 70px;
  }
}
@media screen and (min-width: 992px) {
  .to-top {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .to-top {
    width: 80px;
    height: 80px;
  }
}
.to-top.show {
  opacity: 1;
}
.to-top img {
  transition: 0.5s;
}

.section-wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-title {
  position: relative;
  width: 40%;
}
@media (max-width: 991.98px) {
  .section-title {
    width: 60%;
  }
}
.section-title img {
  position: relative;
  z-index: 10;
}
.section-title .section-circle {
  position: absolute;
  top: -40px;
  left: -30px;
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffe579;
  z-index: 1;
}

.kv {
  background-image: url("../assets/img/top-backimg.jpg");
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.kv .main-copy {
  margin-left: 10%;
}
@media screen and (min-width: 0) {
  .kv .main-copy {
    width: 80%;
  }
}
@media screen and (min-width: 576px) {
  .kv .main-copy {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .kv .main-copy {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .kv .main-copy {
    width: 30%;
  }
}
@media screen and (min-width: 1200px) {
  .kv .main-copy {
    width: 30%;
  }
}
@media (max-width: 767.98px) {
  .kv .main-copy {
    width: 80%;
  }
}

@media (min-width: 992px) {
  .profile-box .profile-title:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #743f05;
    border-radius: 20px;
    box-shadow: 0px 0px 2px 8px white;
  }

  .profile-box .profile-title:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}
.profile-wrapper {
  display: flex;
  flex-flow: wrap;
  flex-direction: column;
  position: relative;
}
@media (min-width: 992px) {
  .profile-wrapper {
    height: 910px;
  }
}
@media (min-width: 992px) {
  .profile-wrapper:after {
    content: "";
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 100px;
    left: 50%;
    border: 1px solid #743f05;
  }
}
@media (min-width: 992px) {
  .profile-box:nth-child(1) {
    order: 1;
  }
  .profile-box:nth-child(2) {
    order: 3;
  }
  .profile-box:nth-child(3) {
    order: 2;
  }
  .profile-box:nth-child(4) {
    order: 3;
  }
}
.profile-box {
  position: relative;
  display: block;
  margin: 10px auto 10px;
  width: 80%;
  font-family: "Shippori Mincho", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif !important;
  line-height: 1.5;
  letter-spacing: 0.3rem;
}
@media screen and (min-width: 0) {
  .profile-box {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 576px) {
  .profile-box {
    margin-bottom: 75px;
  }
}
@media screen and (min-width: 768px) {
  .profile-box {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 992px) {
  .profile-box {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .profile-box {
    margin-bottom: 10px;
  }
}
.profile-box .profile-title {
  font-family: "Merriweather" !important;
}
@media (max-width: 991.98px) {
  .profile-box:after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translateX(-50%);
    border-top: 50px solid #ffe579;
    border-right: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 50px solid transparent;
  }
  .profile-box:last-child:after {
    content: none;
  }
}
@media (min-width: 992px) {
  .profile-box {
    width: 450px;
    height: 350px;
  }
}
@media screen and (min-width: 0) {
  .profile-box {
    font-size: 1rem;
  }
}
@media screen and (min-width: 576px) {
  .profile-box {
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media screen and (min-width: 576px) and (min-width: 1200px) {
  .profile-box {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .profile-box {
    font-size: calc(1.29125rem + 0.495vw);
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .profile-box {
    font-size: 1.6625rem;
  }
}
@media screen and (min-width: 992px) {
  .profile-box {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .profile-box {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .profile-box {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .profile-box {
    font-size: 1.75rem;
  }
}
.profile-box .color-box {
  position: relative;
  background-color: #ffe579;
  padding: 10px 40px 20px;
}
@media (min-width: 992px) {
  .profile-box .color-box {
    padding: 10px 30px 20px;
  }
}
.profile-box .color-box:after {
  position: absolute;
  top: -15px;
  width: 100%;
  height: 100%;
  content: "";
  border: 4px solid #000;
}
@media (max-width: 991.98px) {
  .profile-box .color-box:after {
    left: 10px;
  }
}
@media screen and (min-width: 0) {
  .profile-box .profile-title {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 576px) {
  .profile-box .profile-title {
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media screen and (min-width: 576px) and (min-width: 1200px) {
  .profile-box .profile-title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .profile-box .profile-title {
    font-size: calc(1.29rem + 0.48vw);
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .profile-box .profile-title {
    font-size: 1.65rem;
  }
}
@media screen and (min-width: 992px) {
  .profile-box .profile-title {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .profile-box .profile-title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .profile-box .profile-title {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .profile-box .profile-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .profile-box:nth-child(even) {
    margin-left: 45px;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .profile-box:nth-child(even) {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .profile-box:nth-child(even) .profile-title:before {
    z-index: 2;
    right: 484px;
  }
  .profile-box:nth-child(even) .profile-title:after {
    border-right: 10px solid #ffe579;
    right: 100%;
  }
}
@media (min-width: 992px) {
  .profile-box:nth-child(even) .color-box:after {
    right: -15px;
  }
}
@media (min-width: 992px) {
  .profile-box:nth-child(odd) {
    margin-right: 45px;
    margin-bottom: 90px;
  }
  .profile-box:nth-child(odd) .profile-title:before {
    z-index: 2;
    left: 486px;
  }
  .profile-box:nth-child(odd) .profile-title:after {
    border-left: 10px solid #ffe579;
    left: 100%;
  }
  .profile-box:nth-child(odd) .color-box:after {
    left: -15px;
  }
}
@media (min-width: 992px) {
  .profile-box:nth-child(2) {
    margin-top: 180px;
  }
}

.skill-spacer {
  padding-right: 10%;
}
.skill-bg {
  background-image: url("../assets/img/skill-backimg.jpg");
  width: 100%;
}
.skill-box {
  margin-top: 25px;
  margin-left: 10%;
  padding: 25px;
  background: rgba(255, 255, 255, 0.5);
  font-family: "Shippori Mincho", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif !important;
}
@media screen and (min-width: 0) {
  .skill-box {
    font-size: 1rem;
  }
}
@media screen and (min-width: 576px) {
  .skill-box {
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media screen and (min-width: 576px) and (min-width: 1200px) {
  .skill-box {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .skill-box {
    font-size: calc(1.29125rem + 0.495vw);
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .skill-box {
    font-size: 1.6625rem;
  }
}
@media screen and (min-width: 992px) {
  .skill-box {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .skill-box {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .skill-box {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .skill-box {
    font-size: 1.75rem;
  }
}
.skill-list {
  margin-left: 0;
  padding-left: 0;
}
.skill-item {
  background-image: url("../assets/img/checkmark.svg");
  background-position: left top;
  background-repeat: no-repeat;
  line-height: 1.4;
  padding-left: 50px;
}
@media screen and (min-width: 0) {
  .skill-item {
    background-size: 1rem;
  }
}
@media screen and (min-width: 576px) {
  .skill-item {
    background-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .skill-item {
    background-size: 1.6625rem;
  }
}
@media screen and (min-width: 992px) {
  .skill-item {
    background-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .skill-item {
    background-size: 1.75rem;
  }
}
@media (max-width: 767.98px) {
  .skill-item {
    padding-left: 30px;
  }
}

.swiper {
  width: 80%;
}
@media (max-width: 991.98px) {
  .swiper {
    width: 100%;
  }
}
@media screen and (min-width: 0) {
  .swiper {
    height: 900px;
  }
}
@media screen and (min-width: 576px) {
  .swiper {
    height: 1050px;
  }
}
@media screen and (min-width: 768px) {
  .swiper {
    height: 1110px;
  }
}
@media screen and (min-width: 992px) {
  .swiper {
    height: 1100px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper {
    height: 1100px;
  }
}
.swiper .swiper-button-prev, .swiper .swiper-button-next {
  background-color: #ffe579;
  border-radius: 100%;
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 0) {
  .swiper .swiper-button-prev, .swiper .swiper-button-next {
    top: 200px;
  }
}
@media screen and (min-width: 576px) {
  .swiper .swiper-button-prev, .swiper .swiper-button-next {
    top: 200px;
  }
}
@media screen and (min-width: 768px) {
  .swiper .swiper-button-prev, .swiper .swiper-button-next {
    top: 150px;
  }
}
@media screen and (min-width: 992px) {
  .swiper .swiper-button-prev, .swiper .swiper-button-next {
    top: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper .swiper-button-prev, .swiper .swiper-button-next {
    top: 300px;
  }
}
@media (max-width: 767.98px) {
  .swiper .swiper-button-prev, .swiper .swiper-button-next {
    width: 40px;
    height: 40px;
    top: 100px;
  }
}
.swiper .swiper-button-prev:after, .swiper .swiper-button-next:after {
  color: white;
}
.swiper .swiper-slide a {
  display: block;
  text-align: center;
}
.swiper .swiper-slide img {
  width: 60%;
}

.achivement-table {
  margin-top: 50px;
}
.achivement-item {
  display: flex;
  align-items: center;
  background: #f1f0f0;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}
@media (max-width: 767.98px) {
  .achivement-item {
    flex-flow: column;
  }
}
.achivement-heading, .achivement-text {
  margin: 0;
}
.achivement-heading {
  padding: 30px;
  position: relative;
  color: white;
  text-align: justify;
  flex: 0 0 200px;
  background-color: #004f5b;
}
@media (max-width: 767.98px) {
  .achivement-heading {
    flex: 1 1 auto;
    width: 100%;
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .achivement-heading:after {
    position: absolute;
    top: 0;
    right: -50px;
    content: "";
    width: 50px;
    height: 100%;
    clip-path: polygon(-2% 0, 0 0, 50% 50%, 0 100%, -2% 100%);
    background-color: #004f5b;
  }
}
.achivement-text, .achivement-period {
  padding-left: 50px;
}
@media (max-width: 767.98px) {
  .achivement-text, .achivement-period {
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 30px;
    width: 100%;
  }
}
.achivement-period {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.achivement-period dt {
  display: block;
  width: 50%;
  font-weight: normal;
}
.achivement-period dd {
  margin: 0;
}

.footer-wrapper {
  background-color: #ffe579;
  padding: 100px 0;
}
.footer-list {
  display: flex;
  justify-content: center;
  margin-left: 0;
  padding-left: 0;
  padding-bottom: 100px;
}
.footer-nav-item {
  margin-left: 50px;
}
.footer-nav-item:first-child {
  margin-left: 0px;
}
.footer-nav-item a {
  color: white;
}
.footer-nav-item a:hover {
  color: gray;
}

.copy-right {
  text-align: center;
  color: white;
}
@media screen and (min-width: 0) {
  .copy-right {
    font-size: 1rem;
  }
}
@media screen and (min-width: 576px) {
  .copy-right {
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media screen and (min-width: 576px) and (min-width: 1200px) {
  .copy-right {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .copy-right {
    font-size: calc(1.29125rem + 0.495vw);
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .copy-right {
    font-size: 1.6625rem;
  }
}
@media screen and (min-width: 992px) {
  .copy-right {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .copy-right {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .copy-right {
    font-size: calc(1.3rem + 0.6vw);
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .copy-right {
    font-size: 1.75rem;
  }
}
.fade-in {
  opacity: 0;
  transition: all 0.8s;
}
.fade-in.show {
  opacity: 1;
  transform: translateX(0) !important;
}
.fade-in.fade-right {
  transform: translateX(50px);
}
.fade-in.fade-left {
  transform: translateX(-50px);
}

/*# sourceMappingURL=style.css.map */
