@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");
body {
  font-family: "Google Sans", sans-serif;
  color: #3C4046;
  letter-spacing: -5%;
}

.bg-text-color {
  background-color: #3C4046;
}

.bg-dark-blue {
  background-color: #104C9F;
}

.bg-blue {
  background-color: #219CD7;
}

.bg-light-blue {
  background-color: #C9EEFF;
}

.bg-lighter-blue {
  background-color: #ECF4F8;
}

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

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

.bg-black {
  background-color: #1e1e1e;
}

.text-text-color {
  color: #3C4046;
}

.text-dark-blue {
  color: #104C9F;
}

.text-blue {
  color: #219CD7;
}

.text-light-blue {
  color: #C9EEFF;
}

.text-lighter-blue {
  color: #ECF4F8;
}

.text-red {
  color: #E63725;
}

.text-white {
  color: #FFFFFF;
}

.text-black {
  color: #1e1e1e;
}

#mainNav {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
  z-index: 1000;
  padding-top: 36px;
  padding-bottom: 36px;
  transition: 0.5s ease;
  transition-property: background-color, box-shadow, padding;
}
#mainNav.scrolled {
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding-top: 25px;
  padding-bottom: 25px;
}
#mainNav.scrolled .logo {
  top: -25px;
}
#mainNav.scrolled .logo img {
  width: 60px;
}
#mainNav .logo {
  position: absolute;
  left: 12px;
  top: -36px;
  transition: 0.5s ease;
  transition-property: padding, top;
  background-color: #ECF4F8;
  padding: 15px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 6px), 0 100%);
}
#mainNav .logo img {
  width: 90px;
  height: auto;
  transition: 0.5s width ease;
}
#mainNav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#mainNav .container .navButton {
  display: none;
}
#mainNav .container .nav-collapse {
  margin-left: auto;
}
#mainNav .container .navList {
  display: flex;
  gap: 40px;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.link {
  line-height: 1.5;
  text-decoration: none;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100%/0px 1px no-repeat;
  transition: 0.3s background-size ease;
  background-position-x: right;
  color: currentColor;
}
.link:hover {
  background-size: 100% 1px;
  background-position-x: left;
}
.link.dblue {
  color: #104C9F;
}
.link.blue {
  color: #219CD7;
}
.link.red {
  color: #E63725;
}
.link.white {
  color: #FFFFFF;
}

#home .row {
  min-height: 100svh;
  padding-top: 100px;
  padding-bottom: 100px;
}
#home .row h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #219CD7;
}
#home .row h1 span {
  color: #104C9F;
}
#home .img-fluid {
  max-width: 200px;
  height: auto;
}

.mainBtn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #E63725;
  color: #FFFFFF;
  border: none;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}
.mainBtn:hover {
  background-color: #104C9F;
}

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

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

.pb-100 {
  padding-bottom: 100px;
}

#logo-slider img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.sectionTitle {
  margin-bottom: 35px;
  position: relative;
}
.sectionTitle h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #104C9F;
  margin-bottom: 0;
}
.sectionTitle h2 .smallTitle {
  display: block;
  font-size: 0.75rem;
  color: #E63725;
  text-transform: uppercase;
  letter-spacing: 50%;
  margin-top: 10px;
}
.sectionTitle::after {
  content: "";
  display: block;
  width: 80px;
  height: 10px;
  background-color: #E63725;
  margin: 15px 0 0;
  border-radius: 5px;
}
.sectionTitle.text-center::after {
  margin: 15px auto 0;
}
.sectionTitle.light h2 {
  color: #FFFFFF;
}

#clients .container {
  border-radius: 50px 50px 0 0;
  corner-shape: squircle;
}
#clients img {
  border-radius: 20px;
}

.imageCoverSection > div {
  display: grid;
}
.imageCoverSection > div .coverImg {
  display: grid;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

p:last-child {
  margin-bottom: 0;
}

.text-justify {
  text-align: justify;
}

.rounded-corners, .contactForm, .zebraList, .projectCard {
  border-radius: 45px;
  corner-shape: squircle;
}

.stat-section {
  text-align: center;
}
.stat-section > div:not(:last-child) {
  border-right: 1px solid #C0D9E5;
}
.stat-section > div {
  padding-top: 25px;
  padding-bottom: 25px;
}
.stat-section > div p {
  text-transform: uppercase;
  margin-bottom: 5px;
}
.stat-section > div h3 {
  font-size: 2.5rem;
  color: #1e1e1e;
  text-transform: uppercase;
  font-weight: 700;
}
.stat-section > div h3::after {
  content: attr(post-text);
}

.iconCard {
  padding: 20px;
}
.iconCard .icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  border-radius: 35px;
  display: grid;
  place-content: center;
  background-color: #104C9F;
}
.iconCard h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e1e1e;
}

.processList {
  margin-left: -12px;
  margin-right: -12px;
  display: flex;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  counter-set: processCounter;
}
.processList li {
  counter-increment: processCounter;
  flex: 0 0 20%;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
}
.processList li:before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-color: #104C9F;
  border-radius: 8px;
  margin-bottom: 15px;
}
.processList li:not(:last-child):after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #104C9F;
  position: absolute;
  top: 7px;
  left: 12px;
}
.processList li h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #E63725;
}
.processList li h4::before {
  content: "0" counter(processCounter);
  display: block;
  color: rgba(16, 76, 159, 0.2);
  font-size: 4rem;
}

.altCard {
  padding: 20px;
}
.altCard .mutedText {
  color: rgba(16, 76, 159, 0.2);
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}
.altCard h4 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #E63725;
}

.talentList {
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
  padding-left: 0;
  list-style-type: none;
  row-gap: 24px;
}
.talentList li {
  flex: 0 0 20%;
  padding-left: 12px;
  padding-right: 12px;
  display: grid;
}
.talentList li .altCard {
  display: grid;
  align-content: space-between;
}

.big-p {
  font-size: 1.25rem;
}

.iconList {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 35px;
  flex-direction: column;
}
.iconList li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.iconList li .icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-content: center;
}
.iconList li h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 0;
}

.lineList {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.lineList li {
  padding-top: 15px;
}
.lineList li:not(:last-child) {
  border-bottom: 1px solid #C0D9E5;
  padding-bottom: 15px;
}
.lineList li h5 {
  margin-bottom: 5px;
}

.projectCard {
  background-color: #FFFFFF;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 20px;
  transition-property: transform, box-shadow;
}
.projectCard:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.projectCard:hover span::after {
  transform: translate(2px, -2px);
}
.projectCard img {
  border-radius: 5px;
  aspect-ratio: 100/81;
  margin-bottom: 20px;
  width: 100%;
}
.projectCard h5 {
  margin-bottom: 5px;
  font-weight: 700;
  color: #104C9F;
}
.projectCard p {
  color: #3C4046;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.projectCard span {
  color: #E63725;
  display: inline-block;
  position: relative;
}
.projectCard span::after {
  content: "";
  display: inline-block;
  margin-left: 0px;
  margin-bottom: 0px;
  width: 10px;
  height: 10px;
  background-color: #E63725;
  transition: 0.3s transform ease;
  clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - 1px) 100%, calc(100% - 1px) 2px, 1px 100%, 0 calc(100% - 1px), calc(100% - 2px) 1px, 0 1px);
}

.zebraList {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.zebraList li {
  padding: 15px;
  background-color: #ECF4F8;
  display: flex;
  gap: 10px;
  align-items: center;
}
.zebraList li .icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 35px;
  display: grid;
  place-content: center;
  background-color: #104C9F;
}
.zebraList li:nth-child(odd) {
  background-color: #E0EAEF;
}
.zebraList li h5 {
  margin-bottom: 5px;
  font-weight: 700;
  color: #1e1e1e;
}
.zebraList li p {
  color: #3C4046;
  margin-bottom: 0;
}

.contactForm {
  border: 1px solid #dedede;
  padding: 30px;
}
.contactForm .z-lbl {
  display: block;
  margin-bottom: 5px;
  color: #1e1e1e;
}
.contactForm .z-inp {
  width: 100%;
  padding: 15px 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  border: 1px solid #f5f5f5;
  cursor: pointer;
}
.contactForm .z-inp:focus {
  outline: none;
  border-color: #219CD7;
  box-shadow: 0 0 0 3px #C9EEFF;
  background-color: #ECF4F8;
}
.contactForm select.z-inp {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 16px;
}

.floatingWhatsapp {
  background-color: #32d851;
  border-radius: 41px;
  bottom: 10px;
  right: 10px;
  padding: 0;
  width: 82px;
  height: 82px;
  position: fixed;
  z-index: 100;
  color: #FFFFFF;
  display: grid;
  place-content: center;
  text-decoration: none;
  font-size: 32px;
  transition: 0.3s background-color ease;
}
.floatingWhatsapp:hover {
  background-color: #24a33b;
}

@media (max-width: 991px) {
  .talentList {
    flex-wrap: wrap;
  }
  .talentList li {
    flex: 1 0 50%;
  }
}
@media (max-width: 768px) {
  .processList {
    flex-direction: column;
  }
  .processList li {
    flex: 0 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .processList li::before {
    position: absolute;
    left: 84px;
    top: 31px;
    margin-bottom: 0;
  }
  .processList li:not(:last-child):after {
    width: 2px;
    height: 100%;
    left: 91px;
    top: 38px;
  }
  .processList li h4 {
    padding-left: 100px;
  }
  .processList li h4::before {
    position: absolute;
    left: 0;
    top: 0;
    text-align: right;
  }
  .processList li p {
    padding-left: 100px;
  }
  footer .copy {
    text-align: center;
  }
  footer .copy .d-flex {
    order: -1;
  }
}
@media (max-width: 576px) {
  .talentList li {
    flex: 0 0 100%;
  }
  .processList {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  #mainNav .container .navButton {
    display: block;
    background: none;
    border: none;
    margin-left: auto;
    font-size: 1.5rem;
    color: #104C9F;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  #mainNav .container .navButton:hover {
    background-color: #ECF4F8;
  }
  #mainNav .container .nav-collapse {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #FFFFFF;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #mainNav .container .nav-collapse.open {
    right: 0;
  }
  #mainNav .container .nav-collapse .navList {
    flex-direction: column;
    gap: 20px;
  }
  #mainNav .container .nav-collapse .navList::before {
    content: "";
    display: block;
    width: 80px;
    height: 90px;
    background-image: url(../img/logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }
  #mainNav .container .nav-collapse .navList li a {
    color: #104C9F;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
  }
  #mainNav .container .nav-collapse .navList li a:hover {
    color: #E63725;
  }
  #mainNav.scrolled {
    padding-top: 9px;
    padding-bottom: 9px;
  }
  #mainNav.scrolled .logo {
    top: -9px;
  }
  .sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 576px) {
  #mainNav {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  #mainNav .logo {
    top: -16px;
  }
  #mainNav .logo img {
    width: 60px;
  }
  #mainNav.scrolled {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #mainNav.scrolled .logo {
    padding: 10px;
    top: -5px;
  }
  #mainNav.scrolled .logo img {
    width: 50px;
  }
  footer {
    padding-bottom: 44px;
  }
  .floatingWhatsapp {
    width: 100%;
    height: auto;
    right: 0px;
    bottom: 0px;
    border-radius: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 20px 0;
  }
  .floatingWhatsapp::before {
    content: "WhatsApp";
    order: 2;
  }
  #home .row h1 {
    font-size: 2.5rem;
  }
  .sectionTitle h2 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=main.css.map */