html, body {
  background-color: #03071C !important;
  font-family: "Golos Text", Arial, sans-serif !important;
}
html img, body img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}
html a, body a {
  text-decoration: none;
}
@media (min-width: 1200px) {
  html .container, body .container {
    max-width: 1140px;
  }
}

/* Header */
.se-header {
  padding: 20px 0;
}
@media (max-width: 576px) {
  .se-header {
    padding: 10px 0;
  }
}
@media (min-width: 1200px) {
  .se-header .container {
    max-width: 964px;
  }
}
.se-header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 65px;
}
.se-header .logo img {
  height: 30px;
}
.se-header .grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.se-navbar {
  -webkit-backdrop-filter: brightness(120%) contrast(100%) saturate(100%) blur(15px) hue-rotate(0deg);
  backdrop-filter: brightness(120%) contrast(100%) saturate(100%) blur(15px) hue-rotate(0deg);
  border-radius: 999px 999px 999px 999px;
  height: 46px;
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.1) inset;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.0196078431) 0%, rgba(255, 255, 255, 0.0588235294) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .se-navbar {
    display: none;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 85px;
    width: calc(100% - 20px);
    border-radius: 14px;
    padding: 20px;
    z-index: 99;
  }
}
.se-navbar ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 54px;
}
@media (max-width: 992px) {
  .se-navbar ul {
    display: block;
    gap: 0;
  }
}
.se-navbar .link {
  color: rgba(255, 255, 255, 0.5490196078);
  transition: 0.2s;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 992px) {
  .se-navbar .link {
    font-size: 16px;
    padding: 12px;
    display: block;
  }
}
.se-navbar .link.active, .se-navbar .link:hover {
  color: #fff;
}

.mobile-menu-toggle {
  height: 44px;
  width: 44px;
  -webkit-backdrop-filter: brightness(120%) contrast(100%) saturate(100%) blur(15px) hue-rotate(0deg);
  backdrop-filter: brightness(120%) contrast(100%) saturate(100%) blur(15px) hue-rotate(0deg);
  border-radius: 6px;
  height: 46px;
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.1) inset;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.0196078431) 0%, rgba(255, 255, 255, 0.0588235294) 100%);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Home */
.se-home-banner {
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.0901960784);
  border-radius: 22px;
  margin-top: 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 576px) {
  .se-home-banner {
    padding: 30px;
  }
}
.se-home-banner .content {
  max-width: 762px;
  margin: auto;
}
.se-home-banner .content img {
  max-width: 100%;
  width: 540px;
  margin: auto auto 10px auto;
  display: block;
}
.se-home-banner .content .title {
  font-size: 52px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .se-home-banner .content .title {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .se-home-banner .content .title {
    font-size: 28px;
  }
}
.se-home-banner .content .title span {
  background: linear-gradient(90deg, #1370FD 47.62%, #5391E4 100%, #6BCD94 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.se-home-banner .content .text {
  font-size: 14px;
  letter-spacing: 0.8px;
  font-family: Arial;
  line-height: 24px;
  font-weight: 200;
  color: #b5b5b5;
  margin-bottom: 25px;
}

.se-all-devices {
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}
.se-all-devices::before {
  content: "";
  width: 200px;
  background: linear-gradient(to right, #03071C, transparent);
  display: block;
  position: absolute;
  left: 0;
  bottom: 40px;
  height: 52px;
  z-index: 1;
}
.se-all-devices::after {
  content: "";
  width: 200px;
  background: linear-gradient(to left, #03071C, transparent);
  display: block;
  position: absolute;
  right: 0;
  bottom: 40px;
  height: 52px;
  z-index: 1;
}
.se-all-devices .text-mini {
  margin-bottom: 30px;
}
.se-all-devices .logo-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: scroll-logos 20s linear infinite;
  position: relative;
}
.se-all-devices .logo-list .item {
  width: 140px;
  min-width: 140px;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-700px);
  }
}
.se-ft-item {
  background-color: rgba(255, 255, 255, 0.0274509804);
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  margin: 8px 0;
  height: calc(100% - 16px);
  transition: 0.4s;
}
.se-ft-item:hover {
  background-color: #1E1924;
  transform: scale(1.1);
}
.se-ft-item .icon {
  margin-bottom: 20px;
}
.se-ft-item .icon svg {
  fill: #fff;
  height: 36px;
  width: 36px;
}
.se-ft-item .title {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500 !important;
}
.se-ft-item p {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.4470588235);
  margin-bottom: 0;
}

.se-all-features {
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 576px) {
  .se-all-features {
    padding: 40px 0;
  }
}
.se-all-features::before {
  content: "";
  width: 200px;
  background: linear-gradient(to right, #03071C, transparent);
  display: block;
  position: absolute;
  left: 0;
  bottom: 70px;
  height: 62px;
  z-index: 1;
}
@media (max-width: 576px) {
  .se-all-features::before {
    bottom: 40px;
  }
}
.se-all-features::after {
  content: "";
  width: 200px;
  background: linear-gradient(to left, #03071C, transparent);
  display: block;
  position: absolute;
  right: 0;
  bottom: 70px;
  height: 62px;
  z-index: 1;
}
@media (max-width: 576px) {
  .se-all-features::after {
    bottom: 40px;
  }
}
.se-all-features .texts {
  text-align: center;
  margin-bottom: 60px;
}
.se-all-features .texts .title {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 500 !important;
}
@media (max-width: 576px) {
  .se-all-features .texts .title {
    font-size: 28px;
  }
}
.se-all-features .texts .title span {
  background: linear-gradient(90deg, #1370FD 47.62%, #5391E4 100%, #6BCD94 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.se-all-features .texts p {
  color: #d9d9d9;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 20px;
}
.se-all-features .specs-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: scroll-features 20s linear infinite;
  position: relative;
}
.se-all-features .specs-list .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.se-all-features .specs-list .list-item {
  background-color: rgba(255, 255, 255, 0.0274509804);
  height: 62px;
  border-radius: 12px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}
.se-all-features .specs-list .list-item .icon {
  margin-right: 16px;
}
.se-all-features .specs-list .list-item .icon svg {
  height: 26px;
  width: 26px;
  fill: #1370FD;
}
.se-all-features .specs-list .list-item .text {
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes scroll-features {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-926.86px);
  }
}
.se-features-area {
  position: relative;
  overflow: hidden;
}
.se-features-area .animation {
  transform: none;
}
.se-features-area .animation.left {
  left: -450px;
  top: 200px;
}
.se-features-area .animation.right {
  left: inherit;
  right: -450px;
  top: 100px;
}
.se-features-area .animation svg {
  height: 800px;
  width: 800px;
}
.se-features-area .row {
  --bs-gutter-x: 60px;
}

.se-card {
  border: 1px solid rgba(255, 255, 255, 0.0901960784);
  padding: 60px;
  border-radius: 22px;
  background-color: #03071C;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .se-card {
    margin: 15px 0;
  }
}
@media (max-width: 576px) {
  .se-card {
    padding: 30px;
  }
}
.se-card.he-100 {
  height: calc(100% - 60px);
}
@media (max-width: 768px) {
  .se-card.he-100 {
    height: calc(100% - 30px);
  }
}
.se-card .label {
  color: rgba(192, 177, 255, 0.6196078431);
  font-size: 12px;
  padding: 9px 12px;
  background-color: rgba(192, 177, 255, 0.0862745098);
  display: inline-block;
  border-radius: 8px;
  font-family: "Jetbrains Mono";
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.se-card .title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 500 !important;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .se-card .title {
    font-size: 24px;
    line-height: 30px;
  }
}
.se-card .title.small {
  font-size: 27px;
  line-height: 32px;
}
.se-card p {
  font-size: 13px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.4470588235);
}
.se-card .img {
  margin-top: 20px;
}
.se-card.horizontal .title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 8px;
}
.se-card.horizontal p {
  font-size: 14px;
  line-height: 24px;
}

@media (min-width: 1200px) {
  .se-fa-epg .col-lg-5 {
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .se-fa-epg .col-lg-7 {
    width: 60%;
  }
}

/* Pricing */
.st-pricings {
  padding: 60px 0 0 0;
}
@media (max-width: 576px) {
  .st-pricings {
    padding-top: 30px;
  }
}
.st-pricings .title-head {
  font-size: 46px;
  font-weight: 500 !important;
  margin-bottom: 40px;
}

.st-pricing-item {
  border: 2px solid rgba(255, 255, 255, 0.0901960784);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  margin-bottom: 10px;
  height: 115px;
  transition: 0.3s;
}
@media (max-width: 576px) {
  .st-pricing-item {
    height: auto;
    padding: 20px;
  }
}
.st-pricing-item:hover, .st-pricing-item.active {
  background-color: #002359;
}
.st-pricing-item .title {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 500 !important;
}
@media (max-width: 576px) {
  .st-pricing-item .title {
    font-size: 18px;
  }
}
.st-pricing-item .price {
  font-size: 32px;
  margin-bottom: 0;
  font-weight: 500 !important;
}
@media (max-width: 576px) {
  .st-pricing-item .price {
    font-size: 20px;
  }
}
.st-pricing-item .price .cycle {
  font-size: 15px;
  color: #7c7e82;
  font-weight: 300;
  font-family: "Jetbrains Mono";
}
@media (max-width: 576px) {
  .st-pricing-item .price .cycle {
    font-size: 12px;
  }
}

.badge-save {
  background-color: #1471FF;
  height: 27px;
  font-size: 14px;
  padding: 5px 15px;
  font-weight: 300;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  font-family: "Jetbrains Mono";
}

.st-list-pricing {
  border: 1px solid rgba(255, 255, 255, 0.1176470588);
  padding: 20px 20px 8px 20px !important;
  border-radius: 22px;
}
@media (max-width: 992px) {
  .st-list-pricing {
    margin-bottom: 20px;
  }
}
.st-list-pricing .label {
  color: rgba(192, 177, 255, 0.6196078431);
  font-size: 12px;
  padding: 9px 12px;
  background-color: rgba(192, 177, 255, 0.0862745098);
  display: inline-block;
  border-radius: 8px;
  font-family: "Jetbrains Mono";
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.st-list-pricing li {
  padding: 17px 25px 17px 50px;
  color: #7c7e82;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}
.st-list-pricing li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1176470588);
}
.st-list-pricing li::before {
  content: "\eb7b";
  font-family: "remixicon";
  font-weight: 700;
  display: block;
  font-size: 16px;
  color: #e9e9e9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border: 1px solid rgba(112, 112, 112, 0.1176470588);
  border-radius: 100%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Compare */
.st-compare-section {
  padding: 50px 0;
}

.st-compare .head {
  background-color: #03071C;
  border-bottom: 1px solid rgba(113, 113, 113, 0.47);
  padding: 30px 0;
  margin-bottom: 15px;
  position: sticky;
  top: 0;
}
.st-compare .head h4 {
  font-size: 28px;
  font-weight: 500 !important;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .st-compare .head h4 {
    font-size: 18px;
  }
}
.st-compare .head .title {
  width: 100%;
  background-color: #060c29;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}
@media (max-width: 576px) {
  .st-compare .head .title {
    font-size: 12px;
  }
}
.st-compare .head .title.primary {
  background-color: #1471FF;
}
.st-compare .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  align-items: center;
}
.st-compare .content-area .item {
  padding: 20px 0;
}
.st-compare .content-area .item:not(:first-child) {
  text-align: center;
}
.st-compare .content-area .item .title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  .st-compare .content-area .item .title {
    font-size: 15px;
  }
}
.st-compare .content-area .item .text {
  font-size: 15px;
  color: #7c7e82;
  font-weight: 300;
}
@media (max-width: 576px) {
  .st-compare .content-area .item .text {
    font-size: 14px;
  }
}
.st-compare .ri-checkbox-circle-line {
  color: #2473c5;
}
.st-compare .item .icon {
  font-size: 24px;
  font-weight: 300;
}

.se-introduction {
  padding: 60px 0;
}
.se-introduction .title {
  font-size: 37px;
  margin-bottom: 20px;
  font-weight: 500 !important;
}
.se-introduction .text {
  font-size: 16px;
  line-height: 20px;
  font-family: "Arial";
  opacity: 0.7;
  max-width: 920px;
  margin: auto auto 40px auto;
}

/* Trustpilot Slider */
.st-home-comments {
  padding: 0 0 50px 0;
}
.st-home-comments .head-title {
  margin-bottom: 15px;
  text-align: center;
}
.st-home-comments .head-title .title-head {
  font-size: 50px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.st-home-comments .head-title .title-head::before {
  content: "";
  background-color: transparent;
  background-image: radial-gradient(at top center, rgba(255, 255, 255, 0) 0%, #00010D 100%);
  opacity: 1;
  transition: background 0.3s;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 50px);
  position: absolute;
  pointer-events: none;
}

.st-section-trustpilot {
  padding-bottom: 50px;
}

.st-swiper-trustpilot {
  padding-bottom: 60px !important;
}
.st-swiper-trustpilot .swiper-pagination {
  bottom: 0 !important;
}
.st-swiper-trustpilot .swiper-slide {
  height: auto;
}

.st-trustpilot-box {
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
  background-color: #fff;
  height: 100%;
}
.st-trustpilot-box .user {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.st-trustpilot-box .shortcut {
  height: 40px;
  width: 40px;
  min-width: 40px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #fff;
  margin-right: 12px;
}
.st-trustpilot-box .user img {
  max-height: 20px;
}
.st-trustpilot-box .name {
  font-size: 12px;
  font-weight: 600;
  color: #696a6a;
  margin-bottom: 10px;
}
.st-trustpilot-box .name span, .st-trustpilot-box .name a {
  color: #000;
}
.st-trustpilot-box p {
  font-size: 14px;
  color: #1c1c1c;
  margin-bottom: 0;
}
.st-trustpilot-box.dark {
  background-color: rgba(255, 255, 255, 0.0784313725);
  color: #fff;
  border: 0 !important;
}
.st-trustpilot-box.dark .name {
  color: #c0c0c0;
}
.st-trustpilot-box.dark span, .st-trustpilot-box.dark a {
  color: #fff;
}
.st-trustpilot-box.dark p {
  color: #fff;
}

.swiper-pagination.dark .swiper-pagination-bullet {
  background-color: #fff;
  height: 6px;
  width: 6px;
  margin: 0 7px !important;
  transition: 0.2s;
}
.swiper-pagination.dark .swiper-pagination-bullet-active {
  transform: scale(1.1);
}

.se-need-help {
  border-top: 1px solid rgba(255, 255, 255, 0.4392156863);
  padding: 60px 0;
  text-align: center;
}
.se-need-help .title {
  font-weight: 500 !important;
  font-size: 37px;
  margin-bottom: 40px;
}
.se-need-help .flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .se-need-help .flex {
    flex-direction: column;
  }
}
.se-need-help .link {
  background-color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 90px;
  padding: 0 40px;
  text-align: center;
  border-radius: 14px;
  color: #fff;
  transition: 0.2s;
}
@media (max-width: 768px) {
  .se-need-help .link {
    margin: 5px 0;
    width: 100%;
  }
}
.se-need-help .link:hover {
  transform: scale(1.05);
}
.se-need-help .link .icon svg {
  height: 32px;
  width: 32px;
  fill: #fff;
}
.se-need-help .link .text {
  font-family: "Jetbrains Mono";
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* FAQ */
.se-faq {
  padding: 50px 120px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .se-faq {
    padding: 50px;
  }
}
@media (max-width: 576px) {
  .se-faq {
    padding: 30px;
  }
}
.se-faq .title-head {
  margin-bottom: 50px;
}
.se-faq .title-head .title {
  font-size: 46px;
  margin: 8px 0;
}

.se-faq-item {
  margin: 20px 0;
}
.se-faq-item .head {
  padding: 12px 20px 12px 0;
  position: relative;
  cursor: pointer;
}
.se-faq-item .head .title {
  font-size: 19px;
  line-height: 30px;
  font-weight: 400 !important;
  color: #AFAFAF;
  transition: 0.3s;
}
@media (max-width: 576px) {
  .se-faq-item .head .title {
    font-size: 16px;
    line-height: 24px;
  }
}
.se-faq-item .head::after {
  content: "\ea13";
  font-family: "remixicon";
  display: block;
  font-size: 18px;
  color: #AFAFAF;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.se-faq-item .head.active::after {
  content: "\f1af";
}
.se-faq-item .head:hover .title, .se-faq-item .head.active .title {
  color: #fff;
}
.se-faq-item .head:hover::after, .se-faq-item .head.active::after {
  color: #fff;
}
.se-faq-item .body {
  padding-bottom: 20px;
  display: none;
}
.se-faq-item .body p {
  color: rgba(175, 175, 175, 0.6);
  font-size: 16px;
  line-height: 24px;
}

/* Footer */
.se-footer {
  padding-top: 30px;
  padding-bottom: 20px;
}
.se-footer .footer-top {
  padding: 40px 20px;
  border-top: 1px solid #434957;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .se-footer .footer-top {
    margin-bottom: 0;
  }
}
.se-footer .footer-items {
  margin: 10px 0;
}
@media (max-width: 576px) {
  .se-footer .footer-items {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.se-footer .footer-items .footer-title {
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.4705882353);
  letter-spacing: 1px;
  font-weight: 500 !important;
}
.se-footer .footer-items .footer-list li {
  margin: 10px 0;
}
.se-footer .footer-items .footer-list li a {
  color: #fff;
  font-size: 14px;
  opacity: 0.7;
  transition: 0.2s;
}
.se-footer .footer-items .footer-list li a:hover {
  opacity: 1;
}
.se-footer .footer-items .img-logo {
  height: 40px;
  object-fit: contain;
  margin-left: auto;
  display: block;
}
@media (max-width: 576px) {
  .se-footer .footer-items .img-logo {
    margin-left: inherit !important;
  }
}
.se-footer .footer-alt p {
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.4470588235);
}

/* General */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600 !important;
}

.btn {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex !important;
  padding: 0 36px !important;
  border-radius: 14px !important;
  text-transform: uppercase;
  font-size: 14px !important;
  transition: 0.2s !important;
}
.btn:hover {
  transform: scale(1.05);
}
.btn.btn-primary {
  background-color: #1F62C7 !important;
  border-color: #1F62C7 !important;
}
.btn.btn-secondary {
  background-color: #12172C !important;
  border-color: #12172C !important;
}

.text-mini {
  color: rgba(255, 255, 255, 0.4470588235);
  font-size: 11px;
  margin: 10px 0;
}

.title-span {
  background: linear-gradient(90deg, #1370FD 47.62%, #5391E4 100%, #6BCD94 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.fs-13 {
  font-size: 13px !important;
}

.se-animation-svg {
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -50%;
}
.se-animation-svg svg {
  opacity: 0.15;
  height: 400px;
  width: 400px;
}

.popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999;
      padding: 20px;
    }

    .popup-container {
      background: linear-gradient(135deg, #192a56 0%, #0a1535 100%);
      border-radius: 16px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      overflow: hidden;
      width: 100%;
      max-width: 500px;
      position: relative;
      animation: fadeIn 0.5s ease-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .popup-header {
      background: linear-gradient(90deg, #273c75 0%, #192a56 100%);
      padding: 5px 15px;
      display: flex;
      justify-content: flex-end;
    }

    .close-btn {
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.8);
      font-size: 24px;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .close-btn:hover {
      color: #fff;
    }

    .popup-content {
      display: flex;
      flex-direction: column;
      padding: 0;
    }

    @media (min-width: 768px) {
      .popup-content {
        flex-direction: row;
      }
    }

    .popup-image {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
    }

    @media (min-width: 768px) {
      .popup-image {
        width: 50%;
        aspect-ratio: auto;
        height: 100%;
      }
    }

    .popup-text {
      padding: 30px;
      color: #fff;
    }

    .popup-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #fff;
    }

    .popup-description {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 25px;
      color: rgba(255, 255, 255, 0.9);
    }

    .cta-button {
      background: linear-gradient(90deg, #00a8ff 0%, #0097e6 100%);
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      display: inline-block;
      text-decoration: none;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 7px 10px rgba(0, 0, 0, 0.2);
    }

    .popup-footer {
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .popup-footer-text {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
    }

    .secondary-link {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .secondary-link:hover {
      color: #fff;
      text-decoration: underline;
    }

    /* Pulse animation for the notification dot */
    .notification-dot {
      position: absolute;
      top: 15px;
      right: 15px;
      height: 12px;
      width: 12px;
      background-color: #00a8ff;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 168, 255, 0.7);
      }
      70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(0, 168, 255, 0);
      }
      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 168, 255, 0);
      }
    }

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