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

/* 6-level font scale for main page */
:root {
  --fs-1: 6.875rem;  /* hero / main headline (110px) */
  --fs-2: 4rem;      /* section titles */
  --fs-3: 1.5rem;   /* subheadings, nav, cards */
  --fs-4: 1rem;     /* body text */
  --fs-5: 0.875rem; /* small text */
  --fs-6: 0.75rem;  /* labels, badges */
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

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

.main-container {
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 5%;
  height: auto;
  background-color: #f5f5f7;
  max-width: 100vw;
  box-sizing: border-box;
}

.main-container-img {
  background: url("../img/new_background.png") no-repeat center center;
  background-size: cover;
  height: auto;
  width: 100%;
  max-width: 100vw;
  padding-top: 130px;
  overflow-x: hidden;
}
.language-selector-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #111827;
  margin-left: 15px;
  z-index: 10;
}

.language-selector-mobile {
  display: none;
}

.language-selector-container-mobile {
  display: none;
}

@media screen and (min-width: 1201px) {
  .language-selector-container {
    display: inline-flex !important;
  }
  
  .language-selector-mobile {
    display: none !important;
  }
  
  .language-selector-container-mobile {
    display: none !important;
  }
}

.language-selector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 10px 35px 10px 14px;
  font-size: var(--fs-4);
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  color: #0f172a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.4;
  min-width: 90px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-selector:hover {
  background: #f3f4f6;
  border-color: #3B82F6;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.language-selector:focus {
  outline: none;
  border-color: #3B82F6;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.language-selector-container::after {
  content: "▼";
  font-size: var(--fs-6);
  position: absolute;
  color: #6b7280;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.3s ease;
}

.language-selector-container:hover::after {
  color: #3B82F6;
}

.language-selector:focus ~ .language-selector-container::after,
.language-selector-container:has(.language-selector:focus)::after {
  transform: translateY(-50%) rotate(180deg);
  color: #3B82F6;
}

.language-selector option {
  background-color: #1F2937;
  color: white;
  padding: 10px;
  font-weight: 500;
}

.language-selector option:hover {
  background-color: #3B82F6;
}

@media (max-width: 900px) {
  .language-selector-container {
    margin-left: 10px;
  }

  .language-selector {
    font-size: var(--fs-5);
    padding: 8px 30px 8px 12px;
    min-width: 80px;
  }

  .language-selector-container::after {
    font-size: var(--fs-6);
    right: 10px;
  }
}
/*Header Styles*/
.header {
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  color: white;
  font-size: var(--fs-3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  padding: 15px 5%;
  background: rgba(249, 250, 251, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.header-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: none;
  width: auto;
  height: 70px;
  flex-shrink: 0;
  margin-right: auto;
  transition: transform 0.3s ease;
}

.header-logo a {
  display: block;
  height: 100%;
  width: 100%;
}

.header-logo:hover {
  transform: scale(1.05);
}

.header-logo svg {
  width: auto;
  height: 100%;
  max-width: 350px;
  max-height: 70px;
  transition: all 0.3s ease;
  display: block;
}

.header-nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  color: white;
  font-weight: 600;
  gap: 8px;
}

.header-open {
  display: flex !important;
}

.header-nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header-nav ul li a {
  color: #111827;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: var(--fs-3);
  font-weight: 600;
  position: relative;
  display: inline-block;
  line-height: 1.4;
}

.header-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3B82F6;
  transition: width 0.3s ease;
}

.header-nav ul li a:hover {
  background: rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.header-nav ul li a:hover::after {
  width: 80%;
}

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

.header-burger {
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
  cursor: pointer;
  margin-right: 2%;
}

.header-burger span {
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: #111827;
}

.header-burger::before,
.header-burger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 30px;
  background-color: #111827;
  transition: all 0.3s ease 0s;
}

.header-burger::before {
  top: 0;
}

.header-burger::after {
  bottom: 0;
}

/*class active for animation burger icon*/
.header-burger.header-active span {
  transform: scale(0);
  width: 50px;
  background-color: white;
}

.header-burger.header-active::before {
  top: 35px;
  transform: rotate(-45deg) translate(0, -50%);
  position: fixed;
  right: 2%;
  width: 30px;
  background-color: white;
  z-index: 50;
}

.header-burger.header-active::after {
  top: 35px;
  transform: rotate(45deg) translate(0, 50%);
  position: fixed;
  right: 2%;
  width: 30px;
  background-color: white;
  z-index: 50;
}

/*Adaptation when screen 900px*/

@keyframes burgerAnimation {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.main-container-img .main-container {
  background-color: #333333;
  opacity: 0.85;
  border-radius: 0;
}

.header-main-text {
  color: #fff;
  font-size: var(--fs-1);
  font-weight: normal;
  text-align: center;
  padding-top: 14%;
}

.header-adding-text {
  opacity: 0.9;
  margin-top: 3%;
  color: #fff;
  text-align: center;
  font-size: var(--fs-4);
}

/*style body*/


.about-section {
  width: 100%;
  padding: 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  box-sizing: border-box;
  overflow: hidden;
  border-top: 1px solid #cbd5e1;
}

.about-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 5% 64px;
}

/* Центрований заголовок + підсвіти */
.about-header {
  text-align: center;
  margin-bottom: 36px;
}

.about-badge {
  display: inline-block;
  font-size: var(--fs-6);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.project-sectionTitle h1,
.about-title,
.partner-header h1,
.containerServices h1,
.messageBlock h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 1.2;
}

.about-title {
  font-size: var(--fs-2);
  color: #1f2937;
  margin: 0 0 10px;
}

.about-lead {
  font-size: var(--fs-4);
  color: #475569;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.about-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.about-highlights li {
  font-size: var(--fs-5);
  font-weight: 600;
  color: #334155;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.about-card {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12), 0 0 0 1px #e2e8f0;
  overflow: hidden;
  min-height: 380px;
}

.about-card-visual {
  flex: 0 1 42%;
  min-width: 280px;
  min-height: 320px;
}

.about-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background-image: url("../img/young-concentrated-colleagues-office-talking-with-each-other.jpg");
  background-size: cover;
  background-position: center 28%;
  transition: transform 0.35s ease;
}

.about-card:hover .about-img {
  transform: scale(1.03);
}

.about-card-content {
  flex: 1 1 58%;
  min-width: 280px;
  padding: 36px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.about-text p {
  font-size: var(--fs-4);
  line-height: 1.78;
  color: #475569;
  margin: 0 0 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-callout {
  margin-top: 24px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 14px;
  border-left: 4px solid #2563eb;
}

.about-callout .about-subheading {
  font-size: var(--fs-4);
  font-weight: 700;
  color: #1e40af;
  margin: 0 0 10px;
  line-height: 1.35;
}

.about-callout p {
  font-size: var(--fs-5);
  line-height: 1.75;
  color: #334155;
  margin: 0 0 10px;
}

.about-callout p:last-child {
  margin-bottom: 0;
}

.project-ourProjects {
  padding-top: 1%;
  padding-bottom: 2%;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1f2937;
  font-size: var(--fs-3);
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: 5%;
  padding-right: 5%;
  overflow-x: hidden;
}
.project-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-left: 2%;
  padding-right: 2%;
}

.project-box {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.project-description {
  text-align: left;
  margin-top: 10px;
  font-size: var(--fs-3);
  color: #1f2937;
}
.project-descriptionSecond {
  text-align: left;
  margin-top: 10px;
  font-size: var(--fs-6);
  color: #6b7280;
}

.project-container > div {
  margin: 2%;
}

.project-sectionTitle {
  font-size: var(--fs-3);
  margin-bottom: 20px;
  text-align: center;
  margin-top: 2%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  color: #1f2937;
  width: 100%;
}
.merchant-photo {
  width: 100%;
  min-width: 420px;
  max-width: 680px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
img {
  width: 100%;
  height: 90%;
  border-radius: 8px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.project-container.swiper {
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 20px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.project-container.swiper .swiper-wrapper {
  box-sizing: border-box;
}

.project-container.swiper .swiper-slide {
  box-sizing: border-box;
  width: 100% !important;
}

@media (max-width: 768px) {
  .project-ourProjects {
    padding-left: 3%;
    padding-right: 3%;
  }

  .project-container.swiper {
    padding-bottom: 16px;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin: 0;
    position: relative;
  }

  .project-container.swiper .swiper-wrapper {
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
  }

  .project-container.swiper .swiper-slide {
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .project-box {
    width: 100%;
    max-width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    position: relative;
  }

  .project-container.swiper .swiper-button-next,
  .project-container.swiper .swiper-button-prev {
    top: 30% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    height: 40px !important;
    width: 40px !important;
    z-index: 10 !important;
    position: absolute !important;
  }

  .project-container.swiper .swiper-button-next::after,
  .project-container.swiper .swiper-button-prev::after {
    font-size: var(--fs-3);
  }

  .project-container.swiper .swiper-button-next {
    right: 8px;
  }

  .project-container.swiper .swiper-button-prev {
    left: 8px;
  }
}

@media (max-width: 480px) {
  .project-ourProjects {
    padding-left: 2%;
    padding-right: 2%;
  }

  .project-container.swiper {
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .project-container.swiper .swiper-slide {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .project-box {
    padding: 0 4px;
    position: relative;
  }

  .project-container.swiper .swiper-button-next,
  .project-container.swiper .swiper-button-prev {
    top: 40% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    height: 36px !important;
    width: 36px !important;
    z-index: 10 !important;
    position: absolute !important;
  }

  .project-container.swiper .swiper-button-next::after,
  .project-container.swiper .swiper-button-prev::after {
    font-size: var(--fs-4);
  }

  .project-container.swiper .swiper-button-next {
    right: 4px;
  }

  .project-container.swiper .swiper-button-prev {
    left: 4px;
  }
}

.project-box img {
  border-radius: 10px;
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: #1f2937;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

.project-container.swiper .swiper-button-next,
.project-container.swiper .swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  height: 44px;
  width: 44px;
  position: absolute;
}

.project-container.swiper .swiper-button-next::after,
.project-container.swiper .swiper-button-prev::after {
  font-size: var(--fs-3);
  font-weight: 700;
}

.swiper-pagination-bullet {
  background-color: #6b7280;
}

@media (max-width: 768px) {
  .project-ourProjects {
    padding-top: 2%;
    padding-bottom: 3%;
    padding-left: 3%;
    padding-right: 3%;
  }

  .project-sectionTitle {
    font-size: var(--fs-2);
    text-align: center;
    margin-bottom: 12px;
    margin-top: 2%;
    padding-left: 0;
  }

  .project-sectionTitle h1 {
    font-size: var(--fs-2);
    letter-spacing: 2px;
  }

  .project-container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    gap: 16px;
  }

  .project-box {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .merchant-photo {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    border-radius: 8px;
  }

  .project-description {
    font-size: var(--fs-3);
    margin-top: 12px;
    text-align: left;
  }

  .project-descriptionSecond {
    font-size: var(--fs-6);
    margin-top: 8px;
    text-align: left;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  
  .project-container.swiper .swiper-button-next,
  .project-container.swiper .swiper-button-prev {
    display: flex !important;
  }

  .swiper-slide {
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .project-ourProjects {
    padding-top: 3%;
    padding-bottom: 4%;
    padding-left: 2%;
    padding-right: 2%;
  }

  .project-sectionTitle {
    font-size: var(--fs-2);
    margin-bottom: 12px;
    margin-top: 2%;
    padding-left: 0;
  }

  .project-sectionTitle h1 {
    font-size: var(--fs-2);
    letter-spacing: 1px;
  }

  .project-container {
    gap: 12px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin: 0;
  }

  .project-container.swiper {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .project-box {
    width: 100%;
    max-width: 100%;
  }

  .merchant-photo {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 6px;
  }

  .project-description {
    font-size: var(--fs-3);
    margin-top: 10px;
    line-height: 1.3;
  }

  .project-descriptionSecond {
    font-size: var(--fs-6);
    margin-top: 6px;
    line-height: 1.4;
  }

  .swiper-slide {
    padding: 0 4px;
  }
}

@media (max-width: 400px) {
  .project-ourProjects {
    padding-left: 1%;
    padding-right: 1%;
  }

  .project-sectionTitle {
    font-size: var(--fs-3);
    margin-bottom: 10px;
  }

  .project-sectionTitle h1 {
    font-size: var(--fs-3);
    letter-spacing: 0.5px;
  }

  .project-description {
    font-size: var(--fs-4);
    margin-top: 8px;
  }

  .project-descriptionSecond {
    font-size: var(--fs-6);
    margin-top: 5px;
  }
}
/*Partner styles*/

.partner-container {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 2%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e7eb;
}

.slide-container {
  width: 100%;
  height: auto;
}

.partner-cover {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card {
  padding-bottom: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 100%;
}

.partner-image {
  border: 1px solid #e5e7eb;
  margin: 7% 5% 8% 5%;
  width: 150px;
  height: 150px;
  border-radius: 100%;
}
.partner-image img {
  width: 100%;
  height: 100%;
  border-radius: 235px;
}

.partner-name {
  font-weight: normal;
  color: #1f2937;
  margin-bottom: 5%;
  font-size: var(--fs-2);
  text-align: center;
}

.partner-description {
  color: #4b5563;
  font-size: var(--fs-4);
  text-align: center;
  margin-bottom: 5%;
}

.partner-header {
  margin-top: 5%;
  margin-right: 15%;
  margin-left: 15%;
  padding-top: 2%;
  border-top: 1px solid #e5e7eb;
  font-size: var(--fs-2);
  color: #1f2937;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.swiper-button-next {
  padding-left: 20px;
}

.swiper-button-prev {
  padding-right: 16px;
}

.containerServices {
  height: auto;
  width: 100%;
}
.service-wrapper {
  padding: 5% 8%;
  background: #f5f5f7;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.containerServices h1 {
  color: #1f2937;
  font-size: var(--fs-2);
  letter-spacing: 4px;
  font-weight: 800;
  position: relative;
  transition: all 0.3s ease;
}
.project-sectionTitle h1 {
  color: #1f2937;
  font-size: var(--fs-2);
  letter-spacing: 4px;
  font-weight: 800;
  position: relative;
}
.partner-header h1 {
  color: #1f2937;
  font-size: var(--fs-2);
  letter-spacing: 4px;
  font-weight: 800;
  position: relative;
}

.containerServices h1 span {
  position: absolute;
  top: 100%;
  left: 10%;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: rgb(214, 214, 214);
  animation: anim 5s linear infinite;
}
@keyframes anim {
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 90%;
  }
}
.serviceCards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 80px;
}
.serviceCard {
  height: 170px;
  width: 240px;
  min-height: 140px;
  background-color: #ffffff;
  padding: 3% 8%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: 0.6s;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}
.serviceCard:after {
  content: "";
  position: absolute;
  top: 150%;
  left: -200px;
  width: 120%;
  transform: rotate(50deg);
  background-color: #f3f4f6;
  height: 18px;
  filter: blur(30px);
  opacity: 0.5;
  transition: 1s;
}
.serviceCard:hover:after {
  width: 225%;
  top: -100%;
}

.serviceCard img {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 4.8rem;
  height: 4.8rem;
}
.serviceCard h2 {
  color: #1f2937;
  font-size: var(--fs-3);
  font-weight: 600;
  letter-spacing: 1px;
}

.serviceCard:hover {
  background-color: #f9fafb;
  transform: translateY(-8px);
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.serviceText {
  text-align: center;
  padding: 50px;
  font-size: var(--fs-6);
  color: #374151;
  max-width: 100%;
  box-sizing: border-box;
}

.messageSection {
  height: auto;
  width: 100%;
}
.swiper-button-next {
  margin-top: 2%;
}
.messagePhoto {
  background: url("../img/wallpaperflare.com_wallpaper\ \(3\)\ копія\ 2.jpg")
    no-repeat center center;
  background-size: cover;
  height: auto;
  width: 100%;
  min-height: 50vh;
}
.messageBlock textarea {
  width: 100%;
  min-height: 40px;
  max-height: 500px;
  overflow: hidden;
  resize: none;
  font-size: var(--fs-4);
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  line-height: 1.5;
  white-space: pre-wrap;
  background: rgba(101, 101, 101, 0.37);
  color: #fff;
  margin-top: 5%;
}
.messageBlock textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
textarea {
  width: 100%;
  min-height: 40px;
  max-height: 500px;
  overflow: hidden;
  resize: none;
  font-size: var(--fs-4);
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  line-height: 1.5;
  white-space: pre-wrap;
  background: #ffffff;
  color: #1f2937;
  margin-top: 5%;
}
.error {
  border: 2px solid red;
}

.error-message {
  color: red;
  font-size: var(--fs-6);
  margin-top: 5px;
}

.messageBlock {
  margin-top: 2%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-left: 15%;
  width: 100%;
  min-height: 65vh;
  background-color: #333333;
  opacity: 0.75;
}

.messageBlock h1 {
  color: #fff;
  align-items: center;
  text-align: center;
  font-weight: 200;
}

.messageBlock .form {
  width: 48%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid rgb(142, 142, 142);
  padding: 20px 30px;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
  position: relative;
}

.messageBlock h2 {
  margin: 10px 0;
  padding-bottom: 10px;
  width: 300px;
  font-size: var(--fs-2);
  letter-spacing: 2px;
  color: #fff;
  border-bottom: 3px solid #fff;
}
.messageBlock input {
  color: #fff;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: none;
  outline: none;
  resize: none;
  border: 0;
  transition: all 0.3s;
  border-bottom: 2px solid #bebed2;
}
.messageBlock input:focus {
  border-bottom: 2px solid #fff;
}
.messageBlock input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.messageBlock p:before {
  content: attr(type);
  display: block;
  margin: 28px 0 0;
  font-size: var(--fs-5);
  color: #fff;
}

.message-footer button {
  position: absolute;
  right: 0;
  min-width: 28%;
  padding: 8px 12px;
  margin: 5% 7% 0;
  border: 2px solid rgb(142, 142, 142);
  background: 0;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.message-footer button:hover {
  border: 2px solid rgba(102, 115, 121, 1);
  background: rgba(102, 115, 121, 1);
  color: #fff;
}

.message-contact {
  left: 0;
  bottom: 0;
  margin: 3% 3% 3%;
  color: #fff;
  width: 70%;
  padding: 4% 1% 2% 1%;
  border-radius: 6px;
  font-size: var(--fs-5);
}
.message-contact a {
  color: #fff;
}

.messageBlock span {
  margin: 0 2% 4% 2%;
}

.message-footer {
  display: flex;
  flex-direction: column;
}



footer {
  background: #374151;
  width: 100%;
  color: #e5e7eb;
  box-sizing: border-box;
  border-top: 1px solid #4b5563;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.5;
}

.footerBlock {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.footerContainer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}


.footerText {
  font-size: var(--fs-4);
  line-height: 1.7;
  color: #d1d5db;
  margin: 0;
  padding: 24px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footerText:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footerText:first-child {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e5e7eb;
}

.footerCenter {
  text-align: center;
}
.footerCenter p {
  margin: 0;
  font-size: var(--fs-4);
  line-height: 1.7;
  color: #d1d5db;
  max-width: 100%;
  text-align: center;
}

.footerRight {
  font-size: var(--fs-4);
  line-height: 1.75;
  color: #d1d5db;
  text-align: center;
  padding: 24px 20px;
}
.footerRight a {
  color: #e5e7eb;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  line-height: 1.75;
  padding: 6px 0;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.footerRight a:last-child {
  margin-bottom: 0;
}
.footerRight a:hover {
  color: #f9fafb;
  background: rgba(255, 255, 255, 0.08);
}

@media screen and (max-width: 1350px) {
  :root {
    --fs-1: 6.25rem;
    --fs-3: 1.25rem;
  }
  .header {
    font-size: var(--fs-3);
  }
}

@media screen and (max-width: 1200px) {
  .header {
    padding: 12px 3%;
    min-height: 75px;
    background: rgba(249, 250, 251, 0.9);
  }

  .header-burger {
    display: flex;
  }

  .header-logo {
    height: 55px;
  }

  .header-logo svg {
    max-width: 210px;
    max-height: 55px;
  }

  .header-nav {
    justify-content: flex-start;
    display: none;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    overflow-y: auto;
    padding: 100px 40px 40px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    color: white;
    animation: burgerAnimation 0.4s ease;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  }

  .header-nav ul {
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
    align-items: flex-start;
  }

  .header-nav ul li a {
    width: 100%;
    padding: 18px 24px;
    font-size: var(--fs-3);
    font-weight: 600;
    border-radius: 12px;
    color: white;
  }

  .language-selector-container {
    display: none !important;
  }

  .language-selector-mobile {
    display: block !important;
    width: 100%;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    list-style: none;
  }

  .language-selector-container-mobile {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    width: 100%;
  }

  .language-selector-container-mobile .language-selector {
    width: 100%;
    font-size: var(--fs-3);
    padding: 14px 40px 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
  }

  .language-selector-container-mobile::after {
    content: "▼";
    font-size: var(--fs-6);
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .language-selector-container-mobile:hover::after {
    color: #3B82F6;
  }

  .language-selector-container-mobile .language-selector:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
  }

  .language-selector-container-mobile .language-selector:focus {
    outline: none;
    border-color: #3B82F6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  }

  .main-container-img {
    padding-top: 90px;
  }

  .main-container {
    max-width: 100%;
    margin: 0;
    padding-left: 5%;
    padding-right: 5%;
  }

  :root {
    --fs-1: 6.25rem;
    --fs-2: 3rem;
    --fs-5: 0.8125rem;
  }
  .header-main-text {
    font-size: var(--fs-1);
  }

  .about-wrap {
    padding: 48px 5% 40px;
  }

  .about-header {
    margin-bottom: 28px;
  }

  .about-highlights {
    gap: 8px;
  }

  .about-highlights li {
    font-size: var(--fs-6);
    padding: 6px 14px;
  }

  .about-card {
    flex-direction: column;
    min-height: auto;
  }

  .about-card-visual {
    min-width: 100%;
    min-height: 260px;
  }

  .about-img {
    min-height: 260px;
  }

  .about-card-content {
    padding: 28px 24px 28px;
  }

  .about-text p {
    font-size: var(--fs-4);
    margin-bottom: 14px;
  }

  .about-callout {
    margin-top: 20px;
    padding: 18px 20px;
  }

  .about-callout p {
    font-size: var(--fs-5);
  }

  .project-container {
    margin-left: auto;
    margin-right: auto;
  }

  .project-sectionTitle {
    font-size: var(--fs-2);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .partner-container {
    margin-left: 5%;
    margin-right: 5%;
  }

  .partner-header {
    margin-right: 5%;
    margin-left: 5%;
    font-size: var(--fs-2);
  }

  .partner-image {
    margin-top: 0;
    width: 100px;
    height: 100px;
  }

  .partner-name {
    font-size: var(--fs-3);
  }

  .partner-description {
    font-size: var(--fs-6);
  }

  .containerServices h1,
  .project-sectionTitle h1,
  .partner-header h1,
  .about-title,
  .messageBlock h2 {
    font-size: var(--fs-2);
  }

  .serviceCards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .messageBlock {
    padding-left: 5%;
    justify-content: center;
  }

  .messageBlock .form {
    width: 90%;
    max-width: 560px;
  }

  .footerBlock {
    padding: 36px 20px 28px;
  }
  .footerContainer {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }
  .footerText,
  .footerCenter,
  .footerRight {
    text-align: center;
    max-width: 100%;
  }
  .footerText {
    font-size: var(--fs-5);
    padding: 20px 16px;
  }
  .footerCenter p {
    max-width: 100%;
  }
  .footerRight {
    text-align: center;
    padding: 20px 16px;
  }
  .footerRight a {
    display: block;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 900px) {
  .header {
    padding: 12px 3%;
    min-height: 70px;
  }

  .header-logo {
    height: 50px;
  }

  .header-logo svg {
    max-width: 220px;
    max-height: 50px;
  }

  .language-selector-container {
    display: none !important;
  }

  .main-container-img {
    padding-top: 90px;
  }

  .main-container {
    padding-left: 4%;
    padding-right: 4%;
  }

  :root {
    --fs-1: 4.5rem;
  }
  .header-main-text {
    padding-top: 18%;
    font-size: var(--fs-1);
  }

  .header-adding-text {
    padding-left: 4%;
    padding-right: 4%;
  }

  .about-wrap {
    padding: 48px 4% 40px;
  }

  .project-sectionTitle {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .partner-container {
    margin-left: 4%;
    margin-right: 4%;
  }

  .partner-header {
    margin-left: 4%;
    margin-right: 4%;
  }

  .partner-image {
    margin-top: 0;
    width: 100px;
    height: 100px;
  }

  .partner-name {
    font-size: var(--fs-3);
  }

  .partner-description {
    font-size: var(--fs-6);
  }

  .partner-cover {
    margin-top: 5%;
  }

  .serviceCards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .messageBlock {
    justify-content: center;
    padding-left: 4%;
    padding-right: 4%;
  }

  .messageBlock .form {
    width: 100%;
    max-width: 560px;
  }

  .footerBlock {
    padding: 32px 16px 24px;
  }
  .footerContainer {
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding: 10px 2%;
    min-height: 65px;
  }

  .header-logo {
    height: 45px;
  }

  .header-logo svg {
    max-width: 200px;
    max-height: 45px;
  }

  .header-nav {
    padding: 80px 30px 30px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  }

  .header-nav ul li a {
    padding: 16px 20px;
    font-size: var(--fs-3);
  }

  .language-selector-container {
    display: none !important;
  }

  .language-selector-mobile {
    display: block !important;
    width: 100%;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    list-style: none;
  }

  .language-selector-container-mobile {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    width: 100%;
  }

  .language-selector-container-mobile .language-selector {
    width: 100%;
    font-size: var(--fs-3);
    padding: 14px 40px 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
  }

  .language-selector-container-mobile::after {
    content: "▼";
    font-size: var(--fs-6);
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .language-selector-container-mobile:hover::after {
    color: #3B82F6;
  }

  .language-selector-container-mobile .language-selector:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
  }

  .language-selector-container-mobile .language-selector:focus {
    outline: none;
    border-color: #3B82F6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  }

  .main-container-img {
    padding-top: 85px;
  }

  .main-container {
    padding-left: 3%;
    padding-right: 3%;
  }

  :root {
    --fs-1: 4rem;
    --fs-2: 2.25rem;
    --fs-5: 0.875rem;
  }
  .header-main-text {
    font-size: var(--fs-1);
    padding-top: 15%;
  }

  .header-adding-text {
    font-size: var(--fs-5);
    padding-left: 3%;
    padding-right: 3%;
  }

  .about-wrap {
    padding: 40px 3% 32px;
  }

  .about-img {
    min-height: 220px;
  }

  .about-card-content {
    padding: 24px 20px;
  }

  .about-text p {
    font-size: var(--fs-4);
  }

  .project-sectionTitle {
    font-size: var(--fs-2);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .partner-container {
    margin-left: 3%;
    margin-right: 3%;
  }

  .partner-header {
    margin-left: 3%;
    margin-right: 3%;
    font-size: var(--fs-2);
  }

  .service-wrapper {
    padding: 4% 5%;
  }
  .containerServices h1 {
    font-size: var(--fs-2);
    letter-spacing: 2px;
    text-align: center;
  }
  .serviceCards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
    padding: 0 2%;
  }
  .serviceCard {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 140px;
    padding: 16px 12px;
    justify-content: center;
  }
  .serviceCard img {
    width: 3.5rem;
    height: 3.5rem;
    margin-top: 12px;
    margin-bottom: 12px;
    object-fit: contain;
  }
  .serviceCard h2 {
    font-size: var(--fs-4);
  }
  .serviceText {
    padding: 28px 20px;
    font-size: var(--fs-5);
    line-height: 1.6;
  }

  .messageBlock {
    padding-left: 3%;
    padding-right: 3%;
  }

  .messageBlock .form {
    width: 100%;
    max-width: 100%;
  }

  .footerBlock {
    padding: 28px 16px 22px;
  }
  .footerContainer {
    gap: 22px;
  }
  .footerText,
  .footerCenter p,
  .footerRight {
    font-size: var(--fs-5);
  }
}

@media screen and (max-width: 480px) {
  .header {
    padding: 8px 2%;
    min-height: 60px;
  }

  .header-logo {
    height: 40px;
  }

  .header-logo svg {
    max-width: 170px;
    max-height: 40px;
  }

  .header-nav {
    padding: 70px 20px 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  }

  .header-nav ul li a {
    padding: 14px 18px;
    font-size: var(--fs-3);
  }

  .language-selector-container {
    display: none !important;
  }

  .language-selector-mobile {
    display: block !important;
    width: 100%;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    list-style: none;
  }

  .language-selector-container-mobile {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    width: 100%;
  }

  .language-selector-container-mobile .language-selector {
    font-size: var(--fs-4);
    padding: 12px 38px 12px 14px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
  }

  .language-selector-container-mobile::after {
    content: "▼";
    font-size: var(--fs-6);
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .language-selector-container-mobile:hover::after {
    color: #3B82F6;
  }

  .language-selector-container-mobile .language-selector:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
  }

  .language-selector-container-mobile .language-selector:focus {
    outline: none;
    border-color: #3B82F6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  }

  .main-container-img {
    padding-top: 80px;
  }

  .main-container {
    padding-left: 2%;
    padding-right: 2%;
  }

  :root {
    --fs-1: 3rem;
    --fs-2: 2rem;
    --fs-5: 0.8125rem;
  }
  .header-main-text {
    font-size: var(--fs-1);
    padding-top: 18%;
  }

  .header-adding-text {
    font-size: var(--fs-5);
    padding-left: 2%;
    padding-right: 2%;
  }

  .about-wrap {
    padding: 36px 2% 28px;
  }

  .about-img {
    min-height: 200px;
  }

  .about-card-content {
    padding: 22px 18px;
  }

  .about-text p {
    font-size: var(--fs-5);
    margin-bottom: 12px;
  }

  .about-callout {
    padding: 16px 18px;
  }

  .project-sectionTitle {
    font-size: var(--fs-2);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .project-sectionTitle h1 {
    font-size: var(--fs-2);
  }

  .partner-container {
    margin-left: 2%;
    margin-right: 2%;
  }

  .partner-header {
    margin-left: 2%;
    margin-right: 2%;
    font-size: var(--fs-2);
  }

  .partner-header h1 {
    font-size: var(--fs-2);
  }

  .service-wrapper {
    padding: 3% 4%;
  }
  .containerServices h1 {
    font-size: var(--fs-2);
    letter-spacing: 1px;
    text-align: center;
  }
  .serviceCards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
    padding: 0 2%;
  }
  .serviceCard {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 100px;
    padding: 10px 8px;
    justify-content: center;
  }
  .serviceCard img {
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 6px;
    margin-bottom: 6px;
    object-fit: contain;
  }
  .serviceCard h2 {
    font-size: var(--fs-5);
    line-height: 1.2;
    text-align: center;
  }
  .serviceText {
    padding: 20px 14px;
    font-size: var(--fs-5);
    line-height: 1.5;
  }

  .about-title {
    font-size: var(--fs-2);
  }

  .messageBlock {
    padding-left: 2%;
    padding-right: 2%;
  }

  .messageBlock .form {
    padding: 15px 20px;
  }

  .footerBlock {
    padding: 24px 12px 20px;
  }
  .footerContainer {
    gap: 20px;
  }
  .footerText,
  .footerCenter p,
  .footerRight {
    font-size: var(--fs-5);
  }
}

@media screen and (max-width: 500px) {
  .header-main-text {
    padding-top: 20%;
  }

  .message-footer {
    margin: 3% 0 3% 0;
    justify-content: center;
    align-items: center;
  }
  .message-footer button {
    position: relative;
  }

  .message-contact {
    position: relative;
    text-align: center;
    font-size: var(--fs-6);
  }
}

@media screen and (max-width: 450px) {
  .project-sectionTitle h1,
  .about-title,
  .partner-header h1,
  .containerServices h1,
  .messageBlock h2 {
    font-size: var(--fs-3);
  }

  .about-highlights {
    flex-direction: column;
    align-items: center;
  }

  .about-card-content {
    padding: 20px 16px;
  }

  .about-text p {
    font-size: var(--fs-5);
  }

  :root {
    --fs-1: 2.625rem;
  }
  .header-main-text {
    font-size: var(--fs-1);
    padding-top: 20%;
  }

  .header-adding-text {
    opacity: 0.8;
    margin-top: 3%;
    color: white;
    text-align: center;
    font-size: var(--fs-6);
    padding-left: 2%;
    padding-right: 2%;
  }

  .containerServices h1 {
    font-size: var(--fs-3);
    text-align: center;
    letter-spacing: 1px;
  }

  .service-wrapper {
    padding: 2% 3%;
  }
  .serviceCards {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 16px;
    padding: 0 2%;
  }
  .serviceCard {
    padding: 8px 6px;
    min-height: 90px;
  }
  .serviceCard img {
    width: 2.25rem;
    height: 2.25rem;
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .serviceCard h2 {
    font-size: var(--fs-6);
  }
  .serviceText {
    padding: 18px 12px;
    font-size: var(--fs-6);
  }

  .partner-header {
    font-size: var(--fs-3);
  }

  .partner-header h1 {
    font-size: var(--fs-3);
  }

  .partner-name {
    font-size: var(--fs-3);
  }

  .project-sectionTitle {
    font-size: var(--fs-3);
    margin-bottom: 10px;
    padding-left: 0;
  }

  .project-sectionTitle h1,
  .about-title {
    font-size: var(--fs-3);
  }

  .message-contact {
    font-size: var(--fs-6);
    width: 100%;
  }

  .messageBlock h2 {
    font-size: var(--fs-3);
    width: 100%;
  }

  .messageBlock .form {
    padding: 15px;
  }

  .footerBlock {
    padding: 22px 12px 18px;
  }
  .footerText,
  .footerCenter p,
  .footerRight {
    font-size: var(--fs-6);
  }
}

@media screen and (max-width: 400px) {
  .header-main-text {
    padding-top: 25%;
    font-size: var(--fs-2);
  }

  .header-adding-text {
    font-size: var(--fs-6);
  }

  .main-container {
    padding-left: 1%;
    padding-right: 1%;
  }

  .about-wrap {
    padding: 28px 1% 24px;
  }

  .about-img {
    min-height: 180px;
  }

  .about-card-content {
    padding: 18px 14px;
  }

  .about-text p {
    font-size: var(--fs-6);
    margin-bottom: 10px;
  }

  .about-callout {
    padding: 14px 16px;
  }

  .project-sectionTitle {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .project-sectionTitle h1 {
    font-size: var(--fs-3);
  }

  .partner-container {
    margin-left: 1%;
    margin-right: 1%;
  }

  .partner-header {
    margin-left: 1%;
    margin-right: 1%;
  }

  .partner-header h1 {
    font-size: var(--fs-3);
  }

  .containerServices h1 {
    font-size: var(--fs-3);
  }

  .service-wrapper {
    padding: 2% 3%;
  }
  .serviceCards {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 14px;
  }
  .serviceCard {
    padding: 6px 5px;
    min-height: 82px;
  }
  .serviceCard img {
    width: 2rem;
    height: 2rem;
    margin-top: 4px;
    margin-bottom: 2px;
  }
  .serviceCard h2 {
    font-size: var(--fs-6);
  }
  .serviceText {
    padding: 16px 10px;
    font-size: var(--fs-6);
  }

  .messageBlock {
    padding-left: 1%;
    padding-right: 1%;
  }

  .footerBlock {
    padding: 20px 10px 16px;
  }
  .footerContainer {
    gap: 18px;
  }
  .footerText,
  .footerCenter p,
  .footerRight {
    font-size: var(--fs-6);
  }
}
