@charset "UTF-8";
@font-face {
  font-family: "OpenSans";
  src: url("../../assets/fonts/OpenSans-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../../assets/fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../../assets/fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.header {
  max-width: 1500px;
  margin: auto;
  background-color: #023E8A;
  color: #F9FAFB;
  height: 9.24rem;
}
@media screen and (min-width: 1025px) {
  .header {
    height: 10.96rem;
  }
}
@media screen and (min-width: 761px) and (max-width: 1024px) {
  .header {
    height: 11.099rem;
  }
}
.header__contact {
  text-align: center;
  padding: 2rem 0;
}
@media screen and (min-width: 1025px) {
  .header__contact {
    padding: 0.85rem 3.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: unset !important;
    margin-bottom: 1.1rem;
  }
}
@media screen and (max-width: 760px) {
  .header__contact {
    padding: 1.5rem 0;
  }
}
.header__contact > h1 {
  font-size: 2rem;
  margin: 0;
  color: #F9FAFB;
}
@media screen and (max-width: 760px) {
  .header__contact > h1 {
    font-size: 1.5rem;
  }
}
.header__contact--info {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header__contact--info {
    display: flex;
  }
}
.header__contact--info > div {
  display: flex;
  gap: 1rem;
}
.header__contact--info > div:last-child {
  margin-left: 2rem;
}
.header__contact--info > div > img {
  width: 3rem;
}
.header__contact--info > div > div {
  display: flex;
  flex-direction: column;
}
.header__contact--info > div > div > h2 {
  font-size: 1rem;
  margin-top: 0;
  color: #F9FAFB;
}
.header__contact--info > div > div > p, .header__contact--info > div > div a {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}
.header__contact--info > div > div a {
  display: block;
  text-decoration: none;
  color: #F9FAFB;
}
.header__contact--info > div > div a:hover {
  border-bottom: 1px solid #C2410C;
  color: #C2410C;
  transition: 0.2s;
}
.header__contact--info > div > div a:focus, .header__contact--info > div > div a:focus-visible {
  outline: 3px solid #F9FAFB !important;
}

.nav {
  background-color: #023E8A;
  padding: 0;
  transition: 0.5s;
}
@media screen and (max-width: 760px) {
  .nav {
    position: relative;
  }
}
.nav > div {
  background-color: #F2F6FB;
  margin: auto;
  padding: 0.5rem 2rem;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .nav > div {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    margin: unset;
  }
}
@media screen and (min-width: 1025px) {
  .nav > div {
    padding: 0.7rem 3.75rem;
  }
}
.nav > div > h2 {
  margin: 0;
  display: none;
}
@media screen and (max-width: 760px) {
  .nav > div > h2 {
    display: block;
    color: #111827;
  }
}
.nav__list {
  list-style: none;
  padding: 0;
  display: flex;
  margin-right: auto;
  gap: 3rem;
}
@media screen and (max-width: 760px) {
  .nav__list {
    flex-direction: column;
    gap: unset;
    position: absolute;
    z-index: 2;
    top: 4.09rem;
    left: 0;
    background-color: #F9FAFB;
    width: 100%;
    padding: 2rem 2rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 760px) {
  .nav__list > li {
    border-bottom: 1px solid #111827;
    padding: 4% 0;
  }
}
.nav__list > li:last-child {
  border-bottom: unset;
}
.nav__list > li a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
}
.nav__list > li a:hover {
  padding-bottom: 0.5rem;
  cursor: pointer;
  border-bottom: 1px solid #1F4E79;
  transition: 0.2s;
  color: #1F4E79;
}
.nav__list--contain {
  display: flex;
  align-items: center;
  margin: 0 1rem;
}
.nav__btn {
  color: #111827;
  border: 3px solid #111827;
  margin-left: auto;
  padding: 0.5rem 1.5rem;
  transition: 0.7s;
}
@media screen and (max-width: 760px) {
  .nav__btn {
    display: none;
  }
}
.nav__btn:hover {
  color: #F9FAFB;
  background-color: #111827;
  border: 3px solid #111827;
}
.nav__hamburger:focus {
  border: 2px solid #111827;
  outline-offset: 3px;
}
.nav__hamburger--close1 {
  transform: rotate(0);
}
.nav__hamburger--0 {
  transform: rotate(45deg);
}
.nav__hamburger--close2 {
  transform: translateX(0);
  opacity: 1;
}
.nav__hamburger--1 {
  opacity: 0;
  transform: translateX(20px);
}
.nav__hamburger--close3 {
  transform: rotate(0);
}
.nav__hamburger--2 {
  transform: rotate(-45deg);
}
.nav__hamburger--button {
  display: none;
}
@media screen and (max-width: 760px) {
  .nav__hamburger--button {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
}
.nav__hamburger--button:focus {
  outline: none;
}
.nav__hamburger--button div {
  width: 2rem;
  height: 0.25rem;
  background-color: #111827;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
.nav__hamburger--notActive {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0s 0.5s;
}
.nav__hamburger--isActive {
  opacity: 1;
  transition: opacity 0.5s ease-in-out, visibility 0s 0s;
  visibility: visible;
}

.sticky {
  position: fixed;
  width: 100%;
  max-width: 1500px;
  left: auto;
  right: auto;
  top: 0;
  padding: 0;
  z-index: 999;
}

.hero {
  max-width: 1500px;
  margin: auto;
  position: relative;
}
.hero__content {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #F9FAFB;
  padding: 0 3.75rem;
}
@media screen and (max-width: 760px) {
  .hero__content {
    padding: 1.5rem 2rem;
  }
}
.hero__content > h2 {
  font-size: 3.75rem;
  line-height: 4.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 761px) and (max-width: 1024px) {
  .hero__content > h2 {
    font-size: 2rem;
    line-height: 3.5rem;
  }
}
@media screen and (max-width: 760px) {
  .hero__content > h2 {
    font-size: 3rem;
    line-height: 3.6rem;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 120%;
    margin-bottom: 1rem;
  }
}
.hero__content > p {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: normal;
}
@media screen and (max-width: 760px) {
  .hero__content > p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: normal;
    width: unset;
  }
}
.hero__img {
  aspect-ratio: 4/2;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(50%);
}
@media screen and (max-width: 760px) {
  .hero__img {
    aspect-ratio: 4/2.35;
  }
}

/* Animation for hero header BEGIN*/
.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-5-14 17:41:19
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
/* Animation for hero header END*/
/* Animation for service cards BEGIN */
.shadow-drop-center:hover {
  animation: shadow-drop-center 0.5s ease-in-out both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-5-16 17:42:37
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation shadow-drop-center
 * ----------------------------------------
 */
@keyframes shadow-drop-center {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 20px 0px #E5E7EB;
  }
}
/* Animation for service cards END */
.footer {
  background-color: #111827;
  color: #F9FAFB;
  margin: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  max-width: 1500px;
  padding: 3.75rem 3.75rem;
}
@media screen and (max-width: 760px) {
  .footer {
    padding: 2.5rem 2rem;
  }
}
.footer__header > p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.footer__slogan {
  font-size: 1.2rem !important;
  margin-bottom: 0.5rem !important;
}
.footer__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: normal;
  font-size: 2rem !important;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 600;
}
.footer__content {
  display: flex;
  gap: 5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 761px) and (max-width: 1024px) {
  .footer__content {
    gap: 3rem;
  }
}
@media screen and (max-width: 760px) {
  .footer__content {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .footer__contact {
    margin-left: 10rem;
  }
}
.footer__contact > h2 {
  font-size: 1rem !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: normal !important;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 600;
}
.footer__list {
  list-style: none;
  padding: 0;
}
.footer__list > li:first-child {
  margin-bottom: 1.5rem;
}
.footer__list--item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__list--item img {
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 760px) {
  .footer__list--item img {
    display: none;
  }
}
.footer__list--info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.footer__list--info h3 {
  font-size: 0.875rem;
  margin-top: 0;
}
.footer__list--info a, .footer__list--info p {
  margin: 0;
  font-size: 0.875rem;
  color: #F9FAFB;
}
.footer__quickLinks h2 {
  font-size: 1rem !important;
  margin-top: 0 !important;
  line-height: normal !important;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 600;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.footer__links > li a {
  color: #F9FAFB;
  font-size: 0.875rem;
}
.footer__license {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid #F9FAFB;
  padding-top: 1rem;
}
.footer__license p {
  margin: 0;
}
.footer__license a {
  color: #F9FAFB;
}
.footer__license img {
  width: 2rem;
  height: 2rem;
}
.footer__links > li a:focus, .footer__list--info a:focus, .footer__license a:focus {
  outline: 3px solid #F9FAFB !important;
  outline-offset: 2px;
}

.hero {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
  background-image: url("/assets/images/handshake-services.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 760px) {
  .hero {
    padding: 50px 0;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}
.hero h2 {
  color: #F9FAFB;
  border-bottom: 1px solid #F9FAFB;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.5rem !important;
  font-size: 3.75rem;
  line-height: 4.5rem;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .hero h2 {
    font-size: 2.5rem;
    font-size: 3rem;
    line-height: 3.6rem;
    font-weight: 700;
  }
}

.services {
  margin: auto;
  max-width: 1500px;
}
.services > div:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  flex-direction: column;
  padding: 3.75rem 3.75rem;
}
@media screen and (max-width: 760px) {
  .services > div:first-child {
    padding: 2.5rem 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .services > div:first-child {
    flex-direction: row;
  }
}
.services__card {
  padding: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-top: 3px solid rgba(194, 65, 12, 0.4);
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}
.services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-top-color: #C2410C;
  background: linear-gradient(180deg, rgba(31, 78, 121, 0.03), transparent), #F9FAFB;
}
@media screen and (min-width: 1025px) {
  .services__card {
    flex: 0 1 calc(50% - 1rem);
    width: initial;
  }
}
.services__header {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.services__header h3 {
  position: relative;
}
.services__header h3::after {
  background-color: #C2410C;
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 2px;
  content: "";
}
.services__icon {
  aspect-ratio: 1;
  clip-path: shape(from 87.99% 37.99%, curve to 87.99% 62.01% with 100% 50%, line to 62.01% 87.99%, curve to 37.99% 87.99% with 50% 100%, line to 12.01% 62.01%, curve to 12.01% 37.99% with 0% 50%, line to 37.99% 12.01%, curve to 62.01% 12.01% with 50% 0%);
  background: #EEF3F8;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, color 0.25s ease;
}
.services__icon:hover {
  transform: scale(1.05);
  background-color: #C2410C;
}
.services__icon img {
  width: 2rem;
}
.services__list {
  list-style: none;
  padding-left: 1rem;
}
.services__list li {
  margin: 0.5rem 0;
  transition: color 0.25s ease;
}
.services__list li::before {
  content: "➤";
  margin-right: 0.5rem;
  color: #C2410C;
}
.services__list li:hover {
  color: #C2410C;
}
.services p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.services__contact {
  background-color: #C2410C;
  color: #F9FAFB;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.75rem 3.75rem;
}
@media screen and (max-width: 760px) {
  .services__contact {
    padding: 2.5rem 2rem;
  }
}
.services__contact h2 {
  margin: 0;
}
.services__contact p {
  margin: 1rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.services__contact a {
  background-color: #F9FAFB;
  color: #1F4E79;
  border: 3px solid #1F4E79;
  padding: 14px 24px;
  transition: 0.7s;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem !important;
  font-size: 0.875rem;
  line-height: 1.6rem;
  font-weight: 700;
}
.services__contact a:hover {
  background-color: #1F4E79;
  color: #F9FAFB;
  border-color: #111827;
}/*# sourceMappingURL=service.css.map */