@font-face {
  font-family: "DemiBold";
  src: url("../fonts/ArticulatCF-DemiBold.otf");
}
@font-face {
  font-family: "Medium";
  src: url("../fonts/ArticulatCF-Medium.ttf");
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #FFF9F4;
  min-width: 100%;
  height: auto;
}

.swal-custom {
  background: #FFF9F4;
}
.swal-custom .swal2-title {
  color: #000;
  font-family: "Medium", sans-serif;
}

.wrapper {
  min-width: 100%;
}

.sticky {
  height: 5em;
  background: rgba(255, 255, 255, 0.9);
}

@supports (--webkit--backdrop-filter: blur(0.8em)) or (backdrop-filter: blur(0.8em)) {
  .sticky {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(0.8em);
    -webkit-backdrop-filter: blur(0.8em);
  }
}
.fixed {
  height: 8em;
  background: #fff;
}

.header {
  position: fixed;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}
.header__inner {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner__icon img {
  width: 9em;
}
.header__inner__mobile-links {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #999;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  margin-top: 8em;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.header__inner__mobile-links ul {
  padding: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header__inner__mobile-links ul li {
  list-style: none;
  width: 100%;
  margin: 0.5em 0;
}
.header__inner__mobile-links ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8em 0.5em;
  width: 100%;
  color: #111;
  font-size: 1rem;
  text-decoration: none;
  font-family: "Medium", sans-serif;
}
.header__inner__mobile-links ul li a span {
  margin-top: 0.2em;
  opacity: 0;
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  transform: translateX(-1em);
}
.header__inner__mobile-links ul li a:hover {
  color: #FF7901;
  background: rgba(255, 121, 1, 0.05);
  border-radius: 0.4em;
}
.header__inner__mobile-links ul li a:hover span {
  opacity: 1;
  transform: translateX(0.1em);
}
.header__inner__links > ul {
  display: flex;
}
.header__inner__links li {
  list-style: none;
  margin: 0 1.5em;
}
.header__inner__links li a {
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "Medium", sans-serif;
}
.header__inner__links li a:hover {
  color: #FF7901;
}
.header__inner__links li a span {
  display: none;
}
.header-dropdown {
  position: relative;
}
.header-dropdown__toggle {
  cursor: pointer;
}
.header-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 0.8em;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 0.6em 0;
  margin-top: 0.8em;
  min-width: 12em;
  z-index: 1000;
}
.header-dropdown:hover .header-dropdown__menu {
  display: block;
}
.header-dropdown__menu li {
  margin: 0;
  padding: 0;
}
.header-dropdown__menu li a {
  display: block;
  padding: 0.6em 1.4em;
  font-size: 1.1rem;
  white-space: nowrap;
}
.header-dropdown__menu li a:hover {
  background: #FFF9F4;
}
.header__inner__links-last {
  float: right;
  background: #FF7901;
  color: #111;
  padding: 0.8em 1em;
  font-size: 1.2rem;
  border-radius: 0.8em;
  text-decoration: none;
  font-family: "Medium", sans-serif;
}
.header__inner__links-last:hover {
  background: #e76d00;
}
.header__inner__menu {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  background: #FEF9F5;
  border-radius: 0.4em;
}
.header__inner__menu:hover {
  background: #fcebde;
}
.header__inner__menu__burger {
  width: 45%;
  height: 0.18em;
  border-radius: 0.2em;
  background: #FF7901;
  transition: all 0.3s ease-in-out;
}
.header__inner__menu__burger::before, .header__inner__menu__burger::after {
  position: absolute;
  content: "";
  width: 45%;
  height: 0.18em;
  border-radius: 0.2em;
  background: #FF7901;
  transition: all 0.3s ease-in-out;
}
.header__inner__menu__burger::before {
  transform: translateY(-0.4em);
}
.header__inner__menu__burger::after {
  transform: translateY(0.4em);
}
.header__inner__menu.open .header__inner__menu__burger {
  background: transparent;
}
.header__inner__menu.open .header__inner__menu__burger::before {
  transform: rotate(45deg);
}
.header__inner__menu.open .header__inner__menu__burger::after {
  transform: rotate(-45deg);
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.content__section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-top: 20em;
}
.content__banner {
  margin-top: 12em;
  position: relative;
  width: 100%;
  min-height: 40em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content__banner img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 40em;
  max-width: 85%;
  object-fit: contain;
}
.content__banner__info {
  position: relative;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-flow: column wrap;
  gap: 2em;
}
.content__banner__info h2 {
  color: #111;
  font-size: clamp(1rem, 9.5vw, 5rem);
  white-space: nowrap;
  font-family: "DemiBold", sans-serif;
}
.content__banner__info h2 span {
  color: #FF7901;
}
.content__banner__info h2 #copyBanner {
  cursor: pointer;
}
.content__banner__info h2 #copyBanner:hover {
  color: #cd6100;
}
.content__banner__info p {
  font-size: clamp(0.6rem, 4vw, 1.4rem);
  font-family: "Medium", sans-serif;
  font-weight: 700;
}
.content__banner nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-top: 5em;
  z-index: 1;
}
.content__banner a {
  color: #111;
  text-decoration: none;
  font-size: clamp(0.8rem, 3.5vw, 1.2rem);
  font-family: "Medium", sans-serif;
  padding: 0.9em 1.4em;
  border-radius: 0.8em;
  margin: 0.6em;
  transition: all 0.3s ease;
}
.content__banner a:nth-child(1) {
  background: #FF7901;
}
.content__banner a:nth-child(1):hover {
  background: #e76d00;
}
.content__banner a:nth-child(2) {
  border: 1px solid #111;
}
.content__banner a:nth-child(2):hover {
  background: #111;
  color: #fff;
}
.content__heading {
  margin-bottom: 5em;
}
.content__heading h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  padding: 0.2em 0;
  font-family: "DemiBold", sans-serif;
}
.content__heading h2 br {
  display: none;
}
.content__heading p {
  font-size: clamp(0.8rem, 4vw, 1.4rem);
  font-family: "Medium", sans-serif;
}
.content__heading p br {
  display: none;
}
.content__heading p:nth-child(1) {
  color: #959595;
}
.content__card {
  position: relative;
  margin: 1em 0;
  width: 75em;
  max-width: 85%;
  border-radius: 0.8em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.content__card .outer {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.6em;
  overflow: hidden;
  z-index: 1;
}
.content__card .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-left: 2.5em;
  margin-top: 1.5em;
  z-index: 3;
}
.content__card .info h2 {
  font-family: "DemiBold", sans-serif;
}
.content__card .info h2 br {
  display: block;
  content: "";
  margin-top: -0.2em;
}
.content__card .info p {
  font-size: clamp(0.8rem, 3vw, 1.4rem);
  font-family: "Medium", sans-serif;
  margin: 1.2em 0;
}
.content__card .info p br {
  display: block;
  content: "";
}
.content__card a {
  font-size: clamp(1rem, 5vw, 1.4rem);
  font-family: "Medium", sans-serif;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}
.content__card .btn-relative {
  padding: 0.3em 1em;
  border-radius: 0.4em;
  display: none;
}
.content__card .btn-absolute {
  position: absolute;
  bottom: 1.5em;
  left: 1.5em;
  border-radius: 0.8em;
  z-index: 3;
  padding: 0.6em 1.8em;
}
.content__card img {
  width: 30em;
  max-width: 40%;
  margin: 0 auto;
  z-index: 2;
  transition: 0.5s ease-in-out;
}
.content__card:hover img {
  transform: scale(1.05);
}
.content__card__one {
  background: #000;
  color: #fff;
  height: 40em;
  overflow: hidden;
}
.content__card__one h2 {
  font-size: clamp(1.4rem, 7vw, 3rem);
}
.content__card__one a {
  color: #000;
}
.content__card__two {
  background: #017efc;
  color: #fff;
  height: 40em;
  overflow: hidden;
}
.content__card__two h2 {
  font-size: clamp(1.4rem, 7vw, 3rem);
}
.content__card__two a {
  color: #017efc;
}
.content__card__three {
  background: #7D44FD;
  color: #fff;
  height: 40em;
}
.content__card__three h2 {
  font-size: clamp(1.6rem, 7.5vw, 4rem);
}
.content__card__three a {
  color: #7D44FD;
}
.content__card__four {
  background: #FD4486;
  color: #fff;
}
.content__card__four h2 {
  margin: -0.2em;
}
.content__card__four a {
  color: #FD4486;
}
.content__card__five {
  background: #ffffff;
  color: #585CF7;
}
.content__card__five h2 {
  margin: -0.2em;
}
.content__card__five a {
  background: #585CF7;
  color: #fff;
}
.content__grid {
  width: 75em;
  max-width: 85%;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: center;
}
.content__grid .span-2 {
  width: 80em;
  max-width: 100%;
}
.content__grid .break {
  flex-basis: 100%;
  width: 0%;
}
.content__grid img {
  max-width: 80%;
  position: absolute;
  right: -0.1em;
  bottom: -1.5em;
}
.content__grid .grid-card {
  width: 49%;
  min-height: 40em;
}
.content__grid .grid-card .info {
  align-self: flex-start;
  margin-top: 3.5em;
}
.content__grid .grid-card .info h2 {
  font-size: clamp(1.6rem, 7.5vw, 3rem);
}

.footer {
  width: 100%;
  height: auto;
  padding-top: 3em;
  padding-bottom: 5em;
  margin-top: 8em;
  background: #1C1A18;
  border-radius: 3em 3em 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 4em;
}
.footer__info p {
  color: #7C7C7C;
  font-weight: 700;
  margin: 0.4em 0;
  font-size: clamp(0.5rem, 3vw, 1.5rem);
  font-family: "DemiBold", sans-serif;
}
.footer__info h2 {
  text-align: center;
  color: #fff;
  font-size: clamp(2rem, 10vw, 4.5rem);
  font-family: "DemiBold", sans-serif;
}
.footer__info h2 .symbol::after {
  content: "-";
}
.footer__info h2 .highlight {
  color: #FF7901;
}
.footer__info h2 br {
  display: none;
  content: "";
  margin: 0;
}
.footer__info button {
  background: #fff;
  margin: 3em;
  padding: 0.8em 1.4em;
  font-size: clamp(0.8rem, 5vw, 0.9rem);
  border-radius: 1em;
  text-decoration: none;
  color: #111;
  text-align: center;
  outline: none;
  border: none;
  font-family: "Medium", sans-serif;
}
.footer__info button:hover {
  cursor: pointer;
  background: #f2f2f2;
}
.footer__middle {
  width: 80%;
  margin-top: 10em;
  display: flex;
  justify-content: space-between;
}
.footer__middle .links {
  width: 30em;
  display: flex;
  flex-direction: column;
  gap: 3em;
}
.footer__middle .links .socials {
  display: flex;
  margin: 0 -1.3em;
}
.footer__middle .links .socials a {
  margin: 0 1.3em;
}
.footer__middle .links .socials i {
  color: #FF7901;
  font-size: 1.8rem;
}
.footer__middle .links .socials a:hover > i {
  color: #cd6100;
}
.footer__middle .links .nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.footer__middle .links .nav li {
  list-style: none;
}
.footer__middle .links .nav li a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.6rem, 3vw, 1.1rem);
  font-family: "Medium", sans-serif;
}
.footer__middle .links .nav li a:hover {
  color: #FF7901;
}
.footer__middle .interact {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer__middle .interact p {
  color: #FF7901;
  font-weight: 700;
  font-size: clamp(0.8rem, 2.5vw, 1.2rem);
  font-family: "Medium", sans-serif;
}
.footer__middle .interact button {
  background: #FF7901;
  color: #111;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  border: none;
  outline: none;
  margin: 0 0.4em;
}
.footer__middle .interact button:hover {
  cursor: pointer;
  background: #cd6100;
}
.footer__middle .interact button i {
  font-size: 1rem;
}
.footer__trademark {
  display: flex;
  justify-content: space-between;
  max-width: 80%;
  margin-top: 2em;
}
.footer__trademark p {
  font-size: clamp(0.6rem, 2vw, 0.8rem);
  color: #5e5e5e;
  width: 50%;
  font-family: "Medium", sans-serif;
}
.footer__trademark p:nth-child(2) {
  text-align: right;
}

@media screen and (max-width: 600px) {
  .content__card__one img, .content__card__two img {
    max-width: 75%;
  }
  .content__card__one .info, .content__card__two .info {
    gap: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .content__banner {
    margin-top: 10em;
  }
  .content__banner p {
    margin-top: -1.3em;
    font-weight: 100;
  }
  .content__banner p br {
    display: block;
    content: "";
    margin: 0.2em;
  }
  .content__heading h2 {
    margin-top: 0.3em;
  }
  .content__heading h2 br {
    display: block;
    content: "";
    margin: -0.3em;
  }
  .content__heading p {
    margin-top: 0.5em;
    font-family: "DemiBold", sans-serif;
  }
  .content__heading p br {
    display: block;
    content: "";
    margin: 0.7em;
  }
  .content__card {
    align-items: flex-start;
    padding-bottom: 2em;
    height: 35em;
  }
  .content__card .btn-absolute {
    display: none;
  }
  .content__card .btn-relative {
    display: block;
  }
  .content__card h2 br {
    margin: 0.3em;
  }
  .content__card p br {
    margin: 0.5em;
  }
  .content__card .info {
    margin-top: 2.5em;
  }
  .content__card__one .btn-relative, .content__card__two .btn-relative {
    margin-top: 0.3em;
  }
  .content__card__three .info {
    margin-top: 3.5em;
  }
  .content__card__three .info .btn-relative {
    margin-top: 2.5em;
  }
  .content__card__three img {
    right: -0.5em;
    max-width: 85%;
    bottom: 0;
  }
  .content__grid .grid-card img {
    bottom: 0;
    right: 0;
    max-width: 85%;
  }
  .content__grid .grid-card .btn-relative {
    margin-top: 2.5em;
    padding: 0.3em 1.6em;
  }

  .footer__info h2 {
    position: relative;
    margin-top: 0.5em;
    text-align: center;
  }
  .footer__info h2 .symbol::after {
    position: absolute;
    right: 2.1em;
    content: "!";
  }
  .footer__info h2 br {
    display: block;
  }
  .footer__info button {
    margin-top: 3em;
    border-radius: 0.6em;
    padding: 0.8em 1em;
  }
  .footer__middle {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10em;
    margin-top: 4em;
  }
  .footer__middle .links {
    width: 100%;
    align-items: center;
  }
  .footer__middle .interact {
    align-items: center;
  }
  .footer__middle .interact button {
    width: 1.8em;
    height: 1.8em;
    margin-left: 1em;
  }
  .footer__trademark {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1em;
  }
  .footer__trademark p {
    width: 100%;
    margin: 0.5em 0;
    text-align: left;
  }
  .footer__trademark p:nth-child(2) {
    text-align: left;
  }
}
@media screen and (max-width: 1080px) {
  .header__inner {
    width: 90%;
  }
  .header__inner__links {
    display: none;
  }
  .header__inner__mobile-links.show {
    opacity: 1;
    pointer-events: all;
  }
  .header__inner__mobile-links ul {
    padding: 1.5em;
  }
  .header__inner__mobile-links ul span {
    margin-right: 0.5em;
  }
  .header__inner__links-last {
    display: none;
  }
  .header__inner__menu {
    display: flex;
  }
  .header__inner__icon img {
    width: 6em;
  }

  .content__card__three {
    align-items: flex-start;
  }
  .content__banner__info p {
    margin-bottom: -1.8em;
  }
  .content__banner nav {
    margin-top: 7em;
  }
  .content__banner nav a {
    border-radius: 0.6em;
  }
  .content__grid {
    flex-direction: column;
  }
}
@media screen and (max-width: 1280px) {
  .content__grid .grid-card {
    width: 30em;
    min-height: 35em;
    max-width: 100%;
    position: relative;
  }
}

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