.content-width, .header__inner, .footer {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
}

.main-title {
  font-size: 15px;
}
@media screen and (min-width: 600px) {
  .main-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 960px) {
  .main-title {
    font-size: 28px;
  }
}

.sub-title {
  font-size: 10px;
}
@media screen and (min-width: 600px) {
  .sub-title {
    font-size: 11px;
  }
}
@media screen and (min-width: 960px) {
  .sub-title {
    font-size: 14px;
  }
}

.mobile-main-title {
  font-size: 20px;
}

.mobile-sub-title {
  font-size: 14px;
  padding-left: 5px;
}

.flex, .header__nav, .footer__nav, .footer__ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .flex, .header__nav, .footer__nav, .footer__ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.pt-sm {
  padding-top: 10px;
}

.mb-ssm {
  margin-bottom: 5px !important;
}

.mb-sm, .middle-contents__texttop {
  margin-bottom: 12px !important;
}

.mb-lg {
  margin-bottom: 15px !important;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 60px;
  width: 300px;
}
.mobile-menu .logo {
  padding: 0 40px;
  font-size: 38px;
}
.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .mobile-menu__btn {
    display: none;
  }
}
.mobile-menu__btn > span {
  background-color: white;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  transition: transform 0.5s;
}
.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
.mobile-menu__main {
  padding: 0;
  perspective: 2000px;
  transform-style: preserve-3d;
}
.mobile-menu__item {
  list-style: none;
  display: block;
  transform: translate3d(0, 0, -1000px);
  padding: 0 40px;
  transition: transform 0.3s, opacity 0.2s;
  opacity: 0;
}
.mobile-menu__link {
  display: block;
  margin-top: 30px;
  color: white;
  text-decoration: none !important;
}
.mobile-menu__logo {
  padding: 0 40px;
  transform: scale(0.7);
  transition: transform 0.3s, opacity 0.2s;
  opacity: 0;
}

.menu-open #container {
  transform: translate(-300px, 60px);
  box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
}
.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}
.menu-open .mobile-menu__item {
  transform: none;
  opacity: 1;
}
.menu-open .mobile-menu__item:nth-child(1) {
  transition-delay: 0.05s;
}
.menu-open .mobile-menu__item:nth-child(2) {
  transition-delay: 0.1s;
}
.menu-open .mobile-menu__item:nth-child(3) {
  transition-delay: 0.15s;
}
.menu-open .mobile-menu__item:nth-child(4) {
  transition-delay: 0.2s;
}
.menu-open .mobile-menu__item:nth-child(5) {
  transition-delay: 0.25s;
}
.menu-open .mobile-menu__btn > span {
  background-color: white;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(11px) rotate(315deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-11px) rotate(-315deg);
}
.menu-open .mobile-menu__logo {
  transform: none;
  opacity: 1;
}

body {
  background-color: #202124;
}

#global-container {
  height: 100vh;
}

#container {
  position: relative;
  height: 100%;
  z-index: 10;
  transition: transform 0.5s, box-shadow 0.5s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  z-index: 100;
}
.header.triggered {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
  display: none !important;
}
@media screen and (min-width: 600px) {
  .header__nav {
    display: block !important;
  }
}
.header__nav__main {
  display: flex;
  list-style: none;
  align-items: center;
}
.header__nav__item {
  padding: 13px 5px;
}
@media screen and (min-width: 600px) {
  .header__nav__item {
    padding: 13px 7px;
  }
}
@media screen and (min-width: 960px) {
  .header__nav__item {
    padding: 13px 10px;
  }
}
.header__nav__link {
  text-decoration: none;
}
.header__nav__link__text {
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}
.header__nav__link__text:hover {
  color: #904669;
  transform: scale(1.2);
}

.contetns__buttons {
  padding: 15px 0px;
}

.middle-contents {
  padding-top: 100px;
}
.middle-contents__inner {
  display: flex;
  flex-direction: row;
  background: #eaebe6;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .middle-contents__inner {
    display: flex;
    justify-content: space-between;
  }
}
.middle-contents__updatetext {
  flex-basis: 37%;
  color: black;
  width: 300px;
  padding: 15px;
  margin-right: 10px;
}
.middle-contents__img {
  display: flex;
  align-items: center;
  padding: 10px;
  flex-basis: 60%;
  height: 320px;
}
@media screen and (min-width: 600px) {
  .middle-contents__img {
    height: 420px;
  }
}
@media screen and (min-width: 960px) {
  .middle-contents__img {
    height: 460px;
  }
}
.middle-contents__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.middle-contents__texttop {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .middle-contents__texttop {
    align-items: flex-end;
    flex-direction: row;
  }
}

.history-top {
  font-size: 22px;
  color: #904669;
  font-weight: 600;
}

.history-sub {
  font-size: 10px;
  padding: 0 0 0px 19px;
  margin-top: -7px;
}
@media screen and (min-width: 600px) {
  .history-sub {
    padding: 0 0 5px 5px;
    margin-top: unset;
  }
}

.history-date {
  font-size: 15px;
}
@media screen and (min-width: 600px) {
  .history-date {
    font-size: 18px;
  }
}

.history-text {
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .history-text {
    font-size: 15px;
  }
}

.footer {
  background: #904669;
  color: #ececec;
  padding: 40px 0px;
}
.footer__title {
  text-align: center;
  font-size: 24px;
}
@media screen and (min-width: 600px) {
  .footer__title {
    text-align: left;
    font-size: 32px;
    padding-left: 5px;
  }
}
.footer__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.footer__ul {
  list-style: none;
  padding: 0;
}
.footer__li {
  font-size: 14px;
  margin: 5px;
  transition: transform 0.3s;
}
@media screen and (min-width: 600px) {
  .footer__li {
    font-size: 16px;
    margin: 8px;
  }
}
.footer__li:hover {
  transform: scale(1.2);
}
.footer__li > a {
  color: #ececec;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__li > a:hover {
  color: #8AB4F8;
  text-decoration: underline;
}
.footer__copyright {
  font-size: 14px;
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .footer__copyright {
    font-size: 16px;
    padding-right: 5px;
  }
}

hr {
  margin-top: -10px;
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  hr {
    margin-top: -15px;
  }
}/*# sourceMappingURL=style.css.map */