@import url(https://fonts.googleapis.com/css2?family=Alexandria:wght@200;300;400;500;600;700&display=swap);
@charset "UTF-8";
:root {
  --dot-position-left: 0;
  --dot-position-top: 0;
  --dot-color: #A0059D;
  --dot-width: 10%;
  --dot-opacity: 0.15;
  --dot-translate-x: 0;
  --dot-translate-y: 0;
  --range: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.dropdown-menu {
  transform-origin: top right;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: none;
}

.dropdown-menu.show {
  transform: scale(1);
  opacity: 1;
  display: block;
}

.form-select {
  color: #fff;
  background-color: #1f3f85;
}

.price .value {
  transition: all 0.3s ease-in-out;
}

.form-group label {
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
  color: #bebdbd;
}
.form-group div {
  margin-bottom: 0.2rem;
}
.form-group div input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.form-group div input[type=radio] + label {
  display: inline-block;
  padding-left: 35px;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  color: #bebdbd;
  line-height: 1.5;
}
.form-group div input[type=radio] + label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s ease;
}
.form-group div input[type=radio]:checked + label:before {
  border-color: #007bff;
  background-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}
.form-group div input[type=radio]:checked + label:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
}
.form-group div input[type=radio] + label:hover:before {
  border-color: #007bff;
}

body {
  background-color: #0A002C;
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #7EABD4;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

html {
  scrollbar-color: #081966 #0A002C;
  scrollbar-width: 15px;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: #0A002C;
}

::-webkit-scrollbar-thumb {
  background: #081966;
}

::-webkit-scrollbar-thumb:hover {
  background: #051970;
}

a {
  color: #7EABD4;
  text-shadow: 2px 2px 4px #000;
  transition: all 0.1s ease-in-out;
}
a:hover {
  color: #437fb8;
}

.page-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

h1 {
  font-style: normal;
  font-weight: 200;
  font-size: 56px;
  line-height: 120%;
  color: #D9D9D9;
  margin-bottom: 0.5em;
}

h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #D9D9D9;
}

h3 {
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  line-height: 36px;
}

p {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0.005em;
  padding-bottom: 2em;
}

.dots-wrapper {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.dot {
  position: absolute;
  height: 0;
  border-radius: 50%;
  width: var(--dot-width);
  padding-top: var(--dot-width);
  opacity: var(--dot-opacity, 0.25);
  background: var(--dot-color, #A0059D);
  filter: blur(169px);
  left: var(--dot-position-left);
  top: var(--dot-position-top);
  transform: translate(var(--dot-translate-x), var(--dot-translate-y));
}

.upperletter {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 10px 0px 10px;
  gap: 10px;
  height: 44px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 12px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid transparent;
  -o-border-image: linear-gradient(180deg, #398BF0 0%, #a82b9f 100%) 1;
     border-image: linear-gradient(180deg, #398BF0 0%, #a82b9f 100%) 1;
  transition: all 0.3s ease-in-out;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.button:hover {
  color: #FFFFFF;
  border: 2px solid transparent;
  -o-border-image: none;
     border-image: none;
  background: linear-gradient(180deg, #0A002C 0%, #0A002C 100%) padding-box, linear-gradient(180deg, #398BF0 0%, #a82b9f 100%) border-box;
}

header {
  background-color: #0A002C;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 88px;
}

.navbar .navbar-brand {
  width: 58px;
  height: 78px;
  max-height: 100%;
  background: url("/theme/aimationstudio/img/logo.svg") no-repeat center center;
  background-size: contain;
}
.navbar .language-mobile,
.navbar .user-login-mobile {
  display: none;
}

.user-login > .nav-link,
.main-menu > .nav-link.dropdown-toggle {
  position: relative;
  padding: 0;
}
.user-login > .nav-link::before,
.main-menu > .nav-link.dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='43' height='43' rx='9.5' stroke='url(%23paint0_linear_1265_2027)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1265_2027' x1='22' y1='0' x2='22' y2='44' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23398BF0'/%3E%3Cstop offset='1' stop-color='%23A82B9F'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  transition: all 0.3s ease-in-out;
}
.user-login > .nav-link:hover::before,
.main-menu > .nav-link.dropdown-toggle:hover::before {
  transform: scale(0.9);
}

.navbar-nav {
  align-items: center;
  gap: 0 12px;
}
.navbar-nav .nav-item .nav-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
  letter-spacing: -0.01em;
  color: #D9D9D9;
  text-transform: uppercase;
}
.navbar-nav .nav-item .nav-link:hover {
  cursor: pointer;
}
.navbar-nav .nav-item:hover {
  cursor: pointer;
}
.navbar-nav .plans .button span {
  color: #D9D9D9;
}

.main-menu .dropdown-menu,
.language .dropdown-menu {
  background-color: #0A002C;
}
.main-menu .dropdown-item,
.language .dropdown-item {
  position: relative;
  font-style: normal;
  font-weight: 200;
  line-height: 40px;
  color: #FFFFFF;
  padding-bottom: 0.2em;
}
.main-menu .dropdown-item::before,
.language .dropdown-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #398BF0 0%, #A82B9F 100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.main-menu .dropdown-item:hover, .main-menu .dropdown-item:focus, .main-menu .dropdown-item:active, .main-menu .dropdown-item.active,
.language .dropdown-item:hover,
.language .dropdown-item:focus,
.language .dropdown-item:active,
.language .dropdown-item.active {
  color: #FFFFFF;
  background: transparent;
}
.main-menu .dropdown-item:hover::before, .main-menu .dropdown-item:focus::before, .main-menu .dropdown-item:active::before, .main-menu .dropdown-item.active::before,
.language .dropdown-item:hover::before,
.language .dropdown-item:focus::before,
.language .dropdown-item:active::before,
.language .dropdown-item.active::before {
  opacity: 1;
}

.language .dropdown-item {
  padding-right: 2em;
}
.language .dropdown-item::before {
  width: 2em;
  height: 100%;
  right: 0;
  background-size: auto 50%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 12C2 9.34784 3.05357 6.8043 4.92893 4.92893C6.8043 3.05357 9.34784 2 12 2C14.6522 2 17.1957 3.05357 19.0711 4.92893C20.9464 6.8043 22 9.34784 22 12C22 14.6522 20.9464 17.1957 19.0711 19.0711C17.1957 20.9464 14.6522 22 12 22C9.34784 22 6.8043 20.9464 4.92893 19.0711C3.05357 17.1957 2 14.6522 2 12ZM11.375 3.34625C10.5375 3.60125 9.70625 4.37125 9.01625 5.665C8.8375 6 8.67125 6.365 8.5225 6.755C9.40375 6.95125 10.3625 7.07625 11.375 7.11375V3.34625ZM7.31125 6.42375C6.79703 6.25853 6.29636 6.05375 5.81375 5.81125C6.62804 4.99714 7.59479 4.35151 8.65875 3.91125C8.3783 4.27834 8.12869 4.668 7.9125 5.07625C7.68271 5.51198 7.48226 5.96256 7.3125 6.425L7.31125 6.42375ZM6.38625 11.375H3.27125C3.38764 9.71221 3.97898 8.1178 4.975 6.78125C5.5625 7.10375 6.21875 7.38375 6.93125 7.615C6.60715 8.84356 6.42388 10.105 6.385 11.375H6.38625ZM8.13625 7.94875C9.14625 8.1825 10.2375 8.325 11.375 8.36375V11.375H7.6375C7.68125 10.1412 7.8575 8.9825 8.13625 7.94875ZM12.625 8.3625V11.375H16.3625C16.3253 10.2178 16.158 9.0685 15.8637 7.94875C14.8537 8.1825 13.7625 8.325 12.625 8.36375V8.3625ZM7.6375 12.625H11.375V15.6363C10.2375 15.6738 9.14625 15.8175 8.13625 16.0513C7.84155 14.9315 7.67383 13.7822 7.63625 12.625H7.6375ZM12.625 12.625V15.6363C13.7625 15.6738 14.8537 15.8175 15.8637 16.0513C16.1425 15.0175 16.3188 13.8588 16.3638 12.625H12.625ZM8.5225 17.245C9.46048 17.0393 10.4153 16.9197 11.375 16.8875V20.655C10.5375 20.4 9.70625 19.63 9.01625 18.3363C8.82944 17.9834 8.66454 17.6194 8.5225 17.2462V17.245ZM8.66 20.09C8.37904 19.7226 8.12901 19.3325 7.9125 18.9237C7.68228 18.4881 7.48141 18.0375 7.31125 17.575C6.79704 17.7403 6.29638 17.945 5.81375 18.1875C6.62781 19.0025 7.59458 19.649 8.65875 20.09H8.66ZM6.93125 16.385C6.25452 16.6011 5.59956 16.8802 4.975 17.2188C3.97937 15.8821 3.38846 14.2877 3.2725 12.625H6.385C6.42345 13.895 6.60672 15.1565 6.93125 16.385ZM15.3413 20.09C16.4049 19.6493 17.3712 19.0032 18.185 18.1888C17.7028 17.9463 17.2025 17.7415 16.6888 17.5763C16.5185 18.0383 16.3177 18.4885 16.0875 18.9237C15.8714 19.3325 15.6218 19.7226 15.3413 20.09ZM12.625 16.8863C13.6375 16.9238 14.5962 17.0487 15.4775 17.245C15.3275 17.635 15.1625 18 14.9838 18.335C14.2937 19.6287 13.4613 20.3975 12.625 20.6538V16.8875V16.8863ZM17.0688 16.385C17.7812 16.6163 18.4375 16.8963 19.025 17.2188C20.0206 15.8821 20.6115 14.2877 20.7275 12.625H17.615C17.5765 13.895 17.3933 15.1565 17.0688 16.385ZM20.7275 11.375H17.615C17.5765 10.105 17.3933 8.84347 17.0688 7.615C17.7454 7.39862 18.4003 7.11949 19.025 6.78125C20.0206 8.11791 20.6115 9.71233 20.7275 11.375ZM16.0875 5.07625C16.3088 5.49375 16.5112 5.94375 16.69 6.42375C17.2034 6.25843 17.7032 6.05365 18.185 5.81125C17.3711 4.99728 16.4048 4.35165 15.3413 3.91125C15.6138 4.265 15.8638 4.6575 16.0875 5.07625ZM15.4775 6.755C14.5962 6.95125 13.6362 7.07625 12.625 7.11375V3.34625C13.4625 3.60125 14.2937 4.37125 14.9838 5.665C15.1625 6 15.3287 6.365 15.4775 6.755Z' fill='%23D9D9D9'/%3E%3C/svg%3E");
}

.main-menu .dropdown-menu {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  position: fixed !important;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  width: -moz-fit-content;
  width: fit-content;
  padding: 3em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5em 2em;
  font-size: 46px;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #172B85;
  transition: all 0.3s ease-in-out;
}

.main-menu .dropdown-menu.show {
  transform: translate(-50%, 0);
}
.main-menu .dropdown-menu.show::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 1;
  display: block;
  width: 52px;
  height: 52px;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_484_679)'%3E%3Crect x='4.00488' y='4' width='44' height='44' rx='10' fill='%2307001F' fill-opacity='0.4'/%3E%3Cpath d='M32.0049 20L20.0049 32M20.0049 20L32.0049 32' stroke='%23D9D9D9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Crect x='4.50488' y='4.5' width='43' height='43' rx='9.5' stroke='url(%23paint0_linear_484_679)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_484_679' x1='26.0049' y1='4' x2='26.0049' y2='48' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23398BF0'/%3E%3Cstop offset='1' stop-color='%23A82B9F'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_484_679'%3E%3Crect x='4.00488' y='4' width='44' height='44' rx='10' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.dropdown-toggle::after {
  display: none;
}

footer .navbar .navbar-brand {
  display: block;
  width: 121px;
  height: 163px;
  max-height: 100%;
}
footer .navbar .navbar-nav {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
footer .navbar .navbar-nav .nav-item {
  flex-basis: 16.66%;
}
footer .navbar .navbar-nav .nav-item:first-child {
  flex-basis: 33.33%;
}
footer .navbar .navbar-nav .nav-link {
  padding: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 160%;
  letter-spacing: 0.005em;
  color: #FFFFFF;
}
footer .navbar .navbar-nav .dropdown-menu {
  position: relative;
  top: unset;
  background: transparent;
}
footer .navbar .navbar-nav .dropdown-item {
  padding: 1em 0;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
  letter-spacing: -0.01em;
  color: #D9D9D9;
}
footer .navbar .navbar-nav .dropdown-item:hover, footer .navbar .navbar-nav .dropdown-item:focus {
  color: #fff;
  background: transparent;
}
footer .extra-bar {
  border-top: 1px solid rgba(126, 171, 212, 0.7);
  z-index: 4;
  position: relative;
}
footer .extra-bar a {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 160%;
  letter-spacing: 0.005em;
  color: #D9D9D9;
  text-transform: uppercase;
  text-decoration: none;
}
footer .extra-bar .links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
footer .extra-bar .copyright {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 160%;
  letter-spacing: 0.005em;
  color: #D9D9D9;
  text-align: center;
}

section {
  width: 100%;
  padding-top: 88px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.section-1 {
  min-height: 100vh;
}

.video {
  height: 80vh;
  width: 100%;
  background: #07001F;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

video {
  max-width: 100%;
}

.title-bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;
  min-height: 310px;
  background: #07001F;
  border-radius: 50px;
}

.modal .modal-back {
  background-color: transparent;
  border: none;
  position: absolute;
  left: 1rem;
  top: 1rem;
}
.modal .modal-header {
  border: none;
  flex-direction: column;
}
.modal .modal-header .btn-close {
  position: absolute;
  right: 2rem;
  top: 2rem;
}
.modal .modal-header .modal-icon {
  margin: 1rem auto;
}
.modal .modal-content {
  background: #0A002C linear-gradient(135deg, rgba(57, 139, 240, 0.47) 3.91%, rgba(112, 92, 200, 0.15) 44.74%, rgba(168, 43, 159, 0.47) 97.1%);
  border-radius: 50px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #D9D9D9;
}
.modal .modal-content h5 {
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 1rem;
  margin-bottom: 1em;
}
.modal .modal-content .modal-body button {
  outline: none;
  cursor: pointer;
}
.modal .modal-content .modal-body button.btn.btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0px 12px;
  gap: 8px;
  min-width: 120px;
  height: 40px;
  background: #A0059D;
  border: 2px solid transparent;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #D9D9D9;
}
.modal .modal-content .modal-body button.btn.btn-primary:hover {
  color: #FFFFFF;
  border: 2px solid transparent;
  -o-border-image: none;
     border-image: none;
  background: linear-gradient(180deg, #0A002C 0%, #0A002C 100%) padding-box, linear-gradient(180deg, #398BF0 0%, #a82b9f 100%) border-box;
}
.modal .modal-content .modal-body button.link {
  background-color: transparent;
  border: none;
  color: #D9D9D9;
}
.modal .modal-content .modal-body form {
  text-align: left;
}
.modal .modal-content .modal-body .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.page-home .section-1 {
  justify-content: center;
}
.page-home .section-1 .aim {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 1040px;
  max-width: 100%;
  height: 22.5%;
  background-color: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-mask-image: url("/theme/aimationstudio/img/aimation.svg");
          mask-image: url("/theme/aimationstudio/img/aimation.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: 50%;
          mask-position: 50%;
}
.page-home .section-1 .kinetic {
  position: absolute;
  height: 87.1%;
  width: 91.46%;
  top: 6%;
  left: 0;
  transform: translateX(-15%);
  background-image: url("/theme/aimationstudio/img/kinetic.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  background-blend-mode: lighten;
}
.page-home .section-1 .slogan {
  position: absolute;
  top: 37%;
  left: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.page-home .section-1 .slogan .slogan-icon {
  display: block;
  transition: all 0.5s ease-in-out;
}
.page-home .section-1 .slogan .slogan-icon .plus {
  transform-origin: center;
  transition: all 0.5s ease-in-out;
}
.page-home .section-1 .slogan .slogan-icon:hover {
  transform: rotate(-135deg);
}
.page-home .section-1 .slogan .slogan-icon:hover .plus {
  transform: rotate(-45deg);
}
.page-home .section-1 .slogan .slogan-text {
  font-style: normal;
  font-weight: 300;
  font-size: 26px;
  line-height: 120%;
  letter-spacing: 0.005em;
  color: #D9D9D9;
  text-align: left;
}
.page-home .section-2 {
  justify-content: center;
}
.page-home .section-2 p {
  padding-bottom: 1em;
}
.page-home .section-3 .steps h2 {
  margin-top: 1em;
}
.page-home .section-3 .steps p {
  padding-bottom: 3em;
}
.page-home .section-3 .steps img {
  max-width: 100%;
}
.page-home .section-3 .steps .step:nth-child(2) {
  margin-top: 8em;
}
.page-home .section-3 .steps .step:nth-child(3) {
  margin-top: -8em;
}
.page-home .section-3 .steps .step:nth-child(4) {
  margin-top: 3em;
}
.page-home .section-5 h2 {
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.005em;
}
.page-home .section-6 .attributes {
  width: 720px;
  max-width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
}
.page-home .section-6 .attributes .attribute {
  position: relative;
  padding-top: 100%;
}
.page-home .section-6 .attributes .attribute .attribute-inner {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.page-home .section-6 .attributes .attribute .attribute-inner.a1 {
  width: 100%;
  padding-top: 100%;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #0A002C 24.74%, #631b5f 88.25%) padding-box, linear-gradient(to left, #398BF0 24.74%, #a82b9f 88.25%) border-box;
  border-radius: 50px 0px 0px 0px;
}
.page-home .section-6 .attributes .attribute .attribute-inner.a1:hover {
  width: 95%;
  padding-top: 95%;
}
.page-home .section-6 .attributes .attribute .attribute-inner.a2 {
  width: 80%;
  padding-top: 80%;
  bottom: 0;
  left: 0;
  background: linear-gradient(215deg, #0A002C 24.74%, #631b5f 88.25%) padding-box, linear-gradient(to right, #398BF0 24.74%, #a82b9f 88.25%) border-box;
  border-radius: 0px 50px 0px 0px;
}
.page-home .section-6 .attributes .attribute .attribute-inner.a2:hover {
  width: 75%;
  padding-top: 75%;
}
.page-home .section-6 .attributes .attribute .attribute-inner.a3 {
  width: 80%;
  padding-top: 80%;
  top: 0;
  right: 0;
  background: linear-gradient(45deg, #0A002C 24.74%, #631b5f 88.25%) padding-box, linear-gradient(to left, #398BF0 24.74%, #a82b9f 88.25%) border-box;
  border-radius: 0px 0px 0px 50px;
}
.page-home .section-6 .attributes .attribute .attribute-inner.a3:hover {
  width: 75%;
  padding-top: 75%;
}
.page-home .section-6 .attributes .attribute .attribute-inner.a4 {
  width: 100%;
  padding-top: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(305deg, #0A002C 24.74%, #631b5f 88.25%) padding-box, linear-gradient(to right, #398BF0 24.74%, #a82b9f 88.25%) border-box;
  border-radius: 0px 0px 50px 0px;
}
.page-home .section-6 .attributes .attribute .attribute-inner.a4:hover {
  width: 95%;
  padding-top: 95%;
}
.page-home .section-6 .attributes .attribute .attribute-inner .attribute-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.page-home .section-6 .attributes .attribute .attribute-inner .attribute-info .title {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.12px;
}
.page-home .section-6 .attributes .attribute .attribute-inner .attribute-info .range {
  position: relative;
  height: 5px;
  width: 65%;
  border-radius: 2px;
  background: #07001F;
}
.page-home .section-6 .attributes .attribute .attribute-inner .attribute-info .range::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: var(--range);
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #005495 0%, #40D1FF 100%);
}
.page-home .section-6 .attributes .attribute .attribute-inner .attribute-info .amount {
  color: #7EABD4;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.07px;
}
.page-home .section-6 .button {
  width: 150px;
}
.page-home .section-7 {
  justify-content: center;
}
.page-home .section-7 .get-aimation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 94%;
  height: 80vh;
  margin: 0 auto;
  background: linear-gradient(350deg, rgba(57, 139, 240, 0.47) 3.91%, rgba(112, 92, 200, 0.15) 44.74%, rgba(168, 43, 159, 0.47) 97.1%);
  border-radius: 50px;
}
.page-home .section-7 .button {
  width: 230px;
}
.page-home .section-8 h2 {
  font-family: "Alexandria";
  font-style: normal;
  font-weight: 200;
  font-size: 56px;
  line-height: 120%;
  margin-bottom: 1em;
  color: #FFFFFF;
}
.page-home .section-8 ul {
  font-size: 24px;
  padding-left: 1em;
  list-style-type: square;
  color: #A0059D;
}
.page-home .section-8 ul li p {
  font-size: 18px;
  line-height: 200%;
  padding-bottom: 0;
  color: #7EABD4;
  letter-spacing: 0.005em;
}
.page-home .section-8 .incoming {
  border-left: 1px solid #7EABD4;
}
.page-home .section-8 .incoming h2 {
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.005em;
  margin: 36px 0 56px 0;
}
.page-home .section-8 .incoming ul {
  font-size: 24px;
  padding-left: 1em;
  list-style-type: square;
  color: #A0059D;
}
.page-home .section-8 .incoming ul li p {
  font-size: 16px;
  line-height: 160%;
}

.page-about-us .nav-tabs {
  border-bottom: none;
}
.page-about-us .nav-tabs .nav-link {
  color: #a0a0a0;
  font-weight: 600;
  border: none;
  border-radius: 0;
  padding: 15px 25px;
  transition: all 0.3s ease-in-out;
}
.page-about-us .nav-tabs .nav-link.active {
  background-color: #a72c9f;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid #fff;
}
.page-about-us .nav-tabs .nav-link:hover {
  color: #fff;
  transition: all 0.1s ease-in-out;
}
.page-about-us .tab-content {
  margin-top: 20px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.page-about-us .tab-content > .tab-pane {
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  visibility: hidden;
  position: absolute;
  width: 100%;
}
.page-about-us .tab-content > .active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.page-about-us .section-1 {
  justify-content: center;
}
.page-about-us .section-2 {
  justify-content: center;
}
.page-about-us .section-3 > .container {
  background: linear-gradient(135deg, rgba(57, 139, 240, 0.47) 3.91%, rgba(112, 92, 200, 0.15) 44.74%, rgba(168, 43, 159, 0.47) 97.1%);
  border-radius: 50px;
}
.page-about-us .section-3 .team-member {
  width: 250px;
}
.page-about-us .section-3 .team-member .photo img {
  max-width: 100%;
  border-radius: 40px;
}
.page-about-us .section-3 .team-member .description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.page-about-us .section-3 .team-member .description .name {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.page-about-us .section-3 .team-member .description .title {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.005em;
  color: #7EABD4;
}

.page-contact .section-1 h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 12px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 1em;
}
.page-contact .section-1 address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.page-contact .section-1 address.title {
  font-style: normal;
  font-weight: 200;
  font-size: 56px;
  line-height: 120%;
  color: #FFFFFF;
}
.page-contact .section-1 address span,
.page-contact .section-1 address a {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0.005em;
  color: #FFFFFF;
  text-decoration: none;
}
.page-contact .section-1 .map iframe {
  border-radius: 50px;
}
.page-contact .section-1 .lf-help {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(57, 139, 240, 0.47) 3.91%, rgba(112, 92, 200, 0.15) 44.74%, rgba(168, 43, 159, 0.47) 97.1%);
  border-radius: 50px;
}
.page-contact .section-1 .lf-help .button {
  width: 90px;
}
.page-contact .social-links a {
  text-decoration: none;
}

.page-changelog .section-1 {
  justify-content: center;
}
.page-changelog .section-2 {
  text-align: left;
}
.page-changelog .section-2 .changelog-by-date {
  border-left: 1px solid #7EABD4;
}
.page-changelog .section-2 .pagination-menu {
  color: #fff;
  background: #3b3356;
  margin: 2px;
  padding: 4px;
  border-radius: 2px;
  text-decoration: none;
}
.page-changelog .section-2 .category-changelog {
  text-align: center;
  text-transform: uppercase;
}
.page-changelog .section-2 .category-changelog a {
  color: #D9D9D9;
  text-decoration: none;
}
.page-changelog .section-2 .category-changelog a.link-active {
  text-decoration: underline;
}
.page-changelog .section-2 .date {
  display: flex;
  width: 100%;
  position: relative;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0.005em;
  color: #FFFFFF;
  margin-top: 2rem;
}
.page-changelog .section-2 .date::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 8px;
  height: 8px;
  background: #7EABD4;
  border-radius: 2px;
}
.page-changelog .section-2 .changes {
  border-bottom: 1px solid #7EABD4;
  padding: 2rem;
  padding-left: 0;
  margin-left: 2rem;
}
.page-changelog .section-2 .changes li {
  position: relative;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0.005em;
  color: #7EABD4;
  padding-left: 24px;
}
.page-changelog .section-2 .changes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #A82B9F;
  border-radius: 2px;
}
.page-changelog .section-2 .button {
  width: 155px;
  margin: 0 auto;
}

.page-privacy-policy .section-1,
.page-terms-of-use .section-1,
.page-rules .section-1 {
  min-height: unset;
}
.page-privacy-policy .section-2,
.page-terms-of-use .section-2,
.page-rules .section-2 {
  text-align: left;
}
.page-privacy-policy .section-2 p,
.page-terms-of-use .section-2 p,
.page-rules .section-2 p {
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0.005em;
  color: #D9D9D9;
}
.page-privacy-policy .section-2 p strong,
.page-terms-of-use .section-2 p strong,
.page-rules .section-2 p strong {
  font-weight: 700;
}

.page-terms-of-use .terms-of-use ul,
.page-rules .terms-of-use ul {
  list-style-type: decimal;
  padding-left: 1.5rem;
}
.page-terms-of-use .terms-of-use ul li,
.page-rules .terms-of-use ul li {
  padding-left: 1rem;
}
.page-terms-of-use .terms-of-use ul ol,
.page-rules .terms-of-use ul ol {
  list-style-type: lower-alpha;
  padding-left: 1.5rem;
}

.faq-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.faq-box .faq-item {
  width: 100%;
}
.faq-box .faq-item .faq-btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 24px 25% 24px 40px;
  background: linear-gradient(90deg, rgba(57, 139, 240, 0) -22.24%, rgba(168, 43, 159, 0.47) 88.95%);
  border-radius: 20px;
  text-align: left;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0.005em;
  color: #7EABD4;
  text-decoration: none;
}
.faq-box .faq-item .faq-btn::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8.5L12 15.5L19 8.5' stroke='%23D9D9D9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
}
.faq-box .faq-item .faq-text {
  background: transparent;
}
.faq-box .faq-item .faq-text > p {
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  padding: 1em 2em 1em 4em;
}
.faq-box .faq-item .faq-text > p::after {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  width: 16px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='40' viewBox='0 0 16 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 26L16 32.584L8 39.168L6.575 38.0158L12.175 33.407L6.11959e-07 33.407L7.86805e-07 31.761L12.175 31.761L6.575 27.1522L8 26Z' fill='%237EABD4'/%3E%3Cpath d='M1 0V33' stroke='%237EABD4' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

.page-shop .chooseCurrency {
  width: 195px;
}
.page-shop #chooseCurrency ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.page-shop #chooseCurrency ul li a {
  text-decoration: none;
  color: #D9D9D9;
  line-height: 1.2em;
}
.page-shop .video {
  height: 20vh;
  min-height: 30vh;
  padding-top: 10px;
}
.page-shop section {
  min-height: 10vh;
}
.page-shop .product .product-item {
  background: linear-gradient(138.04deg, rgba(57, 139, 240, 0.47) 3.91%, rgba(112, 92, 200, 0.15) 44.74%, rgba(168, 43, 159, 0.47) 97.1%);
  border-radius: 40px;
  width: 366px;
  height: 670px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 35px;
}
.page-shop .product .product-item h5 {
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  text-align: center;
  color: #D9D9D9;
}
.page-shop .product .product-item h5 span {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.page-shop .product .product-item .price .value {
  font-weight: 500;
  font-size: 38px;
  line-height: 120%;
  color: #D900C3;
}
.page-shop .product .product-item .price .currency {
  padding-left: 0.5em;
  font-weight: 500;
  font-size: 38px;
  line-height: 120%;
  color: #D9D9D9;
}
.page-shop .product .product-item .subscription.cost, .page-shop .product .product-item .subscription.extra {
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  align-items: center;
  text-align: center;
  letter-spacing: 0.005em;
  color: #D9D9D9;
}
.page-shop .product .product-item .image {
  position: relative;
  width: 55%;
  padding-top: 100%;
}
.page-shop .product .product-item .image::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 100%;
  padding-top: 100%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
  filter: blur(58px);
}
.page-shop .product .product-item .image img {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}
.page-shop .product .product-item .buyItem {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0px 12px;
  gap: 8px;
  min-width: 120px;
  height: 40px;
  background: #A0059D;
  border: 2px solid transparent;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #D9D9D9;
}
.page-shop .product .product-item .buyItem:hover {
  color: #FFFFFF;
  border: 2px solid transparent;
  -o-border-image: none;
     border-image: none;
  background: linear-gradient(180deg, #0A002C 0%, #0A002C 100%) padding-box, linear-gradient(180deg, #398BF0 0%, #a82b9f 100%) border-box;
}
.page-shop .product-item-2 {
  background: linear-gradient(138.04deg, rgba(57, 139, 240, 0.47) 3.91%, rgba(112, 92, 200, 0.15) 44.74%, rgba(168, 43, 159, 0.47) 97.1%);
  border-radius: 40px;
  width: 100%;
  height: 670px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 35px;
}
.page-shop .product-item-2 h5 {
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  text-align: center;
  color: #D9D9D9;
}
.page-shop .product-item-2 h5 span {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.page-shop .product-item-2 .price .value {
  font-weight: 500;
  font-size: 38px;
  line-height: 120%;
  color: #D900C3;
}
.page-shop .product-item-2 .price .currency {
  padding-left: 0.5em;
  font-weight: 500;
  font-size: 38px;
  line-height: 120%;
  color: #D9D9D9;
}
.page-shop .product-item-2 .subscription.cost, .page-shop .product-item-2 .subscription.extra {
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  align-items: center;
  text-align: center;
  letter-spacing: 0.005em;
  color: #D9D9D9;
}
.page-shop .product-item-2 .image {
  position: relative;
  width: 55%;
  padding-top: 100%;
}
.page-shop .product-item-2 .image::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 20%;
  width: 60%;
  padding-top: 100%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
  filter: blur(58px);
}
.page-shop .product-item-2 .image img {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 20%;
  max-width: 40%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}
.page-shop .product-item-2 .buyItem {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0px 12px;
  gap: 8px;
  min-width: 120px;
  height: 40px;
  background: #A0059D;
  border: 2px solid transparent;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #D9D9D9;
}
.page-shop .product-item-2 .buyItem:hover {
  color: #FFFFFF;
  border: 2px solid transparent;
  -o-border-image: none;
     border-image: none;
  background: linear-gradient(180deg, #0A002C 0%, #0A002C 100%) padding-box, linear-gradient(180deg, #398BF0 0%, #a82b9f 100%) border-box;
}
.page-shop .product-info {
  text-align: center;
}
.page-shop .product-info .payment-info img {
  height: 25px;
}
.page-shop .product-info .payment-info p {
  font-size: 12px;
}
.page-shop .product-info p {
  font-weight: 300;
  font-size: 20px;
  line-height: 160%;
  color: #D9D9D9;
}

.slots {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  align-items: center;
  text-align: center;
  letter-spacing: 0.005em;
  color: #D9D9D9;
}
.slots span {
  padding-right: 15px;
}
.slots .slotsBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  width: 20px;
  height: 20px;
  background: #A82B9F;
  border: none;
  border-radius: 3px;
  color: #D9D9D9;
}
.slots input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.slots input[type=number]::-webkit-inner-spin-button,
.slots input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.slots .quantity {
  border: none;
  background: transparent;
  outline: none;
  width: 30px;
  margin: 0 5px;
  text-align: center;
  color: #D9D9D9;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.005em;
}

blockquote,
q {
  background: rgba(55, 138, 239, 0.38);
  width: 100%;
  padding: 14px 32px !important;
  position: relative;
  font-style: italic;
  line-height: 200%;
  letter-spacing: 0.005em;
  margin: 1.5em 0;
  border: none;
  border-left: 5px solid rgba(55, 138, 239, 0.38);
  border-radius: 0;
  border-top: 1px solid rgba(55, 138, 239, 0.38);
  border-radius: 25px;
  padding: 32px 32px 16px 32px !important;
}
blockquote:empty,
q:empty {
  display: none;
}
blockquote p,
q p {
  display: inline;
}

/*blockquote::before,
q::before {
    position: absolute;
    content: '“';
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    color: #348cf1;
    top: 20px;
    left: 16px;
}

blockquote::after,
q::after {
    position: absolute;
    content: '”';
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    color: #348cf1;
    bottom: 0px;
    right: 16px;
}*/
.overview-full {
  transition: height 0.3s ease-out, opacity 0.5s ease-in 1s;
  overflow: hidden;
  opacity: 0;
  padding: 15px;
}
.overview-full p {
  font-size: 14px;
  line-height: 100%;
  padding-bottom: 2px;
}

.overview-content {
  padding: 15px;
}

.collapse.show {
  height: auto !important;
  opacity: 1;
  transition: height 0.3s ease-in, opacity 0.2s ease-in 0.2s;
}

.button-aimation {
  border: 2px solid transparent;
  border-radius: 15px;
  background: linear-gradient(135deg, #0A002C 24.74%, #631b5f 88.25%) padding-box, linear-gradient(to left, #398BF0 24.74%, #a82b9f 88.25%) border-box;
  color: #fff;
  padding: 10px 15px;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0px 40px;
}

.container-fluid {
  max-width: 98%;
}

.lb-overlay,
.lb-outerContainer {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.lightbox .lb-image {
  border: 4px solid rgba(0, 0, 0, 0.9) !important;
}

/* blog import */
.bloguser .autor-information {
  width: 80%;
}
.bloguser .autor-information img {
  width: 20%;
  float: left;
  margin: 0 auto;
  height: auto;
}
.bloguser .autor-about {
  width: 80%;
  float: right;
  padding: 20px;
  font-size: 18px;
  text-align: justify;
}
.bloguser .autor-about h1 {
  font-size: 24px;
}

h3,
h4 {
  font-size: 25px;
}

.bloguser-articleslist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bloguser-articleslist h4 {
  font-size: 18px;
  text-align: center;
  padding: 15px 0px 0px 0px;
  margin-bottom: 0px;
}
.bloguser-articleslist .bloguser-article {
  width: 23%;
}
.bloguser-articleslist .bloguser-article img.article-img {
  min-height: 150px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bloguser-articleslist .read-more {
  padding: 20px;
}
@media (max-width: 768px) {
  .bloguser-articleslist .bloguser-article {
    width: 100%;
  }
}

.article-content {
  width: 80%;
}
.article-content-img {
  max-height: 400px;
  width: auto;
  max-width: 100%;
}
.article-content .article-bottom {
  margin-top: 10px;
  padding-top: 10px;
  margin-bottom: 20px;
  border-top: 1px solid #ccc;
}
.article-content .article-bottom .article-author {
  display: flex;
  align-items: center;
}
.article-content .article-bottom .article-author time {
  padding-left: 4px;
}
.article-content .article-bottom .article-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}
.article-content .article-bottom .article-author a {
  color: #2f7ad9;
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
}
.article-content .article-bottom .article-author a:hover {
  text-decoration: underline;
}

.button {
  max-width: 230px;
  margin: 0 auto;
}
.button.back {
  margin-top: 20px;
  max-width: 155px;
}

.articles-first, .articles-columns-two, .articles-columns-three {
  width: 100%;
  padding: 0 10px;
}
.articles-first .article-info, .articles-columns-two .article-info, .articles-columns-three .article-info {
  width: 100%;
  padding: 20px;
}
.articles-first .article-img, .articles-columns-two .article-img, .articles-columns-three .article-img {
  width: 100%;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.articles-first-image {
  width: 50%;
  float: left;
  padding-right: 10px;
}
.articles-first-content {
  width: 50%;
  float: right;
  padding-left: 10px;
}
.articles-first-content .article-title {
  font-size: 25px;
  font-display: auto;
  font-family: "Poppins", sans-serif;
}
.articles-first-content .article-category {
  color: #0090ff;
}
.articles-first-content a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.articles-first-content .article-content {
  font-size: 16px;
  font-display: auto;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}
.articles-first-content .article-author {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: #0090ff;
}
.articles-first-content .article-author time {
  padding-left: 4px;
}
.articles-first-content .article-author img {
  width: 50px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.articles-first-content .article-author .author-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 10px;
}
.articles-first-content .article-author .author-date span {
  line-height: 4.2;
  align-self: flex-start;
}
.articles-three-image {
  width: 100%;
  float: left;
  padding-right: 10px;
}
.articles-three-content {
  width: 100%;
  float: right;
  padding-left: 10px;
}
.articles-three-content .article-title {
  font-size: 25px;
  font-display: auto;
  font-family: "Poppins", sans-serif;
}
.articles-three-content .article-category {
  color: #0090ff;
}
.articles-three-content a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.articles-three-content .article-content {
  min-height: 100px;
  font-size: 16px;
  font-display: auto;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}
.articles-three-content .article-author {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: #0090ff;
}
.articles-three-content .article-author time {
  padding-left: 4px;
}
.articles-three-content .article-author img {
  width: 50px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.articles-three-content .article-author .author-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 10px;
}
.articles-three-content .article-author .author-date span {
  line-height: 4.2;
  align-self: flex-start;
}
.articles-columns-two {
  width: 50%;
  float: left;
}
.articles-columns-three {
  width: 33%;
  float: left;
}

@media only screen and (max-width: 1366px) {
  .columns {
    display: flex;
    flex-wrap: wrap;
  }
  .articles-first, .articles-columns-two, .articles-columns-three {
    width: 100%;
    padding: 0 10px;
  }
  .articles-first .article-info, .articles-columns-two .article-info, .articles-columns-three .article-info {
    width: 100%;
    padding: 20px;
  }
  .articles-first .article-img, .articles-columns-two .article-img, .articles-columns-three .article-img {
    width: 100%;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  .articles-first .article-author, .articles-columns-two .article-author, .articles-columns-three .article-author {
    justify-content: center;
  }
  .articles-first-image, .articles-first-content {
    width: 100%;
    float: none;
    padding: 0;
  }
  .articles-first-image {
    padding-bottom: 10px;
  }
  .articles-first-content .article-title {
    font-size: 45px;
  }
  .articles-three-image, .articles-three-content {
    width: 100%;
    float: none;
    padding: 0;
  }
  .articles-three-image {
    padding-bottom: 10px;
  }
  .articles-three-content .article-title {
    font-size: 25px;
  }
  .articles-columns-two, .articles-columns-three {
    width: 100%;
    float: none;
  }
}
@media only screen and (max-width: 768px) {
  .article-content {
    width: 100% !important;
    padding-bottom: 15px;
  }
}
/* end blog import*/
.modal-fullscreen {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
}

.col-6 {
  flex: 1;
  overflow-y: auto;
}

#email-preview {
  background-color: #f8f9fa;
  height: 100%;
  overflow-y: auto;
  white-space: pre-wrap;
}

.pagebreak {
  page-break-after: always;
}

.aimation-page-break {
  padding: 20px;
}

@media only screen and (max-width: 992px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 14px;
  }
  h3 {
    font-size: 18px;
  }
  .navbar {
    padding: 0;
  }
  .navbar > .container {
    padding: 0;
  }
  .navbar .navbar-brand {
    top: 6px;
    position: relative;
    left: 10px;
  }
  .navbar .language-mobile, .navbar .user-login-mobile {
    display: block;
    position: absolute;
  }
  .navbar .language-mobile {
    top: 27px;
    left: 45%;
    transform: translateX(-100%);
  }
  .navbar .user-login-mobile {
    top: 13px;
    right: 45%;
    transform: translateX(100%);
  }
  .navbar .navbar-nav {
    padding: 1rem 0;
    background-color: #0A002C;
  }
  .navbar .navbar-nav .language, .navbar .navbar-nav .user-login {
    display: none;
  }
  .navbar .main-menu {
    width: 100%;
  }
  .navbar .main-menu > .nav-link.dropdown-toggle {
    display: none;
  }
  .navbar .main-menu .dropdown-item::before {
    display: none;
  }
  .navbar .main-menu .dropdown-menu {
    display: grid;
    position: relative !important;
    right: unset;
    top: unset;
    left: unset;
    transform: none;
    opacity: 1;
    border: none;
    width: 100%;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 14px;
    max-height: unset;
    overflow-y: auto;
    text-align: center;
  }
  .navbar .main-menu .dropdown-menu.show::before {
    display: none;
  }
  .navbar .main-menu .dropdown-menu .dropdown-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 12px;
    letter-spacing: -0.01em;
    color: #D9D9D9;
    text-transform: uppercase;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  }
  .page-home .section-1 .kinetic {
    height: 60.1%;
    width: 91.46%;
    transform: translateX(-35%);
  }
  .page-home .section-1 .slogan {
    transform: translateX(-50%);
    flex-direction: column;
  }
  .page-home .section-1 .slogan .slogan-text {
    text-align: center;
  }
  .page-home .section-6 .attributes {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .page-home .section-6 .attributes .attribute {
    padding: 0;
  }
  .page-home .section-6 .attributes .attribute .attribute-inner {
    position: relative;
  }
  .page-home .section-6 .attributes .attribute .attribute-inner.a1, .page-home .section-6 .attributes .attribute .attribute-inner.a2, .page-home .section-6 .attributes .attribute .attribute-inner.a3, .page-home .section-6 .attributes .attribute .attribute-inner.a4 {
    width: 100%;
    padding-top: 0;
    height: 174px;
  }
  .page-home .section-6 .attributes .attribute .attribute-inner.a2, .page-home .section-6 .attributes .attribute .attribute-inner.a3 {
    border-radius: 0;
  }
  .page-home .section-6 .attributes .attribute .attribute-inner.a4 {
    border-radius: 0px 0px 50px 50px;
  }
  .page-home .section-8 h2 {
    font-size: 32px;
  }
  .page-home .section-8 .incoming h2 {
    font-size: 18%;
    margin: 36px 0 16px 0;
  }
  .page-tutorials .tutorials .tutorials-list {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .page-tutorials .tutorials .tutorials-list .tutorial-item .title {
    font-size: 18px;
  }
  .modal .modal-content {
    min-height: 100vh;
  }
}
.description-textarea {
  overflow-wrap: break-word;
  word-wrap: break-word;
  /*
    img {
      max-width: 500px !important;
    }
  */
}
.description-textarea .align-center {
  text-align: center;
}
.description-textarea .align-left {
  text-align: left;
}
.description-textarea .align-justify {
  text-align: justify;
}
.description-textarea ul {
  list-style-type: disc;
}
.description-textarea table,
.description-textarea td {
  border: 1px solid rgba(55, 138, 239, 0.38);
  border-spacing: 2px;
  padding: 5px;
}
.description-textarea .mce-item-anchor {
  background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
}
.description-textarea .mce-item-anchor:not(:empty) {
  background-position-x: 2px;
  display: inline-block;
  padding-left: 12px;
}
.description-textarea .mce-item-anchor:empty {
  cursor: default;
  display: inline-block;
  height: 12px !important;
  padding: 0 2px;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
  width: 8px !important;
}
.description-textarea .mce-item-anchor[data-mce-selected] {
  outline-offset: 1px;
}
.description-textarea strong {
  font-weight: bold;
}
.description-textarea em {
  font-style: italic;
}
.description-textarea figure {
  display: table;
  margin: 1rem auto;
}
.description-textarea figure figcaption {
  color: #999;
  display: block;
  margin-top: 0.25rem;
  text-align: center;
}
.description-textarea hr {
  border-color: #ccc;
  border-style: solid;
  border-width: 1px 0 0 0;
}
.description-textarea code {
  background-color: #e8e8e8;
  border-radius: 3px;
  padding: 0.1rem 0.2rem;
}
.description-textarea video {
  box-shadow: 0px 0px 5px #5f0d60;
  border: 1px solid #5f0d60;
  margin: 10px;
}
.description-textarea .mce-content-body a {
  color: blue;
  text-decoration: underline;
}
.description-textarea h2 {
  display: block;
  color: #fff;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  font-weight: bold;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: isolate;
}
.description-textarea .tox-checklist > li:not(.tox-checklist--hidden) {
  list-style: none;
  margin: 0.25em 0;
  position: relative;
}
.description-textarea .tox-checklist > li:not(.tox-checklist--hidden)::before {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
  cursor: pointer;
  height: 1em;
  margin-left: -1.5em;
  margin-top: 0.125em;
  position: absolute;
  width: 1em;
}
.description-textarea .tox-checklist > li:not(.tox-checklist--hidden).tox-checklist--checked::before {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
}
.description-textarea [data-mce-placeholder]:not(.mce-visualblocks)::before {
  color: rgba(34, 47, 62, 0.7);
  content: attr(data-mce-placeholder);
  position: absolute;
  left: 1px;
}
.description-textarea img[data-mce-selected],
.description-textarea object[data-mce-selected],
.description-textarea video[data-mce-selected] {
  outline: 3px solid #b4d7ff;
}
.description-textarea .tox-rtc-user-selection--1 .tox-rtc-user-cursor {
  background-color: #2dc26b;
}
.description-textarea details {
  margin: 1rem auto;
  padding: 0 1rem;
  width: 35em;
  max-width: calc(100% - 2rem);
  position: relative;
  border: 1px solid rgba(55, 138, 239, 0.38);
  border-radius: 6px;
  background-color: rgba(55, 138, 239, 0.38);
  color: #fff;
  transition: background-color 0.15s;
}
.description-textarea details > :last-child {
  margin-bottom: 1rem;
}
.description-textarea details::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  opacity: 0.15;
  box-shadow: 0 0.25em 0.5em #263238;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: -1;
}
.description-textarea details[open] {
  background-color: rgba(55, 138, 239, 0.38);
}
.description-textarea details[open]::before {
  opacity: 0.6;
}
.description-textarea summary {
  padding: 1rem 2em 1rem 0;
  display: block;
  position: relative;
  font-size: 1em;
  font-weight: 400;
  cursor: pointer;
}
.description-textarea summary::before, .description-textarea summary::after {
  width: 0.75em;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  background-color: currentColor;
  text-align: right;
  transform: translateY(-50%);
  transition: transform 0.2s ease-in-out;
}
.description-textarea summary::after {
  transform: translateY(-50%) rotate(90deg);
}
[open] .description-textarea summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.description-textarea summary::-webkit-details-marker {
  display: none;
}
.description-textarea p {
  margin: 0 0 1em;
  line-height: 1.5;
}
.description-textarea ul {
  margin: 0 0 1em;
  padding: 0 0 0 1em;
}
.description-textarea li:not(:last-child) {
  margin-bottom: 0.5em;
}
.description-textarea code {
  padding: 0.2em;
  border-radius: 3px;
  background-color: rgba(55, 138, 239, 0.38);
}
pre > .description-textarea code {
  display: block;
  padding: 1em;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .description-textarea h2 {
    font-size: 1.2em;
  }
}
@media print {
  .description-textarea img,
  .description-textarea video {
    display: none;
  }
}
.page-tutorial .description-textarea {
  color: #fff;
  text-align: justify;
  border: 1px solid rgb(44, 4, 114);
  background: rgba(0, 0, 0, 0.54);
  box-shadow: 0px 0px 12px #110228;
  padding: 20px;
  border-radius: 50px;
}
.page-tutorial .title-bg {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.page-tutorial .title-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  border-radius: 50px;
}
.page-tutorial .title-bg h1 {
  position: relative;
  z-index: 2;
  color: white;
}
.page-tutorial section.tutorial {
  padding-top: 5px;
  min-height: auto;
}
.page-tutorial section.tutorial-head {
  padding-top: 88px;
  min-height: auto;
}

.page-tutorials {
  background: #0b0b0c url("/theme/aimationstudio/img/bg_header_tuto.png");
  background-repeat: no-repeat;
}
.page-tutorials .description-textarea {
  color: #e2e9f5;
  text-align: justify;
  border: 1px solid rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 12px #110228;
  padding: 20px;
  border-radius: 50px;
}
.page-tutorials .description-textarea p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.005em;
  padding-bottom: 5px;
}
.page-tutorials .section-1 {
  min-height: unset;
}
.page-tutorials .tutorials .filter-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #9F9F9F;
}
.page-tutorials .tutorials .filter {
  border-bottom: 1px solid rgba(126, 171, 212, 0.7);
  padding-bottom: 1rem;
}
.page-tutorials .tutorials .filter ul li {
  text-align: left;
}
.page-tutorials .tutorials .filter .filter-toggle-x {
  margin-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
  display: block;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  line-height: 12px;
  letter-spacing: -0.01em;
  color: #D9D9D9;
  text-transform: uppercase;
  padding-right: 26px;
  text-decoration: none;
}
.page-tutorials .tutorials .filter .filter-toggle {
  margin-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
  display: block;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  line-height: 12px;
  letter-spacing: -0.01em;
  color: #D9D9D9;
  text-transform: uppercase;
  padding-right: 26px;
  text-decoration: none;
}
.page-tutorials .tutorials .filter .filter-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) scale(1);
  transition: all 0.3s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 8.5L8 1.5L1 8.5' stroke='%23D9D9D9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}
.page-tutorials .tutorials .filter .filter-toggle.collapsed::after {
  transform: translateY(-50%) scale(-1);
}
.page-tutorials .tutorials .filter .filter-link {
  font-weight: 600;
  font-size: 11px;
  line-height: 2em;
  letter-spacing: 0.005em;
  color: #D9D9D9;
  text-decoration: none;
}
.page-tutorials .tutorials .filter .active {
  color: #8aa6ef;
}
.page-tutorials .tutorials .tutorial-related {
  border: 1px solid rgb(0, 0, 0);
  box-shadow: 0px 0px 12px #110228;
  background: linear-gradient(135deg, #0A002C 24.74%, #631b5f 88.25%) padding-box, linear-gradient(to right, #398BF0 24.74%, #a82b9f 88.25%) border-box;
  border-radius: 25px;
}
.page-tutorials .tutorials .tutorial-related-title {
  color: #d1d1d1;
}
.page-tutorials .tutorials .tutorial-item-filter {
  text-decoration: none;
  color: #fff;
}
.page-tutorials .tutorials .tutorial-item-filter:hover {
  text-decoration: underline;
}
.page-tutorials .tutorials .tutorials-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
.page-tutorials .tutorials .tutorials-list li a {
  text-decoration: none;
  color: #fff;
}
.page-tutorials .tutorials .tutorials-list li a:hover {
  text-decoration: underline;
}
.page-tutorials .tutorials .tutorials-list.tutorial {
  grid-template-columns: repeat(6, 1fr);
}
.page-tutorials .tutorials .tutorials-list.tutorial .tutorial-item {
  gap: 10px;
  padding: 10px;
}
.page-tutorials .tutorials .tutorials-list.tutorial .tutorial-item .title {
  font-size: 18px;
  line-height: 18px;
}
.page-tutorials .tutorials .tutorials-list .tutorial-item,
.page-tutorials .tutorials .tutorials-list .tutorial-item-filter {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}
.page-tutorials .tutorials .tutorials-list .tutorial-item .image,
.page-tutorials .tutorials .tutorials-list .tutorial-item-filter .image {
  position: relative;
  width: 100%;
  padding-top: 60%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #0A002C 24.74%, #631b5f 88.25%) padding-box, linear-gradient(to right, #398BF0 24.74%, #a82b9f 88.25%) border-box;
  border-radius: 25px;
}
.page-tutorials .tutorials .tutorials-list .tutorial-item .image img,
.page-tutorials .tutorials .tutorials-list .tutorial-item-filter .image img {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  max-width: 90%;
  transform: translate(-50%, -50%);
}
.page-tutorials .tutorials .tutorials-list .tutorial-item .title,
.page-tutorials .tutorials .tutorials-list .tutorial-item-filter .title {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.005em;
  color: #D9D9D9;
}
.page-tutorials .tutorials .tutorials-list .tutorial-item .title-category,
.page-tutorials .tutorials .tutorials-list .tutorial-item-filter .title-category {
  position: absolute;
  top: 100px;
  z-index: 22;
  width: 100%;
  background: rgba(10, 0, 44, 0.79);
  padding: 20px 2px;
  font-size: 28px !important;
  color: #D9D9D9;
}
.page-tutorials .orderby {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.page-tutorials .orderby > span {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #9F9F9F;
  text-transform: uppercase;
  padding-right: 0.3em;
}
.page-tutorials .orderby #orderbyText {
  position: relative;
  padding-right: 26px;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.005em;
  color: #D9D9D9;
  text-transform: uppercase;
  cursor: pointer;
}
.page-tutorials .orderby #orderbyText::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) scale(-1);
  transition: all 0.3s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 8.5L8 1.5L1 8.5' stroke='%23D9D9D9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}
.page-tutorials .orderby .orderby-list {
  position: absolute;
  z-index: 9;
  right: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 10px;
  background: linear-gradient(135deg, #0A002C 24.74%, #0A002C 88.25%) padding-box, linear-gradient(to right, #398BF0 24.74%, #a82b9f 88.25%) border-box;
}
.page-tutorials .orderby .orderby-list li {
  text-align: center;
}
.page-tutorials .orderby .orderby-list li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.005em;
  color: #D9D9D9;
  text-transform: uppercase;
  text-decoration: none;
}
.page-tutorials .orderby .orderby-list.active {
  opacity: 1;
  visibility: visible;
}

.ql-video {
  width: 768px;
  height: 400px;
}

/*roadmap page*/
* {
  box-sizing: border-box;
}

.roadmap-group {
  padding: 15px;
  border-radius: 15px;
}
.roadmap-group-1 {
  background: rgba(255, 0, 0, 0.1);
}
.roadmap-group-2 {
  background: rgba(255, 102, 0, 0.1);
}
.roadmap-group-3 {
  background: rgba(0, 255, 85, 0.1);
}
.roadmap-group-title {
  text-align: center;
}

.timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}
.timeline__event {
  margin-bottom: 10px;
  position: relative;
  display: flex;
  margin: 10px 0;
  border-radius: 6px;
  align-self: center;
  width: 50vw;
}
.timeline__event:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.timeline__event:nth-child(2n+1) .timeline__event__date {
  border-radius: 0 6px 6px 0;
}
.timeline__event:nth-child(2n+1) .timeline__event__content {
  border-radius: 6px 0 0 6px;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #aff1b6;
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
  animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #aff1b6;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  animation: fillLeft 2s forwards 4s ease-in-out;
}
.timeline__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #24b47e;
  letter-spacing: 1.5px;
}
.timeline__event__content {
  padding: 10px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: #fff;
  width: calc(40vw - 84px);
  border-radius: 0 6px 6px 0;
}
.timeline__event__date {
  color: #aff1b6;
  font-size: 1.5rem;
  font-weight: 600;
  background: #24b47e;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 10px;
  border-radius: 6px 0 0 6px;
}
.timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #24b47e;
  padding: 10px;
  align-self: center;
  margin: 0 10px;
  background: #aff1b6;
  border-radius: 100%;
  width: 40px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  padding: 40px;
  height: 40px;
  position: relative;
}
.timeline__event__icon i {
  font-size: 32px;
}
.timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #aff1b6;
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #aff1b6;
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  animation: fillLeftOdd 2s forwards 4s ease-in-out;
}
.timeline__event__description {
  flex-basis: 60%;
}
.timeline__event--type2:after {
  background: #555ac0;
}
.timeline__event--type2 .timeline__event__date {
  color: #87bbfe;
  background: #555ac0;
}
.timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after {
  background: #87bbfe;
}
.timeline__event--type2 .timeline__event__icon {
  background: #87bbfe;
  color: #555ac0;
}
.timeline__event--type2 .timeline__event__icon:before, .timeline__event--type2 .timeline__event__icon:after {
  background: #87bbfe;
}
.timeline__event--type2 .timeline__event__title {
  color: #555ac0;
}
.timeline__event--type3:after {
  background: #ac5151;
}
.timeline__event--type3 .timeline__event__date {
  color: #f6a4ab;
  background-color: #ac5151;
}
.timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after {
  background: #f6a4ab;
}
.timeline__event--type3 .timeline__event__icon {
  background: #f6a4ab;
  color: #ac5151;
}
.timeline__event--type3 .timeline__event__icon:before, .timeline__event--type3 .timeline__event__icon:after {
  background: #f6a4ab;
}
.timeline__event--type3 .timeline__event__title {
  color: #ac5151;
}
.timeline__event:last-child .timeline__event__icon:before {
  content: none;
}

@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event__content {
    width: 100%;
  }
  .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .timeline__event__icon:before, .timeline__event__icon:after {
    display: none;
  }
  .timeline__event__date {
    border-radius: 0;
    padding: 10px;
  }
  .timeline__event:nth-child(2n+1) {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__date {
    border-radius: 0;
    padding: 10px;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
}
@keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@keyframes fillTop {
  100% {
    top: 100%;
  }
}
@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
/*end roadmap page*/
.page-download .text-file,
.page-download .text-file p {
  font-size: 14px;
  line-height: 120%;
}
.page-download .card {
  background: transparent;
}
.page-download .card-body {
  background: linear-gradient(135deg, rgba(57, 139, 240, 0.47) 3.91%, rgba(112, 92, 200, 0.15) 44.74%, rgba(168, 43, 159, 0.47) 97.1%);
  border-radius: 25px;
}
.page-download .card .checksum {
  font-size: 10px;
}

/*download page*/
.disabled {
  filter: grayscale(100%);
}

/*blog new*/
.blog {
  padding: 6rem 0;
}
.blog a {
  text-decoration: none;
}
.blog .img-newest {
  height: 30%;
  width: 20%;
  float: left;
  margin: 20px;
}
.blog h1 {
  color: rgb(0, 123, 255);
  text-align: center;
  margin-bottom: 3rem;
}
.blog .article-info {
  border: 2px solid transparent;
  background: linear-gradient(135deg, #0A002C 24.74%, #631b5f 88.25%) padding-box, linear-gradient(to right, #398BF0 24.74%, #a82b9f 88.25%) border-box;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
.blog .article-info:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: scale(1.03);
}
.blog .article-category {
  color: rgb(108, 117, 125);
  text-transform: uppercase;
  font-size: 0.9rem;
}
.blog .article-title {
  color: #d9d9d9;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
.blog .article-content {
  font-size: 0.9rem;
  color: #7EABD4;
  text-align: justify;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10px;
}
.blog .article-bottom {
  padding: 1rem;
  padding: 1rem;
  background-color: rgba(12, 26, 40, 0.52);
  border-top: 1px solid rgb(163, 42, 155);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog .article-bottom .article-author {
  display: flex;
  align-items: center;
}
.blog .article-bottom .article-author .article-author-avatar {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
.blog .article-bottom .article-author .author-date {
  display: block;
  color: rgb(108, 117, 125);
}
.blog .article-bottom .article-author .author-date a {
  color: rgb(0, 123, 255);
  text-decoration: none;
}
.blog .article-bottom .article-author .author-date a:hover {
  text-decoration: none;
}
.blog .article-bottom .article-author .author-date time {
  display: block;
  font-size: 0.8rem;
  color: rgb(173, 181, 189);
}
@media (max-width: 768px) {
  .blog .article-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog .article-bottom .article-author {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog .article-bottom .article-author .article-author-avatar {
    margin-bottom: 0.5rem;
  }
  .blog .article-bottom .article-author .author-date {
    text-align: left;
  }
}

.bloguser .card {
  background-color: rgba(2, 40, 96, 0.72);
  border: 2px solid transparent;
  background: linear-gradient(135deg, #0A002C 24.74%, #631b5f 88.25%) padding-box, linear-gradient(to right, #398BF0 24.74%, #a82b9f 88.25%) border-box;
  border-radius: 0.5rem;
}

.article {
  margin: 0 auto;
  width: 90%;
}
.article .dropdown-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  background-color: #0A002C;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 200px;
}
.article .dropdown-menu.show {
  display: flex !important;
}
.article .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.25rem;
  font-size: 1.2rem;
  box-sizing: border-box;
}
.article .dropdown-menu .dropdown-item i {
  margin-right: 0;
}
.article .dropdown-menu .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.article .dropdown-menu .dropdown-item.btn-facebook {
  background-color: #3b5998;
}
.article .dropdown-menu .dropdown-item.btn-facebook:hover {
  background-color: rgb(44.7393364929, 67.4881516588, 115.2606635071);
}
.article .dropdown-menu .dropdown-item.btn-x {
  background-color: #1d1d1d;
}
.article .dropdown-menu .dropdown-item.btn-x:hover {
  background-color: rgb(3.5, 3.5, 3.5);
}
.article .dropdown-menu .dropdown-item.btn-linkedin {
  background-color: #0077b5;
}
.article .dropdown-menu .dropdown-item.btn-linkedin:hover {
  background-color: rgb(0, 85.4696132597, 130);
}
.article .dropdown-menu .dropdown-item.btn-reddit {
  background-color: #ff4500;
}
.article .dropdown-menu .dropdown-item.btn-reddit:hover {
  background-color: rgb(204, 55.2, 0);
}
.article .dropdown-menu .dropdown-item.btn-pinterest {
  background-color: #e60023;
}
.article .dropdown-menu .dropdown-item.btn-pinterest:hover {
  background-color: rgb(179, 0, 27.2391304348);
}
.article .dropdown-menu .dropdown-item.btn-whatsapp {
  background-color: #25d366;
}
.article .dropdown-menu .dropdown-item.btn-whatsapp:hover {
  background-color: rgb(29.3911290323, 167.6088709677, 81.0241935484);
}
.article .dropdown-menu .dropdown-item.btn-telegram {
  background-color: #0088cc;
}
.article .dropdown-menu .dropdown-item.btn-telegram:hover {
  background-color: #006699;
}

.category-title {
  font-style: normal;
  font-weight: 200;
  font-size: 36px;
}
.category-overview {
  border: 1px solid red;
  padding: 15px;
  width: 80%;
  margin: 15px auto;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #0A002C 24.74%, #631b5f 88.25%) padding-box, linear-gradient(to right, #398BF0 24.74%, #a82b9f 88.25%) border-box;
}
.category-overview p {
  line-height: 100%;
  text-align: justify;
  padding-bottom: 6px;
  font-size: 16px;
}

#menu-anchor {
  position: fixed;
  top: 120px;
  background-color: rgba(11, 11, 12, 0.233);
  padding: 10px;
  border-radius: 5px;
}
#menu-anchor .menu-item {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  text-decoration: none;
  text-align: left;
}
#menu-anchor .menu-item:hover {
  color: #8aa6ef;
  text-decoration: underline;
}
#menu-anchor .menu-item::before {
  content: "• ";
  color: #fff;
  margin-right: 2px;
}

@media (min-width: 992px) {
  .col-lg-2 {
    position: relative;
  }
}
.page-section {
  color: #D9D9D9;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  padding: 20px;
}
.page-section section {
  min-height: 200px;
  margin-bottom: 40px;
}
.page-section .information-page h1,
.page-section .information-page h2,
.page-section .information-page h3,
.page-section .information-page h4,
.page-section .information-page h5,
.page-section .information-page h6 {
  color: #FFFFFF;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.3;
}
.page-section .information-page h1 {
  font-size: 2.5em;
  border-bottom: 2px solid #444;
  padding-bottom: 10px;
}
.page-section .information-page h2 {
  font-size: 2em;
  border-bottom: 1px solid #555;
  padding-bottom: 8px;
}
.page-section .information-page h3 {
  font-size: 1.75em;
  border-bottom: 1px solid #666;
  padding-bottom: 6px;
}
.page-section .information-page h4 {
  font-size: 1.5em;
}
.page-section .information-page h5 {
  font-size: 1.25em;
}
.page-section .information-page h6 {
  font-size: 1em;
}
.page-section .information-page p {
  margin-bottom: 10px;
  line-height: 150%;
}
.page-section .information-page ul,
.page-section .information-page ol {
  margin-left: 40px;
  margin-bottom: 20px;
}
.page-section .information-page ul li,
.page-section .information-page ol li {
  margin-bottom: 10px;
}
.page-section .information-page ul li ul,
.page-section .information-page ul li ol,
.page-section .information-page ol li ul,
.page-section .information-page ol li ol {
  margin-left: 20px;
  margin-bottom: 10px;
}
.page-section .information-page ul li ul li,
.page-section .information-page ul li ol li,
.page-section .information-page ol li ul li,
.page-section .information-page ol li ol li {
  margin-bottom: 5px;
}
.page-section .information-page a {
  color: #4A90E2;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-section .information-page a:hover {
  color: #72B4F2;
  text-decoration: underline;
}
.page-section .information-page hr {
  border: 0;
  height: 1px;
  background: #444;
  margin: 15px 0;
}
.page-section .information-page em,
.page-section .information-page i {
  font-style: italic;
}
.page-section .information-page strong,
.page-section .information-page b {
  font-weight: bold;
  color: #FFFFFF;
}
.page-section .information-page blockquote {
  border-left: 4px solid #666;
  padding-left: 20px;
  margin-left: 0;
  color: #CCCCCC;
  font-style: italic;
  margin-bottom: 20px;
}
.page-section .information-page table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.page-section .information-page table th,
.page-section .information-page table td {
  border: 1px solid #444;
  padding: 12px;
  text-align: left;
  color: #D9D9D9;
}
.page-section .information-page table th {
  background-color: #333;
}
.page-section .information-page table tr:nth-child(even) {
  background-color: #2A2A2A;
}
.page-section .information-page pre,
.page-section .information-page code {
  font-family: "Courier New", Courier, monospace;
  background-color: #2D2D2D;
  color: #FFFFFF;
  padding: 5px;
  border-radius: 4px;
}
.page-section .information-page pre {
  overflow: auto;
  margin-bottom: 20px;
}
.page-section .information-page img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.page-section .information-page input,
.page-section .information-page textarea,
.page-section .information-page select,
.page-section .information-page button {
  font-family: inherit;
  font-size: 1em;
  margin-bottom: 15px;
}
.page-section .information-page ul {
  list-style-type: disc;
}
.page-section .information-page ul ul {
  list-style-type: circle;
}
.page-section .information-page ul ul ul {
  list-style-type: square;
}
.page-section .information-page ol {
  list-style-type: decimal;
}
.page-section .information-page ol ol {
  list-style-type: lower-alpha;
}
.page-section .information-page ol ol ol {
  list-style-type: lower-roman;
}
.page-section .information-page dl dt {
  font-weight: bold;
  margin-top: 20px;
}
.page-section .information-page dl dd {
  margin-left: 20px;
  margin-bottom: 10px;
}
.page-section .information-page figure {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}
.page-section .information-page figure figcaption {
  margin-top: 10px;
  font-style: italic;
  color: #AAAAAA;
}
.page-section .information-page address {
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 20px;
}
.page-section .information-page .accordion {
  background-color: #2A2A2A;
  color: #FFFFFF;
  cursor: pointer;
  padding: 15px;
  margin-bottom: 10px;
  border: none;
  text-align: left;
  outline: none;
  transition: background-color 0.3s ease;
}
.page-section .information-page .accordion:hover {
  background-color: #333;
}
.page-section .information-page .accordion.active, .page-section .information-page .accordion:hover {
  background-color: #333;
}
.page-section .information-page .accordion:after {
  content: "+";
  color: #FFFFFF;
  float: right;
  margin-left: 5px;
}
.page-section .information-page .accordion.active:after {
  content: "−";
}
.page-section .information-page .panel {
  padding: 0 15px;
  background-color: #1E1E1E;
  display: none;
  overflow: hidden;
  margin-bottom: 10px;
}
.page-section .information-page .panel p {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .page-section .information-page .page-section {
    padding: 15px;
  }
  .page-section .information-page .page-section h1 {
    font-size: 2em;
  }
  .page-section .information-page .page-section h2 {
    font-size: 1.75em;
  }
  .page-section .information-page .page-section h3 {
    font-size: 1.5em;
  }
}

.early-access-banner {
  position: absolute;
  top: 39px;
  right: -8px;
  background-color: #ff5733;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(29deg);
  z-index: 10;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.product-item {
  position: relative;
}

.info-early-access {
  background-color: #110228 !important;
  color: white !important;
  border-radius: 8px !important;
}
.info-early-access .early-access-button {
  background-color: #a72c9f;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.info-early-access .early-access-button:hover {
  background-color: #7c1a76;
}

.box-trial {
  background: #0a002c;
  border-radius: 25px;
  margin: 10px;
  padding: 15px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}

.text-ucp-left {
  font-size: 22px;
  padding-top: 40px;
  text-align: left;
  color: #afbac5;
}
.text-ucp-left a {
  font-weight: 700;
  text-decoration: none;
}

#discord-button .icon {
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
#discord-button .icon svg {
  fill: white;
}
#discord-button a {
  color: white;
  font-weight: bold;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #7289da;
  text-decoration: none;
  text-shadow: none;
}
#discord-button a:hover {
  background-color: #6a7fc9;
}

#info-button .icon {
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
#info-button .icon svg {
  fill: white;
}
#info-button a {
  color: white;
  font-weight: bold;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid #ff8f00;
  background: linear-gradient(135deg, rgba(240, 182, 57, 0.47) 3.91%, rgba(200, 164, 92, 0.55) 44.74%, rgba(156, 90, 15, 0.51) 97.1%);
  text-decoration: none;
  text-shadow: none;
}
#info-button a:hover {
  background-color: #ff0000;
}

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.auth-box {
  max-width: 400px;
  width: 100%;
}

.card {
  background: #0A002C linear-gradient(135deg, rgba(57, 139, 240, 0.47) 3.91%, rgba(112, 92, 200, 0.15) 44.74%, rgba(168, 43, 159, 0.47) 97.1%);
  border-radius: 50px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.card-body {
  padding: 2rem;
}

h2 {
  font-size: 24px;
  color: #ffffff;
}

p {
  font-size: 14px;
  color: #ffffff;
}

.form-label {
  font-weight: 600;
  color: #ffffff;
}

.form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px;
}

.btn-primary {
  background-color: #4a90e2;
  border-color: #4a90e2;
  font-weight: bold;
  padding: 10px;
}

.btn-secondary {
  background-color: #7f8c8d;
  border-color: #7f8c8d;
  font-weight: bold;
  padding: 10px;
}

.text-success {
  color: #28a745;
}

.text-danger {
  color: #dc3545;
}

.dashboard-body {
  background: #0A002C linear-gradient(135deg, rgba(57, 139, 240, 0.47) 3.91%, rgba(112, 92, 200, 0.15) 44.74%, rgba(168, 43, 159, 0.47) 97.1%) !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #7EABD4 !important;
}
.dashboard-body .navbar,
.dashboard-body .footer {
  color: #BFD2FF;
  background-color: #0A002C !important;
}
.dashboard-body .swal2-popup {
  background: #0A002C !important;
  border: 2px solid #110142;
  color: #fff;
}
.dashboard-body .swal2-popup-error {
  border: 1px solid #dc3545;
  box-shadow: 0px 0px 5px #dc3545;
}
.dashboard-body .swal2-popup-success {
  border: 1px solid #28a745;
  box-shadow: 0px 0px 5px #28a745;
}
.dashboard-body .swal2-popup-warning {
  border: 1px solid #ffc107;
  box-shadow: 0px 0px 5px #ffc107;
}
.dashboard-body .navbar {
  background-color: #0090FF;
}
.dashboard-body .navbar .navbar-brand {
  color: white;
  font-weight: bold;
}
.dashboard-body .sidebar {
  background-color: #0A002C;
  padding-top: 2rem;
  border-radius: 10px;
}
.dashboard-body .sidebar .menu-categories {
  list-style: none;
  padding: 0;
}
.dashboard-body .sidebar .menu-categories li.menu {
  margin-bottom: 1rem;
}
.dashboard-body .sidebar .menu-categories li.menu a {
  display: block;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
}
.dashboard-body .sidebar .menu-categories li.menu a:hover, .dashboard-body .sidebar .menu-categories li.menu a.active {
  background-color: rgba(255, 255, 255, 0.2);
}
.dashboard-body .sidebar .menu-categories li.menu a svg {
  margin-right: 10px;
}
.dashboard-body .table-container {
  background-color: #0A002C;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  overflow: hidden;
}
.dashboard-body .table-container table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.dashboard-body .table-container table tr.title {
  background: linear-gradient(135deg, rgba(57, 139, 240, 0.47) 3.91%, rgba(112, 92, 200, 0.15) 44.74%, rgba(168, 43, 159, 0.47) 97.1%);
}
.dashboard-body .table-container table th {
  background: transparent;
  color: white;
  border: 1px solid #110142;
  text-align: left;
  padding: 1rem;
  font-weight: bold;
}
.dashboard-body .table-container table td {
  padding: 1rem;
  background-color: #f8f9fa;
  color: #0A002C;
}
.dashboard-body .table-container table tr:nth-child(even) {
  background-color: rgb(21.5909090909, 0, 95);
}
.dashboard-body .table-container table tr:hover {
  background-color: rgb(0, 115.2, 204);
  color: white;
}
.dashboard-body .table-container table .text-center {
  text-align: center;
}
.dashboard-body .table-container table .btn {
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 5px;
}
.dashboard-body .table-container table .btn.btn-green {
  background-color: #28a745;
  color: white;
}
.dashboard-body .table-container table .btn.btn-green:hover {
  background-color: rgb(30.1449275362, 125.8550724638, 52);
}
.dashboard-body .table-container table .btn.btn-primary {
  background-color: #0090FF;
  border-color: #0090FF;
}
.dashboard-body .table-container table .btn.btn-primary:hover {
  background-color: rgb(0, 115.2, 204);
}
.dashboard-body .useful-links-block li {
  margin: 5px 0px;
  text-align: center;
}
.dashboard-body .useful-links-block li a {
  display: block;
  line-height: 3;
  min-width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, rgba(57, 139, 240, 0.47) 3.91%, rgba(112, 92, 200, 0.15) 44.74%, rgba(168, 43, 159, 0.47) 97.1%);
  border-radius: 25px;
  color: #f8f9fa;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: 0.2s all;
}
.dashboard-body .useful-links-block li a:hover {
  border: 1px solid #0090FF;
  transition: 0.2s all;
}

.loader-content .spinner-grow {
  width: 50px;
  height: 50px;
  background-color: #0090FF;
}

.main-container {
  padding: 2rem;
  flex: 1;
}
.main-container .content-area {
  padding: 2rem;
  min-height: 100%;
  background-color: #0A002C;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #0A002C;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.aimation-form-control {
  position: relative;
  width: 100%;
  border-radius: 4px;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.aimation-form-control label {
  font-size: 1rem;
  color: #c3d0ff;
  margin-bottom: 0.2rem;
  display: block;
}
.aimation-form-control input {
  border: none;
  background: rgba(13, 110, 253, 0.13);
  outline: none;
  width: 100%;
  color: #BFD2FF;
  font-size: 1.3rem;
  padding: 0.5rem 1.2rem;
  border-bottom: 2px solid rgba(20, 14, 14, 0.2);
  transition: border-bottom 0.3s ease-in-out, color 0.3s ease-in-out;
}
.aimation-form-control input:focus {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: transparent;
}
.aimation-form-control input::-moz-placeholder {
  color: #c3d0ff;
  font-size: 1.3rem;
}
.aimation-form-control input::placeholder {
  color: #c3d0ff;
  font-size: 1.3rem;
}
@keyframes gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.aimation-form-control:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(to right, #B294FF, #57E6E6, #FEFFB8, #57E6E6, #B294FF, #57E6E6);
  background-size: 200% auto;
  animation: gradient 4s ease-in-out infinite;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.swup-progress-bar {
  height: 3px;
  background-color: #0090FF;
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  z-index: 9999;
  transition: width 0.3s ease;
}

.table-options-aimation {
  width: 295px !important;
}

.popup-information-notice {
  font-size: 12px;
  text-align: center;
  padding: 10px 5px;
}

.custom-swal-popup {
  padding: 30px;
  width: 600px;
}

.custom-swal-backdrop {
  background-color: rgba(126, 2, 2, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
