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

html {
  font-size: 62.5%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  body {
    font-size: 1.6rem;
  }
}

body > main {
  flex: 1;
}

a {
  text-decoration: none;
}

main > div:first-child {
  position: relative;
  z-index: 1;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.subtitle {
  margin: 2rem 0;
}

.heading {
  text-align: center;
}
.heading .title {
  margin: 2.8rem 0;
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
@keyframes in {
  0% {
    transform: scale(0) rotate(12deg);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes out {
  0% {
    transform: scale(1) rotate(0);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: scale(0) rotate(-12deg);
    opacity: 0;
    visibility: hidden;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0.8rem 2rem;
  line-height: 1;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn i {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--blue {
  color: #057cb6;
}
.btn--blue:hover {
  color: #057cb6;
}
.btn--bg-blue {
  background-color: #057cb6;
}
.btn--bg-blue:hover {
  background-color: #03496c;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--bg-orange {
  background-color: #ec5c42;
}
.btn--bg-orange:hover {
  background-color: #cd3115;
}
.btn--bg-gray {
  background-color: #666666;
}
.btn--bg-gray:hover {
  background-color: #404040;
}
.btn--bg-green {
  background-color: #25d366;
}
.btn--bg-green:hover {
  background-color: #1a9247;
}

.icon {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.4rem;
  border: 1px solid #fff;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

input:not([type=file], [type=submit]),
textarea {
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: 1px solid #d4d4d4;
}
input:not([type=file], [type=submit])::placeholder,
textarea::placeholder {
  color: #000;
}

label {
  color: #000;
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.about-item {
  padding: 2.8rem;
  border: 1px solid #dcdcdc;
  border-bottom: 10px solid #057cb6;
  transition: all 0.2s ease-in;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.about-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 10px solid #2ab8dc;
}
.about-item__icon img {
  max-width: 100%;
}
.about-item__title {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
}
.about-item__text {
  text-align: center;
}
.news-item {
  transition: all 0.2s ease-in;
  margin: 1rem 0;
  height: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
}
.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}
.news-item__image {
  aspect-ratio: 1/1;
  position: relative;
}
.news-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item__content {
  padding: 2rem;
  background-color: #f2f2f2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.news-item__title {
  font-weight: 700;
}

.timeline {
  width: 100%;
  position: relative;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 460px) {
  .timeline {
    padding-left: 1.5rem;
  }
}
.timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #7f7f7f;
  transform: translate(-50%);
}
@media (max-width: 460px) {
  .timeline-track {
    left: 1.5rem;
  }
}
.timeline-item {
  position: relative;
  padding: 0 4rem;
  width: 50%;
}
.timeline-item--left {
  text-align: right;
}
.timeline-item--left::before {
  right: 0;
  transform: translate(50%);
}
.timeline-item--left::after {
  right: 0;
}
.timeline-item--right {
  align-self: flex-end;
}
.timeline-item--right::before {
  left: 0;
  transform: translate(-50%);
}
.timeline-item--right::after {
  left: 0;
  top: 1.5rem;
  transform: translateY(-50%);
}
@media (max-width: 460px) {
  .timeline-item--right {
    align-self: flex-start;
    width: 100%;
  }
  .timeline-item--left {
    text-align: left;
    width: 100%;
  }
  .timeline-item--left::before {
    left: 0;
    transform: translate(-50%);
  }
  .timeline-item--left::after {
    left: 0;
    top: 1.5rem;
    transform: translateY(-50%);
  }
}
.timeline-item__image {
  position: relative;
  z-index: 1;
}
.timeline-item__image img {
  width: 16rem;
  height: auto;
}
.timeline-item__name {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 1rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #057cb6;
  top: 0;
}
.timeline-item::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 2px;
  border-radius: 50%;
  background-color: #057cb6;
  top: 1.5rem;
  transform: translateY(-50%);
}

.footer {
  background-color: #057cb6;
  margin-top: 6rem;
}
.footer-main {
  padding: 2rem 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.footer-main__item a {
  color: #fff;
}
.footer-main__item a:hover {
  text-decoration: underline;
}
.footer-main__item.flex-1 {
  flex: 1;
}
.footer-main__item.text-right {
  text-align: right;
}
.footer-main__back-to-top {
  border: none;
  background-color: #2ab8dc;
  color: #fff;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-main__back-to-top:hover {
  background-color: #1e97b5;
}
.footer-copyright {
  background-color: #2ab8dc;
  color: #fff;
  text-align: center;
}
.footer-copyright a {
  color: #fff;
}
.footer-copyright a:hover {
  text-decoration: underline;
}

.header {
  position: relative;
  z-index: 2;
}
.header-contact {
  background-color: #057cb6;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
  border-bottom: 4px solid #2ab8dc;
}
@media (max-width: 991px) {
  .header-contact {
    height: auto;
  }
}
.header-contact__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
  padding: 0.4rem 0;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .header-contact__content {
    justify-content: center;
  }
}
.header-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
}
@media (max-width: 575px) {
  .header-contact__item span {
    display: none;
  }
}
.header-contact__item a {
  color: #fff;
  text-decoration: underline;
}
.header-contact__item:hover .header-contact__icon {
  background-color: #057cb6;
  color: #fff;
}
.header-contact__icon {
  background-color: #fff;
  color: #057cb6;
  border: 1px solid #fff;
  transition: all 0.2s;
}
.header-contact__social .icon {
  background-color: #f5f5f5;
  color: #3c3c3c;
  border: 1px solid #3c3c3c;
  transition: all 0.2s;
}
.header-contact__social .icon:hover {
  background-color: #3c3c3c;
  color: #f5f5f5;
  border: 1px solid #3c3c3c;
}
.header-main {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
.header-main > .container {
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}
@media (max-width: 991px) {
  .header-main > .container {
    padding: 0;
  }
}
.header-logo {
  position: relative;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .header-logo {
    flex: 1;
    padding: 2rem;
    justify-content: space-between;
  }
}
.header-logo img {
  margin: auto;
  display: block;
  padding: 2rem 0;
  max-width: 100%;
  transition: all 0.2s;
  width: 40rem;
}
.header .header-restricted-area-button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .header .header-restricted-area-button {
    position: relative;
    top: 0;
    transform: translate(0);
  }
}
.header-menu {
  background-color: #005a99;
}
@media (max-width: 991px) {
  .header-nav {
    position: absolute;
    background-color: #005a99;
    top: 100%;
    left: 0;
    width: 100%;
    transition: all 0.5s ease-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    z-index: -1;
  }
}
@media (max-width: 991px) {
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.header-nav__list li {
  text-align: center;
}
@media (max-width: 991px) {
  .header-nav__list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
}
.header-nav__list li a {
  width: 100%;
  display: inline-block;
  position: relative;
  color: #000;
  font-size: 1.6rem;
  padding: 1.2rem 0.4rem;
  transition: all 0.2s;
  font-weight: 400;
}
@media (max-width: 991px) {
  .header-nav__list li a {
    width: 100%;
    padding: 1rem 0;
    color: #fff;
  }
}
.header-nav__list li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #2ab8dc;
  transition: all 0.2s;
}
.header-nav__list li a:hover::before {
  height: 4px;
  left: 0;
}
.header-nav__list li.current-menu-item a {
  font-weight: 700;
}
.header-nav__list li.current-menu-item a::before {
  height: 4px;
  left: 0;
}
.header-nav__btn {
  position: relative;
  left: 0;
  color: #000;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  width: max-content;
  display: none;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
  }
}
.header-nav__btn > span {
  text-transform: uppercase;
  transition: all 0.2s;
}
.header-nav__icon {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.6rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #000;
  border-radius: 5px;
  transition: all 0.1s;
}
.header-nav__icon-bar--1 {
  top: 8px;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav__icon-bar--3 {
  bottom: 8px;
}
.header-nav__icon.opened + span {
  font-size: 1.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar {
  height: 0.2rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb-item {
  line-height: 1;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #616161;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f054" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #898989;
  font-size: 1.2rem;
  position: relative;
  top: 2px;
}

.gallery {
  background-color: #f2f2f2;
  padding: 3.2rem;
  border-top: 4rem solid #057cb6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery-item img {
  aspect-ratio: 1/1;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery-item.show {
  -webkit-animation: in 700ms ease both;
  animation: in 700ms ease both;
}
.gallery-more {
  margin-top: 4rem;
}
.gallery-more__btn {
  display: block;
  margin: auto;
  border: none;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #057cb6;
  color: #fff;
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-more__btn:hover {
  background-color: ligthen(#057cb6, 10%);
}

#loginform {
  width: 80rem;
  max-width: 100%;
}
#loginform .login-remember label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1;
  margin: 2rem 0;
}
#loginform .login-remember label input {
  width: max-content;
}
#loginform #wp-submit {
  background-color: #057cb6;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  transition: all 0.2s ease-in;
}
#loginform #wp-submit:hover {
  background-color: #045a84;
}

.home-about {
  padding: 6rem 0;
}
.home-store {
  margin: 6rem 0;
  padding: 4rem 0 2rem 0;
  position: relative;
  background-color: #f2f2f2;
  transform-style: preserve-3d;
  z-index: 1;
}
.home-store::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 6rem);
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateZ(-1px);
  background: linear-gradient(to right, #057cb6 55%, #f2f2f2 55%);
}
.home-store__image img {
  width: 100%;
}
.home-store__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.home-store__text h2 {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
}
.home-banner {
  padding: 6rem 0;
}
.home-banner img {
  width: 100%;
}
.home-news__carousel.owl-carousel .owl-nav .owl-prev,
.home-news__carousel.owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.8rem;
  color: #bebdbd;
}
.home-news__carousel.owl-carousel .owl-nav .owl-prev {
  left: -4rem;
}
.home-news__carousel.owl-carousel .owl-nav .owl-next {
  right: -4rem;
}
@media (max-width: 1199px) {
  .home-news__carousel.owl-carousel .owl-nav .owl-prev {
    left: 0rem;
  }
  .home-news__carousel.owl-carousel .owl-nav .owl-next {
    right: 0rem;
  }
}
.home-news__carousel.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.history-thumb {
  margin-bottom: 4rem;
}
.history-thumb img {
  width: 100%;
  height: 100%;
}
.history-text h2,
.history-text h3,
.history-text h4,
.history-text h5,
.history-text h6 {
  font-weight: bold;
}

.philantropy-thumb {
  margin-bottom: 4rem;
}
.philantropy-thumb img {
  width: 100%;
  height: auto;
}
.philantropy-text {
  margin-bottom: 8rem;
}
.philantropy-text h2,
.philantropy-text h3,
.philantropy-text h4,
.philantropy-text h5,
.philantropy-text h6 {
  font-weight: bold;
}
.philantropy .single-thumb {
  float: right;
  max-width: 40%;
  padding: 0 0 2rem 2rem;
  width: 40rem;
  height: auto;
}

.fraternity-thumb {
  margin-bottom: 4rem;
}
.fraternity-thumb img {
  width: 100%;
  height: auto;
}
.fraternity-text {
  margin-bottom: 8rem;
}
.fraternity-text h2,
.fraternity-text h3,
.fraternity-text h4,
.fraternity-text h5,
.fraternity-text h6 {
  font-weight: bold;
}

.events-thumb {
  margin-bottom: 4rem;
}
.events-thumb img {
  width: 100%;
}
.events-text {
  margin-bottom: 8rem;
}
.events-list {
  background-color: #f2f2f2;
}
.events-list__search {
  padding: 2rem 0.8rem;
  display: flex;
  align-items: center;
}
.events-list__search input {
  flex: 1;
  padding: 1.2rem 0.8rem;
  border: none;
  background-color: #fff;
  font-size: 1.4rem;
}
.events-list__search input::placeholder {
  color: #c9c9c9;
}
.events-list__search button {
  border: 0;
  align-self: stretch;
  font-size: 2rem;
  padding: 0.4rem 1.2rem;
  background-color: #057cb6;
  color: #fff;
  transition: all 0.2s;
}
.events-list__search button:hover {
  background-color: ligthen(#057cb6, 10%);
}
.events-list ul {
  list-style: none;
  padding: 0;
  width: 100%;
}
.events-list ul li {
  display: block;
  padding: 2rem 2rem 0.8rem 2rem;
}
.events-list ul li:not(:last-child) {
  border-bottom: 1px solid #bebebe;
}
.events-list ul li a {
  color: #000;
  transition: all 0.2s;
}
.events-list ul li a:hover {
  color: #2ab8dc;
}
.events-list ul li.show {
  -webkit-animation: in 700ms ease both;
  animation: in 700ms ease both;
}
.events-list ul li.hide {
  -webkit-animation: out 700ms ease both;
  animation: out 700ms ease both;
  display: none;
}
.events-list ul li.active a {
  color: #2ab8dc;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.events-item {
  transition: all 0.2s ease-in;
  display: flex;
  flex-direction: column;
}
.events-item__image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: all 0.2s;
  height: auto;
}
.events-item__name {
  width: 100%;
  padding: 1.2rem 1.6rem;
  background-color: #057cb6;
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.events-item:hover img {
  filter: brightness(1.3);
}
.events-item.show {
  -webkit-animation: in 700ms ease both;
  animation: in 700ms ease both;
}
.events-item.hide {
  -webkit-animation: out 700ms ease both;
  animation: out 700ms ease both;
  display: none;
}

.news-subtitle {
  margin: 2.4rem 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.single-news-thumb {
  margin-bottom: 4rem;
}
.single-news-thumb img {
  width: 100%;
  height: auto;
}
.single-news-text {
  margin-bottom: 8rem;
}

.restricted-area-list {
  background-color: #f2f2f2;
}
.restricted-area-list__search {
  padding: 2rem 0.8rem;
  display: flex;
  align-items: center;
}
.restricted-area-list__search input {
  flex: 1;
  padding: 1.2rem 0.8rem;
  border: none;
  background-color: #fff;
  font-size: 1.4rem;
}
.restricted-area-list__search input::placeholder {
  color: #c9c9c9;
}
.restricted-area-list__search button {
  border: 0;
  align-self: stretch;
  font-size: 2rem;
  padding: 0.4rem 1.2rem;
  background-color: #057cb6;
  color: #fff;
  transition: all 0.2s;
}
.restricted-area-list__search button:hover {
  background-color: ligthen(#057cb6, 10%);
}
.restricted-area-list ul {
  list-style: none;
  padding: 0;
  width: 100%;
}
.restricted-area-list ul li {
  display: block;
  padding: 2rem 2rem 0.8rem 2rem;
}
.restricted-area-list ul li:not(:last-child) {
  border-bottom: 1px solid #bebebe;
}
.restricted-area-list ul li a {
  color: #000;
  transition: all 0.2s;
}
.restricted-area-list ul li a:hover {
  color: #2ab8dc;
}
.restricted-area-list ul li.active a {
  color: #2ab8dc;
}
.restricted-area-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.6rem;
  row-gap: 3.2rem;
}
@media (max-width: 767px) {
  .restricted-area-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.restricted-area-item {
  transition: all 0.1s;
  display: flex;
  flex-direction: column;
}
.restricted-area-item__image {
  aspect-ratio: 1/1;
  border: 1px solid #cccccc;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.restricted-area-item__image img {
  width: 6rem;
  max-width: 100%;
  height: auto;
}
.restricted-area-item__image i {
  font-size: 6rem;
  color: #057cb6;
}
.restricted-area-item__name {
  font-size: 1.6rem;
  text-align: center;
  background-color: #ededed;
  color: #1b1c1e;
  padding: 1.2rem 1.6rem;
  margin-bottom: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.restricted-area-item:hover {
  background-color: rgba(55, 55, 55, 0.05);
}
.restricted-area-item.show {
  -webkit-animation: in 700ms ease both;
  animation: in 700ms ease both;
}
.restricted-area-item.hide {
  -webkit-animation: out 700ms ease both;
  animation: out 700ms ease both;
  display: none;
}

.page-404 {
  background-color: #fff;
}
.page-404-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.page-404-main h1 {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 2rem;
}
.page-404-main h1 span {
  font-size: 8rem;
  display: block;
}
.page-404-main p {
  margin-bottom: 3.2rem;
}

.container {
  max-width: 1170px;
}

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