@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

p {
  margin-bottom: 1rem;
  color: #b0bec5;
  line-height: 1.8;
}

a {
  color: #4461f2;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: #6366f1;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
}

.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 576px) {
  .section {
    padding: 80px 0;
  }
}

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1030;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}
.navbar-custom.scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid rgba(68, 97, 242, 0.3);
  backdrop-filter: blur(30px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c83895, #3b52d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.nav-logo:hover {
  transform: scale(1.05);
}

.menu-toggle {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c83895, #3b52d9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(68, 97, 242, 0.3);
}
.menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(68, 97, 242, 0.5);
}

.hamburger {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 20px;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bg-shape {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: linear-gradient(135deg, #c83895, #3b52d9);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  text-align: left;
  z-index: 2;
  position: relative;
}
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #b0bec5;
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.6;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}
@media (max-width: 992px) {
  .hero-image-container {
    height: 400px;
    margin-top: 3rem;
  }
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  padding: 12px;
  object-fit: cover;
}
.hero-image:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
}
.floating-card:nth-child(1) {
  top: 10%;
  right: 20%;
  animation-delay: 0s;
}
.floating-card:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: -2s;
}
.floating-card:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation-delay: -4s;
}
.floating-card i {
  color: #4461f2;
  font-size: 1.2rem;
}

.distinct-section {
  background: linear-gradient(135deg, #2a2a2a 0%, rgba(68, 97, 242, 0.05) 100%);
  position: relative;
}

.distinct-visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .distinct-visual {
    height: 400px;
    margin-bottom: 2rem;
  }
}

.grid-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}
.grid-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(68, 97, 242, 0.1);
  border-color: #4461f2;
  box-shadow: 0 20px 40px rgba(68, 97, 242, 0.3);
}
.grid-item:nth-child(2) {
  animation-delay: -2s;
}
.grid-item:nth-child(3) {
  animation-delay: -4s;
}
.grid-item:nth-child(4) {
  animation-delay: -1s;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c83895, #3b52d9);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.grid-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.central-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.distinct-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.1);
  filter: blur(1px) brightness(0.7);
}
@media (max-width: 992px) {
  .distinct-image {
    width: 250px;
    height: 250px;
  }
}

.distinct-content .content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b0bec5;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.clarity-section {
  background: #0a0a0a;
  position: relative;
}

.clarity-shape {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: #6366f1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}

.clarity-content .content-text {
  background-color: #001a3f;
  padding: 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b0bec5;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.values-section {
  background: #2a2a2a;
  position: relative;
}

.values-shape {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #4461f2, #6366f1);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
}

.values-visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .values-visual {
    height: 400px;
    margin-top: 2rem;
  }
}

.values-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 992px) {
  .values-cards {
    left: 10%;
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 200px;
  animation: float 6s ease-in-out infinite;
}
@media (min-width: 280px) and (max-width: 576px) {
  .value-card {
    min-width: 76px;
  }
}
.value-card:hover {
  transform: translateX(-10px) scale(1.05);
  background: rgba(68, 97, 242, 0.15);
  border-color: #4461f2;
  box-shadow: 0 15px 30px rgba(68, 97, 242, 0.3);
}
.value-card:nth-child(2) {
  animation-delay: -2s;
}
.value-card:nth-child(3) {
  animation-delay: -4s;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c83895, #3b52d9);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: white;
}

.value-card h4 {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.values-bg-image {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 992px) {
  .values-bg-image {
    position: static;
    transform: none;
    text-align: center;
  }
}

.values-image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.8) contrast(1.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .values-image {
    width: 100%;
    max-width: 300px;
    height: 300px;
  }
}

.benefits-list .benefit-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.benefits-list .benefit-item:hover {
  transform: translateX(10px);
  background: rgba(68, 97, 242, 0.1);
  border-color: #4461f2;
  box-shadow: 0 10px 30px rgba(68, 97, 242, 0.2);
}
.benefits-list .benefit-item i {
  background: linear-gradient(135deg, #c83895, #3b52d9);
  color: white;
  padding: 0.8rem;
  border-radius: 12px;
  margin-right: 1.5rem;
  font-size: 1.2rem;
  min-width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits-list .benefit-item span {
  color: #b0bec5;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

.benefits-timeline {
  position: relative;
}
.benefits-timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #4461f2, #6366f1);
}

.timeline-item {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 992px) {
  .timeline-item {
    padding-left: 3rem;
  }
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c83895, #3b52d9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 5px 20px rgba(68, 97, 242, 0.3);
  border: 3px solid #0a0a0a;
}
@media (max-width: 992px) {
  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}
.timeline-content:hover {
  transform: translateY(-5px);
  background: rgba(68, 97, 242, 0.1);
  border-color: #4461f2;
  box-shadow: 0 15px 30px rgba(68, 97, 242, 0.2);
}
.timeline-content p {
  color: #b0bec5;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .section-header {
    margin-bottom: 1rem;
  }
}

.section-description {
  font-size: 1.2rem;
  color: #b0bec5;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
}

.cta-section {
  background: linear-gradient(135deg, #2a2a2a 0%, rgba(68, 97, 242, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.3rem;
  color: #b0bec5;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary-cta {
  background: linear-gradient(135deg, #c83895, #3b52d9) !important;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(68, 97, 242, 0.3);
}
.btn-primary-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(68, 97, 242, 0.4);
  color: white;
}

.btn-secondary-cta {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #4461f2;
  transform: translateY(-2px);
  color: #ffffff;
}

.cta-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-decorations .decoration {
  position: absolute;
  background: linear-gradient(135deg, #c83895, #3b52d9);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}
.cta-decorations .decoration:nth-child(1) {
  top: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
}
.cta-decorations .decoration:nth-child(2) {
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
}
.cta-decorations .decoration:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }

  .show-mobile {
    display: block !important;
  }
}
@media (max-width: 992px) {
  .hide-tablet {
    display: none !important;
  }
}
.footer-bg {
  background: linear-gradient(135deg, #c30060, #0047AB);
}

.footer {
  /* background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%); */
  padding: 5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

@media (min-width: 576px) and (max-width: 768px) {
  .footer {
    padding: 3rem 0 3rem;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.5;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #fff;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom p {
  color: #fff;
}

.terms-hero-section {
  padding: 120px 0 120px;
  background: linear-gradient(135deg, #1E1B4B, #312E81, #3730A3);
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  margin-top: 88px;
}
.terms-hero-section .hero-bg-shape {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: linear-gradient(135deg, #4F46E5, #7C3AED, #A855F7);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 12s ease-in-out infinite;
}
.terms-hero-section .hero-bg-shape-2 {
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #8B5CF6, #A855F7, #C084FC);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  animation: float 15s ease-in-out infinite reverse;
}
.terms-hero-section .hero-content {
  position: relative;
  z-index: 2;
}
.terms-hero-section .hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #E0E7FF, #C7D2FE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.terms-hero-section .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #E0E7FF;
  margin-bottom: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.terms-hero-section .hero-description {
  font-size: 1.2rem;
  color: #C7D2FE;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .terms-hero-section {
    padding: 100px 0 60px;
    min-height: 60vh;
  }
}

.terms-content-section {
  padding: 80px 0;
  background: #0a0a0a;
  position: relative;
}
.terms-content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(168, 85, 247, 0.02) 50%, transparent 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .terms-content-section {
    padding: 60px 0;
  }
}

.terms-content-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.terms-content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.terms-content-card:hover::before {
  opacity: 1;
}
@media (max-width: 992px) {
  .terms-content-card {
    padding: 3rem;
  }
}
@media (max-width: 768px) {
  .terms-content-card {
    padding: 2rem;
    border-radius: 20px;
  }
}

.terms-intro {
  background: rgba(68, 97, 242, 0.1);
  border: 1px solid rgba(68, 97, 242, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
}
.terms-intro p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .terms-intro {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}

.terms-section {
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.terms-section h2 {
  color: #4461f2;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.terms-section h2::before {
  content: "";
  width: 4px;
  height: 30px;
  background: linear-gradient(135deg, #4461f2, #6366f1);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .terms-section h2 {
    font-size: 1.3rem;
  }
}
.terms-section p {
  color: #b0bec5;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.terms-section p:last-child {
  margin-bottom: 0;
}
.terms-section ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}
.terms-section ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #b0bec5;
  line-height: 1.7;
}
.terms-section ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4461f2;
  font-weight: bold;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .terms-section {
    padding: 1.5rem 0;
    margin-bottom: 2rem;
  }
}

.contact-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}
.contact-info p {
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info p strong {
  color: #4461f2;
}
@media (max-width: 768px) {
  .contact-info {
    padding: 1rem;
  }
}

.terms-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.terms-footer p {
  color: #b0bec5;
  font-size: 0.9rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .terms-footer {
    margin-top: 2rem;
  }
}

.cookie-type {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  transition: all 0.3s ease;
}
.cookie-type:hover {
  background: rgba(68, 97, 242, 0.05);
  border-color: rgba(68, 97, 242, 0.2);
  transform: translateY(-2px);
}
.cookie-type h3 {
  color: #4461f2;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cookie-type h3::before {
  content: "🍪";
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .cookie-type h3 {
    font-size: 1.1rem;
  }
}
.cookie-type p {
  color: #b0bec5;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .cookie-type {
    padding: 1rem;
    margin: 1rem 0;
  }
}

.footer-log {
  width: 200px;
}

.contact-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1E1B4B, #312E81, #3730A3);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.contact-hero-section .hero-bg-shape {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: linear-gradient(135deg, #4F46E5, #7C3AED, #A855F7);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 12s ease-in-out infinite;
}
.contact-hero-section .hero-bg-shape-2 {
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #8B5CF6, #A855F7, #C084FC);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  animation: float 15s ease-in-out infinite reverse;
}
.contact-hero-section .hero-content {
  position: relative;
  z-index: 2;
}
.contact-hero-section .hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #E0E7FF, #C7D2FE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.contact-hero-section .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #E0E7FF;
  margin-bottom: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}
@media (max-width: 768px) {
  .contact-hero-section {
    padding: 100px 0 60px;
    min-height: 60vh;
  }
}

.contact-content-section {
  padding: 100px 0;
  background: #0a0a0a;
  position: relative;
}
.contact-content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(168, 85, 247, 0.02) 50%, transparent 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .contact-content-section {
    padding: 80px 0;
  }
}

.contact-text-content {
  padding-right: 2rem;
}
.contact-text-content .contact-description {
  font-size: 1.2rem;
  color: #b0bec5;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.contact-text-content .assistance-list h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4461f2;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-text-content .assistance-list h3::before {
  content: "";
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, #4461f2, #6366f1);
  border-radius: 2px;
}
.contact-text-content .assistance-list ul {
  list-style: none;
  padding-left: 0;
}
.contact-text-content .assistance-list ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #b0bec5;
  line-height: 1.7;
  font-size: 1.1rem;
}
.contact-text-content .assistance-list ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4461f2;
  font-weight: bold;
  font-size: 1.2rem;
}
@media (max-width: 992px) {
  .contact-text-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.contact-form-wrapper:hover::before {
  opacity: 1;
}
@media (min-width: 576px) and (max-width: 767px) {
  .contact-form-wrapper {
    padding: 24px;
  }
}
@media (min-width: 280px) and (max-width: 576px) {
  .contact-form-wrapper {
    padding: 16px;
  }
}

.contact-form {
  position: relative;
  z-index: 2;
}
.contact-form .form-group {
  margin-bottom: 2rem;
}
.contact-form .form-group .form-label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
  font-size: 1rem;
}
.contact-form .form-group .form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.contact-form .form-group .form-control:focus {
  outline: none;
  border-color: #4461f2;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(68, 97, 242, 0.2);
}
.contact-form .form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.contact-submit-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #4461f2, #6366f1) !important;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #6366f1, #4461f2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.contact-submit-btn:hover::before {
  opacity: 1;
}
.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(68, 97, 242, 0.4);
}
.contact-submit-btn:active {
  transform: translateY(-1px);
}
.contact-submit-btn span {
  position: relative;
  z-index: 2;
}

.contact-section {
  background-image: url("your-background-image.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

.contact-content {
  text-align: center;
  padding: 20px;
}
@media (max-width: 576px) {
  .contact-content {
    padding: 6px;
  }
}

.contact-description {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #f0f0f0;
}

/* Contact Button */
.btn-contact {
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #c83895, #3b52d9);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(68, 97, 242, 0.3);
}

.btn-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-secondary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn-contact:hover::before {
  transform: translateX(0);
}

.btn-contact:hover {
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 50px rgba(68, 97, 242, 0.4);
}

.services-section {
  background: #0f152f !important;
}

.banner-video-parent {
  margin-top: 76px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .banner-video-parent {
    margin-top: 60px;
  }
}
.banner-video-parent .services-video-bg {
  position: relative;
}
.banner-video-parent .breadcrumb__title {
  font-size: 42px;
}
@media (max-width: 767px) {
  .banner-video-parent .breadcrumb__title {
    font-size: 30px;
    text-align: center;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .banner-video-parent .breadcrumb__title {
    font-size: 30px;
    text-align: center;
  }
}
@media (min-width: 280px) and (max-width: 576px) {
  .banner-video-parent .breadcrumb__title {
    font-size: 28px;
    text-align: center;
  }
}
.banner-video-parent .video-parent {
  position: relative;
  height: 400px;
}
.banner-video-parent .video-parent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000000d1;
  opacity: 0.8;
  z-index: 1;
}
.banner-video-parent .services-bg-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0 15px;
}
.banner-video-parent .services-bg-content h2 {
  color: #fff;
  font-weight: 700 !important;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .banner-video-parent .services-bg-content h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .banner-video-parent .services-bg-content {
    width: 100%;
    text-align: center;
  }
  .banner-video-parent .services-bg-content h2 {
    text-align: center;
  }
}
.banner-video-parent .services-video-bg .video-parent video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  position: relative;
}
.banner-video-parent .service-video-bg .video-parent .image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  position: relative;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.visual-grid .visual-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
}

.visual-grid .visual-item:hover {
  transform: translateY(-10px);
  border-color: rgba(68, 97, 242, 0.5);
  box-shadow: 0 20px 40px rgba(68, 97, 242, 0.2);
}

.visual-grid .visual-item .visual-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #4461f2, #3b52d9);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.visual-grid .visual-item .visual-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Enhanced CTA Section */
.cta-section {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(68, 97, 242, 0.1) 0%, rgba(255, 121, 188, 0.1) 100%);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.cta-section .cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section .cta-content .cta-badge {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(68, 97, 242, 0.3);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.cta-section .cta-content .cta-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 280px) and (max-width: 576px) {
  .cta-section .cta-content .cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
}

.cta-section .cta-content .cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-section .cta-content .cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.cta-section .cta-content .cta-buttons .btn-primary-cta {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #4461f2, #3b52d9);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-section .cta-content .cta-buttons .btn-primary-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-section .cta-content .cta-buttons .btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(68, 97, 242, 0.4);
}

.cta-section .cta-content .cta-buttons .btn-primary-cta:hover::before {
  left: 100%;
}

.cta-section .cta-content .cta-buttons .btn-secondary-cta {
  padding: 1rem 2.5rem;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-section .cta-content .cta-buttons .btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(68, 97, 242, 0.5);
  transform: translateY(-3px);
}

/* Floating decoration elements */
.cta-section .cta-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cta-section .cta-decorations .decoration {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-section .cta-decorations .decoration:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.cta-section .cta-decorations .decoration:nth-child(2) {
  top: 70%;
  right: 15%;
  width: 60px;
  height: 60px;
  animation-delay: 2s;
}

.cta-section .cta-decorations .decoration:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 40px;
  height: 40px;
  animation-delay: 4s;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  background: -webkit-linear-gradient(#D6006B, #7F00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 2rem !important;
  }
}

.bg-section1 {
  background-color: #0f152f !important;
}

.bg-section2 {
  background: linear-gradient(135deg, var(#111111) 0%, rgba(68, 97, 242, 0.05) 100%) !important;
}

.impact-card:nth-child(odd) .lesson-icon {
  background: linear-gradient(135deg, #ff79bc, #ff4081);
}

.impact-card:nth-child(even) .lesson-icon {
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
}

.impact-card:nth-child(3n) .lesson-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.lesson-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff79bc, #ff4081);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contactList {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.intro-title {
  font-size: 3rem !important;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #4461f2, #ff79bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .intro-title {
    font-size: 2.2rem !important;
  }
}

.responsive-image {
  width: 100%;
  height: 300px;
  background: #141414;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  transition: all 0.3s ease;
  padding: 12px !important;
}

.responsive-image:hover {
  transform: scale(1.02);
  border-color: #4461f2 !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}
@media (max-width: 576px) {
  .pb-120 {
    padding-bottom: 80px !important;
  }
}

.white-space-nowrap {
  white-space: nowrap;
}

.white-space-pre-wrap {
  white-space: pre-wrap;
}

.preloader-logo-img {
  width: 270px;
}
@media (max-width: 767px) {
  .preloader-logo-img {
    width: 200px;
  }
}

.preloader-container {
  /* Preloader */
}
.preloader-container .preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0a0a0a;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader-container .curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #171734, #162c56);
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader-container .curtain-left {
  left: 0;
  transform: translateX(0);
}
.preloader-container .curtain-right {
  right: 0;
  transform: translateX(0);
}
.preloader-container .preloader.opening .curtain-left {
  transform: translateX(-100%);
}
.preloader-container .preloader.opening .curtain-right {
  transform: translateX(100%);
}
.preloader-container .preloader-logo {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.preloader-container .preloader.hide-logo .preloader-logo {
  opacity: 0;
}
.preloader-container .preloader.loaded {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease 1s;
}

.object-fit-cover {
  object-fit: cover !important;
}

.object-position-1 {
  object-position: 52% 14%;
}

.why-us-icon {
  min-width: 20px !important;
  height: 4px !important;
}
.why-us-icon i {
  display: none !important;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  visibility: visible;
  z-index: 1030;
  box-shadow: 0 5px 20px rgba(68, 97, 242, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 30px rgba(68, 97, 242, 0.4);
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

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