@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

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

:root {
  --theme-color: #18284B;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-size: 150px, 100% 100vh;
  overflow-x: hidden;
}

.bg-light {
  background-color: #fff !important;
  font-family: "Outfit", sans-serif !important;
}

@keyframes rotate {
  from {
    -webkit-transform: rotateX(0deg) rotateY(360deg) rotateZ(360deg);
    transform: rotateX(0deg) rotateY(360deg) rotateZ(360deg);
  }

  to {
    -webkit-transform: rotateX(360deg) rotateY(0deg) rotateZ(-360deg);
    transform: rotateX(360deg) rotateY(0deg) rotateZ(-360deg);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes move {
  from {
    -webkit-transform: translateY(-75px) rotate(250deg);
    transform: translateY(-75px) rotate(250deg);
  }

  50% {
    -webkit-transform: translateY(75px) rotate(250deg);
    transform: translateY(75px) rotate(250deg);
  }

  to {
    -webkit-transform: translateY(-75px) rotate(250deg);
    transform: translateY(-75px) rotate(250deg);
  }
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
  content: "";
  position: fixed;
  z-index: 1000;
}

.js .loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.js .loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link-hover);
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}

a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
  color: var(--color-link-hover);
  outline: none;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
  /* Provide a fallback style for browsers
	 that don't support :focus-visible */
  outline: none;
  background: lightgrey;
}

a:focus:not(:focus-visible) {
  /* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
  background: transparent;
}

a:focus-visible {
  /* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
  outline: 2px solid red;
  background: transparent;
}

.unbutton {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

.unbutton:focus {
  outline: none;
}

.frame {
  padding: var(--page-padding);
  position: relative;
  text-transform: uppercase;
  font-size: 12px;
  display: grid;
  z-index: 1000;
  width: 100%;
  height: 100%;
  grid-row-gap: 1rem;
  grid-column-gap: 2rem;
  pointer-events: none;
  justify-items: start;
  grid-template-columns: auto auto;
  grid-template-areas: "title""archive""back""github""demos""sponsor""tags";
}

.frame #cdawrap {
  justify-self: start;
}

.frame a {
  pointer-events: auto;
}

.frame__title {
  grid-area: title;
  font-size: inherit;
  margin: 0;
}

.frame__back {
  grid-area: back;
  justify-self: start;
}

.frame__archive {
  grid-area: archive;
  justify-self: start;
}

.frame__tags {
  grid-area: tags;
}

.frame__github {
  grid-area: github;
}

.frame__demos {
  grid-area: demos;
  display: flex;
  gap: 1rem;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  /* background: url(../img/noise.png), radial-gradient(circle, #f8cf8d 0%, #ef2636 100%); */
}

.gloock-regular {
  font-family: "Gloock", serif;
  font-weight: 400;
  font-style: normal;
}

.debug {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 1px;
  border-radius: 5px;
  background-color: red;
  transform: translate(-50%, -50%);
}

.scene {
  perspective: 1000px;
  overflow: hidden;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  left: 0;
  top: 0;
}

.card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.card__img {
  width: 5em;
  border-radius: 5px;
  aspect-ratio: 2/3;
  background-position: center;
  background-size: cover;
}

.headings {
  text-align: center;
  position: relative;
  z-index: 10;
  color: var(--color-title);
  text-transform: uppercase;
}

.headings__main {
  line-height: 1.2;
  font-size: clamp(2.5rem, 1.59rem + 3.883vw, 6.25rem);
}

.headings_subtitle {
  line-height: 0.5;
  font-size: clamp(1rem, 0.757rem + 1.036vw, 2rem);
}

@media screen and (min-width: 53em) {
  .frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    grid-template-columns: auto auto auto 1fr;
    grid-template-rows: auto auto;
    align-content: space-between;
    grid-template-areas: "title back archive github sponsor""tags tags tags demos demos";
  }

  .frame #cdawrap,
  .frame__demos {
    justify-self: end;
  }

  .card__img {
    width: 8em;
  }
}


.home-dark-grid-wrapper {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.home-dark-grid-title span {
  color: #000;
  font-size: 86px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-family: "Outfit", sans-serif !important;
}

.home-dark-grid-title span > p {
  margin: 0;
  font-weight: 100;
  font-family: "Outfit", sans-serif !important;
}

.home-dark-grid-title-top,
.home-dark-grid-title-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.home-dark-grid-title-top > img {
  width: 230px;
  height: 70px;
  object-fit: cover;
  object-position: top;
  border-radius: 70px;
}

.slider-animation-4 {
  top: -60px;
  left: 150px;
  translate: none;
  rotate: none;
  scale: none;
  transform: translate3d(0px, 0px, 0px) scale(1.077, 1.077);
}

.slider-animation-5 {
  top: 300px;
  right: -100px;
  translate: none;
  rotate: none;
  scale: none;
  transform: translate3d(0px, 0px, 0px) scale(1.6945, 1.6945);
}

.home-dark-grid-top-text > span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  font-weight: 300;
  display: flex;
}

.home-dark-grid-top-text {
  width: calc(100% - 350px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: end;
  transform: translateY(-10px);
}

.home-dark-grid-top {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 6rem 0;
  padding-bottom: 4rem;
}

.home-dark-grid-title {
  padding-bottom: 6rem;
}

.home-dark-list-title > span {
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

.home-dark-list-desc > span {
  color: #555;
  font-size: 15px;
  font-weight: 300;
}

.home-dark-grid {
  display: flex;
  gap: 1rem;
}

.home-dark-list {
  width: 25%;
  padding: 3rem 1.5rem;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  z-index: 9;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  padding-bottom: 1.5rem;
}

.home-dark-grid-container {
  padding: 0;
}

.home-dark-list-desc {
  margin-top: 2rem;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  height: 110px;
}

.home-dark-list-ikon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #999;
  border-radius: 50%;
  margin-top: 2rem;
  color: #000;
  transform: scale(0.4);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.home-dark-list:hover .home-dark-list-ikon {
  transform: scale(1);
  background-color: var(--theme-color);
}

.home-dark-list::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 0;
  background-color: var(--theme-color);
  top: 0;
  left: 0;
  transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
}

.home-dark-list:hover::before {
  width: 100%;
}

.home-dark-list-ikon > i {
  font-size: 25px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.home-dark-list:hover .home-dark-list-ikon > i {
  color: #fff;
}

.slider-animation {
  position: absolute;
  display: inline-block;
  width: 300px;
  height: 300px;
  opacity: 0.2;
  pointer-events: none;
}

.slider-dodecahedron {
  position: relative;
  left: 100px;
  top: 40px;
  width: 100px;
  height: 223px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-animation: rotate 100s infinite linear;
  animation: rotate 100s infinite linear;
}

.slider-pentagon {
  position: absolute;
  width: 100px;
}

.slider-pentagon div {
  position: absolute;
  width: 100px;
  height: 69px;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  border-top: 0.1px solid #18284b9e;
}

.slider-pentagon:nth-child(1) {
  transform: rotateY(0.2turn) translateZ(69px) rotateX(26.5deg);
}

.slider-pentagon:nth-child(2) {
  transform: rotateY(0.4turn) translateZ(69px) rotateX(26.5deg);
}

.slider-pentagon:nth-child(3) {
  transform: rotateY(0.6turn) translateZ(69px) rotateX(26.5deg);
}

.slider-pentagon:nth-child(4) {
  transform: rotateY(0.8turn) translateZ(69px) rotateX(26.5deg);
}

.slider-pentagon:nth-child(5) {
  transform: rotateY(1turn) translateZ(69px) rotateX(26.5deg);
}

.slider-pentagon:nth-child(6) {
  bottom: 0;
  transform: rotateY(0.2turn) translateZ(-69px) rotateX(206.5deg);
}

.slider-pentagon:nth-child(7) {
  bottom: 0;
  transform: rotateY(0.4turn) translateZ(-69px) rotateX(206.5deg);
}

.slider-pentagon:nth-child(8) {
  bottom: 0;
  transform: rotateY(0.6turn) translateZ(-69px) rotateX(206.5deg);
}

.slider-pentagon:nth-child(9) {
  bottom: 0;
  transform: rotateY(0.8turn) translateZ(-69px) rotateX(206.5deg);
}

.slider-pentagon:nth-child(10) {
  bottom: 0;
  transform: rotateY(1turn) translateZ(-69px) rotateX(206.5deg);
}

.slider-pentagon:nth-child(11) {
  transform: translateZ(69px) rotateX(-90deg);
}

.slider-pentagon:nth-child(12) {
  bottom: 0;
  transform: translateZ(-69px) rotateX(90deg);
}

.slider-pentagon div:nth-child(1) {
  transform: rotate(0.2turn);
}

.slider-pentagon div:nth-child(2) {
  transform: rotate(0.4turn);
}

.slider-pentagon div:nth-child(3) {
  transform: rotate(0.6turn);
}

.slider-pentagon div:nth-child(4) {
  transform: rotate(0.8turn);
}

.slider-pentagon div:nth-child(5) {
  transform: rotate(1turn);
}

.slider-animation-wrapper {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  -webkit-animation: jump 10s linear infinite;
  animation: jump 10s linear infinite;
  pointer-events: none;
}

.home-dark-list-image > img {
  width: 40px;
  filter: brightness(0) invert(1);
}

.home-dark-list-image {
  display: flex;
  width: 75px;
  height: 75px;
  margin-bottom: 1rem;
  background-color: var(--theme-color);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}

.home-team-container-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.home-team-container-right {
  width: 100%;
  position: relative;
  margin-top: 4rem;
}

.home-team-container-left > h4 > span {
  font-weight: 100;
}

.home-team-container-left > h4 {
  font-size: 28px;
}

.team-list-wrapper {
  display: flex;
  gap: 2rem;
}

.team-list {
  display: flex;
  position: relative;
  width: calc(25% - (2rem * 3) / 4);
  overflow: hidden;
}

.team-list-image {
  display: flex;
  width: 100%;
}

.team-list-image > img {
  width: 100%;
  transform: scale(1.05);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.team-list:nth-child(2n) {
  transform: translateY(50px);
}

.team-list-caption {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  z-index: 99;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.team-list-name > a {
  font-size: 20px;
  font-weight: 500;
  color: #fff !important;
  text-decoration: none;
  transition: .2s ease-in-out;
}

.team-list-title > span {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.team-list-social {
  display: flex;
  margin-top: 1rem;
}

.team-list-name > a:hover {
  color: var(--theme-color) !important;
}

.team-list:hover .team-list-caption {
  bottom: 50px;
  opacity: 1;
  visibility: visible;
}

.team-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
  z-index: 9;
}

.team-list:hover::before {
  opacity: 1;
  visibility: visible;
}

.team-list::after {
  content: "";
  position: absolute;
  height: 4px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
  z-index: 99;
}

.team-list:hover::after {
  width: 100%;
}

.team-list:hover .team-list-image > img {
  transform: scale(1);
}

.home-team-container-left-title > span {
  font-size: 68px;
  color: #000;
  font-weight: 500;
  margin: 0;
  font-family: "Outfit", sans-serif !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.home-team-container-left-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Outfit", sans-serif !important;
}

.home-team-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  padding-top: 0;
}

.home-team-container-left-title {
  margin-bottom: 4rem;
}

.home-parallax-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 130px 0;
  position: relative;
  z-index: 9;
}

.home-parallax-text > p {
  margin: 0;
  font-family: "Outfit", sans-serif !important;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 200;
}

.home-parallax-text > span {
  font-family: "Outfit", sans-serif !important;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  display: flex;
  width: 80%;
}

.home-parallax-text > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color) !important;
  width: 250px;
  padding: 1rem;
  border-radius: 70px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  font-family: "Outfit", sans-serif !important;
  font-weight: 300;
  margin-top: 2rem;
  text-decoration: none;
  transition: .2s ease-in-out;
}

.home-parallax-text > a:hover {
  transform: scale(1.07);
}

.home-parallax-wrapper {
  background-size: cover !important;
  -moz-background-size: cover !important;
  -webkit-background-size: cover !important;
  -o-background-size: cover !important;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  margin: 4rem 0;
}

.home-parallax-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, .5);
}

.home-team-container-left-title > span > p {
  margin: 0;
  font-weight: 100;
}

.home-dark-list::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 100px;
  background-color: #18284b1f;
  border-radius: 70px;
  top: 0px;
  left: -75px;
  transform: rotate(45deg);
}

.home-dark-list-title {
  margin-top: 2rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.footer-list > ul {
  width: 100%;
  display: flex;
  list-style: none;
  margin: 0;
  margin-top: 2rem;
  gap: 3rem;
  border-bottom: 1px solid #999;
  padding: 0 2rem;
  padding-bottom: 1rem;
}

.footer-list > ul > li > a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: .2s ease-in-out;
}

.footer-list > ul > li > a:hover {
  color: var(--theme-color);
}

.footer-wrapper {
  background-color: #ededed;
  padding: 4rem 0;
}

.footer-social > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  gap: 1.5rem;
}

.footer-social > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgb(167, 167, 167);
  border-radius: 50%;
  transition: .2s ease-in-out;
  text-decoration: none;
}

.footer-social {
  margin-top: 1.5rem;
}

.footer-social > ul > li > a > i {
  display: flex;
  color: #fff;
}

.footer-social > ul > li > a:hover {
  background-color: var(--theme-color);
}

.footer-bottom-text {
  margin-top: 1.5rem;
  font-size: 15px;
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 4rem;
  z-index: 99;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-menu-btn > i {
  font-size: 41px;
  color: #fff;
}

.header-menu-btn {
  cursor: pointer;
}

.header-menu-contain {
  position: fixed;
  background-color: #000;
  inset: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.header-menu-contain.active {
  opacity: 1;
  visibility: visible;
}

.header-menu-container #cssmenu > ul > li > a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  font-size: 34px;
  font-family: "Outfit", sans-serif !important;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  position: relative;
  padding-left: 0;
}

.header-menu-container #cssmenu > ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-menu-container #cssmenu > ul > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0);
  width: 13px;
  height: 13px;
  background-color: #999;
  border-radius: 50%;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.header-menu-container #cssmenu > ul > li > a:hover {
  color: var(--theme-color);
  padding-left: 1.5rem;
}

.header-menu-container #cssmenu > ul > li > a:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.header-menu-remove {
  position: absolute;
  top: 2rem;
  right: 4rem;
  cursor: pointer;
}

.header-menu-remove > i {
  font-size: 41px;
  color: #fff;
}

.card {
  background-color: transparent !important;
  border: none !important;
}

.newsletter-title > span {
  font-family: "Outfit", sans-serif !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 35px;
  font-weight: 500;
  color: #000;
}

.newsletter-title > span > p {
  margin: 0;
  font-family: "Outfit", sans-serif !important;
  font-weight: 100;
}

.newsletter-title {
  margin-bottom: 1rem;
}

.newsletter-desc > span {
  font-family: "Outfit", sans-serif !important;
  font-size: 17px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
}

.newsletter-text {
  width: 70%;
}

.newsletter-form {
  width: 70%;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.newsletter-form > input {
  height: 50px;
  width: calc(100% - 150px);
  outline: 0;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0 !important;
  padding: 1rem;
}

.newsletter-form > input:focus {
  border-color: #000;
}

.newsletter-form > button {
  background-color: var(--theme-color);
  border-color: transparent;
  border-radius: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 19px;
  letter-spacing: 1px;
  color: #fff;
  transition: .2s ease-in-out;
}

.newsletter-form > button:hover {
  opacity: 0.7;
}

.newsletter-wrapper {
  padding: 4rem 0;
  background-color: #18284b1f;
  margin: 2rem 0;
}

.newsletter-image {
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: 0;
  transform: rotate(250deg);
  right: 70px;
  -webkit-animation: move 7s linear infinite;
  animation: move 7s linear infinite;
}

.nesletter-container {
  position: relative;
  overflow: hidden;
}

.newsletter-image > img {
  width: 100%;
}

.home-form-wrapper {
  background-color: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 60%;
  z-index: 9999;
  padding: 1rem;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.home-form-wrapper.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.form-wrapper-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-wrapper-top .form-wrapper-group {
  width: calc(50% - (1rem) / 2);
}

.form-wrapper-top .form-wrapper-group input,
.form-wrapper-top .form-wrapper-group select {
  width: 100% !important;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  font-size: 14px;
  color: #666;
}

.form-wrapper-group label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.form-wrapper-bottom .form-wrapper-group textarea {
  width: 100% !important;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  font-size: 14px;
  color: #666;
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

.form-submit-btn input {
  background-color: var(--theme-color);
  border: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  border-radius: 0 !important;
  width: 160px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  font-size: 18px;
  color: #fff !important;
}

.form-submit-btn span {
  display: none;
}

.form-submit-btn p {
  margin: 0;
}

.form-wrapper-group p {
  margin: 0;
}

.home-form-remove {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.home-form-remove > i {
  font-size: 25px;
  cursor: pointer;
}

.home-form-contain {
  display: flex;
  align-items: center;
}

.home-form-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.home-form-overlay.active {
  opacity: 1;
  visibility: visible;
}

.newsletter-list-contain {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  grid-row-gap: 3rem;
}

.newsletter-list-content {
  width: calc(33.33% - (2rem * 2) / 3);
}

.newsletter-list-image {
  display: flex;
  width: 100%;
}

.newsletter-list-image > a {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.newsletter-list-image > a > img {
  width: 100%;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.newsletter-list-name > a {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}

.newsletter-list-caption {
  margin-top: 1rem;
}

.newsletter-list-name {
  display: flex;
  margin-bottom: 0.5rem;
}

.newsletter-list-date {
  display: flex;
  margin-bottom: 0.5rem;
}

.newsletter-list-date > span {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--theme-color);
  font-weight: 400;
}

.newsletter-list-desc {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.newsletter-list-btn {
  display: flex;
}

.newsletter-list-btn > a {
  display: flex;
  border: 1px solid var(--theme-color);
  border-radius: 70px;
  width: 150px;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--theme-color);
  text-decoration: none;
  transition: .2s ease-in-out;
}

.newsletter-list-btn > a:hover {
  border: 1px solid transparent;
  background-color: var(--theme-color);
  color: #fff;
}

.newsletter-page-top {
  display: flex;
  width: 100%;
  position: relative;
}

.newsletter-page-image {
  display: flex;
  width: 100%;
  height: 450px;
}

.newsletter-page-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.newsletter-page-title {
  position: absolute;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.newsletter-page-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.newsletter-page-title > span {
  font-size: 45px;
  color: #fff;
  letter-spacing: 3px;
}

.newsletter-list-container {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.newsletter-list-content:hover .newsletter-list-image > a > img {
  transform: scale(1.1);
}

.headings > * {
  color: #fff;
}

.header-logo {
  display: flex;
  width: 250px;
}

.header-logo > a {
  display: flex;
  width: 100%;
}

.header-logo > a > img {
  width: 100%;
}

.header-wrapper.sticked {
  background-color: #18284B;
}

.header-wrapper.sticked {
  background-color: #18284B;
}

.header-wrapper.sticked .header-menu-btn > i {
  color: #fff;
}

.footer-logo {
  display: flex;
  width: 250px;
}

.footer-logo > a {
  display: flex;
  width: 100%;
}

.footer-logo > a > img {
  width: 100%;
}

.post-page-top,
.application-form-page-top {
  display: flex;
  width: 100%;
  position: relative;
}

.post-page-image,
.application-form-page-image {
  display: flex;
  width: 100%;
  height: 450px;
}

.post-page-image > img,
.application-form-page-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.post-page-title,
.application-form-page-title {
  position: absolute;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.post-page-top::before,
.application-form-page-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.post-page-title > span,
.application-form-page-title > span {
  font-size: 45px;
  color: #fff;
  letter-spacing: 3px;
}

.post-page-content,
.application-form-page-content {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  line-height: 2;
  margin: 2rem 0;
}

.application-form-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width:769px) {
  .home-dark-list {
    width: calc(50% - (1rem) / 2);
  }

  .home-dark-grid {
    flex-wrap: wrap;
  }

  .home-dark-grid-title span {
    font-size: 50px;
    flex-direction: column;
    line-height: 1;
  }

  .home-dark-grid-title {
    padding-bottom: 2rem;
  }

  .home-parallax-text > span {
    font-size: 25px;
  }

  .home-parallax-text > a {
    font-size: 17px;
    padding: 0.9rem;
  }

  .team-list-wrapper {
    flex-wrap: wrap;
  }

  .team-list {
    width: calc(50% - (2rem) / 2);
  }

  .home-team-container-left-title > span {
    font-size: 50px;
    flex-direction: column;
    line-height: 1;
  }

  .header-wrapper {
    padding: 1rem 1.5rem;
  }

  .newsletter-text {
    width: 100%;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-title > span {
    flex-direction: column;
    line-height: 1;
    font-size: 30px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: flex-end;
  }

  .newsletter-form > input {
    width: 100%;
  }

  .newsletter-form > button {
    width: 130px;
  }

  .newsletter-image {
    display: none;
  }

  .footer-list > ul {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .newsletter-page-title > span {
    font-size: 35px;
  }

  .newsletter-list-content {
    width: calc(50% - (2rem) / 2);
  }

  .home-parallax-wrapper {
    margin: 0;
  }

  .home-team-wrapper {
    margin-top: 2rem;
  }

  .form-wrapper-top .form-wrapper-group {
    width: 100%;
  }

  .home-form-remove {
    margin-bottom: 0;
  }

  .home-form-wrapper {
    height: 80%;
    width: 95%;
    overflow: hidden;
  }

  .home-form-contain {
    align-items: flex-start;
    height: 100%;
    overflow: auto;
    padding-bottom: 2rem;
    padding-right: 1rem;
  }

  .newsletter-desc > span {
    text-align: center;
    display: flex;
  }

  .post-page-title > span, 
  .application-form-page-title > span {
    font-size: 35px;
  }

  .header-menu-remove {
    top: 1rem;
    right: 1.5rem;
  }
  
  .home-dark-grid-wrapper {
    padding: 1.5rem 0;
  }
}

@media screen and (max-width:553px) {
  .home-dark-list {
    width: 100%;
  }

  .home-dark-grid {
    padding: 1rem;
  }

  .home-parallax-text > span {
    font-size: 20px;
  }

  .header-logo {
    width: 180px;
  }

  .newsletter-list-content {
    width: 100%;
  }
}