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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Bai Jamjuree", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style-type: none;
}

button,
input,
textarea,
select {
  outline: none;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

a {
  font-size: 14px;
  font-weight: 500;
}
a.lg {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
@media only screen and (max-width: 1024px) {
  a.lg {
    font-size: 16px;
    line-height: 28px;
  }
}

button {
  font-size: 14px;
  font-weight: 700;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (max-width: 1024px) {
  p {
    font-size: 14px;
    line-height: 24px;
  }
}
p.lg {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}
@media only screen and (max-width: 1024px) {
  p.lg {
    font-size: 18px;
    line-height: 28px;
  }
}
p.sm {
  font-size: 14px;
}

th {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}
@media only screen and (max-width: 1024px) {
  th {
    font-size: 14px;
    line-height: 24px;
  }
}

td {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
@media only screen and (max-width: 1024px) {
  td {
    font-size: 14px;
    line-height: 19px;
  }
}

h1 {
  font-size: 64px;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 37px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
}

h5 {
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  h5 {
    font-size: 22px;
  }
}

h6 {
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  h6 {
    font-size: 18px;
  }
}

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1440px;
}

nav .btn {
  margin: 0 0.5em;
}

.btn {
  letter-spacing: 3px;
  padding: 15px 25px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn.btn-primary {
  border: 1px solid transparent;
  background: #ff3366;
  color: #ffffff;
}
.btn.btn-primary:hover {
  border-color: #ff3366;
  background: transparent;
  color: #ff3366;
}

.btn.btn-secondary {
  border: 1px solid transparent;
  color: #ffffff;
  border-color: white;
}
.btn.btn-secondary:hover {
  background: white;
  color: black;
}

.faqs-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}
.faqs-wrapper .faq .question {
  padding: 25px 35px;
  background: #44444f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .faqs-wrapper .faq .question {
    padding: 15px 25px;
  }
}
.faqs-wrapper .faq .question p {
  color: #e9e9e9;
  transition: all 0.3s ease;
}
.faqs-wrapper .faq .question button {
  display: flex;
}
.faqs-wrapper .faq .question button svg rect {
  transition: all 0.3s ease;
}
.faqs-wrapper .faq.active .question {
  background: #2c2d39;
}
.faqs-wrapper .faq.active .question p {
  color: #ff3366;
}
.faqs-wrapper .faq.active .question svg rect {
  fill: #ff3366;
}
.faqs-wrapper .faq.active .question svg rect.shape-1 {
  opacity: 0;
}
.faqs-wrapper .faq .answer {
  max-height: 0;
  padding: 0 35px;
  border: 1px solid transparent;
  border-top: none;
  overflow: hidden;
  transition: all 0.3s linear;
}
.faqs-wrapper .faq .answer p {
  color: #d3d3d4;
}
.faqs-wrapper .faq.active .answer {
  padding: 25px 35px;
  border-color: #4e4f53;
  max-height: 600px;
}

.navigation-bar-component {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #212123;
}
.navigation-bar-component .container {
  height: 108px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation-bar-component .container .logo-img-wrapper {
  display: flex;
}
.navigation-bar-component .container .logo-img-wrapper img {
  width: 75px;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container .logo-img-wrapper img {
    width: 60px;
  }
}
.navigation-bar-component .container .navigation-bar-elements-trigger-btn {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container .navigation-bar-elements-trigger-btn {
    display: flex;
  }
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container .navigation-bar-elements {
    position: fixed;
    top: 108px;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: calc(100% - 108px);
    padding: 50px 0;
    background: rgba(23, 24, 30, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .navigation-bar-component .container .navigation-bar-elements.active {
    opacity: 1;
    pointer-events: all;
  }
}
.navigation-bar-component .container .navigation-bar-elements ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 60px;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container .navigation-bar-elements ul {
    position: static;
    transform: translate(0);
    flex-direction: column;
    align-items: center;
  }
}
.navigation-bar-component .container .navigation-bar-elements ul li a {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #bdbdbe;
  transition: all 0.3s ease;
  font-weight: 600;
}
.navigation-bar-component .container .navigation-bar-elements ul li a:hover {
  color: #e9e9e9;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component
    .container
    .navigation-bar-elements
    .navigation-bar-elements-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.navigation-bar-component
  .container
  .navigation-bar-elements
  .navigation-bar-elements-end
  p {
  display: none;
  color: #bdbdbe;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component
    .container
    .navigation-bar-elements
    .navigation-bar-elements-end
    p {
    display: block;
  }
}

.footer-component {
  position: relative;
  background: #212123;
}
.footer-component .container {
  padding: 35px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 1180px) {
  .footer-component .container {
    flex-direction: column;
  }
}
.footer-component .container .logo-img-wrapper {
  display: flex;
}
.footer-component .container .logo-img-wrapper img {
  margin-top: 3px;
  width: 150px;
}
.footer-component .container ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 60px;
}
@media only screen and (max-width: 1180px) {
  .footer-component .container ul {
    position: static;
    transform: translate(0);
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 60px;
  }
}
.footer-component .container ul li a {
  text-transform: uppercase;
  color: #bdbdbe;
  transition: all 0.3s ease;
}
.footer-component .container ul li a:hover {
  color: #e9e9e9;
}
.footer-component .container p {
  color: #bdbdbe;
}
@media only screen and (max-width: 1180px) {
  .footer-component .container p {
    text-align: center;
  }
}

.home-page {
  background: #e2e2e2;
  overflow-x: hidden;
}
.home-page .pricing-and-details-section-wrapper {
  margin-top: -50vw;
  padding-top: 50vw;
  background: conic-gradient(
    from 148.1deg at -2.8% 0%,
    #e9e9e9 0deg,
    #d3d3d4 360deg
  );
}
.home-page .hero-section {
  position: relative;
  z-index: 2;
  padding: 208px 0 25vw 0;
  background: conic-gradient(
    from 192deg at 85.21% 0%,
    #222328 0deg,
    #38393e 360deg,
    #38393e 360deg
  );
  -webkit-clip-path: polygon(100% 0, 100% 85%, 73% 100%, 0 70%, 0 0);
  clip-path: polygon(100% 0, 100% 85%, 73% 100%, 0 70%, 0 0);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .home-page .hero-section {
    background: conic-gradient(
      from 192deg at 95% 0%,
      #222328 0deg,
      #38393e 360deg,
      #38393e 360deg
    );
    padding: 158px 0 400px 0;
  }
}
@media only screen and (max-width: 678px) {
  .home-page .hero-section {
    padding: 158px 0 475px 0;
    -webkit-clip-path: polygon(100% 0, 100% 95%, 73% 100%, 0 90%, 0 0);
    clip-path: polygon(100% 0, 100% 95%, 73% 100%, 0 90%, 0 0);
  }
}
.home-page .hero-section .container {
  position: relative;
  perspective: 1800px;
}
.home-page .hero-section .container .content {
  position: relative;
  z-index: 2;
  max-width: 572px;
}
@media only screen and (max-width: 678px) {
  .home-page .hero-section .container .content {
    max-width: 100%;
  }
}
.home-page .hero-section .container .content h1 {
  font-style: italic;
  text-transform: uppercase;
  color: #ff3366;
}
.home-page .hero-section .container .content h3 {
  margin-bottom: 25px;
  color: #e9e9e9;
}
.home-page .hero-section .container .content p {
  margin-bottom: 50px;
  color: #d3d3d4;
}
.home-page .hero-section .container .content p span {
  font-weight: 700;
}
@media only screen and (max-width: 678px) {
  .home-page .hero-section .container .content .btn {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.home-page .hero-section .container .hero-img {
  position: absolute;
  top: -50vh;
  left: 522px;
  height: 170vh;
  filter: drop-shadow(2px 4px 20px black);
}
.home-page .hero-section .container .hero-img-2 {
  transform: translate3d(0%, 0%, -250px);
}

@media only screen and (max-width: 1024px) {
  .home-page .hero-section .container .hero-img {
    top: auto;
    bottom: -450px;
    left: auto;
    right: -300px;
    width: 750px;
    height: auto;
  }
}
@media only screen and (max-width: 678px) {
  .home-page .hero-section .container .hero-img {
    bottom: -455px;
    right: -300px;
    width: 600px;
  }
}
.home-page .hero-section .hero-shape-1-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .home-page .hero-section .container .hero-img {
    position: absolute;
    top: 0%;
    left: 0%;
    height: 60vw;
    transform: translate(-50%, -50%);
    height: clamp(min(40vw, 500px), 60vw, max(70vw, 1266px));
    height: clamp(638px, 36vw, 1300px);
  }

  .hero-img-2 {
    transform: translate3d(-50%, -50%, -250px) !important;
  }
}

.home-page .why-section {
  position: relative;
  margin-top: -10vw;
  padding-top: 10vw;
}
.home-page .why-section .container {
  position: relative;
  z-index: 2;
}
.home-page .why-section .container h2 {
  margin-bottom: 50px;
  text-transform: uppercase;
  color: #25262b;
}
.home-page .why-section .container h2 span {
  color: #ff3366;
}
.home-page .why-section .container .box {
  margin-bottom: 25px;
  max-width: 840px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 678px) {
  .home-page .why-section .container .box {
    grid-template-columns: 1fr;
  }
}
.home-page .why-section .container .box:last-child {
  margin-bottom: 0;
}
.home-page .why-section .container .box.box-right {
  margin-left: auto;
}
.home-page .why-section .container .box .content {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  z-index: 1;
  padding: 50px;
  background: conic-gradient(from 225deg at 100% 0%, #f36 0deg, #e52e5c 360deg);
}
.home-page .why-section .container .box video {
  object-fit: cover;
  max-height: 420px;
}

@media only screen and (max-width: 678px) {
  .home-page .why-section .container .box .content {
    padding: 35px;
  }
}
.home-page .why-section .container .box .content h3 {
  margin-bottom: 35px;
  color: #ffffff;
}
@media only screen and (max-width: 678px) {
  .home-page .why-section .container .box .content h3 {
    margin-bottom: 50px;
  }
}
.home-page .why-section .container .box .content h6 {
  margin-top: auto;
  margin-bottom: 10px;
  color: #ffffff;
}
.home-page .why-section .container .box .content p {
  color: #ffffff;
}
.home-page .why-section .container .box .img-wrapper {
  display: flex;
}
.home-page .why-section .container .box .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-page .why-section .container .box .img-wrapper img,
.home-page .why-section .container .box .img-wrapper video {
  box-shadow: 0 0 9px #00000030;
}

.home-page .why-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 600px);
  background: conic-gradient(
    from 166.4deg at 70.6% 0%,
    #e9e9e9 0deg,
    #d3d3d4 360deg
  );
}
.home-page .explore-section {
  position: relative;
  margin-top: -600px;
  padding-top: 700px;
}
.home-page .explore-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 678px) {
  .home-page .explore-section .container.iframe-container {
    /* width: 100%;
    max-width: 100%; */
  }
}
.home-page .explore-section .container h2 {
  margin-bottom: 50px;
  width: 100%;
  text-transform: uppercase;
  color: #e9e9e9;
}
.home-page .explore-section .container h2 span {
  color: #ff3366;
}
.home-page .explore-section .container .info {
  width: 90%;
  padding: 50px 100px;
  border-bottom: 1px solid #38393e;
  background: #2c2d32;
  transition: all 1.2s ease;
}
.home-page .explore-section .container .info.expand {
  background: #e9e9e9;
}
@media only screen and (max-width: 678px) {
  .home-page .explore-section .container .info {
    padding: 25px;
  }
}
.home-page .explore-section .container .info:last-child {
  border-bottom: none;
}
.home-page .explore-section .container .info h3 {
  color: #a7a7a9;
  transition: all 1.2s ease;
}
.home-page .explore-section .container .info.expand h3 {
  color: #ff3366;
}
.home-page .explore-section .container .info p {
  margin-top: 15px;
  max-height: 0;
  overflow: hidden;
  color: #bdbdbe;
  transition: all 1s linear;
}
.home-page .explore-section .container .info p span {
  font-size: 14px;
  color: #4e4f53;
}
.home-page .explore-section .container .info.expand p {
  display: block;
  color: #25262b;
  max-height: 50vh;
}
.home-page .explore-section .container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.home-page .explore-section .container .bottom-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-page .explore-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(
    from 200deg at 109.8% 0%,
    #38393e 0deg,
    #222328 360deg,
    #222328 360deg
  );
  -webkit-clip-path: polygon(0 0, 94% 30%, 100% 29%, 100% 82%, 25% 96%, 0 90%);
  clip-path: polygon(0 0, 94% 30%, 100% 29%, 100% 82%, 25% 96%, 0 90%);
}
.home-page .pricing-section {
  padding: 100px 0;
}
@media only screen and (max-width: 1024px) {
  .home-page .pricing-section {
    padding: 30px 0;
  }
}
.home-page .pricing-section .container h2 {
  margin-bottom: 50px;
  text-transform: uppercase;
  color: #25262b;
}
.home-page .pricing-section .container h2 span {
  color: #ff3366;
}
.home-page .pricing-section .container .parts {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 60px;
}
@media only screen and (max-width: 1024px) {
  .home-page .pricing-section .container .parts {
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-page .pricing-section .container .parts .left-part {
    order: 2;
  }
}
.home-page .pricing-section .container .parts .left-part table {
  margin-bottom: 25px;
  width: 100%;
  border-collapse: collapse;
}
.home-page .pricing-section .container .parts .left-part table thead {
  background: #222328;
}
.home-page .pricing-section .container .parts .left-part table thead th {
  padding: 15px 30px;
  color: #e9e9e9;
}
@media only screen and (max-width: 1024px) {
  .home-page .pricing-section .container .parts .left-part table thead th {
    padding: 15px;
  }
}
.home-page
  .pricing-section
  .container
  .parts
  .left-part
  table
  thead
  th:first-child {
  text-align: left;
}
.home-page .pricing-section .container .parts .left-part table tbody {
  background: #e9e9e9;
}
.home-page .pricing-section .container .parts .left-part table tbody td {
  padding: 10px 30px;
  border: 1px solid #d3d3d4;
}
@media only screen and (max-width: 1024px) {
  .home-page .pricing-section .container .parts .left-part table tbody td {
    padding: 15px;
  }
}
.home-page .pricing-section .container .parts .left-part table tbody td svg {
  display: block;
  margin: 0 auto;
}
.home-page .pricing-section .container .parts .left-part table tbody td span {
  /* color: #ff3366; */
}
.home-page .pricing-section .container .parts .left-part p a {
  font-size: 16px;
  line-height: 26px;
  text-decoration: underline;
}
.home-page .pricing-section .container .parts .left-part p a:hover {
  text-decoration: none;
}
.home-page .pricing-section .container .parts .right-part .plan-box {
  background: #2c2d32;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-header {
  background: #4e4f53;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-header
  button {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-header
  button.active {
  background: #2c2d32;
  color: #ff3366;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body {
  padding: 30px;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan {
  display: none;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan.active {
  display: flex;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  .plan-switch-btn-wrapper {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  .plan-switch-btn-wrapper
  p {
  font-weight: 700;
  transition: all 0.3s ease;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  .plan-switch-btn-wrapper
  p.active {
  color: #ff3366;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  .plan-switch-btn-wrapper
  button {
  position: relative;
  width: 88px;
  height: 48px;
  background: #44444f;
  border-radius: 100px;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  .plan-switch-btn-wrapper
  button
  span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 40px;
  height: 40px;
  background: #ff3366;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  .plan-switch-btn-wrapper
  button.active
  span {
  left: 44px;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  .plan-promotional-text {
  margin: 0 auto 25px auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  background: #ff3366;
  display: none;
  text-transform: uppercase;
  color: #ffffff;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  .plan-promotional-text.expand {
  display: block;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  h2 {
  margin-bottom: 0;
  font-size: 110px;
  text-align: center;
  color: #ffffff;
}

@media only screen and (max-width: 1024px) {
  .home-page
    .pricing-section
    .container
    .parts
    .right-part
    .plan-box
    .plan-box-body
    .plan
    h2 {
    font-size: 90px;
  }
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  h2
  span {
  font-size: 32px;
  color: #ffffff;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan.plan1
  h2 {
  margin-bottom: auto;
  margin-top: auto;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  p {
  text-align: center;
  color: #a7a7a9;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  p.bottom-desc {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 14px;
}
.home-page
  .pricing-section
  .container
  .parts
  .right-part
  .plan-box
  .plan-box-body
  .plan
  a {
  display: block;
  width: 100%;
  text-align: center;
}
.home-page .details-section {
  position: relative;
  padding: 100px 0;
}
@media only screen and (max-width: 1024px) {
  .home-page .details-section {
    padding: 50px 0;
  }
}
.home-page .details-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1080px;
  height: 1px;
  background: #bdbdbe;
}
.home-page .details-section .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1024px) {
  .home-page .details-section .container {
    grid-template-columns: 1fr;
  }
}
.home-page .details-section .container .details.details-1 {
  padding-right: 50px;
}
@media only screen and (max-width: 1024px) {
  .home-page .details-section .container .details.details-1 {
    padding-right: 0;
  }
}
.home-page .details-section .container .details.details-2 {
  padding: 0 50px;
  border-left: 1px solid #d3d3d4;
  border-right: 1px solid #d3d3d4;
}
@media only screen and (max-width: 1024px) {
  .home-page .details-section .container .details.details-2 {
    padding: 50px 0;
    border: none;
  }
}
.home-page .details-section .container .details.details-3 {
  padding-left: 50px;
}
@media only screen and (max-width: 1024px) {
  .home-page .details-section .container .details.details-3 {
    padding-left: 0;
  }
}
.home-page .details-section .container .details h3 {
  margin-bottom: 5px;
  color: #26272b;
}
.home-page .details-section .container .details p {
  margin-bottom: 25px;
  color: #26272b;
}
.home-page .details-section .container .details a {
  text-decoration: underline;
  color: #ff3366;
}
.home-page .details-section .container .details a:hover {
  text-decoration: none;
}
.home-page .details-section .container .details .links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-page .details-section .container .details .links a {
  text-decoration: none;
}

.faq-page {
  background: #17181e;
}
.faq-page .faq-section {
  padding: 208px 0 100px 0;
}
.faq-page .faq-section .container h1 {
  margin-bottom: 15px;
  text-align: center;
  color: #e9e9e9;
}
.faq-page .faq-section .container .top-desc {
  margin-bottom: 50px;
  text-align: center;
  color: #d3d3d4;
}
.faq-page .faq-section .container .top-desc a {
  font-size: 16px;
  color: #ff3366;
}
.faq-page .faq-section .container h5 {
  margin-top: 50px;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #e9e9e9;
} /*# sourceMappingURL=index.css.map */

.layers-3d {
  position: absolute;
  right: 35%;
  transform-style: preserve-3d;
}

.no-anim,
.no-anim * {
  transition: none !important;
}

.hero-section .btn-wrapper {
  display: flex;
  flex-direction: column;
  width: max-content;
  row-gap: 0.5em;
  text-align: center;
}

/* CUSTOM DESKTOP FIXES */
.why-section .container {
  perspective: 1800px;
}

.why-section .container * {
  transform-style: preserve-3d;
}

.iframe-container {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: 0s;
  transition: 1.2s;
  box-shadow: 0px 8px 40px 0px rgb(0 0 0 / 60%);
  opacity: 0;
}

.info.expand .iframe-container {
  margin-top: 3em;
  height: auto;
  max-height: 100vh;
  opacity: 1;
}

.iframe-container video {
  aspect-ratio: 16/9;
  width: 100%;
}

.plan {
  display: flex;
  flex-direction: column;
}

/* CUSTOM MOBILE FIXES */

@media only screen and (max-width: 1024px) {
  .layers-3d {
    right: 61% !important;
    transform: rotate(-8.1403deg) rotateY(-57.4838deg) rotateX(14.7855deg) !important;
  }

  .home-page .hero-section .container .hero-img-2 {
    transform: translate3d(0%, 0%, -117px) !important;
  }

  .home-page .why-section .container .box video {
    width: 100%;
  }
}
