html, body{
  overflow-x: hidden;
}

/* Preloader */

#preloader{
    position: fixed;
    z-index: 9999999;
    display: grid;
    place-content: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f7ff;
    overflow: hidden;
}

#preloader .sw-grid {
  display: grid;
  grid-template-columns: repeat(4, 14px);
  grid-template-rows: repeat(4, 14px);
  gap: 4px;
}
 
#preloader .sq {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: #e8005a;
  opacity: 0.08;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
 
#preloader .sq.on {
  opacity: 1;
  transform: scale(1);
}

/* Header */

header:not(#mdp-readabler-popup-header){
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.sv-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: rgba(255, 255, 255, 1);
  background-color: #FEFEFE;
  border-radius: 50px;
  margin: 0 auto;
  margin-top: 20px;
  border: 3px solid var(--vtc-bg-main5);
}

.sv-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8005a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.sv-toggle:hover,
.sv-toggle:focus-visible {
  background: #4741aa;
  outline: none;
}

.sv-toggle i {
  color: #fff;
  font-size: 18px;
}

.sv-overlay-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.95);
  z-index: 9999998;
  backdrop-filter: blur(4px);
}

.sv-overlay-bg.sv-open {
  display: block;
}

.sv-overlay {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  width: 90dvw;
  max-width: 1440px;
  height: 90dvh;
  max-height: 760px;
  border-radius: 18px;
  z-index: 9999999;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

@media screen and (min-width: 1600px){
  .sv-overlay {
    height: 65dvh;
  }
}

.sv-overlay.sv-open {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.sv-overlay-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: svBgShift 6s ease-in-out infinite alternate;
}

@keyframes svBgShift {
  0%   { background: #e8005a; }
  100% { background: #4741aa; }
}

.sv-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 36px 16px;
  flex-shrink: 0;
}

.sv-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.sv-close:hover,
.sv-close:focus-visible {
  background: rgba(255, 255, 255, 0.25);
  outline: none;
}

.sv-close i {
  color: #fff;
  font-size: 18px;
}

.sv-overlay-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 8px 36px 36px;
  min-height: 0;
}

.sv-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 48px;
}

.sv-nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.sv-nav-links a.active-item{
  color: #FFFFFF;
  padding-left: 12px;
}

.sv-nav-links a:hover {
  color: #fff;
  padding-left: 12px;
}

.sv-overlay-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.sv-services {
  padding: 16px 0;
}

.sv-services-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.sv-services a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.sv-services a.active-item{
  color: #FFFFFF;
  padding-left: 12px;
}

.sv-services a:hover {
  color: #fff;
  padding-left: 12px;
}

.sv-overlay-bottom {
  padding-bottom: 8px;
}

.sv-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.sv-contact-item i {
  width: 32px;
  height: 32px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  border: 1px solid #FFFFFF25;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.sv-langs {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.sv-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 7px 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}

.sv-lang:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
@media (max-width: 991px) {
  .sv-nav-wrap {
    padding: 12px 14px;
  }

  .sv-overlay-header {
    padding: 20px 20px 12px;
  }

  .sv-overlay-body {
    display: flex;
    flex-direction: column;
    padding: 8px 20px 28px;
  }

  .sv-nav-links {
    padding-right: 0;
    justify-content: flex-start;
  }

  .sv-nav-links a,
  .sv-services a {
    font-size: 16px;
    padding: 10px 0;
  }

  .sv-overlay-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 0;
    padding-top: 24px;
  }

  .sv-services-label {
    margin-top: 4px;
  }

  .sv-overlay-bottom{
    margin-top: 24px;
  }
}

.langs-and-toggle{
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-lang-switcher {
  position: relative;
}

.sv-lang-switcher button{
  outline: none;
  box-shadow: none;
}

.sv-lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  color: #131313;
}

.sv-lang-current img {
  border-radius: 2px;
}

.sv-lang-current .fa-chevron-down {
  font-size: 10px;
  color: #131313;
  transition: transform 0.25s;
}

.sv-lang-switcher.open .fa-chevron-down {
  transform: rotate(180deg);
}

.sv-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #13131313;
  border-radius: 8px;
  padding: 6px;
  list-style: none;
  margin: 0;
  min-width: 60px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
}

.sv-lang-switcher.open .sv-lang-dropdown {
  display: flex;
  min-width: 120px;
}

.sv-lang-dropdown li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 5px;
  transition: background 0.15s;
}

.sv-lang-dropdown li span{
  display: inline-block;
  color: #131313;
  margin-left: 8px;
  font-size: 12px;
}

.sv-lang-dropdown li a:hover {
  background: #f4f4f6;
}

.sv-lang-dropdown li a img {
  border-radius: 2px;
  display: block;
}

@media screen and (max-width: 360px){
  header a.sv-logo{
    max-width: 135px;
  }
}

@media screen and (max-width: 320px){
  header a.sv-logo{
    max-width: 110px;
  }

  .sv-nav{
    padding: 12px;
  }
}

/* General */

.white-logo{
  filter: brightness(0) invert(1);
}

.nowrap{
  white-space: nowrap;
}

p{
  text-transform: none !important;
}

.text-pink{
  color: var(--vtc-bg-main5) !important;
}

.bg-light{
  background-color: #f8f7ff !important;
}

.bg-lighter{
  background-color: #f8f7ff70 !important;
}

.bg-pink{
  background-color: var(--vtc-bg-main5) !important;
}

.text-purple{
  color: #4741aa !important;
}

.bg-purple{
  background-color: #4741aa !important;
}

.shape1.animate1{
  filter: hue-rotate(140deg) brightness(0.9) contrast(1.5);
}

h3{
  font-weight: 500 !important;
}

.cta4-form-area h2,
.cta3 h2{
  font-weight: 500;
}

.cta3 p{
  font-weight: 400;
}

.bg-pink a,
.cta4 a,
.cta3 a{
  border: 2px solid #FFFFFF !important;
}

.theme-btn5.theme-btn5-purple{
  background-color: #302b90;
}

.theme-btn5.theme-btn5-hover-up:hover{
  transform: translateY(-8px);
}

.theme-btn5.theme-btn5-hover-up::after{
  display: none;
}

@media screen and (max-width: 535px){
  .about3-images{
    height: 400px;
  }

  .about3-images img{
    max-width: 275px;
  }

  .about3-images .shape1{
    left: 40px;
  }
}

@media screen and (max-width: 320px){
  .about3-images{
    height: 300px;
  }

  .about3-images img{
    max-width: 220px;
  }

  .about3-images .shape1{
    left: 20px;
  }
}

.image-anime{
  position: relative;
}

.image-anime img{
  transition: 400ms;
}

.image-anime:hover img{
  transform: scale(1.1) rotate(2deg) !important;
}

/* Footer */

footer:not(#mdp-readabler-popup-footer){
  background-color: #f8f7ff;
}

.footer-title{
  display: inline-block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 16px;
}

footer .vl-footer-text p,
footer .copyright-text p{
  font-size: 16px !important;
}

footer .contact-item{
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

footer .contact-item .icon{
  width: 32px;
  min-width: 32px;
  height: 32px;
  text-align: center;
  background-color: var(--vtc-bg-main5);
  border-radius: 50%;
  padding: 8px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .contact-item .icon i{
  font-size: 16px;
  color: #FFFFFF;
}

footer .contact-item span,
footer .contact-item a{
  color: var(--vtc-text-pera1);
  transition: 300ms;
}

footer .contact-item a:hover{
  color: var(--vtc-bg-main5);
}

/* Page Title */

.page-title{
  background-size: 200px;
  background-repeat: repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='105' viewBox='0 0 80 105'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='death-star' fill='%234741aa' fill-opacity='0.05'%3E%3Cpath d='M20 10a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V10zm15 35a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zM20 75a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V75zm30-65a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V10zm0 65a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V75zM35 10a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10zM5 45a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zm0-35a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10zm60 35a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zm0-35a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-title h1{
  font-weight: 500 !important;
}

/* Accessibility */

#mdp-readabler-popup #mdp-readabler-popup-main{
  max-height: 45dvh;
}

@media screen and (max-height: 620px){
  #mdp-readabler-popup #mdp-readabler-popup-main{
    max-height: 20dvh !important;
  }

  #mdp-readabler-popup{
    max-height: 95dvh !important;
  }
}

@media screen and (min-height: 621px) and (max-height: 880px){
  #mdp-readabler-popup #mdp-readabler-popup-main{
    max-height: 35dvh !important;
  }

  #mdp-readabler-popup{
    max-height: 90dvh !important;
  }
}