:root {
  --max-width: 1100px;
  --border-radius: 12px;
  --font-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono",
    "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro",
    "Fira Mono", "Droid Sans Mono", "Courier New", monospace;

  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;

  --primary-glow: conic-gradient(
    from 180deg at 50% 50%,
    #16abff33 0deg,
    #0885ff33 55deg,
    #54d6ff33 120deg,
    #0071ff33 160deg,
    transparent 360deg
  );
  --secondary-glow: radial-gradient(
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );

  --tile-start-rgb: 239, 245, 249;
  --tile-end-rgb: 228, 232, 233;
  --tile-border: conic-gradient(
    #00000080,
    #00000040,
    #00000030,
    #00000020,
    #00000010,
    #00000010,
    #00000080
  );

  --callout-rgb: 238, 240, 241;
  --callout-border-rgb: 172, 175, 176;
  --card-rgb: 180, 185, 188;
  --card-border-rgb: 131, 134, 135;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@media (prefers-color-scheme: dark) {
  :root {
    --foreground-rgb: 255, 255, 255;
    --background-start-rgb: 0, 0, 0;
    --background-end-rgb: 0, 0, 0;

    --primary-glow: radial-gradient(rgba(1, 65, 255, 0.4), rgba(1, 65, 255, 0));
    --secondary-glow: linear-gradient(
      to bottom right,
      rgba(1, 65, 255, 0),
      rgba(1, 65, 255, 0),
      rgba(1, 65, 255, 0.3)
    );

    --tile-start-rgb: 2, 13, 46;
    --tile-end-rgb: 2, 5, 19;
    --tile-border: conic-gradient(
      #ffffff80,
      #ffffff40,
      #ffffff30,
      #ffffff20,
      #ffffff10,
      #ffffff10,
      #ffffff80
    );

    --callout-rgb: 20, 20, 20;
    --callout-border-rgb: 108, 108, 108;
    --card-rgb: 100, 100, 100;
    --card-border-rgb: 200, 200, 200;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--xp-color-background);
}

body {
  --xp-color-purpule: #7C55EA;
  --swiper-theme-color: #7C55EA;
  --xp-color-purpule-transparent: #7d55ea60;
  --xp-color-white: #FFFFFF;
  --xp-color-white-transparent: #FFFFFF60;
  --xp-color-background: #131825;
  --xp-color-background-transparent: #13182588;
  --xp-color-blured: #FFFFFF26;
  --xp-color-blured-50: #FFFFFF80;
  --xp-color-grey: #D9D9D9;
  --xp-color-grey-transparent: #D9D9D924;
}

body.modal-open {
  overflow-y: hidden;
  height: 0vh;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}

.xp-icon {
  fill: black;
}

.xp-body {
  padding: 0;
  margin: 0;
  background-color: var(--xp-color-background);
}

.xp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(
      to bottom,
      var(--xp-color-background) 0%,
      var(--xp-color-background) 33%,
      transparent 100%
  );
}

.xp-header .container {
  max-width: unset;
}

.xp-logo {
  width: 129px;
}

.xp-navbar {
  height: 80px;
}

.xp-collapse {
  justify-content: center;
}

.xp-collapse .navbar-nav {
  width: 200px;
}

.xp-nav-link {
  color: var(--xp-color-white);
}

.xp-nav-link:hover {
  color: var(--xp-color-purpule);
}

article div {
  width: 100%;
}

.xp-header .container, .xp-content {
  padding-left: 61px;
  padding-right: 61px;
  position: relative;
}

.xp-container {
  position: relative;
}

.xp-container ~ .xp-container, .xp-content ~ .xp-content {
  padding-top: 101px;
}

.xp-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #131825 50%, #131825 50%, transparent 100%) !important;
  mask-image: linear-gradient(to bottom, transparent 0, #131825 50%, #131825 50%, transparent 100%) !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 150%;
}

.xp-dashes {
  margin-top: 30px;
  height: 106px;
  display: flex;
  align-items: center;
}

.xp-dashgroup {
  width: 52px;
  height: 3px;
  background: linear-gradient(
      to right,
      var(--xp-color-purpule) 0%,
      var(--xp-color-purpule) 45.5%,
      transparent 45.5%,
      transparent 62.5%,
      var(--xp-color-white) 62.5%,
      var(--xp-color-white) 77.5%,
      transparent 77.5%,
      transparent 94.5%,
      var(--xp-color-white) 94.5%,
      var(--xp-color-white) 100%
);
}

.xp-title-content {
  min-height: 139px;
  font-weight: 700;
  font-size: 118px;
  line-height: 139.2px;
  color: var(--xp-color-white);
}

.xp-title-sub {
  font-size: 20px;
  color: var(--xp-color-blured-50);
  margin-bottom: 40px;
}

.xp-title span {
  background: linear-gradient(to right, var(--xp-color-purpule), #7443FF66);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.xp-title-dash {
  display: flex;
  align-items: center;
}

.xp-title-dash div {
  margin-left: 10px;
  height: 1px;
  width: 59px;
  background-color: var(--xp-color-white);
}

.xp-title-dash h1 {
  font-size: 40px;
}

.xp-how-we-work-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
  justify-content: space-between;
  padding: 0 61px;
  position: relative;
}

.xp-outer-circle {
  border-radius: 50%;
  width: 82px;
  height: 82px;
  background-color: var(--xp-color-purpule-transparent);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
}

.xp-circle-container {
  width: fit-content;
}

.xp-outer-circle:hover {
  background-color: var(--xp-color-white-transparent);
}

.xp-inner-circle {
  position: relative;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  background-color: var(--xp-color-purpule);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--xp-color-white);
}

.xp-inner-circle p {
  position: absolute;
  width: fit-content;
  text-wrap: nowrap;
  height: 24px;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 100%);
}

.xp-outer-circle:hover .xp-inner-circle {
  background-color: var(--xp-color-white);
}

.xp-inner-circle .xp-icon {
  fill: var(--xp-color-white);
}

.xp-outer-circle:hover .xp-inner-circle .xp-icon {
  fill: var(--xp-color-purpule);
}

.xp-dashed-stroke {
  position: absolute;
  z-index: -1;
  padding: 0 61px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.xp-dashed-stroke-svg {
  width: 80%;
}

.xp-service-box {
  display: flex;
  align-items: center;
  border-bottom: var(--xp-color-white-transparent) 1px solid;
  transition: .2s;
}

.xp-service-box:hover {
  background-color: var(--xp-color-grey-transparent);
  border: none;
  margin: 10px 0;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 60px;
}

.xp-service-name {
  display: flex;
  align-items: center;
}
.xp-service-box-circle {
  width: 40px;
  height: 19px;
  margin-right: 40px;
  fill: var(--xp-color-white-transparent);
}

.xp-service-box:hover .xp-service-box-circle {
  fill: var(--xp-color-purpule);
}

.xp-service-box h2 {
  width: 100%;
  margin: 0;
}

.xp-service-list {
  overflow: hidden;
  display: flex;
  visibility: hidden;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px 0;
}

.xp-service-list > img {
  margin: 5px 10px;
}

.miro-icon {
  border-radius: 10px;
}

.xp-service-box:hover .xp-service-list {
  visibility: visible;
}

.xp-choose-us-container {
  width: 100%;
}

.xp-choose-us-img {
  width: 100%;
}

.xp-our-works-container {
  padding-bottom: 50px;
  overflow: hidden;
}

.our-works-slider {
  height: 450px;
}

.our-works-slider .swiper-slide {
  width: 100% !important;
  max-width: 780px;
  height: 450px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 10px;
  border-radius: 18px;
}

.our-works-slider .swiper-slide:last-of-type {
  margin-right: 0;
}

.our-works-slider .swiper-slide:first-of-type {
  margin-left: 0;
}

.xp-title-dash {
  margin-bottom: 20px;
  opacity: 0;
  position: relative;
  top: -20px;
  -moz-transition-property: opacity, top;
  -moz-transition-duration: 1.5s;
  -moz-transition-timing-function: linear;
  -ms-transition-property: opacity, top;
  -ms-transition-duration: 1.5s;
  -ms-transition-timing-function: linear;
  -o-transition-property: opacity, top;
  -o-transition-duration: 1.5s;
  -o-transition-timing-function: linear;
  -webkit-transition-property: opacity, top;
  -webkit-transition-duration: 1.5s;
  -webkit-transition-timing-function: linear;
  transition-property: opacity, top;
  transition-duration: 1.5s;
  transition-timing-function: linear;
}

.xp-title-dash.visible {
  top: 0;
  opacity: unset;
}

.xp-why-xplode-quote {
  width: 100%;
  border-radius: 18px;
  background-color: var(--xp-color-purpule);
  color: var(--xp-color-white);
  padding: 70px;
}

.xp-quote-svg {
  width: 60px;
  height: 45px;
}

.xp-why-xplode-quote-content {
  padding-left: 70px;
  margin-top: -10px;
}

.xp-why-xplode-quote-text {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 2rem;
}

.xp-why-xplode-quoter {
  font-size: 34px;
}

.xp-why-xplode-quoter-info {
  font-size: 22px;
}

.xp-why-xplode-container:not(:last-child) {
  margin-bottom: 40px;
}

.xp-footer {
  padding: 82px 82px 0;
  margin-top: 82px;
  margin-bottom: 82px;
  height: 423px;
  text-align: center;
  box-sizing: content-box;
  position: relative;
}

.mb-30 {
  margin-bottom: 30px;
}

.xp-footer-title {
  font-size: 72px;
}

.xp-footer-address {
  font-size: 26px;
}

.xp-footer-phone {
  font-size: 29px;
}

.xp-footer-social a {
  display: inline-block;
}

.xp-footer-social img {
  width: 24px;
  height: 24px;
}

.xp-footer-anchor ~ .xp-footer-anchor {
  margin-left: 10px;
}

.xp-footer-email {
  font-size: 18px;
}

.xp-footer-copyright {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
}

.xp-button {
  width: 202px;
  height: 50px;
  border-radius: 8px;
  outline: 0;
  cursor: pointer;
  font-size: 16px;
}

.xp-button-primary {
  border: none;
  background-color: var(--xp-color-purpule);
  color: #FFFFFF;
}

.xp-button-secondary {
  border: 1px solid var(--xp-color-purpule);
  color: var(--xp-color-purpule);
  background-color: transparent;
}

.mr-20 {
  margin-right: 20px;
}

.pt-100 {
  padding-top: 100px;
}

.why-choose-us {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.why-choose-us > div {
  max-width: 50%;
  flex: 0 0 50%;
  padding: 0 1rem;
}

.why-choose-us-text,
.why-choose-us-img {
  overflow: hidden;
}

.why-choose-us-text > div {
  opacity: 0;
  position: relative;
  left: 50%;
}

.why-choose-us-img {
  text-align: center;
}

.why-choose-us img {
  object-fit: cover;
  border-radius: 50%;
  left: -50%;
  position: relative;
  opacity: 0;
}

.why-choose-us-text > div,
.why-choose-us img {
  -moz-transition-property: opacity, left;
  -moz-transition-duration: 1.5s;
  -moz-transition-timing-function: linear;
  -ms-transition-property: opacity, left;
  -ms-transition-duration: 1.5s;
  -ms-transition-timing-function: linear;
  -o-transition-property: opacity, left;
  -o-transition-duration: 1.5s;
  -o-transition-timing-function: linear;
  -webkit-transition-property: opacity, left;
  -webkit-transition-duration: 1.5s;
  -webkit-transition-timing-function: linear;
  transition-property: opacity, left;
  transition-duration: 1.5s;
  transition-timing-function: linear;
}

.why-choose-us.visible img {
  opacity: 1 !important;
  left: 0 !important;
}

.why-choose-us.visible .why-choose-us-text {
  overflow: unset !important;
}

.why-choose-us.visible .why-choose-us-text > div {
  opacity: 1 !important;
  left: 0 !important;
}

.why-choose-us.right div > img {
  left: 50%;
}

.why-choose-us.right div.why-choose-us-text > div {
  left: -50%;
}

.why-choose-us h3 {
  text-transform: uppercase;
  margin: 20px 0 30px;
}

.why-choos-us-number {
  background-color: var(--xp-color-purpule);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 43px;
  width: 43px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  animation: pulse 4s 2.5s infinite;
  -webkit-animation: pulse 4s 2.5s infinite;
}

.why-choose-us-border-left {
  border-left: 1px dashed #bdb1a3;
}

.why-choose-us-border-right {
  border-right: 1px dashed #bdb1a3;
}

.why-choose-us-content {
  margin-bottom: 2rem;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.mobile-nav-bar {
  list-style-type: none;
  font-size: 16px;
  margin-left: 12px;
}

@media (min-width: 992px) {
  .xp-collapse {
      margin-top: 0;
      width: 100%;
  }

  .xp-how-we-work-content {
      padding-bottom: 41px;
  }

  .xp-collapse .navbar-nav {
      width: auto;
  }

  .xp-service-img {
      margin: 5px 15px;
      width: 57px;
      height: 57px;
  }
}

@media (max-width: 992px) {
  .xp-dashed-stroke .xp-dashed-sroke-horizontal {
      display: none;
  }

  .xp-how-we-work-container {
      grid-template-columns: repeat(3, 1fr);
  }

  .xp-outer-circle {
      margin-bottom: 61px;
  }
}

@media (max-width: 786px) {
  .xp-header .container, .xp-content {
      padding-left: 20px;
      padding-right: 20px;
  }

  .xp-dashes {
      margin-top: 0px;
      height: 40px;
  }

  .xp-title-content {
      min-height: 40px;
      font-size: 40px;
      line-height: 47.19px;
  }

  .xp-outer-circle {
      width: 70px;
      height: 70px;
  }

  .xp-service-box {
      flex-direction: column;
      padding: 10.5px 0;
  }
  
  .xp-service-box:hover {
      background-color: transparent;
      margin: 0;
      padding: 10.5px 0;
      border-bottom: var(--xp-color-white-transparent) 1px solid;
      border-radius: unset;
  }

  .xp-service-name {
      padding: 0;
  }

  .xp-service-images {
      padding: 0 15px;
  }

  .xp-service-list {
      height: auto;
  }

  .xp-service-box > div.xp-service-list {
    visibility: visible;
  }

  .xp-service-box-circle {
      fill: var(--xp-color-purpule);
  }

  .xp-why-xplode-quote {
      padding: 10px;
  }

  .xp-quote-svg {
    scale: .5;
  }

  .xp-why-xplode-quote-content {
    padding-left: 30px;
    margin-top: 10px;
  }

  .xp-why-xplode-quote-text {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .xp-why-xplode-quoter {
    font-size: 18px;
    margin-bottom: .5rem;
  }
  
  .xp-why-xplode-quoter-info {
    font-size: 14px;
    margin-bottom: .5rem;
  }

  .xp-footer-title {
    font-size: 32px;
  }
  
  .xp-footer-address,
  .xp-footer-email {
    font-size: 16px;
  }
  
  .xp-footer-phone {
    font-size: 20px;
  }

  .why-choose-us-border-img {
    display: none;
  }

  .why-choose-us-border-left,
  .why-choose-us-border-right {
    border: none;
  }

  .why-choose-us {
    padding-top: 40px;
  }

  .why-choose-us.why-choose-us-border-left {
    flex-direction: column-reverse;
  }

  .why-choose-us > div {
    max-width: none;
    flex: none;
  }

  .why-choose-us div > img,
  .why-choose-us div.why-choose-us-text > div {
    opacity: 1 !important;
    left: none !important;
    position: unset !important;
  }

  .why-choose-us.visible .why-choose-us-text {
    overflow: unset !important;
  }
}

.languages-selector {
  position: relative;
  background-color: #131825;
  width: max-content;
}

.languages-selector:not(.open) {
  display: none;
}

@media (max-width: 496px) {
  .xp-how-we-work-container {
      grid-template-columns: repeat(2, 1fr);
      padding: inherit;
  }
}

@media screen and (max-width: 480px) {
  div.header-navbar-drawer li {
    margin: 20px 0;
  }

  div.header-navbar-drawer {
    width: 100vw;
    height: 100vh;
  }

  .xp-service-box-circle {
    display: none;
    visibility: hidden;
  }

  div.our-works-slider div.swiper-slide {
    height: 190px;
  }

  div.our-works-slider {
    height: 200px;
    width: calc(100% - 6px);
  }
}

@media screen and (max-width: 463px) {
  .xp-button-secondary {
    margin-top: 20px;
  }
}

@media (max-width: 372px) {
  .xp-dashed-stroke-svg {
      height: 86%;
      margin-top: 12%;
  }

  .xp-how-we-work-container {
      grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 373px) {
  .xp-dashed-stroke .xp-dashed-sroke-vertical {
    display: none;
  }
}

@keyframes fadeOut {
  from {
      opacity: 1;
  }
  to {
      opacity: 0;
      display: none;
  }
}

@keyframes fadeOut {
  from {
      opacity: 0;
      display: none;
  }
  to {
      opacity: 1;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 85, 234, .4);
  }

  50% {
    box-shadow: 0 0 0 22px rgba(124, 85, 234, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(124, 85, 234, 0);
  }
}