@charset "UTF-8";
@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

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

.section,
.aboutus-section,
.mision-section,
.vision-section,
.ethics-section,
.services-section,
.clients,
footer {
  font-family: "Open Sans", sans-serif;
  color: #000000;
  line-height: 1.7;
  letter-spacing: 0.01em;
  word-break: break-word;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Open Sans", sans-serif;
  color: #3498db;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

p,
li {
  font-size: 1.15rem;
  color: #333333;
  margin-bottom: 0.8rem;
}

@media (max-width: 320px) {
  h1,
  h2 {
    font-size: 1.3rem;
  }
  h3,
  h4 {
    font-size: 1.1rem;
  }
  p,
  li {
    font-size: 0.95rem;
  }
  img,
  .client-logo,
  .logo {
    max-width: 90vw;
    height: auto;
  }
}
@media (max-width: 375px) {
  h1,
  h2 {
    font-size: 1.5rem;
  }
  h3,
  h4 {
    font-size: 1.2rem;
  }
  p,
  li {
    font-size: 1rem;
  }
  img,
  .client-logo,
  .logo {
    max-width: 95vw;
    height: auto;
  }
}
@media (max-width: 425px) {
  h1,
  h2 {
    font-size: 1.7rem;
  }
  h3,
  h4 {
    font-size: 1.3rem;
  }
  p,
  li {
    font-size: 1.05rem;
  }
  img,
  .client-logo,
  .logo {
    max-width: 100vw;
    height: auto;
  }
}
@media (max-width: 600px) {
  h1,
  h2 {
    font-size: 2rem;
  }
  h3,
  h4 {
    font-size: 1.4rem;
  }
  p,
  li {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  h1,
  h2 {
    font-size: 2.2rem;
  }
  h3,
  h4 {
    font-size: 1.5rem;
  }
  p,
  li {
    font-size: 1.15rem;
  }
}
@media (max-width: 992px) {
  h1,
  h2 {
    font-size: 2.4rem;
  }
  h3,
  h4 {
    font-size: 1.6rem;
  }
  p,
  li {
    font-size: 1.18rem;
  }
}
@media (max-width: 1200px) {
  h1,
  h2 {
    font-size: 2.5rem;
  }
  h3,
  h4 {
    font-size: 1.7rem;
  }
  p,
  li {
    font-size: 1.2rem;
  }
}
img,
.client-logo,
.logo {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem auto;
  border-radius: 8px;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.32);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 425px) {
  .navbar {
    justify-content: center;
    padding: 1rem 0;
    overflow-x: hidden;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.navbar-brand .logo {
  height: 64px;
  width: auto;
}
@media (max-width: 425px) {
  .navbar-brand {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}

.navbar-menu {
  display: flex;
  justify-content: flex-end;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon {
  width: 20px;
  height: 20px;
  filter: invert(41%) sepia(98%) saturate(747%) hue-rotate(181deg) brightness(93%) contrast(92%);
}

.nav-link {
  text-decoration: none;
  color: #3498db;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
}
.nav-link:hover {
  color: #333333;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  .navbar-nav {
    gap: 1rem;
  }
  .nav-link {
    font-size: 1.1rem;
  }
  .navbar-brand .logo {
    height: 48px;
  }
}
@media (max-width: 425px) {
  .navbar {
    justify-content: center;
    padding: 1rem 0;
    overflow-x: hidden;
  }
  .navbar-brand {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .navbar-menu,
  .navbar-nav,
  .navbar-toggle {
    display: none !important;
  }
}
img {
  width: 240px;
  margin-bottom: 1rem;
}

footer {
  background-color: #ffffff;
  color: #3c56e7;
  text-align: center;
  padding: 2rem;
  font-family: "Open Sans", sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.32);
}
footer p {
  margin: 0;
}
@media (max-width: 320px) {
  footer p {
    font-size: 0.95rem;
  }
  footer img {
    max-width: 90vw;
    height: auto;
  }
}
@media (max-width: 375px) {
  footer p {
    font-size: 1rem;
  }
  footer img {
    max-width: 95vw;
    height: auto;
  }
}
@media (max-width: 768px) {
  footer p {
    font-size: 1.15rem;
  }
  footer img {
    max-width: 100vw;
    height: auto;
  }
}

.aboutus-section {
  text-align: start;
  padding: 4rem 2rem;
  background-color: transparent;
  margin-left: 64px;
}
.aboutus-section h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}
.aboutus-section p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #000000;
  line-height: 1.8;
  max-width: 800px;
}

.mision-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 4rem 2rem;
  background-color: transparent;
  margin-left: 64px;
}
.mision-section h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
  text-align: right;
}
.mision-section p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #000000;
  line-height: 1.8;
  max-width: 800px;
  text-align: right;
}

.vision-section {
  text-align: start;
  padding: 4rem 2rem;
  background-color: transparent;
  margin-left: 64px;
}
.vision-section h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}
.vision-section p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #000000;
  line-height: 1.8;
  max-width: 800px;
}

.ethics-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #ffffff;
  margin: 0;
}
.ethics-section h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 3rem;
  text-align: center;
}
.ethics-section .ethics-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.ethics-section .ethic-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 15px;
  border-left: 4px solid #3498db;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 320px;
  max-width: 450px;
  flex: 1 1 calc(50% - 1rem);
}
.ethics-section .ethic-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
  border-left-color: #3c56e7;
}
.ethics-section .ethic-item .ethic-icon {
  width: 50px;
  height: 50px;
  margin-right: 1.5rem;
  margin-bottom: 0;
  padding: 12px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 12px;
  filter: invert(41%) sepia(98%) saturate(747%) hue-rotate(181deg) brightness(93%) contrast(92%);
  flex-shrink: 0;
}
.ethics-section .ethic-item .ethic-content {
  flex: 1;
}
.ethics-section .ethic-item h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  color: #3498db;
  margin-bottom: 0.8rem;
  margin-top: 0;
}
.ethics-section .ethic-item p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .ethics-section .ethic-item {
    flex-direction: column;
    text-align: center;
    min-width: 280px;
    flex: 1 1 100%;
  }
  .ethics-section .ethic-item .ethic-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.clients {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #ffffff;
  margin: 4rem 0;
  border-radius: 8px;
}
.clients .clients-title {
  font-family: "Open Sans", sans-serif;
  font-size: 2.2rem;
  color: #3498db;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.clients .clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
  margin: 0 auto;
  max-width: 900px;
}
.clients .client-logo {
  height: auto;
  width: 240px;
  object-fit: contain;
  filter: none;
  transition: transform 0.2s;
  background: transparent;
  border-radius: 8px;
  padding: 0.5rem 1rem;
}
.clients .client-logo:hover {
  transform: scale(1.08);
  filter: none;
  background: rgba(52, 152, 219, 0.07);
}
@media (max-width: 768px) {
  .clients {
    padding: 2rem 0.5rem;
  }
  .clients .clients-logos {
    gap: 1.2rem;
  }
  .clients .client-logo {
    height: 80px;
    padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 320px) {
  .aboutus-section h2 {
    font-size: 1.3rem;
  }
  .aboutus-section p {
    font-size: 0.95rem;
  }
}
@media (max-width: 375px) {
  .aboutus-section h2 {
    font-size: 1.5rem;
  }
  .aboutus-section p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .aboutus-section h2 {
    font-size: 2.2rem;
  }
  .aboutus-section p {
    font-size: 1.15rem;
  }
}
.aboutus-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 425px) {
  .aboutus-section,
  .mision-section,
  .vision-section {
    padding: 2rem 0.5rem;
    margin-left: 0;
  }
  .aboutus-section h2,
  .mision-section h2,
  .vision-section h2 {
    font-size: 1.3rem !important;
  }
  .aboutus-section p,
  .mision-section p,
  .vision-section p {
    font-size: 1rem !important;
  }
}
.services-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #3498db !important;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  border-radius: 8px;
  margin: 4rem auto;
  max-width: 1600px;
}
.services-section h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 3rem;
}
.services-section .services-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  align-items: start;
}
.services-section .service-category,
.services-section .value-proposition {
  color: #3498db;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
}
.services-section .service-category .category-title,
.services-section .value-proposition .category-title {
  color: #3498db;
}
.services-section .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.services-section .service-list li {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.services-section .service-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}
.services-section .subcategory {
  margin-top: 1.5rem;
  padding-top: 1rem;
}
.services-section .subcategory .subcategory-title {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: left;
  font-style: italic;
}
.services-section .subcategory .service-list {
  text-align: left;
}
.services-section .value-proposition {
  text-align: left;
}
.services-section .value-proposition .category-title {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: left;
}
.services-section .value-proposition .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.services-section .value-proposition .service-list li {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.services-section .value-proposition .service-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}
@media (max-width: 768px) {
  .services-section .services-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services-section .value-proposition {
    grid-column: 1;
  }
}
@media (max-width: 320px) {
  .services-section h2 {
    font-size: 1.3rem;
  }
  .services-section .category-title {
    font-size: 1.1rem;
  }
  .services-section p,
  .services-section li {
    font-size: 0.95rem;
  }
}
@media (max-width: 375px) {
  .services-section h2 {
    font-size: 1.5rem;
  }
  .services-section .category-title {
    font-size: 1.2rem;
  }
  .services-section p,
  .services-section li {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 2.2rem;
  }
  .services-section .category-title {
    font-size: 1.4rem;
  }
  .services-section p,
  .services-section li {
    font-size: 1.15rem;
  }
}
.services-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.section {
  position: relative;
  text-align: end;
  color: #ffffff !important;
}
.section h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.section .banner-text {
  position: absolute;
  top: 440px;
  left: 640px;
  padding: 20px;
}
.section img {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.32);
  margin-top: 70px;
  margin-bottom: 1rem;
  filter: brightness(0.5);
}

@media (max-width: 425px) {
  .section {
    position: relative;
  }
  .section img {
    width: 100vw;
    height: 220px;
    margin-top: 56px;
    border-radius: 6px;
  }
  .section .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 8px;
    z-index: 2;
  }
  .section .banner-text h1 {
    color: #ffffff !important;
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  }
}
html,
body {
  overflow-x: hidden;
  width: 100vw;
  max-width: 100%;
}

.section,
.aboutus-section,
.mision-section,
.vision-section,
.ethics-section,
.services-section,
.clients,
footer {
  font-family: "Open Sans", sans-serif;
  color: #000000;
  line-height: 1.7;
  letter-spacing: 0.01em;
  word-break: break-word;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Open Sans", sans-serif;
  color: #3498db;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

p,
li {
  font-size: 1.15rem;
  color: #333333;
  margin-bottom: 0.8rem;
}

@media (max-width: 320px) {
  h1,
  h2 {
    font-size: 1.3rem;
  }
  h3,
  h4 {
    font-size: 1.1rem;
  }
  p,
  li {
    font-size: 0.95rem;
  }
  img,
  .client-logo,
  .logo {
    max-width: 90vw;
    height: auto;
  }
}
@media (max-width: 375px) {
  h1,
  h2 {
    font-size: 1.5rem;
  }
  h3,
  h4 {
    font-size: 1.2rem;
  }
  p,
  li {
    font-size: 1rem;
  }
  img,
  .client-logo,
  .logo {
    max-width: 95vw;
    height: auto;
  }
}
@media (max-width: 425px) {
  h1,
  h2 {
    font-size: 1.7rem;
  }
  h3,
  h4 {
    font-size: 1.3rem;
  }
  p,
  li {
    font-size: 1.05rem;
  }
  img,
  .client-logo,
  .logo {
    max-width: 100vw;
    height: auto;
  }
}
@media (max-width: 600px) {
  h1,
  h2 {
    font-size: 2rem;
  }
  h3,
  h4 {
    font-size: 1.4rem;
  }
  p,
  li {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  h1,
  h2 {
    font-size: 2.2rem;
  }
  h3,
  h4 {
    font-size: 1.5rem;
  }
  p,
  li {
    font-size: 1.15rem;
  }
}
@media (max-width: 992px) {
  h1,
  h2 {
    font-size: 2.4rem;
  }
  h3,
  h4 {
    font-size: 1.6rem;
  }
  p,
  li {
    font-size: 1.18rem;
  }
}
@media (max-width: 1200px) {
  h1,
  h2 {
    font-size: 2.5rem;
  }
  h3,
  h4 {
    font-size: 1.7rem;
  }
  p,
  li {
    font-size: 1.2rem;
  }
}
img,
.client-logo,
.logo {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem auto;
  border-radius: 8px;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #3c56e7 #ffffff;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

main {
  padding: 0 2rem;
}

.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.logo {
  width: 120px;
  height: auto;
}

::-webkit-scrollbar {
  width: 8px;
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #3498db, #3355ff);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6d9afb;
}

/*# sourceMappingURL=main.css.map */
