.xb {
  border: solid 1px #FFF;
}

.header {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 10;
}
.header > .container {
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 8px;
  border: solid 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset -8px 8px 30px rgba(255, 255, 255, 0.05);
}
.header .logo {
  display: block;
  padding-right: 8px;
}
.header .logo img {
  height: 38px;
}
.header__link_item {
  position: relative;
  margin-left: 4px;
  padding: 0 8px;
}
.header__link_item > a {
  display: block;
  padding: 8px 4px;
  position: relative;
}
.header__link_item > a:before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ABC6EA;
  transition: all 0.2s ease-in-out;
}
.header__link_item:hover > a:before {
  left: auto;
  right: 0;
  width: 100%;
}
.header__link_item:hover .sub_menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}
.header__link_item .sub_menu {
  position: absolute;
  right: 50%;
  top: calc(100% + 16px);
  transform: translateX(50%);
  width: 240px;
  background: #333;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: solid 1px rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.header__link_item .sub_menu:before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  border: solid 6px transparent;
  border-bottom-color: #444;
  margin: auto;
}
.header__link_item .sub_menu li a {
  display: block;
  padding: 12px 16px;
  transition: all 0.05s ease-in-out;
}
.header__link_item .sub_menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header__link_item .sub_menu li + li {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.header__responsive {
  position: fixed;
  top: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  padding-right: 32px;
  background: rgba(20, 20, 20, 0.8);
  z-index: 9;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.header__responsive.active {
  background: rgba(20, 20, 20, 0.8);
  visibility: visible;
  opacity: 1;
}
.header__responsive.active .header__responsive__inner {
  left: 0;
}
.header__responsive__inner {
  height: 100%;
  background: #020713;
  padding: 32px;
  max-height: 100%;
  overflow: auto;
  position: relative;
  left: -128px;
  transition: all 0.2s ease-in-out;
}
.header__responsive__inner ul li {
  margin-bottom: 16px;
}
.header__responsive__inner ul li a {
  font-size: 1.15rem;
  position: relative;
  padding-right: 24px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.header__responsive__inner ul li a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-90deg);
  height: 10px;
  width: 10px;
  background: url("../img/loading.svg") no-repeat center/contain;
}
.header__responsive__inner ul li a:after {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  display: inline-block;
  margin-right: 16px;
}
.header__responsive__inner .logo img {
  margin-right: auto;
}
.header__responsive__close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  font-size: 3.4rem;
  color: #BEE7E8;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  min-height: 18vh;
  padding-top: 64px;
}

.home__section-1 {
  background: url("../img/triangle-pattern.svg") no-repeat center bottom/100% auto;
  overflow: hidden;
}
.home__section-1 .container > .row {
  min-height: 90vh;
}
.home__section-1 .container > .row .section_caption {
  max-width: 350px;
}
.home__section-1 .container > .row .left_side {
  position: relative;
}
.home__section-1 .container > .row .left_side__triangle {
  content: "";
  position: absolute;
  left: 0;
  top: -64px;
  width: calc(100% + 64px);
  transform-origin: center;
  background: url("../img/triangle-single.svg") no-repeat center/contain;
}
.home__section-1 .container > .row .left_side__triangle:after {
  padding-top: 100%;
  display: block;
  content: "";
}
.home__section-6, .home__section-2 {
  padding: 128px 0;
  position: relative;
}
.home__section-6:after, .home__section-6:before, .home__section-2:after, .home__section-2:before {
  content: "";
  position: absolute;
  right: 0;
  top: -100px;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background: #483993;
  filter: blur(200px);
  pointer-events: none;
}
.home__section-6:after, .home__section-2:after {
  right: auto;
  left: 0;
  top: auto;
  bottom: -100px;
  background: #291C73;
}
.home__section-6 .section_caption, .home__section-2 .section_caption {
  position: relative;
}
.home__section-6 .section_caption:before, .home__section-2 .section_caption:before {
  content: "";
  position: absolute;
  right: -20px;
  top: -70px;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: solid 1px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1) url("../img/it-coin.svg") no-repeat center/85% auto;
  z-index: 2;
  backdrop-filter: blur(2px);
}
.home__section-4 {
  margin: 128px 0;
}
.home__section-4 .section_img {
  padding-left: 32px;
}
.home__section-4 .section_img img {
  border-radius: 4px;
}
.home__section-5 img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}
.home__section-6 {
  padding: 256px 0;
}
.home__section-6:before, .home__section-6:after {
  display: none;
}
.home__section-6 .comment_slider {
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}
.home__section-6 .comment_slider:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 400px;
  right: 0;
  left: 0;
  margin: auto;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.home__section-6 .comment_slider:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(14, 11, 13, 0.9) 20%, rgba(14, 11, 13, 0) 50%, rgba(14, 11, 13, 0.9) 80%);
  z-index: 2;
  pointer-events: none;
}
.home__section-7 {
  background: #151020;
  padding: 64px 0;
}
.home__section-7 .video_loop {
  background: #151020;
}
.home__section-7 .video_loop video {
  max-height: 400px;
}
.home__section-8 {
  padding: 128px 0;
}
.home__section-8 .faq {
  padding-left: 32px;
  margin-top: 24px;
}

.footer {
  background: url("../img/triangle-pattern.svg") no-repeat center top/100% auto;
  padding: 128px 0 0;
  margin-top: -64px;
}
.footer .card {
  backdrop-filter: blur(5px);
}
.footer .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .logo img {
  max-height: 48px;
}
.footer__right {
  padding: 32px;
  border-left: solid 1px rgba(255, 255, 255, 0.1);
}
.footer__right .social_media__item {
  width: 32px;
  height: 32px;
  padding: 0;
}
.footer__link_step {
  padding-right: 16px;
}
.footer__link_step a {
  display: inline-block;
  padding: 2px 8px;
  position: relative;
}
.footer__link_step a:before {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 4px;
  width: 4px;
  border-radius: 10px;
  background: #BEE7E8;
}
.footer__link_step a:hover {
  color: #7167EF;
  text-decoration: underline;
}
.footer__link_step a:hover:before {
  height: 1px;
  width: 6px;
}

.plans {
  padding-top: 0;
}
.plans__section-1 {
  padding: 194px 0 128px;
  text-align: center;
  background: #483993 url("../../itff_assets/img/plan-pattern.png") no-repeat right bottom;
  box-shadow: inset 64px -48px 256px rgba(20, 20, 20, 0.4);
}
.plans__section-1 i {
  color: rgba(255, 255, 255, 0.3);
}
.plans__section-1[data-plan=scalpx] {
  background-color: #d94949;
}
.plans__section-1[data-plan=loopback] {
  background-color: #871e54;
}
.plans__section-1[data-plan=speedup] {
  background-color: #1b6c9e;
}
.plans__section-1[data-plan=unlimited] {
  background-color: #c19433;
}
.plans__section-1[data-plan=standard] {
  background-color: #3caf70;
}
.plans__section-1 img {
  border-radius: 8px;
}
.plans__section-2 {
  padding: 128px 0;
}
.plans__section-2 img {
  border-radius: 8px;
}
.plans__section-2[data-plan=scalpx] table thead th:before {
  background: #d94949;
}
.plans__section-2[data-plan=scalpx] table tbody tr td:first-child:before {
  background: #d94949;
}
.plans__section-2[data-plan=loopback] table thead th:before {
  background: #871e54;
}
.plans__section-2[data-plan=loopback] table tbody tr td:first-child:before {
  background: #871e54;
}
.plans__section-2[data-plan=speedup] table thead th:before {
  background: #1b6c9e;
}
.plans__section-2[data-plan=speedup] table tbody tr td:first-child:before {
  background: #1b6c9e;
}
.plans__section-2[data-plan=unlimited] table thead th:before {
  background: #c19433;
}
.plans__section-2[data-plan=unlimited] table tbody tr td:first-child:before {
  background: #c19433;
}
.plans__section-2[data-plan=standard] table thead th:before {
  background: #3caf70;
}
.plans__section-2[data-plan=standard] table tbody tr td:first-child:before {
  background: #3caf70;
}
.plans__section-3 {
  padding: 64px 0;
  background: rgba(70, 70, 70, 0.1);
}
.plans ol {
  counter-reset: myCounter;
}
.plans ol li {
  counter-increment: myCounter;
  margin-bottom: 8px;
}
.plans ol li:before {
  content: counter(myCounter) ". ";
  margin-left: 8px;
}

.contact_us {
  padding: 0;
}
.contact_us__section-1 {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.contact_us__section-1:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(180deg, #291C73 0%, #483993 100%);
}
.contact_us__section-1 .section__left,
.contact_us__section-1 .section__right {
  padding: 128px 32px;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.contact_us__section-1 .section__right img {
  width: 20vw;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.contact_us__section-1 .section__left {
  padding-right: 280px;
}
.contact_us__section-2 {
  position: relative;
}
.contact_us__section-2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(180deg, rgba(47, 47, 47, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
}
.contact_us__section-2 .section__right {
  padding: 64px 24px 64px 64px;
}
.contact_us__section-2 .section__left {
  padding: 64px 32px;
  min-height: 70vh;
}

.about__section--1 {
  padding-top: 64px;
  margin-bottom: 128px;
}
.about__section--3 {
  margin-top: 128px;
  background: #483993 url("../../itff_assets/img/plan-pattern.png") no-repeat right bottom;
  padding: 254px 0;
}
.about__section--4 {
  padding: 128px 0;
}
.about__section--4 .section_caption p {
  line-height: 2.5rem;
}

.panel__header {
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: 16px;
  right: 16px;
  left: 8px;
  z-index: 9;
}
.panel__header__logo {
  width: 54px;
  border-left: solid 1px rgba(255, 255, 255, 0.1);
  padding: 8px;
}
.panel__header__user_name {
  border-left: solid 1px rgba(255, 255, 255, 0.1);
  padding: 0 16px;
  min-width: 250px;
}
.panel__header__user_name img {
  border-radius: 100%;
}
.panel__header__wallet, .panel__header__referral, .panel__header__star {
  border-left: solid 1px rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  min-width: 100px;
}
.panel__header__wallet small, .panel__header__referral small, .panel__header__star small {
  line-height: 10px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
}
.panel__header__wallet span, .panel__header__referral span, .panel__header__star span {
  line-height: 20px;
}
.panel__header__wallet img, .panel__header__referral img, .panel__header__star img {
  margin-left: 8px;
}
.panel__header__wallet:hover, .panel__header__referral:hover, .panel__header__star:hover {
  background: rgba(255, 255, 255, 0.1);
}
.panel__header__left_side {
  padding: 8px;
}
.panel__header__responsive_btn {
  display: none;
  width: 50px;
  height: 50px;
  font-size: 1.72rem;
  border-left: solid 1px rgba(255, 255, 255, 0.1);
  position: relative;
}
.panel__header__responsive_btn i {
  transform: scale(0);
  transition: all 0.2s ease-in-out;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 20px;
  margin: auto;
}
.panel__header__responsive_btn i.open {
  transform: scale(1);
}
.panel__header__responsive_btn.active .close {
  transform: scale(1);
}
.panel__header__responsive_btn.active .open {
  transform: scale(0);
}
.panel__container {
  overflow: hidden;
  position: relative;
  padding: 8px;
}
.panel__container:after, .panel__container:before {
  content: "";
  position: absolute;
  left: -10vw;
  top: -10vh;
  width: 300px;
  height: 300px;
  opacity: 0.4;
  border-radius: 100%;
  background: #483993;
  filter: blur(150px);
  -webkit-filter: blur(150px);
  pointer-events: none;
}
.panel__container:after {
  left: 65vw;
  top: 65vh;
  opacity: 0.2;
}
.panel__menu {
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 88px 0 32px;
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  min-height: calc(100vh - 32px);
}
.panel__menu__item {
  display: block;
  position: relative;
  padding: 12px 32px 12px 16px;
  font-size: 1rem;
  color: #BEE7E8;
}
.panel__menu__item + .panel__menu__item {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.panel__menu__item:before {
  content: "";
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: solid 4px transparent;
  border-right: solid 6px rgba(255, 255, 255, 0.3);
  border-bottom: solid 4px transparent;
  margin: auto;
}
.panel__menu__item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.panel__menu__item:hover:before {
  border-right-color: #BEE7E8;
}
.panel__menu__item.coming small, .panel__menu__item.new small {
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: 12px;
  border-radius: 4px;
  background: #483993;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  font-size: 0.86rem;
}
.panel__menu__item.coming {
  cursor: no-drop;
  color: rgba(100, 100, 100, 0.5);
}
.panel__menu__item.coming small {
  background: rgba(100, 100, 100, 0.5);
  color: #ddd;
}
.panel__page {
  padding-top: 64px;
  padding-right: 16px;
  position: relative;
}
.panel__page .plan_data,
.panel__page .notif_item > .tbl,
.panel__page .panel_window {
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  margin: 16px 0;
}
.panel__page .plan_data.m-0,
.panel__page .notif_item > .tbl.m-0,
.panel__page .panel_window.m-0 {
  margin: 0;
}
.panel__page .plan_data--blue,
.panel__page .notif_item > .tbl--blue,
.panel__page .panel_window--blue {
  background: linear-gradient(180deg, rgba(22, 148, 225, 0.2) 0%, rgba(8, 0, 109, 0.05) 100%);
}
.panel__page .switcher {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 16px;
  border-radius: 4px;
  border: solid 1px rgba(255, 255, 255, 0.1);
  margin: 4px;
  cursor: pointer;
}
.panel__page .switcher.active {
  background: #7167EF;
}

.plan_page {
  padding: 0;
}
.plan_page__section-1 {
  box-shadow: inset 64px -48px 256px rgba(20, 20, 20, 0.7);
  background: url("../../itff_assets/img/plan-pattern.png") no-repeat right bottom;
  padding: 128px 0;
}
.plan_page__section-1 .container {
  padding: 0 16px;
}
.plan_page__section-1[data-plan=scalpx] {
  background-color: #d94949;
}
.plan_page__section-1[data-plan=loopback] {
  background-color: #871e54;
}
.plan_page__section-1[data-plan=speedup] {
  background-color: #1b6c9e;
}
.plan_page__section-1[data-plan=unlimited] {
  background-color: #c19433;
}
.plan_page__section-1[data-plan=standard] {
  background-color: #3caf70;
}

.faq_page {
  padding: 64px 24px;
}

.login__left {
  background: linear-gradient(90deg, #291C73 0%, #483993 100%);
  height: 100vh;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login__left hr {
  max-width: 400px;
}
.login__left a:not(.btn) {
  text-decoration: underline;
  color: #ABC6EA;
}
.login__right {
  background: #020713;
  padding: 64px;
  height: 100vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login__right .form_style1 {
  max-width: 400px;
  width: 100%;
  margin: auto;
}

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