:root {
  --primary-color: #1c3b58;
  --secondary-color: #c47d47;
  --terciary-color: #e8e4be;

  --neutral-color-000: #000;
  --neutral-color-800: #f9f9f9;
  --neutral-color-900: #fff;

  --primary-text-color: #23262a;
  --secondary-text-color: #60656e;

  --ff-primary: "Inter", sans-serif;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
}

/*---- Backgrounds colors ----*/

.bg-primary-color {
  background-color: var(--primary-color);
}

.bg-secondary-color {
  background-color: var(--secondary-color);
}

.bg-terciary-color {
  background-color: var(--terciary-color);
}

.bg-neutral-color-100 {
  background-color: var(--primary-text-color);
}

.bg-neutral-color-900 {
  background-color: var(--neutral-color-900);
}

.bg-neutral-color-800 {
  background-color: var(--neutral-color-800);
}

/*---- Texts colors ----*/

.primary-text-color {
  color: var(--primary-text-color);
}

.secondary-text-color {
  color: var(--secondary-text-color);
}

.neutral-text-color-900 {
  color: var(--neutral-color-900);
}

.accent-text-color {
  color: var(--primary-color);
}

/*---- Borders colors ----*/

.border-primary-color {
  border-color: var(--primary-color) !important;
}

.border-terciary-color {
  border-color: var(--terciary-color) !important;
}

.border-neutral-900-color {
  border-color: var(--neutral-color-900) !important;
}

/*---- Utilities classes ----*/

.myContainer {
  --max-width: 1520px;
  --container-padding: 1.5rem;

  width: min(var(--max-width), 100% - (var(--container-padding) * 2));
  margin-inline: auto;
}

.even-columns {
  display: grid;
  gap: 3rem;
}

.circular-btn-outline {
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.btn-general {
  display: inline-flex;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 34px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.hover-outline-neutral-900:hover {
  border: 1px solid var(--neutral-color-900);
  background-color: transparent;
  color: var(--neutral-color-900);
}

.hover-outline-primary:hover {
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
}

.mt-section {
  margin-top: 102px;
}

.mb-section {
  margin-bottom: 102px;
}

.pt-section {
  padding-top: 102px;
}

.pb-section {
  padding-bottom: 102px;
}

.transition-all {
  transition: all 0.3s ease;
}

/*---- Specifics classes ----*/

body {
  font-family: var(--ff-primary) !important;
  color: var(--primary-text-color) !important;
}

.burgerIcon svg {
  width: 22px;
  height: 22px;
}

.navBar-container .burgerIcon:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.up-button {
  z-index: 10;
  position: fixed;
  bottom: 20%;
  right: 60px;
  box-shadow: 0px 4px 22.8px -6px rgba(47, 48, 75, 0.19);
}

.navBar-container > a {
  width: 30%;
  margin-right: 0;
}

.navBar-container > a > img:last-child {
  display: none;
}

.navBar-container > div > div {
  width: 70%;
}

.navBar-container > div > div > ul {
  width: 60%;
}

.navBar-container > div > div > div {
  width: 40%;
}

.navBar-links {
  gap: 35px;
  justify-content: center;
}

.navBar-links .nav-link.active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.navBar-links .nav-link {
  color: var(--primary-text-color);
}

.social {
  gap: 25px;
  justify-content: end;
}

.banner-slider {
  width: 100%;
  height: 716px;
}

.banner-background {
  position: absolute;
  z-index: 1;
}

.banner-background::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.47);
  z-index: 2;
}

.banner-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.banner-content {
  position: absolute;
  z-index: 3;
}

.banner-content h2 {
  font-size: 4.5rem;
}

.banner-content p {
  font-size: 1.125rem;
}

.swiper-arrows {
  width: 95%;
  z-index: 4;
}

.custom-swiper-button-prev,
.custom-swiper-button-next {
  border-color: var(--neutral-color-900);
}

.separator-home {
  min-height: 203px;
}

.separator-home > div > div {
  width: 33%;
}

.data-separator-table {
  width: 90%;
}

.data-separator-head th {
  font-size: 4.5rem;
  line-height: 1;
  text-align: center;
  padding: 10px;
}

.data-separator-body td {
  vertical-align: top;
  width: 33%;
  padding: 10px;
  padding-top: 0;
}

.data-separator-body td p {
  font-size: 1.125rem;
  text-align: center;
  max-width: 20ch;
}

.section-tittle > p {
  font-size: 1.125rem;
  color: var(--primary-text-color);
}

.container-slider-services {
  margin-top: 70px;
}

.slider-arrows {
  z-index: 2;
}

.slider-arrows > div {
  background-color: var(--neutral-color-800);
  transition: all 0.3s ease;

  &:hover {
    background-color: var(--primary-color);
  }
}

.slider-arrows > div:hover > svg path {
  fill: var(--neutral-color-900);
}

.service-home-slide h2 {
  margin-bottom: 54px;
  font-size: 2rem;
}

.service-home-slide > div > img {
  border-radius: 14px;
  height: 100%;
  max-height: 436px;
  width: 50%;
  object-fit: cover;
}

.service-home-slide > div > p {
  width: 50%;
  font-size: 1.125rem;
}

.solutions-header > h2 {
  width: 40%;
}

.solutions-header > div {
  width: 60%;
}

.solutions-header span {
  width: 60%;
  display: block;
  border-bottom: 1px solid var(--primary-text-color);
}

.solutions-header > div p,
.title-info p,
.card-overlay > p {
  font-size: 1.125rem;
}

.solutions-header > div > div {
  align-items: end;
}

.hidden-btn-sec {
  display: none;
}

.solutions-header > div > div a:hover {
  background-color: var(--neutral-color-900);
  border: 1px solid var(--primary-color);
}

.solutions-header > div > div a:hover svg path {
  fill: var(--primary-color);
}

.solutions-header h2,
.about-title h2 {
  font-size: 2rem;
}

.swiper-solutions .swiper-slide h3 {
  font-size: 1.5625rem;
}

.swiper-solutions,
.team-slider,
.process-article {
  margin-top: 70px;
}

.swiper-solutions .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.swiper-solutions .card-solution-info > div:first-child {
  display: none !important;
}

.swiper-solutions .card-solution-info {
  padding: 2rem;
  border-radius: 14px;
  text-decoration: none;
  height: 100%;
}

.swiper-solutions .swiper-slide .title-item {
  font-size: 1.125rem;
  margin-bottom: 0;
}

.swiper-solutions .card-solution-info > div > div:last-child {
  width: 90%;
}

.swiper-solutions .card-solution-info > div > div:last-child img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 14px;
}

.swiper-solutions .swiper-slide h3 {
  color: var(--primary-text-color);
}

.separatior-footer h2 {
  font-size: 3rem;
}

.separatior-footer p {
  max-width: 58ch;
}

.title-info {
  width: 50%;
}

.title-info p:first-child {
  margin-bottom: 45px;
}

.social-footer a:hover {
  background-color: var(--terciary-color);
}

.social-footer a:hover svg path {
  fill: var(--primary-text-color);
}

.footer-page > div > div:last-child {
  border-top: 1px solid rgba(221, 225, 235, 0.11);
}

.btn-close-contact {
  display: block;
  background-color: var(--neutral-color-900);
}

#contactModal > div > div {
  border-radius: 20px;
}

#contactModal .modal-header {
  padding-bottom: 0;
}

#contactModal .modal-body {
  padding: 10px 40px 40px 40px;
}

#contactModal .modal-title {
  font-size: 1.5625rem;
}

#contactModal .modal-body form input,
#contactModal .modal-body form label,
#contactModal .modal-body form textarea {
  font-size: 0.875rem;
  border-radius: 4px;

  &:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid var(--primary-text-color);
  }
}

.team-slider {
  width: 100%;
}

.team-slider .swiper-slide {
  display: flex;
  justify-content: center;
  min-height: 431.75px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
  width: 300px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.card-overlay {
  display: flex;
  flex-direction: column;
  justify-content: end;

  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 61.93%, #000 99.88%);
  color: white;
  text-align: center;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card-overlay > h3 {
  font-size: 1.5625rem;
  font-weight: var(--fw-bold);
}

.card-info {
  position: absolute;
  bottom: -100%;
  background: rgba(0, 32, 63, 0.95);
  color: var(--neutral-color-900);
  padding: 30px;
  height: 100%;
  width: 100%;
  transition: bottom 0.4s ease;
  z-index: 2;
  text-align: center;
  box-sizing: border-box;
}

.team-card:hover .card-info {
  bottom: 0;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-slider .swiper-wrapper {
  height: 100%;
}

.team-slider .swiper-slide {
  height: auto;
}

.description-process p {
  font-size: 1.125rem;
}

.description-process img {
  width: 100%;
  max-height: 484px;
  object-fit: cover;
  border-radius: 14px;
}

.timeline {
  margin-left: 40px;
  border-left: 2px solid #b2ad98;
  padding-left: 20px;
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 10px;
  width: 12px;
  height: 12px;
  background-color: #b2ad98;
  border-radius: 50%;
  z-index: 1;
}

.icon {
  width: 40px;
  height: 40px;
  background-color: #efe7d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  flex-shrink: 0;
}

/*---- About Us Page ----*/

.history-sec > div {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.history-sec > div > div {
  width: 50%;
}

.history-sec > div > div:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.about-title > h2 {
  margin-top: 40px;
  max-width: 30ch;
}

.about-title > p {
  color: var(--secondary-text-color);
  max-width: 60ch;
}

.MVV-container {
  width: 100%;
  height: 100%;
  gap: 16px;
}

.MVV-container .swiper-slide {
  width: calc(98% / 3);
  height: auto;
  padding: 40px;
  border-radius: 14px;
  background-color: var(--neutral-color-900);
  box-shadow: 0px 4px 23px 2px rgba(47, 48, 75, 0.19);
}

.MVV-container .swiper-slide h3 {
  font-size: 1.125rem;
  margin-bottom: 30px;
  max-width: 20ch;
}

.img-rsv {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 327px;
  border-radius: 14px;
  margin-bottom: 24px;
  display: none;
}

/*---- Projects Pages ----*/

.tab-swiper .swiper-slide {
  width: auto;
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  transition: background 0.3s;
  color: var(--primary-color);

  &:hover {
    background-color: var(--primary-color);
    color: var(--neutral-color-900);
  }
}

.tab-swiper .swiper-slide-active {
  background: #1a3b5d;
  color: white;
}

.tab-content {
  margin-top: 20px;
}

.projects-sec > div {
  gap: 100px;
}

.projects-sec > div > div {
  width: 50%;
}

.info-card {
  max-width: 80%;
  display: flex;
  border: 1px solid #dde1eb;
  border-radius: 18px;
  overflow: hidden;
}

.info-section {
  flex: 1;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-section:not(:last-child) {
  border-right: 1px solid #e0e0e0;
}

.info-section p {
  margin-top: 10px;
  font-size: 1.125rem;
}

.list-info-project {
  margin-top: 60px;
}

.list-info-project li::marker,
.list-info-project span {
  color: var(--secondary-color);
}

.project-images {
  width: 100%;
  height: 100%;
}

.projectsSlider {
  width: 100%;
  height: 92%;
}

.projectsSlider .swiper-wrapper {
  height: 100%;
}

.projectsSlider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.project-images .swiper-pagination {
  position: static;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-images .swiper-pagination .swiper-pagination-bullet,
.banner-slider .swiper-pagination-banner .swiper-pagination-bullet {
  background: #dde1eb;
  opacity: 1;
  width: 20px;
  height: 20px;
}

.project-images .swiper-pagination .swiper-pagination-bullet-active,
.banner-slider .swiper-pagination-banner .swiper-pagination-bullet-active {
  background: var(--secondary-color);
}

/*------------------------ RESPONSIVE ------------------------*/

@media (min-width: 50em) {
  .even-columns {
    grid-auto-flow: column;
    grid-auto-columns: 1.5fr 1fr;
  }
}

@media (max-width: 1252px) {
  .info-card {
    max-width: 100%;
  }

  .projects-sec > div {
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .navBar-container > a > img:first-child {
    display: none;
  }

  .navBar-container > a > img:last-child {
    display: flex;
  }

  .navBar-links {
    gap: 25px;
  }

  .navBar-links > li > a {
    text-align: end;
  }

  #navbarTogglerDemo02 > div {
    margin: 20px 0;
    align-items: end;
    flex-direction: column;
  }

  .solutions-header {
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
  }

  .solutions-header > h2 {
    width: 100%;
  }

  .solutions-header > div {
    width: 100%;
    flex-direction: column;
    align-items: start !important;
  }

  .solutions-header > div > div {
    align-items: center;
  }

  .solutions-header > div > div p,
  .solutions-header > div > div a:nth-child(2),
  .solutions-header span {
    display: none;
  }

  .hidden-btn-sec,
  .solutions-header > div > div p.special-sec {
    display: flex;
  }

  .hidden-btn-sec {
    background-color: var(--primary-color);
    color: var(--neutral-color-900);
    padding: 10px 20px;
    border-radius: 6px;
  }

  .solutions-header span {
    width: 60% !important;
  }

  .banner-slider .swiper-arrows {
    display: none !important;
  }

  .banner-slider .swiper-pagination-banner {
    display: flex !important;
    justify-content: center;
    bottom: 40px;
    position: absolute;
    z-index: 4;
  }

  .MVV-container {
    flex-direction: column;
  }

  .MVV-container .swiper-slide {
    width: 100%;
  }

  .projects-sec > div {
    flex-direction: column;
  }

  .projects-sec > div > div {
    width: 100%;
  }

  .project-images .swiper-pagination {
    margin-top: 20px;
  }

  .tab-content > section:nth-child(even) > div > div:first-child {
    order: 2;
  }

  .tab-content > section:nth-child(even) > div > div:last-child {
    order: 1;
  }
}

@media (max-width: 872px) {
  .container-slider-services {
    margin-top: 35px;
  }

  .service-home-slide h2 {
    margin-bottom: 30px;
  }

  .service-home-slider .swiper-slide > div {
    padding-bottom: 50px;
    flex-direction: column;
    gap: 30px !important;
  }

  .container-slider-services > .slider-arrows {
    width: 100%;
    bottom: -30px;
    justify-content: center !important;
    right: auto !important;
  }

  .service-home-slide > div > p,
  .service-home-slide > div > img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mt-section {
    margin-top: 66px;
  }

  .mb-section {
    margin-bottom: 66px;
  }

  .pt-section {
    padding-top: 66px;
  }

  .pb-section {
    padding-bottom: 66px;
  }

  .team-slider .swiper-wrapper {
    padding: 30px 10px;
  }

  .card-info {
    position: static;
    background: none;
    color: #000;
    bottom: 0;
    padding: 15px;
    height: auto;
    z-index: 1;
  }

  .card-info h3 {
    font-size: 1.125rem;
  }

  .card-info > .position-member {
    color: var(--secondary-color);
  }

  .card-info p:last-child {
    font-size: 0.875rem;
    color: var(--secondary-text-color);
  }

  .card-overlay {
    display: none;
  }

  .card-image img {
    height: 330.75px;
    transform: none !important;
  }

  .swiper-solutions,
  .swiper-partners,
  .team-slider,
  .process-article {
    margin-top: 25px;
  }

  .banner-content {
    padding: 20px;
  }

  .img-rsv {
    display: flex;
  }

  .history-sec > div > div:last-child {
    display: none;
  }

  .history-sec > div > div:first-child {
    width: 100%;
  }
}

@media (max-width: 684px) {
  .data-separator-head th {
    font-size: 3rem;
  }

  .data-separator-body td p {
    font-size: 1rem;
  }

  .footer-page > div > div:last-child {
    position: relative;
    padding-bottom: 100px !important;
  }

  .footer-page > div > div:last-child > div p {
    position: absolute;
    bottom: 30px;
    left: 0;
    text-align: center;
    width: 100%;
  }

  .data-separator-table {
    width: 100%;
  }
}

@media (max-width: 426px) {
  .banner-content h2 {
    font-size: 2rem;
    font-weight: var(--fw-bold) !important;
  }

  .banner-content p,
  .section-tittle > p {
    font-size: 1rem;
    font-weight: var(--fw-regular) !important;
  }

  .data-separator-head th {
    font-size: 2rem;
    padding: 4px;
  }

  .separatior-footer h2 {
    font-size: 2rem;
    font-weight: var(--fw-bold) !important;
  }

  .data-separator-body td p {
    font-size: 0.875rem;
    padding: 4px;
  }

  .service-home-slide h2,
  .solutions-header > h2,
  .about-title > h2 {
    font-size: 1.5625rem;
  }

  .solutions-header > div p,
  .separatior-footer p {
    font-size: 0.875rem;
  }

  .solutions-header span {
    width: 40% !important;
  }

  .footer-page > div > div:first-child {
    flex-direction: column;
    gap: 45px;
  }

  .footer-page .title-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }

  .title-info p:first-child {
    margin-bottom: 0;
  }

  .up-button {
    right: 32px;
  }

  .info-card,
  .list-info-project {
    margin-top: 30px !important;
  }

  .info-section {
    padding: 16px;
  }

  .info-section svg {
    height: 58px;
    width: 69px;
  }

  .info-section p {
    font-size: 0.875rem;
  }

  .timeline {
    margin-left: 16px;
  }

  .swiper-solutions .card-solution-info > div:first-child {
    display: flex !important;
  }

  .swiper-solutions .card-solution-info .inner-icon {
    display: none;
  }

  .swiper-solutions .card-solution-info > div > div:last-child {
    width: 100%;
  }

  .swiper-solutions .card-solution-info {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 375px) {
  .data-separator-body td p {
    font-size: 0.75rem;
  }
}

@media (max-width: 356px) {
  .info-card {
    flex-direction: column;
  }

  .info-section:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #e0e0e0;
  }
}



.umbraco-forms-hidden {
    display:none;
}