* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.d-xs-block {
  display: block !important;
}

.d-xs-inline {
  display: inline !important;
}

.d-xs-inline-block {
  display: inline-block !important;
}

.d-xs-flex {
  display: flex !important;
}

.d-xs-inline-flex {
  display: inline-flex !important;
}

.d-xs-grid {
  display: grid !important;
}

.d-xs-inline-grid {
  display: inline-grid !important;
}

.d-xs-table {
  display: table !important;
}

.d-xs-none {
  display: none !important;
}

@media (min-width: 480px) {
  .d-sm-block {
    display: block !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-inline-grid {
    display: inline-grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-inline-grid {
    display: inline-grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .d-lg-block {
    display: block !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-inline-grid {
    display: inline-grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1440px) {
  .d-xl-block {
    display: block !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-inline-grid {
    display: inline-grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-none {
    display: none !important;
  }
}
@use "../variables" as *;
@use "sass:color";
.articles-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1440px) {
  .articles-list {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }
}
@media (max-width: 1024px) {
  .articles-list {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}
@media (max-width: 768px) {
  .articles-list {
    grid-template-columns: 1fr;
  }
}
.articles-list-container-title {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  font-weight: 100;
}
.articles-list a {
  text-decoration: none;
  color: inherit;
}
.articles-list a:hover {
  text-decoration: none;
}
.articles-list .article-item {
  position: relative;
  background-color: #ebebeb;
  border: 1px solid #ddd;
  color: #333;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
  height: 100%;
}
.articles-list .article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.articles-list .article-item-category {
  position: absolute;
  font-family: filson-pro, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  top: 0px;
  left: 0px;
  background-color: #fff;
  color: #222;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 15px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: inset -2px -2px 3px rgba(0, 0, 0, 0.5);
}
.articles-list .article-item-thumb {
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.articles-list .article-item-content {
  padding: 0.5rem 1rem;
}
.articles-list .article-item-content-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}
.articles-list .article-item-content-date {
  font-size: 0.9rem;
  color: #808080;
}
.articles-list .article-item-content-tags {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}
.articles-list .article-item-content-tags .article-item-content-tag {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #222;
  font-weight: 200;
  padding: 3px 8px;
  font-size: 0.75rem;
  border-radius: 4px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.articles-not-found {
  text-align: center;
  padding: 2rem;
  color: #808080;
}
.articles-not-found p {
  margin-top: 1rem;
  font-size: 1.2rem;
}
.articles-not-found .no-content {
  display: block;
  max-width: 128px;
  margin: 0 auto;
  opacity: 0.4;
}

.article-header {
  margin-bottom: 1rem;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.article-tags .article-tag {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #222;
  font-weight: 200;
  padding: 3px 8px;
  font-size: 0.75rem;
  border-radius: 4px;
  margin: 0;
}
.article .section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}
.article .section-title small {
  display: block;
  font-size: 0.8rem;
  font-weight: 100;
  color: #808080;
}
.article .section-title-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #808080;
  border-top: 1px solid #ddd;
  padding-top: 0.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.article .section-content {
  line-height: 1.6;
  color: #333;
}
.article .section-content p {
  margin-bottom: 1rem;
}
.article .section-content a {
  color: #007bff;
}
.article .section-content a:hover {
  text-decoration: underline;
}
.article .section-content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 4px;
}

@use "../variables" as *;
.nav-pagination {
  display: block;
  padding: 0.3125rem;
  margin: 2rem auto;
  text-align: center;
}
.nav-pagination .pages {
  display: inline-flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
  align-items: stretch;
}
.nav-pagination .pages .page-nav {
  margin: 0 0.25rem;
  display: flex;
  align-items: center;
}
.nav-pagination .pages .page-nav a,
.nav-pagination .pages .page-nav .page_number {
  display: block;
  padding: 0.4rem 1rem;
  color: #333;
  text-decoration: none;
  border-radius: 50%;
}
.nav-pagination .pages .page-nav.current a,
.nav-pagination .pages .page-nav.current .page_number {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}
.nav-pagination .pages .page-nav:not(:first-child):not(:last-child):not(.current) a,
.nav-pagination .pages .page-nav:not(:first-child):not(:last-child):not(.current) .page_number {
  border: 1px solid #ddd;
}
.nav-pagination .pages .page-nav:not(:first-child):not(:last-child):not(.current) a:hover,
.nav-pagination .pages .page-nav:not(:first-child):not(:last-child):not(.current) .page_number:hover {
  background-color: #808080;
  border-color: #ddd;
}
.nav-pagination .pages .page-nav:first-child a,
.nav-pagination .pages .page-nav:first-child .page_number,
.nav-pagination .pages .page-nav:first-child .previous,
.nav-pagination .pages .page-nav:first-child .next, .nav-pagination .pages .page-nav:last-child a,
.nav-pagination .pages .page-nav:last-child .page_number,
.nav-pagination .pages .page-nav:last-child .previous,
.nav-pagination .pages .page-nav:last-child .next {
  font-size: 0rem;
  width: 0;
  padding: 0.4rem 1rem;
  border-width: 0;
  position: relative;
}
.nav-pagination .pages .page-nav:first-child a::before,
.nav-pagination .pages .page-nav:first-child .page_number::before,
.nav-pagination .pages .page-nav:first-child .previous::before,
.nav-pagination .pages .page-nav:first-child .next::before, .nav-pagination .pages .page-nav:last-child a::before,
.nav-pagination .pages .page-nav:last-child .page_number::before,
.nav-pagination .pages .page-nav:last-child .previous::before,
.nav-pagination .pages .page-nav:last-child .next::before {
  content: '\276E';
  /* Left arrow */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #333;
}
.nav-pagination .pages .page-nav:last-child a::before,
.nav-pagination .pages .page-nav:last-child .page_number::before,
.nav-pagination .pages .page-nav:last-child .next::before {
  content: '\276F';
}

body {
  font-family: filson-pro, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: white;
  padding: 0 15px;
  font-size: clamp(0.875rem, calc(0.6rem + 0.7vw), 1.125rem);
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}
body * {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

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

a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ddd;
}

h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #222;
}

h2 {
  font-size: clamp(1.25rem, calc(1.05rem + 0.6vw), 1.6rem);
}

h3 {
  font-size: clamp(1.05rem, calc(0.95rem + 0.4vw), 1.3rem);
}

ul,
ol {
  margin-left: 20px;
  margin-bottom: 10px;
}

li {
  margin-bottom: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: clamp(0.9rem, calc(0.8rem + 0.2vw), 1rem);
}
table th,
table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
table th {
  background-color: #007bff;
  color: white;
}

main {
  margin-top: 20vh;
  animation: show 2s ease-in-out 0s 1 normal forwards;
}
@media (min-width: 1024px) {
  main {
    margin-top: 18vh;
  }
}

.main-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}

.header-background {
  padding: 0;
  margin: 0 -15px;
  background-color: #1a1a1a;
}
.header-background img {
  width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  padding: 10px 15px;
  margin-bottom: 20px;
  font-size: clamp(0.85rem, calc(0.75rem + 0.2vw), 0.95rem);
  color: transparent;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  animation: rotation 2s ease-in-out 0s 1 normal forwards;
}
.btn.inline {
  display: inline;
  max-width: 32px;
  padding: 0;
  font-size: 0;
}
.btn.inline img {
  width: 32px;
  height: 32px;
}
.btn.hide {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

#pt,
#en {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  animation: show 1s ease-in-out 0s 1 normal forwards;
}

.hide {
  display: none;
}

.header-title {
  text-align: center;
  margin-bottom: 20px;
}
.header-title h1 {
  font-size: clamp(1.6rem, calc(1.2rem + 1.2vw), 2.4rem);
  color: #333;
}
.header-title h1.uppercase {
  text-transform: uppercase;
}
.header-title h1 small {
  display: block;
  font-size: clamp(0.7rem, calc(0.55rem + 0.4vw), 0.9rem);
  color: #808080;
}

.header-container {
  background-color: #fff;
  color: #333;
  padding: 0 15px;
  width: calc(100vw - 15px);
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .header-container {
    width: calc(100% - 90px);
  }
}
.header-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1024px) {
  .header-navigation {
    justify-content: center;
  }
}
.header-navigation .btn {
  margin: 0;
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navigation-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.9375rem;
}
.navigation-bar .menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 25px;
  height: 25px;
  animation: show 2s ease-in-out 0s 1 normal forwards;
}
@media (min-width: 1024px) {
  .navigation-bar .menu-toggle {
    display: none;
  }
}
.navigation-bar .menu-toggle .bar {
  display: block;
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  left: 0;
}
.navigation-bar .menu-toggle .bar:nth-child(1) {
  top: 0;
}
.navigation-bar .menu-toggle .bar:nth-child(2) {
  top: 11px;
}
.navigation-bar .menu-toggle .bar:nth-child(3) {
  top: 22px;
}
.navigation-bar .menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.navigation-bar .menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.navigation-bar .menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}
.navigation-bar .menu-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .navigation-bar .menu-nav {
    display: flex;
    flex-direction: row;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
  }
}
.navigation-bar .menu-nav.active {
  display: block;
  position: absolute;
  top: 12vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  padding: 15px 0;
  z-index: 1000;
}
.navigation-bar .menu-nav .nav-item {
  color: #333;
  padding: 0;
  font-size: clamp(1rem, calc(0.8rem + 0.4vw), 1.2rem);
  text-decoration: none;
}
.navigation-bar .menu-nav .nav-item a {
  display: block;
  padding: 10px 15px;
  color: inherit;
  text-decoration: none;
  font-weight: 200;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.navigation-bar .menu-nav .nav-item a:hover {
  color: #222;
  font-weight: 800;
}
.navigation-bar .action-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon {
  width: 20px;
  height: 20px;
}

.about,
.experience,
.expertise,
.stack,
.interests,
.projects,
.skills,
.contact,
.education,
.blog {
  font-size: 16px;
  font-weight: 200;
  margin: 2.25rem 0;
  border: 1px solid #1a1a1a;
  background-color: #1a1a1a;
  border-radius: 20px;
  overflow: auto;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}
.about .wrapped,
.experience .wrapped,
.expertise .wrapped,
.stack .wrapped,
.interests .wrapped,
.projects .wrapped,
.skills .wrapped,
.contact .wrapped,
.education .wrapped,
.blog .wrapped {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.about .section-title,
.experience .section-title,
.expertise .section-title,
.stack .section-title,
.interests .section-title,
.projects .section-title,
.skills .section-title,
.contact .section-title,
.education .section-title,
.blog .section-title {
  display: block;
  font-size: 18px;
  white-space: nowrap;
  color: #fff;
  text-transform: uppercase;
  margin: 4px;
}
.about .section-title::before,
.experience .section-title::before,
.expertise .section-title::before,
.stack .section-title::before,
.interests .section-title::before,
.projects .section-title::before,
.skills .section-title::before,
.contact .section-title::before,
.education .section-title::before,
.blog .section-title::before {
  content: "::";
  display: inline-block;
  width: auto;
  height: 1px;
  margin: 0 0.5rem 0.5rem;
}
.about .section-content,
.experience .section-content,
.expertise .section-content,
.stack .section-content,
.interests .section-content,
.projects .section-content,
.skills .section-content,
.contact .section-content,
.education .section-content,
.blog .section-content {
  padding: 1.3125rem;
  background-color: #fff;
  height: 100%;
  color: #333;
}
@media (min-width: 768px) {
  .about .section-content,
  .experience .section-content,
  .expertise .section-content,
  .stack .section-content,
  .interests .section-content,
  .projects .section-content,
  .skills .section-content,
  .contact .section-content,
  .education .section-content,
  .blog .section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.about .section-content .profile-avatar,
.experience .section-content .profile-avatar,
.expertise .section-content .profile-avatar,
.stack .section-content .profile-avatar,
.interests .section-content .profile-avatar,
.projects .section-content .profile-avatar,
.skills .section-content .profile-avatar,
.contact .section-content .profile-avatar,
.education .section-content .profile-avatar,
.blog .section-content .profile-avatar {
  display: block;
  margin: 0 auto;
}
.about .section-content .profile-avatar.rounded img,
.experience .section-content .profile-avatar.rounded img,
.expertise .section-content .profile-avatar.rounded img,
.stack .section-content .profile-avatar.rounded img,
.interests .section-content .profile-avatar.rounded img,
.projects .section-content .profile-avatar.rounded img,
.skills .section-content .profile-avatar.rounded img,
.contact .section-content .profile-avatar.rounded img,
.education .section-content .profile-avatar.rounded img,
.blog .section-content .profile-avatar.rounded img {
  border-radius: 50%;
}
@media (min-width: 768px) {
  .about .section-content .profile-avatar,
  .experience .section-content .profile-avatar,
  .expertise .section-content .profile-avatar,
  .stack .section-content .profile-avatar,
  .interests .section-content .profile-avatar,
  .projects .section-content .profile-avatar,
  .skills .section-content .profile-avatar,
  .contact .section-content .profile-avatar,
  .education .section-content .profile-avatar,
  .blog .section-content .profile-avatar {
    flex: 1 0 15%;
    margin-right: 1.5rem;
  }
  .about .section-content .profile-avatar img,
  .experience .section-content .profile-avatar img,
  .expertise .section-content .profile-avatar img,
  .stack .section-content .profile-avatar img,
  .interests .section-content .profile-avatar img,
  .projects .section-content .profile-avatar img,
  .skills .section-content .profile-avatar img,
  .contact .section-content .profile-avatar img,
  .education .section-content .profile-avatar img,
  .blog .section-content .profile-avatar img {
    width: 150px;
    height: 150px;
    object-fit: cover;
  }
  .about .section-content .profile-avatar .avatar,
  .experience .section-content .profile-avatar .avatar,
  .expertise .section-content .profile-avatar .avatar,
  .stack .section-content .profile-avatar .avatar,
  .interests .section-content .profile-avatar .avatar,
  .projects .section-content .profile-avatar .avatar,
  .skills .section-content .profile-avatar .avatar,
  .contact .section-content .profile-avatar .avatar,
  .education .section-content .profile-avatar .avatar,
  .blog .section-content .profile-avatar .avatar {
    margin: 0 auto;
  }
}
.about .section-content ul,
.experience .section-content ul,
.expertise .section-content ul,
.stack .section-content ul,
.interests .section-content ul,
.projects .section-content ul,
.skills .section-content ul,
.contact .section-content ul,
.education .section-content ul,
.blog .section-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.about .section-content ul li,
.experience .section-content ul li,
.expertise .section-content ul li,
.stack .section-content ul li,
.interests .section-content ul li,
.projects .section-content ul li,
.skills .section-content ul li,
.contact .section-content ul li,
.education .section-content ul li,
.blog .section-content ul li {
  margin-bottom: 0.5rem;
  margin-left: 0rem;
  padding: 0 5px 5px 1.5rem;
  outline: 1px solid #808080;
  border-radius: 4px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  border-left: 15px solid #808080;
}
@media (min-width: 1024px) {
  .about .section-content,
  .experience .section-content,
  .expertise .section-content,
  .stack .section-content,
  .interests .section-content,
  .projects .section-content,
  .skills .section-content,
  .contact .section-content,
  .education .section-content,
  .blog .section-content {
    font-size: 1rem;
  }
}

.interests ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.interests ul li {
  flex: 1 0 calc(33.333% - 1rem);
}
@media (max-width: 768px) {
  .interests ul li {
    flex: 1 0 calc(50% - 1rem);
  }
}
@media (max-width: 768px) {
  .interests ul li {
    flex: 1 0 calc(100% - 1rem);
  }
}

.cards-definitions {
  display: block;
  width: 100%;
}
.cards-definitions .card,
.cards-definitions dt {
  background-color: #808080;
  color: #fff;
  padding: 1.3125rem;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #808080;
  border-bottom-width: 0;
}
.cards-definitions dd {
  background-color: #fff;
  color: #333;
  padding: 1.3125rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid #ddd;
}

.site-footer-contact {
  background-color: #fff;
  color: #333;
  text-align: center;
  border-width: 0;
  box-shadow: none;
  margin: 0;
}
.site-footer-contact h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.site-footer-contact p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.site-footer-copyright {
  font-size: 0.9rem;
  color: #808080;
  margin: 16px -15px 0;
  display: block;
  text-align: center;
  border-top: 1px solid #ddd;
  padding: 15px;
}

@keyframes show {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotation {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  25% {
    opacity: 0.5;
    transform: rotateY(45deg);
  }
  50% {
    opacity: 0.75;
    transform: rotateY(30deg);
  }
  75% {
    opacity: 0.9;
    transform: rotateY(15deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0);
  }
}
