main .home-h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
}
@media (min-width:992px) {
  main .home-h1 {
    font-size: 40px;
  }
}
@media (min-width:1280px) {
  main .home-h1 {
    font-size: 48px;
  }
}
@media (min-width:1600px) {
  main .home-h1 {
    font-size: 60px;
  }
}
main .home-h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 135%;
}
@media (min-width:992px) {
  main .home-h2 {
    font-size: 32px;
  }
}
@media (min-width:1280px) {
  main .home-h2 {
    font-size: 38px;
    line-height: 120%;
  }
}
@media (min-width:1600px) {
  main .home-h2 {
    font-size: 46px;
  }
}
main .btn-gradient-1,
main .btn-gradient-2 {
  z-index: 1;
  position: relative;
  outline: none;
  border: none;
  overflow: hidden;
  color: #fff;
}
@media (min-width:992px) {
  main .btn-gradient-1::before,
  main .btn-gradient-2::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    opacity: 0;
    transition: 0.5s;
  }
}
main .btn-gradient-1:hover,
main .btn-gradient-2:hover {
  animation: btnEffects 15s linear infinite;
  color: #fff;
}
main .btn-gradient-1:hover::before,
main .btn-gradient-2:hover::before {
  filter: blur(25px);
  opacity: 0.8;
  animation: btnEffects 3s linear infinite;
}
main .btn-gradient-1 {
  background: linear-gradient(125deg, #5800ff 3.53%, #6c26ff 9.97%, #cda6ff 36.54%, #dc58f1 61.81%, #5800ff 102.56%);
  background-size: 100%;
}
main .btn-gradient-1::before {
  background: linear-gradient(125deg, #cda6ff 11.02%, #dc58f1 38.37%, #5800ff 62.65%, #6c26ff 94.31%);
  background-size: 200%;
}
main .btn-gradient-2 {
  background: linear-gradient(101deg, #ffd120 -4.97%, #ffdc7c 16.65%, #ff7e35 49.1%, #9e01ff 103.16%);
  background-size: 100%;
}
main .btn-gradient-2::before {
  background: linear-gradient(101deg, #ffdc7c 7.08%, #ff7e35 39.61%, #9e01ff 104.67%);
  background-size: 200%;
}
main .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #b3a9ff;
  opacity: 1;
}
main .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 20px;
  background: #6b57ff;
}
main .switch-ver:hover {
  color: #6b57ff !important;
  text-decoration: none;
}
main .switch-ver:hover .text::after {
  animation: line-fade-in 0.5s ease-in-out forwards;
}
main .switch-ver:hover .arrow {
  transform: translateX(4px);
}
main .switch-ver:hover .arrow path {
  fill: #6b57ff;
}
main .switch-ver .text {
  position: relative;
}
main .switch-ver .text::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #6b57ff;
  animation: line-fade-out 0.5s ease-in-out forwards;
}
main .switch-ver .arrow {
  transition: all 0.3s linear;
}
@keyframes particles {
  0% {
    transform: translateY(90%);
  }
  100% {
    transform: translateY(-20%);
  }
}
@keyframes btnEffects {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
@keyframes fade-in {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fade-out {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes line-fade-in {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes line-fade-out {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

.first-screen {
  position: relative;
}
.first-screen .sub-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.first-screen .ai-power {
  top: -12px;
  right: -48px;
  padding: 1px;
  background: linear-gradient(90deg, #5800ff 0%, #cda6ff 33%, #dc58f1 59%, #5800ff 100%);
  border-radius: 4px;
  box-shadow: 1px 2px 6px 0 rgba(61, 45, 113, 0.8);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transform: rotate(12deg);
}
@media (min-width:992px) {
  .first-screen .ai-power {
    top: -10px;
    right: -64px;
  }
}
@media (min-width:1600px) {
  .first-screen .ai-power {
    top: -8px;
    right: -52px;
  }
}
.first-screen .ai-power .inside-bg {
  width: 100%;
  height: 100%;
  padding: 0 4px 2px 4px;
  background: #30007b;
  border-radius: 5px;
}
.first-screen .ai-power .tag-text {
  margin-left: 2px;
  background: linear-gradient(98deg, #e0c7ff 36.54%, #ee87ff 61.81%, #742bff 102.56%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.first-screen .media-box {
  position: relative;
  background: rgba(27, 22, 49, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
@media (min-width:992px) {
  .first-screen .media-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
.first-screen .media-box .media-list-pc img {
  width: 85px;
}
@media (min-width:1280px) {
  .first-screen .media-box .media-list-pc img {
    width: 128px;
  }
}
@media (min-width:1600px) {
  .first-screen .media-box .media-list-pc img {
    width: 160px;
  }
}
.first-screen .media-box .media-list-pc img:not(:last-child) {
  margin-right: 56px;
}
@media (min-width: 1920px) {
  .first-screen .media-box .media-list-pc img:not(:last-child) {
    margin-right: 48px;
  }
}
.first-screen .media-box .mediaList .swiper-wrapper {
  transition-timing-function: linear;
}
.first-screen .media-box .mediaList img {
  width: 92px;
}

.community-tips .follow-media {
  gap: 16px;
}
.community-tips .main-cont {
  margin-top: 32px;
  gap: 24px;
}
@media (min-width:992px) {
  .community-tips .main-cont {
    margin-top: 40px;
    gap: 32px;
  }
}
@media (min-width:1600px) {
  .community-tips .main-cont {
    margin-top: 64px;
    gap: 40px;
  }
}
.community-tips .main-cont .nav {
  flex-wrap: nowrap;
  max-width: 600px;
  width: 100%;
}
@media (min-width:1600px) {
  .community-tips .main-cont .nav {
    max-width: 660px;
  }
}
.community-tips .main-cont .nav-link {
  position: relative;
  cursor: pointer;
  width: 100%;
  padding: 10px 7px;
  text-align: center;
}
@media (min-width: 389.98px) {
  .community-tips .main-cont .nav-link {
    padding: 10px 9px;
  }
}
@media (min-width:992px) {
  .community-tips .main-cont .nav-link {
    padding: 14px 16px;
  }
}
.community-tips .main-cont .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
@media (max-width: 991.98px) {
  .community-tips .main-cont .tips-content .tab-pane .btn-outline-white, .community-tips .main-cont .tips-content .tab-pane .btn-outline-primary {
    min-width: 219px;
  }
}
@media (min-width:992px) {
  .community-tips .main-cont .tips-content .row {
    gap: 24px 0;
  }
}
@media (min-width:1600px) {
  .community-tips .main-cont .tips-content .row {
    gap: 32px 0;
  }
}
@media (min-width:1600px) {
  .community-tips .main-cont .tips-content .row > * {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.community-tips .main-cont .tips-content #nav-trending-blog img {
  border-radius: 20px;
}
.community-tips .main-cont .tips-content .tips-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 8px 8px 16px 8px;
  border-radius: 24px;
  text-decoration: none;
  gap: 12px;
}
@media (min-width:992px) {
  .community-tips .main-cont .tips-content .tips-item {
    gap: 16px;
  }
}
@media (min-width:1600px) {
  .community-tips .main-cont .tips-content .tips-item {
    padding: 12px 12px 24px 12px;
    gap: 24px;
  }
}
@media (max-width: 991.98px) {
  .community-tips .main-cont .tips-content .tips-item img {
    height: 184px;
  }
}
.community-tips .main-cont .tips-content .tips-item .h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  margin-bottom: 0;
  overflow: hidden;
}
@media (min-width:992px) {
  .community-tips .main-cont .tips-content .swiper .swiper-wrapper {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, 1fr);
    transform: none !important;
    transition: none !important;
    gap: 16px;
  }
}
@media (min-width:1280px) {
  .community-tips .main-cont .tips-content .swiper .swiper-wrapper {
    gap: 24px;
  }
}
@media (min-width:1600px) {
  .community-tips .main-cont .tips-content .swiper .swiper-wrapper {
    gap: 32px;
  }
}
@media (min-width:992px) {
  .community-tips .main-cont .tips-content .swiper .swiper-slide {
    margin: 0;
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .edimakor-reviews .container {
    margin-right: 0;
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .edimakor-reviews .title-cont {
    padding-left: 24px;
  }
}
.edimakor-reviews .user-avatar:not(:first-child) {
  margin-left: -12px;
}
.edimakor-reviews .user-avatar:nth-child(2) {
  z-index: 2;
}
.edimakor-reviews .user-avatar:nth-child(3) {
  z-index: 3;
}
.edimakor-reviews .user-avatar:nth-child(4) {
  z-index: 4;
}
.edimakor-reviews .user-avatar:nth-child(5) {
  z-index: 5;
}
.edimakor-reviews .review-link {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.edimakor-reviews .review-link svg {
  transition: all 0.3s linear;
}
.edimakor-reviews .review-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  animation: fade-out 0.5s ease-in-out forwards;
}
.edimakor-reviews .review-link:hover {
  text-decoration: none;
}
.edimakor-reviews .review-link:hover::after {
  animation: fade-in 0.5s ease-in-out forwards;
}
.edimakor-reviews .review-link:hover svg {
  transform: translateX(4px);
}
.edimakor-reviews .swiper-button-prev,
.edimakor-reviews .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #6b57ff;
}
@media (min-width:1600px) {
  .edimakor-reviews .swiper-button-prev,
  .edimakor-reviews .swiper-button-next {
    width: 56px;
    height: 56px;
  }
}
.edimakor-reviews .swiper-button-prev:not(.swiper-button-disabled):hover,
.edimakor-reviews .swiper-button-next:not(.swiper-button-disabled):hover {
  color: #6b57ff;
  filter: drop-shadow(0 0 32px rgba(105, 85, 252, 0.8));
}
.edimakor-reviews .swiper-button-prev::after,
.edimakor-reviews .swiper-button-next::after {
  display: none;
}
.edimakor-reviews .swiper-button-prev.swiper-button-disabled,
.edimakor-reviews .swiper-button-next.swiper-button-disabled {
  opacity: 0.6;
}
.edimakor-reviews .review-swiper {
  padding-right: 24px;
  padding-left: 24px;
  margin-top: 40px;
}
@media (min-width:992px) {
  .edimakor-reviews .review-swiper {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper {
    margin-top: 64px;
  }
}
.edimakor-reviews .review-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width:992px) {
  .edimakor-reviews .review-swiper .swiper-slide {
    flex-direction: row;
    justify-content: space-between;
    height: auto;
  }
}
.edimakor-reviews .review-swiper .cell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding: 24px;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(33px);
          backdrop-filter: blur(33px);
  overflow: hidden;
}
@media (min-width:992px) {
  .edimakor-reviews .review-swiper .cell {
    padding: 32px;
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
  }
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper .cell {
    padding: 40px;
    border-radius: 32px;
  }
}
.edimakor-reviews .review-swiper .cell:not(:last-child) {
  margin-bottom: 12px;
}
@media (min-width:992px) {
  .edimakor-reviews .review-swiper .cell:not(:last-child) {
    margin-right: 24px;
    margin-bottom: 0;
  }
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper .cell:not(:last-child) {
    margin-right: 32px;
  }
}
.edimakor-reviews .review-swiper .cell .double-quotation img {
  width: 32px;
  height: 22px;
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper .cell .double-quotation img {
    width: 40px;
    height: 26px;
  }
}
.edimakor-reviews .review-swiper .cell .review-text {
  min-height: 198px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 150%;
}
@media (min-width:992px) {
  .edimakor-reviews .review-swiper .cell .review-text {
    font-size: 14px;
    line-height: 140%;
  }
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper .cell .review-text {
    min-height: 120px;
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.edimakor-reviews .review-swiper .cell .review-cont {
  position: relative;
  padding-top: 20px;
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper .cell .review-cont {
    padding-top: 24px;
  }
}
.edimakor-reviews .review-swiper .cell .review-cont::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.8px;
  opacity: 0.6;
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper .cell .review-cont::before {
    height: 1px;
  }
}
.edimakor-reviews .review-swiper .cell .review-cont .p-title {
  font-size: 14px;
  line-height: 160%;
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper .cell .review-cont .p-title {
    font-size: 16px;
  }
}
.edimakor-reviews .review-swiper .cell .avatar-list {
  margin-right: 12px;
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper .cell .avatar-list {
    margin-right: 16px;
  }
}
.edimakor-reviews .review-swiper .cell .avatar-list img {
  width: 46px;
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper .cell .avatar-list img {
    width: 56px;
  }
}
.edimakor-reviews .review-swiper .cell .star-list svg {
  width: 18px;
  height: 17px;
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper .cell .star-list svg {
    width: 20px;
    height: 20px;
  }
}
.edimakor-reviews .review-swiper .cell .star-list svg:not(:last-child) {
  margin-right: 6px;
}
@media (min-width:1600px) {
  .edimakor-reviews .review-swiper .cell .star-list svg:not(:last-child) {
    margin-right: 8px;
  }
}

@media (max-width: 991.98px) {
  .data-section .row {
    gap: 24px 0;
  }
}
@media (min-width:1280px) {
  .data-section .row > * {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.data-section .col-lg-3 {
  position: relative;
}
@media (min-width:992px) {
  .data-section .col-lg-3::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
  }
  .data-section .col-lg-3:last-child::after {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .data-section .col-lg-3:nth-child(1)::after, .data-section .col-lg-3:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
  }
}
.data-section .data-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.data-section .data-num {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-weight: 700;
  line-height: 135%;
}
@media (min-width:992px) {
  .data-section .data-num {
    font-size: 32px;
    line-height: 120%;
  }
}
@media (min-width:1280px) {
  .data-section .data-num {
    font-size: 38px;
  }
}
@media (min-width:1600px) {
  .data-section .data-num {
    font-size: 46px;
  }
}

.faq .accordion.v1.v1-0-1 {
  margin-top: 32px;
}
@media (min-width:992px) {
  .faq .accordion.v1.v1-0-1 {
    margin-top: 40px;
  }
}
@media (min-width:1600px) {
  .faq .accordion.v1.v1-0-1 {
    margin-top: 64px;
  }
}
.faq .accordion.v1.v1-0-1 .accordion-item {
  margin-bottom: unset;
  background-color: unset;
  border-radius: 16px;
  border: none;
  overflow: hidden;
}
.faq .accordion.v1.v1-0-1 .accordion-item:not(:last-child) {
  margin-bottom: 1rem;
}
.faq .accordion.v1.v1-0-1 .accordion-item:has(.accordion-button.collapsed) {
  border: 2px solid #2a1c67;
}
.faq .accordion.v1.v1-0-1 .accordion-button {
  padding: 16px;
  background: linear-gradient(90deg, #7a33ff -0.69%, #190764 100.03%);
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  color: #fff;
}
@media (min-width:992px) {
  .faq .accordion.v1.v1-0-1 .accordion-button {
    padding: 24px;
    font-size: 20px;
  }
}
@media (min-width:1280px) {
  .faq .accordion.v1.v1-0-1 .accordion-button {
    padding: 32px;
  }
}
@media (min-width:1600px) {
  .faq .accordion.v1.v1-0-1 .accordion-button {
    padding: 40px;
    font-size: 24px;
    line-height: 135%;
  }
}
.faq .accordion.v1.v1-0-1 .accordion-button span {
  max-width: 270px;
}
@media (min-width:768px) {
  .faq .accordion.v1.v1-0-1 .accordion-button span {
    max-width: 100%;
  }
}
.faq .accordion.v1.v1-0-1 .accordion-button::after {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.51472 13.5147L15.2929 21.2929C15.6834 21.6834 16.3166 21.6834 16.7071 21.2929L24.4853 13.5147" stroke="%23faf8ff" stroke-opacity="0.8" stroke-width="2" stroke-linecap="round"/></svg>');
  background-size: 100% 100%;
}
@media (min-width:1280px) {
  .faq .accordion.v1.v1-0-1 .accordion-button::after {
    width: 32px;
    height: 32px;
  }
}
.faq .accordion.v1.v1-0-1 .accordion-button:hover {
  color: #8372ff;
}
.faq .accordion.v1.v1-0-1 .accordion-button:hover::after {
  background-image: url('data:image/svg+xml,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.51472 13.5147L15.2929 21.2929C15.6834 21.6834 16.3166 21.6834 16.7071 21.2929L24.4853 13.5147" stroke="%238372ff" stroke-opacity="0.8" stroke-width="2" stroke-linecap="round"/></svg>');
}
.faq .accordion.v1.v1-0-1 .accordion-button:not(.collapsed) {
  color: #fff;
  padding-bottom: 14px;
}
@media (min-width:992px) {
  .faq .accordion.v1.v1-0-1 .accordion-button:not(.collapsed) {
    padding-bottom: 16px;
  }
}
.faq .accordion.v1.v1-0-1 .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.00029 14.0003L15.2929 22.2929C15.6834 22.6834 16.3166 22.6834 16.7071 22.2929L24.9997 14.0003" stroke="%23faf8ff" stroke-width="2" stroke-linecap="round"/></svg>');
  background-size: 100% 100%;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}
@media (min-width:992px) {
  .faq .accordion.v1.v1-0-1 .accordion-button:not(.collapsed)::after {
    width: 32px;
    height: 32px;
  }
}
.faq .accordion.v1.v1-0-1 .accordion-button.collapsed {
  background: transparent;
}
.faq .accordion.v1.v1-0-1 .accordion-body {
  padding: 0 16px 16px;
  background: linear-gradient(90deg, #7a33ff -0.69%, #190764 100.03%);
}
@media (min-width:992px) {
  .faq .accordion.v1.v1-0-1 .accordion-body {
    padding: 0 24px 24px;
  }
}
@media (min-width:1280px) {
  .faq .accordion.v1.v1-0-1 .accordion-body {
    padding: 0 32px 32px;
  }
}
@media (min-width:1600px) {
  .faq .accordion.v1.v1-0-1 .accordion-body {
    padding: 0 40px 40px;
  }
}
.faq .accordion.v1.v1-0-1 .accordion-body p {
  margin-bottom: 0;
  color: #e0e0e0;
}

.bottom-screen {
  position: relative;
  padding: 40px 18px 80px;
  background: url("https://edimakor.hitpaw.com/images/home/bottom-banner-bg-mobile.webp") no-repeat center/cover;
}
@media (min-width:992px) {
  .bottom-screen {
    padding: 80px 0 144px;
    margin-bottom: -65px;
    background: url("https://edimakor.hitpaw.com/images/home/bottom-banner-bg.webp") no-repeat center/cover;
  }
}
@media (min-width:1600px) {
  .bottom-screen {
    padding: 120px 0 210px;
  }
}
.bottom-screen .sub-title {
  margin-bottom: 32px;
  font-size: 24px;
}
@media (min-width:992px) {
  .bottom-screen .sub-title {
    font-size: 32px;
  }
}
@media (min-width:1600px) {
  .bottom-screen .sub-title {
    margin-bottom: 40px;
    font-size: 36px;
  }
}
.bottom-screen .sub-title img {
  width: 48px;
  margin-right: 11px;
}
@media (min-width:992px) {
  .bottom-screen .sub-title img {
    width: 64px;
    margin-right: 16px;
  }
}
@media (min-width:1600px) {
  .bottom-screen .sub-title img {
    width: 72px;
  }
}
.bottom-screen .h-title {
  max-width: 100%;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
}
@media (min-width:992px) {
  .bottom-screen .h-title {
    max-width: 900px;
    margin-bottom: 56px;
    font-size: 56px;
  }
}
@media (min-width:1280px) {
  .bottom-screen .h-title {
    max-width: 1000px;
  }
}
@media (min-width:1600px) {
  .bottom-screen .h-title {
    max-width: 1200px;
    margin-bottom: 64px;
    font-size: 68px;
  }
}
.bottom-screen .h-title .text-gradient {
  background: linear-gradient(90deg, #faf8ff 0%, #faf8ff 57.67%, #b097ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bottom-screen .h-title .video-box {
  z-index: 1;
  max-height: 52px;
  margin: 20px 30px;
  background: #d9d9d9;
  border-radius: 12px;
}
@media (min-width:992px) {
  .bottom-screen .h-title .video-box {
    max-height: 66px;
    margin: 0 16px 0 34px;
  }
}
@media (min-width:1600px) {
  .bottom-screen .h-title .video-box {
    max-height: 72px;
    margin: 0 16px 0 36px;
  }
}
.bottom-screen .h-title .video-box .video-1 {
  height: 52px;
  border-radius: 12px;
}
@media (min-width:992px) {
  .bottom-screen .h-title .video-box .video-1 {
    height: 66px;
  }
}
@media (min-width:1600px) {
  .bottom-screen .h-title .video-box .video-1 {
    height: 72px;
  }
}
.bottom-screen .h-title .video-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 23px;
  height: 56px;
  top: 0;
  left: -14px;
  background-image: url("https://edimakor.hitpaw.com/images/home/video-set-up-brand.svg");
  background-size: 100% 100%;
}
@media (min-width:992px) {
  .bottom-screen .h-title .video-box::before {
    width: 30px;
    height: 72px;
    left: -20px;
  }
}
@media (min-width:1600px) {
  .bottom-screen .h-title .video-box::before {
    width: 32px;
    height: 78px;
  }
}
.bottom-screen .h-title .video-2 {
  height: 80px;
  background: #d9d9d9;
  border-radius: 12px;
}
@media (min-width:992px) {
  .bottom-screen .h-title .video-2 {
    height: 96px;
  }
}
@media (min-width:1600px) {
  .bottom-screen .h-title .video-2 {
    height: 108px;
  }
}
.bottom-screen .bottom-list {
  margin: 32px 0;
}
@media (min-width:992px) {
  .bottom-screen .bottom-list {
    margin: 32px 0 56px;
  }
}
@media (min-width:1600px) {
  .bottom-screen .bottom-list {
    margin: 40px 0 64px;
  }
}
.bottom-screen .bottom-list li {
  padding: 3px 4px;
  margin: 4px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(251, 246, 255, 0.08) 0%, rgba(251, 246, 255, 0) 99.88%);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
@media (min-width:992px) {
  .bottom-screen .bottom-list li {
    padding: 2px 4px;
    margin: 0 20px;
  }
}
.bottom-screen .bottom-list li svg {
  width: 16px;
  height: 16px;
}
@media (min-width:992px) {
  .bottom-screen .bottom-list li svg {
    width: 26px;
    height: 26px;
  }
}
.bottom-screen .bottom-list li span {
  margin-left: 4px;
}
@media (min-width:992px) {
  .bottom-screen .bottom-list li span {
    margin-left: 6px;
  }
}
.bottom-screen .particles-container {
  position: absolute;
  width: 100%;
  height: 400px;
  max-width: 100%;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
@media (min-width:1600px) {
  .bottom-screen .particles-container {
    height: 560px;
  }
}
.bottom-screen .particles {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  animation: particles linear infinite;
}
.bottom-screen .particles.foreground {
  background-image: url("https://edimakor.hitpaw.com/images/home/particles-large.png");
  animation-duration: 15s;
}
.bottom-screen .particles.foreground.layered {
  animation-delay: 12s;
}
.bottom-screen .particles.background {
  background-image: url("https://edimakor.hitpaw.com/images/home/particles-small.png");
  animation-duration: 20s;
}
.bottom-screen .particles.background.layered {
  animation-delay: 15s;
}
.bottom-screen .btn-gradient {
  z-index: 1;
  position: relative;
  outline: none;
  background-size: 100%;
  overflow: hidden;
}
@media (min-width:992px) {
  .bottom-screen .btn-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(125deg, #cda6ff 11.02%, #dc58f1 38.37%, #5800ff 62.65%, #6c26ff 94.31%);
    background-size: 200%;
    border-radius: inherit;
    opacity: 0;
    transition: 0.5s;
  }
}
.bottom-screen .btn-gradient:hover {
  animation: btnEffects 15s linear infinite;
}
.bottom-screen .btn-gradient:hover::before {
  filter: blur(25px);
  opacity: 0.8;
  animation: btnEffects 3s linear infinite;
}/*# sourceMappingURL=home.css.map */