@charset "UTF-8";/* Route announcer */
	.astro-route-announcer {
		position: absolute;
		left: 0;
		top: 0;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		overflow: hidden;
		white-space: nowrap;
		width: 1px;
		height: 1px;
	}
/* stylelint-disable property-no-unknown */
:root {
  --black: #000;
  --primary-font: helvetica, arial, sans-serif;
  --secondary-font: verdana;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}

*::before,
*::after {
  display: block;
}

img,
picture,
video,
iframe,
figure {
  display: block;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

a {
  display: block;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
  text-decoration: none;
}

p a,
label a {
  display: inline;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

form,
input,
textarea,
select,
button,
label {
  display: block;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
}

table,
tr,
td {
  border-spacing: 0;
  border-collapse: collapse;
}

svg {
  display: block;
  width: 100%;
  fill: currentcolor;
}

hr {
  overflow: visible;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

textarea {
  resize: vertical;
}

[hidden] {
  display: none !important;
}

main {
  display: block;
  /* overflow-x: hidden; */
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 50%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.8em;
}

img {
  border-style: none;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: var(--primary-font);
  font-size: 100%;
  font-smooth: always;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input {
  overflow: visible;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
          appearance: button;
}

/* stylelint-disable scss/no-global-function-names */
/* We declare colors in a map as key: value
with the color name as the key and the hex
as the value

And we are goint to use it in _utils.scss */
/* Project Colors */
/* Project Gradients */
/* Project Fonts */
/* Boilerplate Colors */
@font-face {
  font-family: "Poppins";
  font-weight: normal;
  src: url("/assets/fonts/Poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  src: url("/assets/fonts/Poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  src: url("/assets/fonts/Poppins/Poppins-Medium.ttf");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  src: url("/assets/fonts/Poppins/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: "Poppins";
  font-weight: 700;
  src: url("/assets/fonts/Poppins/Poppins-Bold.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: normal;
  src: url("/assets/fonts/Montserrat/static/Montserrat-Regular.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  src: url("/assets/fonts/Montserrat/static/Montserrat-Regular.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  src: url("/assets/fonts/Montserrat/static/Montserrat-Medium.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  src: url("/assets/fonts/Montserrat/static/Montserrat-SemiBold.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  src: url("/assets/fonts/Montserrat/static/Montserrat-Bold.ttf");
}
*,
*::before,
*::after {
  font-family: "Poppins", sans-serif;
}

/*
  This mixin will build the prefix values for the property and value passed in.
  It will also add the property and value without the prefix.
  Example:
    @include build-prefix-values('transition', 'all 1s linear');
*/
/* 
  Example usage:
    .my-class {
      // Default usage
      @include transition();
      // Custom usage
      @include transition('all', 1s, linear);
    }
*/
:root {
  --wrapper-padding: 10px;
  --wrapper-max-width: 100%;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-inline: var(--wrapper-padding);
}
@media screen and (min-width: 768px) {
  .wrapper {
    --wrapper-padding: 35px;
  }
}
@media screen and (min-width: 1300px) {
  .wrapper {
    --wrapper-max-width: 1240px;
    --wrapper-padding: calc((100% - var(--wrapper-max-width)) / 2);
  }
}

html.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #FFF;
}

h1 {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  font-size: 55px;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 90px;
  }
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

p {
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #FFF;
}

label a,
p a {
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
  text-decoration: none;
}

small {
  font-size: 12px;
  line-height: 14px;
}

ul li {
  list-style-type: none;
}

ul li::marker {
  display: none;
}

main ul li {
  list-style-type: disc;
}
main ul li::marker {
  color: #000;
}

sup.symbol-sup {
  top: initial;
  font-size: inherit;
  line-height: 0;
}

swiper-container {
  /* Change the default color of the all swiper elements */
  --swiper-theme-color: #000;
  z-index: 0;
  /* Width and height of slider */
  width: 100%;
  height: auto;
}

.myswiper-custum-text {
  padding: 3rem;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}

/* Using @each we create a CSS class for
color and background using the name in the class
and the value as the property value that we need

Ex: .color--white { color: #FFFFFFF; } and
.bg-color--white { background-color: #FFFFFF; } */
.color--dark {
  color: #111827;
}

.bg-color--dark {
  background-color: #111827;
}

.color--primary {
  color: #166BA7;
}

.bg-color--primary {
  background-color: #166BA7;
}

.color--white {
  color: #FFF;
}

.bg-color--white {
  background-color: #FFF;
}

.color--lavender-gray {
  color: #C5C6C9;
}

.bg-color--lavender-gray {
  background-color: #C5C6C9;
}

.color--black {
  color: #000;
}

.bg-color--black {
  background-color: #000;
}

.color--lust {
  color: #EB1F1F;
}

.bg-color--lust {
  background-color: #EB1F1F;
}

.color--rich-black {
  color: #090E19;
}

.bg-color--rich-black {
  background-color: #090E19;
}

.color--purple-navy {
  color: #46467F;
}

.bg-color--purple-navy {
  background-color: #46467F;
}

.color--dark-liver {
  color: #4D4D4D;
}

.bg-color--dark-liver {
  background-color: #4D4D4D;
}

.color--french-raspberry {
  color: #D02F44;
}

.bg-color--french-raspberry {
  background-color: #D02F44;
}

.color--dark-blue-gray {
  color: #666CA3;
}

.bg-color--dark-blue-gray {
  background-color: #666CA3;
}

.color--dark-blue {
  color: #13183F;
}

.bg-color--dark-blue {
  background-color: #13183F;
}

.color--waterloo {
  color: #83869A;
}

.bg-color--waterloo {
  background-color: #83869A;
}

.color--violet-red {
  color: #F74780;
}

.bg-color--violet-red {
  background-color: #F74780;
}

.color--pink {
  color: #FFA7C3;
}

.bg-color--pink {
  background-color: #FFA7C3;
}

.color--red {
  color: #F00;
}

.bg-color--red {
  background-color: #F00;
}

.font--poppins {
  font-family: "Poppins", sans-serif;
}

.font--montserrat {
  font-family: "Montserrat", sans-serif;
}

.animate-fade-in-out {
  --animation-duration: 5s;
  animation: fade-in-out var(--animation-duration, 5s) linear infinite;
}

@keyframes fade-in-out {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
:root {
  --button-text-color: #166BA7;
  --button-background-color: #FFF;
  --button-border-color: #FFF;
  --button-hover-text-color: #FFF;
  --button-hover-background-color: #166BA7;
  --button-hover-border-color: #166BA7;
  --button-border-radius: 5px;
  --button-icon-image: url("/assets/images/icons/ph-arrow-right.svg");
  --button-hover-icon-image: url("/assets/images/icons/ph-arrow-right-white.svg");
}

.button {
  transition: all, 0.3s, ease-in-out 1s ease-in-out;
  gap: 10px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 9px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
  color: var(--button-text-color);
  text-decoration: none;
  background-color: var(--button-background-color);
  border: 1px solid var(--button-border-color);
  border-radius: var(--button-border-radius);
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .button > * {
    margin: calc(10px / 2);
  }
}
.button:hover {
  color: var(--button-hover-text-color);
  background-color: var(--button-hover-background-color);
  border-color: var(--button-hover-border-color);
}
.button:focus, .button:focus-within {
  background-color: var(--button-hover-background-color);
  border-color: var(--button-hover-border-color);
}
.button.disabled, .button:disabled {
  --button-hover-text-color: var(--button-text-color);
  --button-hover-background-color: var(--button-background-color);
  --button-hover-border-color: var(--button-border-color);
  cursor: not-allowed;
  opacity: 0.3;
}
.button__text {
  z-index: 1;
}
.button--secondary {
  --button-background-color: transparent;
  --button-text-color: #FFF;
  --button-border-color: #FFF;
  --button-hover-text-color: #000;
  --button-hover-background-color: transparent;
  --button-hover-border-color: #FFF;
  --button-border-radius: 45px;
  position: relative;
  padding: 24px 65px;
  font-size: 20px;
  font-weight: 400;
  transition: color 0.5s ease-in-out;
}
.button--secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background-color: white;
  border-radius: var(--button-border-radius);
  transition: width 0.5s ease-in-out;
}
.button--secondary:hover::before {
  width: 100%;
}
.button--tertiary {
  --button-background-color: transparent;
  --button-text-color: #FFF;
  --button-border-color: transparent;
  --button-hover-text-color: #FFF;
  --button-hover-background-color: transparent;
  --button-hover-border-color: #FFF;
  --button-border-radius: 45px;
  padding: 14px 19px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.175px;
}
.button--quaternary {
  --button-background-color: transparent;
  --button-text-color: #111827;
  --button-border-color: #111827;
  --button-hover-text-color: #FFF;
  --button-hover-background-color: #111827;
  --button-hover-border-color: transparent;
  --button-border-radius: 4px;
  padding: 14px 19px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.175px;
}
.button--has-icon::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: var(--button-icon-image);
}
.button--has-icon:hover::after {
  background-image: var(--button-hover-icon-image);
}
.button--icon-left {
  flex-direction: row-reverse;
}
.button .button-icon {
  width: 16px;
  height: 16px;
}

.black-backgound-header {
  background-color: #111827 !important;
}

.site__header {
  /* Styles for Header Main Container */
  position: absolute;
  z-index: 3;
  top: 0;
  width: 100%;
  background-color: transparent;
}
.site__header .header__inner {
  /* Styles for Header Content Container */
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .site__header .header__inner {
    position: relative;
    display: grid;
    grid-template-columns: 139px 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
    justify-content: space-between;
    width: -moz-fit-content;
    width: fit-content;
    max-width: calc(100% - 51px);
    margin: auto;
    padding-block: 18.33px;
    padding-inline: 0;
    background-color: transparent;
  }
}
@media screen and (min-width: 1080px) {
  .site__header .header__inner {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1102px) {
  .site__header .header__inner {
    width: 1082.46px;
    max-width: unset;
  }
}
@media screen and (min-width: 1300px) {
  .site__header .header__inner {
    width: 1102.46px;
  }
}
@media screen and (min-width: 1375px) {
  .site__header .header__inner {
    gap: 177.38px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.site__header .header__top {
  /* Styles for Header Top Mobile Content & Logo Container */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  padding-inline: 16px;
  background-color: transparent;
}
.site__header .header__top::after {
  /* content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 10px;

  background-color: purple;

  @media screen and (min-width: 1024px) {
    display: none;
  } */
}
@media screen and (min-width: 1024px) {
  .site__header .header__top {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    padding: 0;
    background-color: transparent !important;
  }
}
.site__header .header__button {
  /* Styles for Header Buttons */
  width: 40px;
  height: 40px;
  color: black;
  background-color: transparent;
}
.site__header .header__toggle {
  position: relative;
  /* Styles for Header Mobile Toggle */
  width: 32px;
  height: 20px;
  margin-block: auto;
  padding: 0;
  line-height: 1;
  border: 0;
  border-bottom: 4px solid white;
  border-radius: 2px;
  transition: transform 0.3s linear;
}
.site__header .header__toggle::before, .site__header .header__toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 4px;
  background-color: white;
  border-radius: 50px;
  transition: transform 0.3s linear;
}
.site__header .header__toggle::after {
  top: 8px;
}
.site__header .header__toggle--opened {
  transform: rotate(0deg);
  height: 30px;
  border-bottom-width: 0;
}
.site__header .header__toggle--opened::before {
  top: 10px;
  transform: rotate(45deg);
}
.site__header .header__toggle--opened::after {
  top: 10px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  .site__header .header__toggle {
    display: none;
  }
}
.site__header .header__logo .logo__link {
  /* Styles for link HTML Tag with Logo */
}
.site__header .header__logo .logo__image {
  /* Styles for Logo Image */
  max-height: 85px;
}
.site__header .header__logo .logo__image-container {
  /* Styles for Logo Image Container */
}
@media screen and (min-width: 1024px) {
  .site__header .header__logo .logo__image {
    max-width: 200px;
    max-height: 100px;
  }
}
.site__header .header__icon {
  /* Styles for Icons in Header */
  position: relative;
  display: inline-block;
}
.site__header .header__icon::after, .site__header .header__icon::before {
  position: absolute;
  background-color: white;
  transition: all 0.3s linear;
}
.site__header .header__icon.icon__toggler {
  /* Styles for icon with this class */
  border-bottom-width: 0;
}
.site__header .header__icon.icon__toggler::before {
  top: 8px;
  transform: rotate(45deg);
}
.site__header .header__icon.icon__toggler::after {
  transform: rotate(-45deg);
}
.site__header .header__icon.icon__arrow {
  width: 20px;
  height: 11px;
}
.site__header .header__icon.icon__arrow::before, .site__header .header__icon.icon__arrow::after {
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  border-radius: 5px;
}
.site__header .header__icon.icon__arrow--down::before {
  top: 0;
  left: 6px;
  transform: rotate(140deg);
}
.site__header .header__icon.icon__arrow--down::after {
  top: 0;
  left: 12px;
  transform: rotate(-140deg);
}
.site__header .header__icon.icon__arrow--up::before {
  top: 0;
  left: 6px;
  transform: rotate(45deg);
}
.site__header .header__icon.icon__arrow--up::after {
  top: 0;
  left: 12px;
  transform: rotate(-45deg);
}

:root {
  --height-submenu-animation: 200px;
}

.site__navigation {
  /* Styles for Main Nav Container */
  position: absolute;
  left: 0;
  overflow: hidden;
  width: 100vw;
  padding: 0;
  background-color: #111827;
}
.site__navigation--hidden {
  height: 0;
}
.site__navigation--hiding {
  animation: hide-navigation 0.35s;
}
.site__navigation--show {
  scrollbar-width: none;
  overflow-y: scroll;
  box-sizing: border-box;
  height: -moz-fit-content;
  height: fit-content;
  animation: show-navigation 0.35s;
  -ms-overflow-style: none;
}
.site__navigation--show::-webkit-scrollbar {
  display: none;
}
@media screen and (max-height: 700px) and (max-width: 1023px) {
  .site__navigation--show {
    overflow-y: scroll;
  }
}
@media screen and (min-width: 1024px) {
  .site__navigation {
    position: relative;
    left: unset;
    overflow: unset;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    background-color: transparent;
  }
}

.site__header .header__logo .logo__image {
  width: 142.58px;
}
@media screen and (min-width: 1024px) {
  .site__header .header__logo .logo__image {
    width: 139px;
  }
}

.main__navigation {
  /* Styles for List in Main Nav */
}

.open-languages {
  height: 63.33px !important;
  margin-top: 3.35px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.dropdown__toggle svg {
  transition: transform 0.2s ease-in-out;
}

.svg-transform {
  transform: rotate(180deg);
}

.nav__menu {
  /* Styles for List in Main Nav */
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}
.nav__menu > :nth-child(4) {
  margin-top: -15px;
}
@media screen and (min-width: 1024px) {
  .nav__menu > :nth-child(4) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1375px) {
  .nav__menu > :nth-child(4) {
    margin-left: 8px;
  }
}
.nav__menu__item {
  /* Styles for List Item in Main Nav */
  gap: 10px;
  display: flex;
  row-gap: 0;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .nav__menu__item > * {
    margin: calc(10px / 2);
  }
}
.nav__menu__item:first-child {
  border-top: none;
}
.nav__menu__item .menu-item__link {
  /* Styles for Links in Main List */
  width: 100%;
  padding: 15px 0;
  padding-left: 10px;
  color: white;
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .nav__menu__item .menu-item__link {
    padding-left: 0;
  }
}
.nav__menu__item .header__button {
  /* Styles for buttons */
}
.nav__menu__item .header__button .header__icon {
  /* Styles for icons */
}
.nav__menu__item.has__subnav {
  /* Styles for Lists with Sub Menu */
  flex-wrap: wrap;
}
.nav__menu__item.has__subnav .menu-item__link {
  width: -moz-fit-content;
  width: fit-content;
  /* width: calc(100% - 45px); */
  padding-right: 18px;
  padding-block: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}
.nav__menu__item.has__subnav .menu-item__link.services {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav__menu__item.has__subnav .menu-item__link.services::before {
  content: "";
  position: static;
  width: 14.13px;
  height: 14.1px;
  background-image: url("/assets/images/header/gears.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1024px) {
  .nav__menu__item.has__subnav .menu-item__link.services::before {
    min-width: 21.39px;
    max-width: 21.39px;
    height: 21.35px;
  }
}
.nav__menu__item.has__subnav .menu-item__link.services:first-child {
  width: -moz-fit-content;
  width: fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.nav__menu__item.has__subnav .menu-item__link.portfolio {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav__menu__item.has__subnav .menu-item__link.portfolio::before {
  content: "";
  width: 16px;
  height: 12px;
  background-image: url("/assets/images/header/folder.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 1024px) {
  .nav__menu__item.has__subnav .menu-item__link.portfolio::before {
    min-width: 20.81px;
    max-width: 20.81px;
    height: 16px;
  }
}
.nav__menu__item.has__subnav .menu-item__link.technologies {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav__menu__item.has__subnav .menu-item__link.technologies::before {
  content: "";
  width: 14.73px;
  height: 12.15px;
  background-image: url("/assets/images/header/atom.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1024px) {
  .nav__menu__item.has__subnav .menu-item__link.technologies::before {
    min-width: 30.88px;
    max-width: 30.88px;
    height: 24.65px;
  }
}
@media screen and (min-width: 1024px) {
  .nav__menu__item.has__subnav .menu-item__link {
    padding: 0;
    font-size: 25px;
    line-height: normal;
  }
}
.nav__menu__item.has__subnav .header__button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
.nav__menu__item.desktop-item {
  display: none;
}
@media screen and (min-width: 1024px) {
  .nav__menu__item.desktop-item {
    display: block;
  }
}
.nav__menu__item.get-quote {
  width: -moz-fit-content;
  width: fit-content;
}
.nav__menu__item.get-quote a {
  cursor: pointer;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 9px !important;
  padding-inline: 5px;
  font-size: 19px;
  color: #166ba7;
  background-color: white !important;
  border-radius: 5px;
  transition: background-color 300ms ease;
}
.nav__menu__item.get-quote a:hover {
  color: white;
  background-color: #166ba7 !important;
}
@media screen and (min-width: 1024px) {
  .nav__menu__item.get-quote a {
    width: -moz-fit-content !important;
    width: fit-content !important;
    font-size: 25px;
  }
}
@media screen and (min-width: 366px) {
  .nav__menu__item.get-quote a {
    padding-inline: 33.88px;
  }
}
@media screen and (min-width: 1024px) {
  .nav__menu__item.get-quote a {
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    padding-inline: 5px;
  }
}
@media screen and (min-width: 1300px) {
  .nav__menu__item.get-quote a {
    padding-inline: 21px;
  }
}
.nav__menu__item .header__toggle-submenu {
  /* Styles for Sub Menu Toggler */
}
@media screen and (min-width: 1024px) {
  .nav__menu__item {
    gap: 0;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    height: 100px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    border: none;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .nav__menu__item > * {
      margin: calc(0 / 2);
    }
  }
}
@media screen and (min-width: 1102px) {
  .nav__menu {
    gap: 47px;
    justify-content: unset !important;
  }
}
@media screen and (min-width: 1024px) {
  .nav__menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.button-list {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  padding-inline: 32.24px;
}
.button-list .language-toggle {
  width: -moz-fit-content;
  width: fit-content;
}
.button-list .language-toggle .dropdown {
  height: 100%;
}
.button-list .language-toggle .dropdown__toggle {
  gap: 11px;
  width: 64.3px;
  height: 46.44px;
  padding: 0;
  background-color: transparent;
  border: 0;
}
.button-list .language-toggle .dropdown__toggle img {
  min-width: 34px;
  height: 25px;
  margin: 0;
}
@media screen and (min-width: 1375px) {
  .button-list .language-toggle .dropdown__toggle {
    gap: 30px;
    width: 83.5px;
  }
}
.button-list .language-toggle .dropdown__menu {
  position: unset;
  overflow: hidden;
  min-width: -moz-max-content;
  min-width: max-content;
  height: 0;
  margin: 0;
  margin-top: 0;
  visibility: hidden;
  opacity: 0;
  transition: height 0.5s ease, opacity 0.5s ease;
}
.button-list .language-toggle .dropdown__menu li {
  width: -moz-fit-content;
  width: fit-content;
}
.button-list .language-toggle .dropdown__menu li a {
  display: flex;
  gap: 7px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 7.53px 8px 6px;
}
.button-list .language-toggle .dropdown__menu li a img {
  width: 17px;
  height: 12.32px;
  margin: 0;
}
.button-list .language-toggle .dropdown__menu li a p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .button-list .language-toggle .dropdown__menu {
    position: absolute;
    right: -5px;
    left: unset;
  }
}
@media screen and (min-width: 1200px) {
  .button-list .language-toggle .dropdown__menu {
    right: 0;
  }
}
@media screen and (min-width: 430px) {
  .button-list {
    gap: 86px;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .button-list {
    gap: 10px;
    align-items: baseline;
    align-items: center;
    justify-content: unset;
    width: -moz-fit-content;
    width: fit-content;
    margin-block: auto;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1102px) {
  .button-list {
    gap: 56px;
  }
}

.nav__subnav {
  /* Styles for List of Sub Menu */
  overflow: hidden;
  width: 100%;
  height: 0;
  color: white;
  background-color: black;
}
.nav__subnav--show {
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid transparent;
  animation: show-submenu 0.35s;
}
.nav__subnav--hiding {
  border: 1px solid rgba(0, 0, 0, 0);
  animation: hide-submenu 0.35s;
}
@media screen and (min-width: 1024px) {
  .nav__subnav--horizontal {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .nav__subnav--vertical {
    display: flex;
    flex-direction: column;
  }
}
.nav__subnav .subnav__item {
  /* Styles for List Item of Sub Menu */
  list-style: none;
}
.nav__subnav .subnav__item:first-child {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .nav__subnav .subnav__item:first-child {
    margin-top: 0;
  }
}
.nav__subnav .subnav__item:last-child {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .nav__subnav .subnav__item:last-child {
    margin-bottom: 0;
  }
  .nav__subnav .subnav__item:last-child .subnav-item__link {
    margin-right: 0;
  }
}
.nav__subnav .subnav__item .subnav-item__link {
  /* Styles for Links in Sub Menu */
  padding: 10px;
  padding-left: 20px;
}
@media screen and (min-width: 1024px) {
  .nav__subnav .subnav__item .subnav-item__link {
    width: 100%;
    margin-right: 10px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .nav__subnav {
    position: absolute;
    z-index: 1;
    top: 70%;
    right: 0;
    width: -moz-max-content;
    width: max-content;
    border-radius: 6px;
  }
  .nav__subnav--show {
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 10px;
    border-top: 1px solid black;
  }
  .nav__subnav--show .subnav__item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav__subnav--hiding {
    padding: 0 10px;
  }
  .nav__subnav--hiding .subnav__item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@keyframes show-submenu {
  0% {
    height: 0;
  }
  100% {
    height: var(--height-submenu-animation);
  }
}
@keyframes hide-submenu {
  0% {
    height: var(--height-submenu-animation);
  }
  100% {
    height: 0;
  }
}
@keyframes show-navigation {
  0% {
    height: 0;
  }
  100% {
    height: 229.22px;
  }
}
@keyframes hide-navigation {
  0% {
    height: 229.22px;
  }
  100% {
    height: 0;
  }
}
:root {
  --hero-bg: rgb(213 213 213);
  --hero-wrapper-margin: 2rem;
  --hero-max-width-content-wrapper: calc(100% - var(--hero-wrapper-margin));
  --hero-min-height: 400;
  --hero-max-height: 750;
  --hero-min-screen-size: 320;
  --hero-max-screen-size: 1440;
}
@media screen and (min-width: 1024px) {
  :root {
    --hero-wrapper-margin: 3rem;
  }
}

.hero {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: var(--hero-bg);
}
.hero__full-height {
  height: 100vh;
}
.hero .hero__wrapper {
  display: flex;
  flex-direction: column;
}
.hero .hero__wrapper .hero__content-container {
  order: 2;
}
.hero .hero__wrapper .hero__content-container .hero__content-wrapper {
  width: 100%;
  max-width: var(--hero-max-width-content-wrapper);
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}
.hero .hero__wrapper .hero__image-container {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .hero .hero__wrapper {
    flex-direction: row;
  }
  .hero .hero__wrapper .hero__content-container {
    order: initial;
  }
  .hero .hero__wrapper .hero__content-container .hero__content-wrapper {
    max-width: calc(var(--hero-max-width-content-wrapper) + (100% - var(--hero-max-width-content-wrapper)) / 2);
    margin-right: 0;
  }
}
.hero .hero__actions {
  display: flex;
  flex-direction: column;
}
.hero .hero__actions > *:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .hero .hero__actions {
    flex-direction: row;
  }
  .hero .hero__actions > *:not(:last-of-type) {
    margin-right: 0.5rem;
    margin-bottom: 0;
  }
}
.hero__absolute-layout {
  position: relative;
}
.hero__absolute-layout .hero__wrapper {
  justify-content: center;
  height: calc(var(--hero-min-height) * 1px + (var(--hero-max-height) - var(--hero-min-height)) * (100vw - var(--hero-min-screen-size) * 1px) / (var(--hero-max-screen-size) - var(--hero-min-screen-size)));
  max-height: calc(var(--hero-max-height) * 1px);
}
.hero__absolute-layout .hero__wrapper .hero__content-container {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .hero__absolute-layout .hero__wrapper .hero__content-container .hero__content-wrapper {
    max-width: var(--hero-max-width-content-wrapper);
    margin-right: auto;
  }
}
@media screen and (min-width: 1024px) {
  .hero__absolute-layout .hero__wrapper {
    align-items: center;
    justify-content: flex-start;
  }
}
.hero__absolute-layout .hero__image-container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__absolute-layout .hero__image-container picture {
  overflow: hidden;
  height: 100%;
}
.hero__absolute-layout .hero__image-container picture img {
  width: auto;
  max-width: initial;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.cookie__consent {
  position: fixed;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  padding-block: 30px;
  padding-inline: 10px;
  font-size: 14px;
  color: #FFF;
  background: #111827;
  border-top: 1px solid transparent;
}
.cookie__consent .wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 540px) {
  .cookie__consent .wrapper {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .cookie__consent .wrapper {
    gap: 40px;
  }
}
.cookie__consent p,
.cookie__consent a {
  font-size: inherit;
  color: inherit;
}
.cookie__consent a {
  color: #F74780;
  text-decoration: underline;
}
.cookie__consent.--visible {
  display: flex;
  border-top-color: #283149;
}
.cookie__consent [data-dismiss-cookie] {
  cursor: pointer;
  flex: 0 0 auto;
  font-size: inherit;
  color: inherit;
  background-color: #F74780;
  border-color: #F74780;
}
.cookie__consent [data-dismiss-cookie]:hover {
  color: #F74780;
  background-color: #FFF;
  border-color: #FFF;
}

.footer {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 60px 0 40px;
  background: #090E19;
  /* Modificar el grid en .wrapper */
}
.footer__branding {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.footer__image {
  width: 166px;
  height: 85px;
}
@media screen and (min-width: 768px) {
  .footer__image {
    width: 154px;
    height: 79px;
  }
}
.footer__branding_text {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #FFF;
}
@media screen and (min-width: 425px) {
  .footer__branding_text {
    width: 390px;
  }
}
@media screen and (min-width: 768px) {
  .footer__branding_text {
    width: 420px;
  }
}
.footer__links {
  display: flex;
  flex-direction: column;
  margin-top: 54px;
  margin-bottom: 18px;
  padding-bottom: 40px;
}
.footer__copyright {
  padding-top: 20px;
  border-top: 1px solid #FFF;
}
.footer__copyright_text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
}
.footer .wrapper {
  --wrapper-padding: 20px;
}
@media screen and (min-width: 768px) {
  .footer .wrapper {
    --wrapper-padding: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    align-items: start;
    /* footer__branding y footer__links en paralelo */
    /* footer__copyright abajo de ambos */
  }
  .footer .wrapper .footer__branding {
    grid-column: 1/2;
    padding-bottom: 20px;
  }
  .footer .wrapper .footer__links {
    grid-column: 2/3;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  .footer .wrapper .footer__copyright {
    grid-column: 1/3;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .footer .wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 39px 100px;
  }
}
@media screen and (min-width: 1300px) {
  .footer .wrapper {
    --wrapper-padding: calc((100% - var(--wrapper-max-width)) / 2);
  }
}
@media screen and (min-width: 1440px) {
  .footer .wrapper {
    grid-template-columns: 420px 1fr;
  }
}

.footer__links_navigation {
  display: flex;
  flex-direction: column;
  gap: 54px;
}
@media screen and (min-width: 768px) {
  .footer__links_navigation {
    flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__links_navigation {
    gap: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .footer__links_navigation {
    gap: 100px;
  }
}
.footer__links_column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1440px) {
  .footer__links_column {
    width: 310px;
  }
}
.footer__links_column_title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #FFF;
}
.footer__nav_menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__nav_menu_item_link {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #FFF;
}

.input-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  margin-bottom: 25px;
}
.input-container .asterisk {
  margin-left: 6px;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #eb1f1f;
}
.input-container .form__error {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  color: #eb1f1f;
}
.input-container .input-label {
  pointer-events: none;
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: #111827;
  transition: all 0.3s ease;
}
.input-container .input-label.focused {
  top: -4px;
  color: #333;
}
.input-container .input-label.error-input {
  color: #eb1f1f;
}
@media screen and (min-width: 350px) {
  .input-container .input-label {
    font-size: 20px;
  }
}
.input-container .input-wrapper {
  position: relative;
  width: 100%;
}
.input-container .input-wrapper .input-field {
  width: 100%;
  padding: 31px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: rgba(17, 24, 39, 0.76);
  background: transparent;
  border: none;
  border-bottom: 2px solid #111827;
  outline: none;
  transition: border-color 0.3s ease;
}
.input-container .input-wrapper .input-field:focus {
  border-bottom: 4px solid #111827;
}
.input-container .input-wrapper .input-field.error-input {
  border-bottom-color: #eb1f1f;
}
.input-container .input-wrapper.currency-input .input-field {
  padding-right: 60px;
  padding-left: 25px;
}
.input-container .input-wrapper.currency-input .currency-symbol {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 31px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: rgba(17, 24, 39, 0.5);
}
.input-container .input-wrapper.currency-input .currency-unit {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 31px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: rgba(17, 24, 39, 0.5);
}
.input-container .input-wrapper.currency-input .currency-unit .currency-divider {
  width: 1px;
  height: 20px;
  margin-right: 11px;
  background-color: rgba(17, 24, 39, 0.5);
}
.input-container .input-wrapper.phone-input .input-field {
  padding: 33px 130px 0;
}
.input-container .input-wrapper.phone-input .phone-country-selector {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  width: 60px;
  padding: 31px 0 0;
}
.input-container .input-wrapper.phone-input .phone-country-selector select {
  padding-right: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: rgba(17, 24, 39, 0.5);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  background-image: url("/assets/images/icons/select-icon.svg");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 14px 14px;
  border: none;
}
.input-container .input-wrapper.phone-input .phone-area-code {
  position: absolute;
  top: 50%;
  left: 55px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 31px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: rgba(17, 24, 39, 0.5);
}
.input-container .input-wrapper.phone-input .phone-area-code .phone-divider {
  width: 1px;
  height: 20px;
  margin-right: 11px;
  background-color: rgba(17, 24, 39, 0.5);
}
.input-container .input-container.focused .input-field {
  padding-bottom: 0;
}

#rfs-btn {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
  border: none;
  outline: none;
}

.phone-country-selector {
  position: relative;
  z-index: 9999;
}

.ReactFlagsSelect__options {
  z-index: 9999 !important;
}

span.ReactFlagsSelect-module_label__27pw9 {
  display: none;
}

.form-quotes {
  display: flex;
  flex-direction: column;
}
.form-quotes__description-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-quotes__description-container .form-quotes__description {
  width: 95%;
}
.form-quotes__title {
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
.form-quotes__description {
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
.form-quotes__name {
  margin-top: 60px;
  margin-bottom: 11px;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
}
.form-quotes__buttons {
  display: flex;
  justify-content: end;
  margin-top: 75px;
}
.form-quotes__buttons .button--quaternary span {
  font-family: "Montserrat", sans-serif;
}
.form-quotes__message {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #4d4d4d;
  text-align: left;
}
.form-quotes__message span {
  margin-right: 8px;
  color: #eb1f1f;
}

.form-quotes__wrapper {
  margin: 0 auto;
  padding: 40px 20px;
}
@media (min-width: 1024px) {
  .form-quotes__wrapper {
    max-width: 86.112%;
  }
}

.stepper {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px 13px;
}
.stepper__circle-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  margin: 0;
  background-color: #fff;
  border: 2px solid #111827;
  border-radius: 50%;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.stepper__circle-step .stepper__count {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #111827;
  text-align: center;
}
.stepper__circle-step.completed {
  background-color: #111827;
}
.stepper__circle-step.completed .stepper__count {
  color: #fff;
}
.stepper__separator {
  width: 15px;
  height: 3px;
  background-color: #111827;
  border-radius: 50px;
}

.your-project h2 {
  margin-top: 60px;
  margin-bottom: 14px;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
}
.your-project p {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
}
.your-project p span {
  color: #eb1f1f;
}
.your-project__technology {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 38px;
}
@media (min-width: 1024px) {
  .your-project__technology {
    flex-flow: row wrap;
    row-gap: 20px;
    -moz-column-gap: 40px;
         column-gap: 40px;
    max-width: 1240px;
  }
}
.your-project__overview label {
  display: none;
}
.your-project__buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
}
.your-project__buttons .button--has-icon.button--icon-left::after {
  rotate: 180deg;
}
.your-project__buttons button span {
  font-family: "Montserrat", sans-serif;
}
.your-project .error-message {
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #eb1f1f;
}

p.your-project__labels {
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #4d4d4d;
}

@media (max-width: 543px) {
  .text-label .input-label {
    top: -14px;
  }
  .text-label .input-label.focused {
    top: -25px;
  }
}

.form-budget h2 {
  margin-top: 60px;
  margin-bottom: 14px;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
}
.form-budget p {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
}
.form-budget p span {
  color: #eb1f1f;
}
.form-budget__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 38px;
}
@media (min-width: 1024px) {
  .form-budget__items {
    gap: 20px;
  }
}
.form-budget .error-message {
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #eb1f1f;
}
.form-budget__buttons {
  display: flex;
  justify-content: space-between;
}
.form-budget__buttons .button--icon-left::after {
  rotate: 180deg;
}
.form-budget__buttons .button--quaternary span {
  font-family: "Montserrat", sans-serif;
}
.form-budget p.form-budget__message {
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #4d4d4d;
}
.form-budget p.form-budget__message span {
  color: #eb1f1f;
}
@media (min-width: 1024px) {
  .form-budget .team-group {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .form-budget .price-group label {
    width: 423px;
  }
}

.technology-checkbox {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #111827;
  background-color: white;
  border: 1px solid #111827;
}
.technology-checkbox.checked {
  color: white;
  background-color: #111827;
}

.technology-radio-button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #111827;
  background-color: white;
  border: 1px solid #111827;
}
.technology-radio-button input[type=radio] {
  position: absolute;
  opacity: 0;
}
.technology-radio-button .radio-custom {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 2px solid #111827;
  border-radius: 50%;
}
.technology-radio-button .radio-custom::after {
  content: "";
  position: absolute;
  top: 19%;
  left: 19%;
  width: 8px;
  height: 8px;
  opacity: 0;
  background-color: #111827;
  border-radius: 50%;
  transition: opacity 0.2s;
}
.technology-radio-button.selected {
  color: white;
  background-color: #111827;
}
.technology-radio-button.selected .radio-custom {
  border-color: white;
}
.technology-radio-button.selected .radio-custom::after {
  opacity: 1;
  background-color: white;
}

.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 188px;
  margin-bottom: 142px;
}
.success-message img {
  width: 84px;
  height: 84px;
}
.success-message h2 {
  margin-bottom: 14px;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #3c7400;
  text-align: center;
}
.success-message p {
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
@media (min-width: 1024px) {
  .success-message {
    margin-top: 212px;
    margin-bottom: 157px;
  }
  .success-message img {
    width: 102px;
    height: 102px;
  }
  .success-message p {
    font-size: 28px;
  }
}

.case-studies {
  position: relative;
  padding-block-end: 50px;
  background: url("/assets/images/case-studies/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.case-studies::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-color: #111827;
}
.case-studies .wrapper {
  --wrapper-padding: 20px;
  z-index: 1;
}
@media screen and (min-width: 1400px) {
  .case-studies .wrapper {
    --wrapper-max-width: 1320px;
    --wrapper-padding: calc((100% - var(--wrapper-max-width)) / 2);
  }
}
.case-studies__title {
  max-width: 10ch;
  padding-block: 50px 40px;
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .case-studies__title {
    font-size: 65px;
  }
}
.case-studies__slide {
  margin-block-start: 35px;
}
.case-studies__slide-heading {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-block-end: 79px;
}
.case-studies__slide-title {
  text-transform: uppercase;
}
.case-studies__slide-number {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #166BA7;
  border-radius: 100px;
}
.case-studies__slide-image {
  max-width: 314px;
  margin-block-end: 94px;
  margin-inline: auto;
}
@media screen and (min-width: 450px) {
  .case-studies__slide-image {
    max-width: 503px;
  }
}
@media screen and (min-width: 1200px) {
  .case-studies__slide-image {
    margin-block-end: 35px;
  }
}
.case-studies__slide-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: left;
  text-transform: uppercase;
}
.case-studies__slide-button {
  width: 100%;
  margin-block-start: 100px;
  padding: 11px 0;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .case-studies__slide-button {
    max-width: 224px;
  }
}
.case-studies__slide-challenge h4 {
  margin-block-end: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-transform: uppercase;
}
.case-studies__slide-challenge h4 span {
  display: block;
  font-size: 20px;
}
.case-studies__slide-challenge p {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #FFF;
}
@media screen and (max-width: 430px) {
  .case-studies__slide-challenge p {
    max-width: 386px;
  }
}
.case-studies__slide-services, .case-studies__slide-client {
  margin-block-end: 42px;
}
.case-studies__slide-services ul, .case-studies__slide-client ul {
  margin-block-start: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #FFF;
}
.case-studies__slide-services ul li, .case-studies__slide-client ul li {
  list-style: none;
}
.case-studies__slide-client ul {
  text-transform: uppercase;
}
.case-studies__slide-navigation {
  display: flex;
  justify-content: space-between;
  margin-block-start: 65px;
}
.case-studies__slide-navigation button {
  position: relative;
  display: flex;
  gap: 10px;
  transition-delay: 0.4s;
}
.case-studies__slide-navigation button.swiper-button-disabled, .case-studies__slide-navigation button:disabled, .case-studies__slide-navigation button.disabled {
  opacity: 0;
}
.case-studies__slide-navigation--prev {
  flex-direction: row-reverse;
}
.case-studies__slide-navigation--prev::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("/assets/images/icons/ph-arrow-left-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.case-studies__slide-navigation--prev.inner-navigation {
  position: absolute;
  bottom: 3px;
  left: 0;
}
.case-studies__slide-navigation--prev.inner-navigation.swiper-button-disabled {
  display: none;
}
.case-studies__slide-navigation--next::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("/assets/images/icons/ph-arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.case-studies__slide-navigation--next.inner-navigation {
  position: absolute;
  right: 0;
  bottom: 3px;
}
.case-studies__slide-navigation--next.inner-navigation.swiper-button-disabled {
  display: none;
}
.case-studies__slide .inner-navigation {
  display: none;
}
@media screen and (min-width: 1400px) {
  .case-studies__slide .inner-navigation {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .case-studies__slide-wrapper {
    display: grid;
    grid-template: "slide-heading slide-heading slide-heading" 101px "slide-image slide-service slide-challenge" 1.5fr "slide-image slide-client slide-site" 176px/1fr 1fr 1fr;
    gap: 0 0;
  }
  .case-studies__slide-heading {
    grid-area: slide-heading;
    margin-bottom: 61px;
  }
  .case-studies__slide-image {
    grid-area: slide-image;
    grid-row: span 2;
    margin-block-end: 23px;
    margin-inline: 0;
  }
  .case-studies__slide-challenge {
    grid-area: slide-challenge;
    max-width: 464px;
    margin: 0;
    margin-inline-start: auto;
  }
  .case-studies__slide-services {
    grid-area: slide-service;
    margin: 0;
  }
  .case-studies__slide-client {
    grid-area: slide-client;
    margin-block-start: auto;
    margin-block-end: 0;
  }
  .case-studies__slide-button {
    grid-area: slide-site;
    margin-block-start: auto;
  }
}
@media screen and (min-width: 1400px) {
  .case-studies__slide-wrapper {
    position: relative;
    display: grid;
    grid-template: "slide-heading slide-heading slide-heading" 101px "slide-image slide-service slide-challenge" 1.5fr "slide-image slide-client slide-site" 176px/538px 260px 516px;
    gap: 0 0;
  }
  .case-studies__slide__slider {
    position: relative;
  }
  .case-studies__slide-image {
    position: absolute;
    top: 210px;
  }
  .case-studies__slide-button {
    margin-inline-start: 52px;
  }
  .case-studies__slide-navigation {
    position: absolute;
    z-index: -1;
    bottom: 0;
    display: none;
    width: 100%;
    max-width: 1320px;
    margin: 0;
    margin-inline: auto;
    transition: all 0.2s ease-in-out;
  }
}

.home-hero {
  position: relative;
  width: 100%;
  height: 937px;
  padding-top: 270px;
  background-image: linear-gradient(to right, rgba(17, 24, 39, 0.5) 0%, rgba(17, 24, 39, 0.5) 100%), url("/assets/images/home-hero/HeroMobileImg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.home-hero__heading {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .home-hero__heading {
    font-size: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .home-hero__heading {
    font-size: 60px;
  }
}
.home-hero__sub-heading {
  width: 100%;
  max-width: 16ch;
  margin: 0;
  margin-top: 12px;
  margin-inline: auto;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home-hero__sub-heading {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero__sub-heading {
    max-width: 100%;
    margin-top: 0;
    font-size: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .home-hero__sub-heading {
    font-size: 60px;
  }
}
.home-hero__desc {
  width: 100%;
  max-width: 24ch;
  height: 100%;
  min-height: 197px;
  margin: 0;
  margin-top: 59px;
  margin-inline: auto;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home-hero__desc {
    max-width: 50ch;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero__desc {
    max-width: 50ch;
    min-height: 100%;
    margin-top: 50px;
    font-size: 25px;
    font-weight: 700;
  }
}
.home-hero__btn {
  --button-border-radius: 0;
  margin: 0;
  margin-top: -15px;
  margin-inline: auto;
  padding: 0;
  padding-block: 10px;
  padding-inline: 25px;
  font-weight: 500;
}
.home-hero__btn::before {
  --button-border-radius: 0;
}
@media screen and (min-width: 375px) {
  .home-hero__btn {
    margin-top: 23px;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero__btn {
    margin-top: 73.13px;
    font-size: 25px;
  }
}
@media screen and (min-width: 375px) {
  .home-hero {
    height: 887px;
  }
}
@media screen and (min-width: 768px) {
  .home-hero {
    background-image: linear-gradient(to right, rgba(17, 24, 39, 0.5) 0%, rgba(17, 24, 39, 0.5) 100%), url("/assets/images/home-hero/HeroDesktopImg.png");
  }
}
@media screen and (min-width: 1024px) {
  .home-hero {
    padding-top: 380px;
  }
}

.home-hero-esp .home-hero__heading {
  width: 100%;
  max-width: 18ch;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .home-hero-esp .home-hero__heading {
    max-width: 100%;
  }
}
.home-hero-esp .home-hero__btn {
  margin-top: 10px;
  padding-inline: 10px;
}
@media screen and (min-width: 375px) {
  .home-hero-esp .home-hero__btn {
    margin-top: 23px;
    padding-inline: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero-esp .home-hero__btn {
    margin-top: 73.13px;
    font-size: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero-esp .home-hero__desc {
    max-width: 62ch;
  }
}

:root {
  --header-height: 0px;
}

.services__heading {
  position: relative;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  font-weight: 600;
  font-style: normal;
  line-height: 56px; /* 101.818% */
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
}
.services__heading--shadow {
  pointer-events: none;
  display: none;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
  color: #C5C6C9;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.45;
  animation: scroll 100s forwards linear infinite;
}
@media screen and (min-width: 1024px) {
  .services__heading--shadow {
    translate: 0 20px;
    display: flex;
    font-size: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .services__heading--shadow {
    translate: 0 5px;
    display: flex;
    font-size: 70px !important;
  }
}
@media screen and (max-width: 390px) {
  .services__heading {
    font-size: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .services__heading {
    font-size: 90px;
    white-space: nowrap;
  }
}
.services__description {
  max-width: 1023px;
  margin-block: 45px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .services__description {
    margin-block: 66px;
    margin-block: 94px 92px;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
  }
}
.services__cta {
  margin-inline: auto;
  padding: 14px 43px;
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .services__cta {
    padding: 24px 88px;
    font-size: 20px;
  }
}

.services-section {
  --service-bg-image: "";
  position: sticky;
  top: 0;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100dvw;
  height: calc(100dvh - var(--header-height));
  background-image: var(--service-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.services-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-color: #111827;
}
.services-section .scroller {
  margin-block-end: -30px;
}
.services-section .circle {
  width: 40px;
  height: 40px;
  background-color: #C5C6C9;
  border-radius: 50%;
}
.services-section .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .services-section .wrapper {
    margin-block-start: 128px;
  }
}
.services-section#web-development {
  --service-bg-image: url("/assets/images/services/web-dev-bg.png");
}
.services-section#ux-ui-design {
  --service-bg-image: url("/assets/images/services/ui-bg.png");
}
.services-section#cms-development {
  --service-bg-image: url("/assets/images/services/cms-bg.png");
}
.services-section#mobile-development {
  --service-bg-image: url("/assets/images/services/mobile-bg.png");
}
.services-section#enterprise-development {
  --service-bg-image: url("/assets/images/services/enterprise-bg.png");
}
.services-section#enterprise-development .services__description {
  max-width: 1172px;
}
.services-section#ecommerce-development {
  --service-bg-image: url("/assets/images/services/eccomerce-bg.png");
}
@media screen and (prefers-reduced-motion: reduce) {
  .services-section {
    position: relative;
  }
}

.services__intro--section {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100dvw;
  height: 100dvh;
  background: radial-gradient(132.38% 115.73% at 48.92% 51.24%, #111827 0%, #000 100%);
}
.services__intro--section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/services/intro-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
}
@media screen and (min-width: 1024px) {
  .services__intro--section::before {
    background-image: url("/assets/images/services/intro-bg-large.svg");
    background-position: center;
    background-size: contain;
  }
}
.services__intro--section .wrapper {
  z-index: 1;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 400px) and (max-height: 700px) {
  .services__intro--section .wrapper {
    gap: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .services__intro--section .wrapper {
    --wrapper-max-width: 100%;
    --wrapper-padding: 65px;
  }
}
.services__intro--section-title {
  margin-block-end: 42px;
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
}
@media only screen and (max-width: 400px) and (max-height: 700px) {
  .services__intro--section-title {
    margin-block-end: 0;
  }
}
@media screen and (max-width: 440px) {
  .services__intro--section-title {
    max-width: 11ch;
  }
}
@media screen and (min-width: 1024px) {
  .services__intro--section-title {
    margin-block-end: 0;
    font-size: 70px;
  }
}
.services__intro--section-arrow {
  position: relative;
  width: 59px;
  height: 100px;
  background-image: url("/assets/images/services/long-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: move-up-down 1.5s ease-in-out infinite;
}
@media screen and (prefers-reduced-motion: reduce) {
  .services__intro--section-arrow {
    animation: none;
  }
}
.services__intro--section-desc {
  margin-block-end: 99px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
}
@media only screen and (max-width: 400px) and (max-height: 700px) {
  .services__intro--section-desc {
    margin-block-end: 25px;
  }
}
@media screen and (max-width: 440px) {
  .services__intro--section-desc {
    max-width: 324.362px;
  }
}
@media screen and (min-width: 1024px) {
  .services__intro--section-desc {
    margin-block-end: 80px;
    font-size: 25px;
  }
}
@media screen and (prefers-reduced-motion: reduce) {
  .services__intro--section {
    position: relative;
  }
}

@keyframes move-up-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  padding: 0 10px;
}
.contact-card__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  align-self: stretch;
  padding: 30px 0;
  background: rgba(221, 225, 255, 0.29);
  border: 1px solid #000;
}
@media screen and (min-width: 1024px) {
  .contact-card__card {
    width: 317px;
  }
}
@media screen and (min-width: 1300px) {
  .contact-card__card {
    width: 414px;
  }
}
.contact-card__imagen {
  width: 50px;
  height: 51px;
}
.contact-card__title {
  margin-top: 10px;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
.contact-card__country {
  margin-top: 8px;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
.contact-card__country--other {
  margin-top: 4px;
}
.contact-card__country--different {
  margin-top: 18px;
}
.contact-card__number {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #111827;
  text-align: center;
}
.contact-card__links {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 30px;
  margin-top: 8px;
  margin-bottom: 3px;
}
.contact-card__links-image {
  width: 30px;
  height: 30px;
}
.contact-card__links-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
.contact-card__networks {
  margin-top: 8px;
  padding-top: 20px;
}
.contact-card__social {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 30px;
  margin-top: 11px;
}
.contact-card__social-image {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.contact-card__location {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contact-card {
    padding: 0;
  }
}

.contact-card__card.no-borders {
  border-top: none;
  border-bottom: none;
}
@media screen and (min-width: 1024px) {
  .contact-card__card.no-borders {
    border-top: 1px solid #000;
    border-right: none;
    border-bottom: 1px solid #000;
    border-left: none;
  }
}

.contact-section {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 40px 0;
}
.contact-section__heading {
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
.contact-section__content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .contact-section__content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.contact-section.wrapper {
  --wrapper-padding: 10px;
  padding-inline: var(--wrapper-padding);
}
@media screen and (min-width: 768px) {
  .contact-section.wrapper {
    --wrapper-padding: 25px;
  }
}
@media screen and (min-width: 1300px) {
  .contact-section.wrapper {
    --wrapper-padding: calc((100% - var(--wrapper-max-width)) / 2);
  }
}

.technologies-section {
  position: relative;
  width: 100%;
  padding-top: 74px;
  padding-bottom: 54px;
  background-color: #111827;
}
.technologies-section::before {
  position: absolute;
}
@media screen and (min-width: 1024px) {
  .technologies-section::before {
    content: "";
    bottom: 13px;
    left: 40px;
    display: block;
    width: 30px;
    height: 63px;
    background-image: url("/assets/images/scroller/start.png");
    background-repeat: no-repeat;
    background-size: contain;
    animation: fade-in-out var(--animation-duration, 5s) linear infinite;
  }
}
@media screen and (min-width: 1200px) {
  .technologies-section::before {
    bottom: 13px;
    left: calc((100vw - 1160px) / 2);
  }
}
@media screen and (min-width: 1300px) {
  .technologies-section::before {
    left: calc((100vw - 1200px) / 2);
  }
}
.technologies-section::after {
  position: absolute;
}
@media screen and (min-width: 1024px) {
  .technologies-section::after {
    content: "";
    right: 23px;
    bottom: 0;
    display: block;
    width: 42px;
    height: 89px;
    background-image: url("/assets/images/scroller/start.png");
    background-repeat: no-repeat;
    background-size: contain;
    animation: fade-in-out var(--animation-duration, 5s) linear infinite;
  }
}
@media screen and (min-width: 1200px) {
  .technologies-section::after {
    right: calc((100vw - 1160px) / 2);
    bottom: 0;
  }
}
@media screen and (min-width: 1300px) {
  .technologies-section::after {
    right: calc((100vw - 1200px) / 2);
  }
}
.technologies-section .wrapper {
  --wrapper-padding: 16px;
}
@media screen and (min-width: 768px) {
  .technologies-section .wrapper {
    --wrapper-padding: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .technologies-section .wrapper {
    --wrapper-max-width: 1160px;
    --wrapper-padding: calc((100% - var(--wrapper-max-width)) / 2);
  }
}
.technologies-section__heading {
  position: relative;
  width: 100%;
  max-width: 388px;
  margin-inline: auto;
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: normal;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
}
.technologies-section__heading::after {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  display: block;
  width: 19px;
  height: 40px;
  background-image: url("/assets/images/scroller/start.png");
  background-repeat: no-repeat;
  background-size: contain;
  animation: fade-in-out var(--animation-duration, 5s) linear infinite;
}
@media screen and (min-width: 768px) {
  .technologies-section__heading::after {
    top: 18px;
    left: -70px;
  }
}
@media screen and (min-width: 1024px) {
  .technologies-section__heading::after {
    top: 0;
    left: -80px;
    width: 42px;
    height: 89px;
  }
}
@media screen and (min-width: 1200px) {
  .technologies-section__heading::after {
    top: 18px;
    left: -117px;
    width: 42px;
    height: 89px;
  }
}
.technologies-section__heading::before {
  content: "";
  position: absolute;
  top: -57px;
  right: -7px;
  display: block;
  width: 36px;
  height: 76px;
  background-image: url("/assets/images/scroller/start.png");
  background-repeat: no-repeat;
  background-size: contain;
  animation: fade-in-out var(--animation-duration, 5s) linear infinite;
}
@media screen and (min-width: 375px) {
  .technologies-section__heading::before {
    top: -57px;
    right: -7px;
  }
}
@media screen and (min-width: 768px) {
  .technologies-section__heading::before {
    top: -40px;
    right: -100px;
  }
}
@media screen and (min-width: 1024px) {
  .technologies-section__heading::before {
    top: -35px;
    right: -90px;
    width: 42px;
    height: 89px;
  }
}
@media screen and (min-width: 1200px) {
  .technologies-section__heading::before {
    top: -40px;
    right: -130px;
    width: 42px;
    height: 89px;
  }
}
@media screen and (min-width: 500px) {
  .technologies-section__heading {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media screen and (min-width: 1024px) {
  .technologies-section__heading {
    font-size: 65px;
  }
}
.technologies-section__desc {
  position: relative;
  margin-top: 65px;
  margin-bottom: 39px;
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .technologies-section__desc {
    width: 100%;
    max-width: 936px;
    margin-top: 20px;
    margin-bottom: 117px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .technologies-section .scroller {
    width: 100%;
    margin-right: 19px;
  }
}
.technologies-section .scroller img {
  width: 100%;
}
.technologies-section .scroller-ing {
  gap: 0;
  width: 100%;
  padding-block: 0;
}
.technologies-section .scroller-ing .scroller__item__img {
  flex-basis: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}
.technologies-section .scroller-wrapper {
  display: flex;
  flex-flow: row wrap;
  gap: 77px;
  align-items: center;
  justify-content: space-around;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .technologies-section .scroller-wrapper {
    flex-wrap: nowrap;
    justify-content: space-around;
    width: 100%;
  }
}
.technologies-section .scroller[data-animated=true] .scroller__inner {
  height: 86px;
}
.technologies-section .scroller[data-animated=true] .scroller-wrapper {
  flex-wrap: nowrap;
  gap: 77px;
  justify-content: flex-start;
  height: 86px;
  padding-left: 77px;
}
.technologies-section__scroller-container {
  width: 100%;
  margin-bottom: 64px;
}
@media screen and (min-width: 1024px) {
  .technologies-section__scroller-container {
    width: 100%;
    max-width: 1060px;
    margin-bottom: 59px;
  }
}
@media screen and (min-width: 1200px) {
  .technologies-section__scroller-container {
    margin-inline: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .technologies-section__scroller-container {
    margin-inline: auto;
  }
  .technologies-section__scroller-container .scroller {
    margin-inline: 0;
  }
  .technologies-section__scroller-container .scroller__inner {
    justify-content: center;
  }
  .technologies-section__scroller-container .scroller-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) and (prefers-reduced-motion: reduce) {
  .technologies-section__scroller-container {
    margin-inline: auto;
  }
  .technologies-section__scroller-container .scroller-wrapper {
    -moz-column-gap: 90px;
         column-gap: 90px;
  }
}
@media screen and (min-width: 1024px) {
  .technologies-section__scroller-container-bottom {
    width: 100%;
    max-width: 1060px;
  }
  .technologies-section__scroller-container-bottom .scroller {
    margin-right: 0;
    margin-left: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .technologies-section__scroller-container-bottom {
    margin-inline: auto;
  }
  .technologies-section__scroller-container-bottom .scroller {
    margin-inline: 0;
  }
  .technologies-section__scroller-container-bottom .scroller__inner {
    justify-content: center;
  }
  .technologies-section__scroller-container-bottom .scroller-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .technologies-section__scroller-container-bottom {
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) and (prefers-reduced-motion: reduce) {
  .technologies-section__scroller-container-bottom {
    max-width: 1040px;
    margin-inline: auto;
  }
  .technologies-section__scroller-container-bottom .scroller-wrapper {
    -moz-column-gap: 90px;
         column-gap: 90px;
  }
}
@keyframes scroll {
  to {
    transform: translate(calc(-50% - 77px));
  }
}
@media screen and (min-width: 1024px) {
  .technologies-section {
    padding-top: 88px;
    padding-bottom: 124px;
  }
}

.technologies-esp .technologies-section__heading {
  max-width: 15ch;
}
@media screen and (min-width: 700px) {
  .technologies-esp .technologies-section__heading {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media screen and (min-width: 1200px) {
  .technologies-esp .technologies-section__heading {
    max-width: 1082px;
  }
}
.technologies-esp .technologies-section__heading::after {
  top: -22px;
  left: 0;
}
@media screen and (min-width: 1200px) {
  .technologies-esp .technologies-section__heading::after {
    top: 18px;
    left: -48px;
  }
}
@media screen and (min-width: 768px) {
  .technologies-esp .technologies-section__heading::before {
    top: -33px;
    right: -4px;
  }
}
@media screen and (min-width: 1024px) {
  .technologies-esp .technologies-section__heading::before {
    top: -36px;
    right: 11px;
  }
}
@media screen and (min-width: 1200px) {
  .technologies-esp .technologies-section__heading::before {
    top: -36px;
    right: -30px;
  }
}
.technologies-esp .technologies-section__desc {
  width: 100%;
  max-width: 33ch;
  margin-bottom: 10px;
  margin-inline: auto;
}
@media screen and (min-width: 700px) {
  .technologies-esp .technologies-section__desc {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .technologies-esp .technologies-section__desc {
    max-width: 936px;
    margin-bottom: 88px;
  }
}
@media screen and (min-width: 1024px) {
  .technologies-esp .technologies-section__desc::after {
    bottom: -442px;
  }
}
@media screen and (min-width: 1200px) {
  .technologies-esp .technologies-section__desc::after {
    right: -100px;
  }
}
@media screen and (min-width: 1440px) {
  .technologies-esp .technologies-section__desc::after {
    right: -200px;
  }
}
@media screen and (min-width: 1024px) {
  .technologies-esp .technologies-section__desc::before {
    bottom: -430px;
  }
}
@media screen and (min-width: 1200px) {
  .technologies-esp .technologies-section__desc::before {
    bottom: -430px;
    left: -110px;
  }
}
@media screen and (min-width: 1440px) {
  .technologies-esp .technologies-section__desc::before {
    bottom: -430px;
    left: -160px;
  }
}

.animated-number--has-plus-sign::after {
  content: "+";
  top: 0;
  left: 0;
  display: inline-block;
  font: inherit;
}

.scroller {
  --animation-duration: 40s;
  --animation-direction: forwards;
  overflow: hidden;
}
.scroller__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1rem;
}
.scroller[data-animated=true] .scroller__inner {
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
  animation: scroll var(--animation-duration, 40s) var(--animation-direction, forwards) linear infinite;
}
.scroller[data-direction=right] {
  --animation-direction: reverse;
}
.scroller[data-direction=left] {
  --animation-direction: forwards;
}
.scroller[data-speed=fast] {
  --animation-duration: 20s;
}
.scroller [data-speed=slow] {
  --animation-duration: 60s;
}
.scroller img {
  width: 50px;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
/* stylelint-disable rule-empty-line-before */
.portfolio-section {
  --portfolio-header-height: 410px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 115px 0;
  background: #111827;
}
.portfolio-section__header-image {
  display: none;
  max-width: 100%;
  max-height: var(--portfolio-header-height);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .portfolio-section__header-image {
    flex-shrink: 0;
    width: 100%;
  }
}
.portfolio-section__number {
  font-family: "Poppins", sans-serif;
  font-size: 100px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 1300px) {
  .portfolio-section__number {
    font-size: 125px;
  }
}
.portfolio-section__heading {
  margin-top: 14px;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .portfolio-section__heading {
    margin-top: -29px;
    margin-bottom: 10px;
    font-size: 60px;
  }
}
@media screen and (min-width: 1300px) {
  .portfolio-section__heading {
    font-size: 60px;
  }
}
.portfolio-section__description {
  margin-bottom: 35px;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .portfolio-section__description {
    margin-bottom: 0;
  }
}
.portfolio-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portfolio-section__header.show {
  justify-content: center;
  height: var(--portfolio-header-height);
}
.portfolio-section__header.show .portfolio-section__header-image {
  display: block;
}
.portfolio-section__header.show .portfolio-section__description,
.portfolio-section__header.show .portfolio-section__heading,
.portfolio-section__header.show .portfolio-section__number {
  display: none;
}
@media screen and (min-width: 1024px) {
  .portfolio-section__header {
    justify-content: center;
    width: 407px;
  }
}
@media screen and (min-width: 1024px) {
  .portfolio-section__content-table {
    min-width: 553px;
  }
}
.portfolio-section__table {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .portfolio-section__table {
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .portfolio-section__table {
    align-items: flex-start;
  }
}
.portfolio-section__titles {
  display: flex;
  gap: 30px;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 10px;
  padding-left: 15px;
}
@media screen and (min-width: 1024px) {
  .portfolio-section__titles {
    width: auto;
    padding-top: 18px;
    padding-bottom: 7px;
  }
}
.portfolio-section__item {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #FFF;
}
.portfolio-section__item--hover {
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .portfolio-section__item--hover {
    font-size: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .portfolio-section__item--hover {
    font-size: 25px;
  }
}
@media screen and (min-width: 425px) {
  .portfolio-section__item {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .portfolio-section__item {
    width: 164px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .portfolio-section__item {
    width: 268px;
    font-size: 25px;
  }
}
@media screen and (min-width: 1646px) {
  .portfolio-section__item {
    width: 309px;
  }
}
.portfolio-section__titles-hovers {
  cursor: pointer; /* Añadir cursor de puntero */
  display: flex;
  gap: 30px;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  border-top: 1px solid #FFF;
}
.portfolio-section__titles-hovers:last-child {
  padding-bottom: 18px;
}
.portfolio-section__titles-hovers:hover, .portfolio-section__titles-hovers:focus, .portfolio-section__titles-hovers[data-active=true] {
  background-color: #166BA7;
  border-color: transparent;
}
.portfolio-section__titles-hovers:hover + .portfolio-section__titles-hovers, .portfolio-section__titles-hovers:focus + .portfolio-section__titles-hovers, .portfolio-section__titles-hovers[data-active=true] + .portfolio-section__titles-hovers {
  border-color: transparent;
}
@media screen and (min-width: 1024px) {
  .portfolio-section__titles-hovers {
    width: auto;
    padding-top: 35px;
    padding-bottom: 10px;
  }
}
.portfolio-section .button--secondary {
  --button-border-radius: 15px;
  width: 131px;
  height: 41px;
  margin-top: 30px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .portfolio-section .button--secondary {
    width: 209px;
    height: 60px;
  }
}
.portfolio-section .button__text {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .portfolio-section .button__text {
    font-size: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .portfolio-section__content {
    display: flex;
  }
}
.portfolio-section .wrapper {
  --wrapper-padding: 15px;
}
@media screen and (min-width: 550px) {
  .portfolio-section .wrapper {
    --wrapper-max-width: 500px;
    --wrapper-padding: calc((100% - var(--wrapper-max-width)) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .portfolio-section .wrapper {
    --wrapper-max-width: 100%;
    --wrapper-padding: 20px 0;
    gap: 30px;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1300px) {
  .portfolio-section .wrapper {
    --wrapper-max-width: 1240px;
    --wrapper-padding: calc((100% - var(--wrapper-max-width)) / 2) 0;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1440px) {
  .portfolio-section .wrapper {
    --wrapper-padding: calc((100% - var(--wrapper-max-width)) / 2) calc(((100% - var(--wrapper-max-width)) / 2) - 100px);
  }
}
@media screen and (min-width: 1439px) {
  .portfolio-section {
    padding-top: 207.5px;
    padding-bottom: 206.5px;
  }
}

@media screen and (min-width: 430px) and (max-width: 450px) {
  .portfolio-section-esp .portfolio-section__titles {
    gap: 0;
  }
  .portfolio-section-esp .portfolio-section__titles p {
    max-width: 127px;
  }
  .portfolio-section-esp .portfolio-section__titles p:nth-child(2) {
    margin-inline: 30px 20px;
    white-space: nowrap;
  }
  .portfolio-section-esp .portfolio-section__item--hover:last-child {
    margin-inline-start: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .portfolio-section-esp .portfolio-section__titles {
    gap: 0;
  }
  .portfolio-section-esp .portfolio-section__titles p {
    max-width: 331px;
  }
  .portfolio-section-esp .portfolio-section__titles p:nth-child(2) {
    margin-inline: 30px;
    white-space: nowrap;
  }
}
/* Add styles for Home */
.certified-expertise {
  padding-top: 77px;
  padding-bottom: 59.5px;
  background-color: #111827;
}
.certified-expertise .wrapper {
  --wrapper-padding: 21px;
  margin: auto;
}
.certified-expertise .wrapper .ms__partner-image {
  width: auto;
  margin-top: 60px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .certified-expertise .wrapper {
    --wrapper-padding: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .certified-expertise .wrapper {
    --wrapper-max-width: 1140px;
    --wrapper-padding: calc((100% - var(--wrapper-max-width)) / 2);
  }
}
.certified-expertise__heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 29px;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 450px) {
  .certified-expertise__heading {
    font-size: 50px;
  }
}
@media screen and (min-width: 725px) {
  .certified-expertise__heading {
    margin-bottom: 27.96px;
    font-size: 65px;
  }
}
.certified-expertise__text {
  max-width: 1063px;
  margin: auto;
  margin-bottom: 41px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
@media screen and (min-width: 725px) {
  .certified-expertise__text {
    margin-bottom: 97px;
    font-size: 19px;
  }
}
.certified-expertise__certs {
  scrollbar-width: none;
  overflow-x: scroll;
  -ms-overflow-style: none;
}
.certified-expertise__certs::-webkit-scrollbar {
  display: none;
}
.certified-expertise__certs .slide-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.certified-expertise__certs .slide-container::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 645px) {
  .certified-expertise__certs .slide-container {
    padding-inline: 0;
  }
}
.certified-expertise__certs .cert {
  width: 133px;
  height: auto;
}
.certified-expertise__certs .scrum-master {
  width: 148px;
}
@media screen and (min-width: 725px) {
  .certified-expertise__certs {
    flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 768px) {
  .certified-expertise__certs {
    overflow-x: unset;
  }
}
.certified-expertise .star-first {
  position: absolute;
  top: -77px;
  right: 21px;
  width: 35px;
}
@media screen and (min-width: 1235px) {
  .certified-expertise .star-first {
    top: -35px;
    right: calc((100vw - 1040px) / 2);
  }
}
.certified-expertise .star-second {
  position: absolute;
  top: -50px;
  left: 21px;
  width: 35px;
}
@media screen and (min-width: 1235px) {
  .certified-expertise .star-second {
    top: 15px;
    left: calc((100vw - 1100px) / 2);
  }
}
.certified-expertise .star-third {
  position: absolute;
  right: calc((100vw - 1100px) / 2);
  bottom: -98px;
  display: none;
  width: 35px;
}
@media screen and (min-width: 1235px) {
  .certified-expertise .star-third {
    display: block;
  }
}
@media screen and (min-width: 1300px) {
  .certified-expertise .star-third {
    right: calc((100vw - 1240px) / 2);
  }
}
.certified-expertise .star-fourth {
  position: absolute;
  bottom: -87px;
  left: calc((100vw - 1140px) / 2);
  display: none;
  width: 30px;
  height: 55px;
}
@media screen and (min-width: 1235px) {
  .certified-expertise .star-fourth {
    display: block;
  }
}
.certified-expertise .only-mobile {
  display: block;
}
@media screen and (min-width: 431px) {
  .certified-expertise .only-mobile {
    display: none;
  }
}
@media screen and (min-width: 725px) {
  .certified-expertise {
    padding-top: 77.04px;
    padding-bottom: 98px;
  }
}

@keyframes star-fade {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
/* {outputFileName:style} */