:root {
  --ah-red: #d9232f;
  --soft-black: #101012;
  --soft-gray: #666572;
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  width: 100vw;
  overflow-x: hidden;
}

html {
  background: #000;
}

html, body {
  scroll-behavior: smooth;
}

#header {
  transition: 400ms all;
  width: 1100px;
}
#header .short-logo,
#header .short-button {
  display: none;
}
#header.scrolled {
  width: 720px;
  gap: 2rem;
}
#header.scrolled .short-logo,
#header.scrolled .short-button {
  display: flex;
}
#header.scrolled .long-logo,
#header.scrolled .long-button {
  display: none !important;
}

.ah-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
}
.ah-container.container-x-axis {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 640px) {
  .ah-container.container-x-axis {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.ah-container.container-xl {
  padding-top: 200px;
  padding-bottom: 200px;
}
.ah-container.container-lg {
  padding-top: 120px;
  padding-bottom: 120px;
}
.ah-container:not(.container-xl):not(.container-x-axis):not(.container-lg):not(.py-30):not(.pt-0) {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 640px) {
  .ah-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.ah-container .ah-container-inner {
  max-width: 1100px;
  width: 100%;
}
.ah-container .ah-container-inner .ah-container.container-xl {
  padding: 200px 60px;
}

.ah-button {
  font-family: "Outfit", sans-serif;
  background-color: var(--ah-red);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  position: relative;
  overflow: hidden;
  font-size: 15px;
  line-height: 16px;
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ah-button.button-white {
  background-color: transparent;
}
.ah-button.button-transparent-red {
  border: 1px solid var(--ah-red);
  color: var(--ah-red);
  background-color: transparent;
}
.ah-button.button-transparent-red:hover {
  border: 1px solid var(--ah-red);
  color: var(--ah-red);
  background-color: #f4ecec;
}
.ah-button:hover {
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.ah-button:hover .text-primary,
.ah-button:hover .text-secondary {
  transform: translateY(-20px);
}
.ah-button > span {
  overflow: hidden;
  position: relative;
}
.ah-button > span span {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: transform 0.5s ease;
}
.ah-button > span span i {
  width: 0.8rem;
}
.ah-button .text-primary {
  transform: translateY(0);
}
.ah-button .text-secondary {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  transform: translateY(0);
}

.ah-title {
  font-size: 72px;
  line-height: 72px;
  letter-spacing: 1px;
  font-weight: 600;
}

.menu-toggle {
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}
.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 11px;
}
.menu-toggle span:nth-child(3) {
  top: 22px;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

.blog-detail {
  color: var(--soft-black);
}
.blog-detail * > a {
  cursor: pointer;
  text-decoration: underline;
  color: blue;
  font-weight: 400;
}
.blog-detail h1, .blog-detail h2, .blog-detail h3, .blog-detail h4, .blog-detail h5, .blog-detail h6 {
  font-weight: 600;
}
.blog-detail h1 {
  font-size: 32px;
  line-height: 2.5rem;
}
@media (min-width: 768px) {
  .blog-detail h1 {
    font-size: 38px;
    line-height: 3rem;
  }
}
@media (min-width: 1024px) {
  .blog-detail h1 {
    font-size: 44px;
    line-height: 3.5rem;
  }
}
.blog-detail h2 {
  font-size: 30px;
  line-height: 2.5rem;
}
@media (min-width: 768px) {
  .blog-detail h2 {
    font-size: 34px;
    line-height: 3rem;
  }
}
@media (min-width: 1024px) {
  .blog-detail h2 {
    font-size: 40px;
    line-height: 3.5rem;
  }
}
.blog-detail h3 {
  font-size: 28px;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .blog-detail h3 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .blog-detail h3 {
    font-size: 36px;
  }
}
.blog-detail h4 {
  font-size: 22px;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .blog-detail h4 {
    font-size: 24px;
  }
}
.blog-detail ul {
  list-style: disc;
  padding-left: 1rem;
  font-size: 0.9rem;
}
.blog-detail img {
  border-radius: 16px;
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .blog-detail img {
    max-height: 450px;
    margin: 2rem 0;
  }
}
@media (min-width: 1024px) {
  .blog-detail img {
    max-height: 550px;
  }
}
.blog-detail p {
  font-size: 16px;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  .blog-detail p {
    margin-bottom: 2rem;
  }
}

.toggle-expander .expander-content {
  max-height: 0;
  padding: 0;
  transition: all 0.7s ease-in-out;
  opacity: 0;
}
.toggle-expander i {
  transition: all 0.7s ease-in-out;
}
.toggle-expander.expanded .expander-content {
  max-height: 100px;
  padding-top: 12px;
  opacity: 1;
}
.toggle-expander.expanded i {
  transform: rotate(180deg);
}

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