@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Urbanist", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none;
}

h1 {
  color: #1C1C1C !important;
  font-weight: 700 !important;
  font-size: 48px !important;
  line-height: 150% !important;
  margin-bottom: 24px !important;
}
@media (max-width: 992px) {
  h1 {
    font-size: 32px !important;
    line-height: 140% !important;
  }
}

h2 {
  color: #1C1C1C !important;
  font-weight: 700 !important;
  font-size: 32px !important;
  line-height: 150% !important;
  margin-bottom: 24px !important;
}
@media (max-width: 992px) {
  h2 {
    font-weight: 600 !important;
    font-size: 28px !important;
    line-height: 140% !important;
  }
}

h3 {
  color: #1C1C1C !important;
  font-weight: 600 !important;
  font-size: 28px !important;
  line-height: 150% !important;
}
@media (max-width: 992px) {
  h3 {
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 140% !important;
  }
}

h4 {
  color: #1C1C1C !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  line-height: 150% !important;
}

h5 {
  color: #1C1C1C !important;
  font-weight: 500 !important;
  font-size: 20px !important;
  line-height: 150% !important;
}

p {
  color: #676767;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 24px !important;
}
@media (max-width: 992px) {
  p {
    font-size: 16px;
    line-height: 140%;
  }
}

.neo-radius {
  border-radius: 8px;
}

main {
  margin-top: 113px;
}

section {
  padding: 80px 0;
}
section.banner-section {
  padding: 24px 0 50px 0;
}
section > div.container > h2, section > div.container > p {
  text-align: center !important;
}

.neo-bg-secondary {
  background-color: #F7F7F7;
}

.anim-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.anim-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 0.05em;
  bottom: 0;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.anim-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.circle-bg {
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #275CAB;
  font-size: 24px;
  overflow: hidden;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-bg img {
  height: 45%;
  width: 45%;
  object-fit: contain;
}

.three-card-grid {
  padding-top: 8px;
}
.three-card-grid h3,
.three-card-grid p {
  text-align: center;
}
.three-card-grid p {
  font-size: 16px;
  font-weight: 400;
  color: #676767;
}
.three-card-grid ol {
  text-align: center;
  list-style-position: inside;
  margin: 0;
  padding: 0;
}
.three-card-grid ol li {
  font-size: 16px;
  font-weight: 400;
  color: #676767;
}

.image-center {
  height: 138px;
  width: 138px;
  margin: 0 auto;
}
.image-center img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.sub-banner {
  text-align: center;
  background-color: #F7F7F7;
  padding: 59px 0;
}
.sub-banner h1 {
  margin-bottom: 8px !important;
}
.sub-banner nav {
  width: fit-content;
  margin: 0 auto;
}
.sub-banner .breadcrumb-custom {
  align-items: center;
}
.sub-banner .breadcrumb-custom li a {
  color: #676767;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .sub-banner .breadcrumb-custom li a {
    font-size: 12px;
  }
}
.sub-banner .breadcrumb-custom li:last-child {
  color: #275CAB;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .sub-banner .breadcrumb-custom li:last-child {
    font-size: 12px;
  }
}

.neo-bg-secondary.p-5.neo-radius:hover {
  transition: all 0.3s ease;
  background-color: #275CAB;
}
.neo-bg-secondary.p-5.neo-radius:hover h5 {
  color: #fff !important;
}

.contact-form-map {
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.page-btn-list {
  margin-top: 32px;
  position: relative;
}
.page-btn-list ul {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.page-btn-list ul::-webkit-scrollbar {
  display: none;
}
.page-btn-list ul li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  font-weight: 600;
  background-color: transparent;
  border: 1px solid #275CAB;
  color: #275CAB;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .page-btn-list ul li a {
    width: 150px;
    white-space: wrap;
    font-weight: 500;
    font-size: 12px;
  }
}
.page-btn-list ul li a.active {
  background-color: #275CAB;
  color: #fff;
}
.page-btn-list ul li a:hover {
  background-color: #275CAB;
  color: #fff;
}
.page-btn-list > div {
  position: absolute;
  left: 0;
  top: 50%;
}
.page-btn-list > div button {
  border: none;
  background-color: #fff;
  font-size: 20px;
  border-radius: 50%;
  box-shadow: 0 0 50px 50px #fff;
  padding: 20px;
  transform: translate(0, -50%);
  z-index: 1;
}
.page-btn-list > div:last-of-type {
  left: auto;
  right: 0;
}

.not-found {
  height: 50vh;
  width: 50vw;
  margin: 0 auto 40px auto;
}
@media (max-width: 992px) {
  .not-found {
    height: 70%;
    width: 70%;
  }
}
@media (max-width: 768px) {
  .not-found {
    height: 100%;
    width: 100%;
  }
}
.not-found img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.not-found + h2 {
  margin-bottom: 8px !important;
}
.not-found + p {
  margin-bottom: 24px !important;
}

.neo-btn {
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  min-width: 160px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #275CAB;
}
.neo-btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.neo-btn span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.neo-btn:hover span {
  padding-right: 25px;
}
.neo-btn:hover span:after {
  opacity: 1;
  right: 0;
}
.neo-btn-primary {
  padding: 16px 22px;
  background-color: #275CAB;
  color: #fff;
}
.neo-btn-primary:hover {
  background-color: #F7F7F7;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4784313725);
}
.neo-btn-secondary {
  padding: 16px 22px;
  background-color: transparent;
  color: #275CAB;
}
.neo-btn-secondary:hover {
  background-color: #275CAB;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4784313725);
}
@media (max-width: 768px) {
  .neo-btn {
    padding: 10px 12px;
  }
}

.main-header {
  padding: 20px 0;
  border-bottom: 0.5px solid #676767;
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0;
  background-color: #fff;
}
.main-header .neo-menu-main {
  display: block;
}
@media (max-width: 1200px) {
  .main-header .neo-menu-main .neo-btn {
    min-width: fit-content;
    white-space: nowrap;
  }
}
@media (max-width: 992px) {
  .main-header .neo-menu-main {
    display: none;
  }
}
.main-header .nav-link {
  color: #676767;
}
@media (max-width: 1200px) {
  .main-header .nav-link {
    padding: 0.5rem;
  }
}
.main-header .nav-link.active {
  color: #275CAB;
}
.main-header .nav-link.active::after {
  color: #275CAB;
  transform: scaleX(1);
  transform-origin: bottom left;
}
.main-header .navbar-brand {
  padding: 0 !important;
}
.main-header .navbar-brand img {
  height: 72px;
}
.main-header button.hamberger {
  font-size: 32px;
  border: none;
  background-color: transparent;
  color: #000;
}

@media (max-width: 992px) {
  .banner-section h1,
  .banner-section p,
  .banner-section a {
    text-align: center;
    margin: 0 auto;
  }
}

.swiper-main {
  width: 628px;
  padding-bottom: 30px !important;
}
@media (max-width: 992px) {
  .swiper-main {
    width: 100%;
    margin-top: 32px;
  }
}
.swiper-main .swiper-slide {
  text-align: center;
}
.swiper-main .swiper-slide img {
  width: 628px !important;
  height: 504px !important;
  object-fit: contain;
}
@media (max-width: 992px) {
  .swiper-main .swiper-slide img {
    width: auto !important;
    height: 100% !important;
  }
}
.swiper-main .swiper-pagination {
  bottom: 0 !important;
}

.swiper-btn {
  color: #fff;
  width: 50px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.swiper-btn-prev {
  left: 0;
}
.swiper-btn-next {
  right: 0;
}
.swiper-btn.disabled {
  opacity: 0.5;
  background-color: #BDBDBD;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .swiper-btn {
    position: static;
    display: block;
    transform: translate(0, 0);
  }
}

.swiper-slider-main {
  position: relative;
}
.swiper-slider-main .three-card-slider.swiper {
  width: calc(100% - 150px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .swiper-slider-main .three-card-slider.swiper {
    width: 100%;
  }
}
.swiper-slider-main .three-card-slider .swiper-slide .card {
  border-radius: 10px;
  text-align: center;
}

.floating-cards {
  color: #676767;
}
.floating-cards .card-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  animation: floatCard 3s ease-in-out infinite;
}
.floating-cards .card-item .circle-bg {
  margin-bottom: 9px;
}
.floating-cards .card-item > div {
  text-align: center;
}
.floating-cards .card-item span {
  color: inherit;
}
@media (max-width: 768px) {
  .floating-cards > div {
    margin-bottom: 24px;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.running-logo {
  overflow: hidden;
  margin-top: 24px;
}
.running-logo > div img {
  width: 140px;
  height: 61px;
  object-fit: contain;
}

.card-icon-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.card-icon-content .circle-bg {
  width: 60px;
}
.card-icon-content .card-item {
  width: calc(33.33% - 16px);
  background-color: #F7F7F7;
  padding: 16px;
  border-radius: 8px;
  position: relative;
}
.card-icon-content .card-item div:first-child {
  margin-right: 12px;
}
.card-icon-content .card-item a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  border-radius: 8px;
  text-decoration: none;
  font-size: 32px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-icon-content .card-item a i {
  opacity: 0;
  transition: all 0.3s ease;
  transform: translate(0, 75px);
}
.card-icon-content .card-item a:hover {
  background-color: #275CAB;
  color: #fff;
}
.card-icon-content .card-item a:hover i {
  opacity: 1;
  transform: translate(0, 0);
}
.card-icon-content .card-item span {
  color: #676767;
}
@media (max-width: 992px) {
  .card-icon-content .card-item {
    width: 100%;
  }
}

.person-profile {
  border: 0.5px solid #BDBDBD;
  border-radius: 8px;
  padding: 32px;
}
.person-profile .person-profile_main {
  height: 503px;
  overflow: hidden;
  transition: all 1s ease;
}
.person-profile .person-profile_main.reverse > div > .row {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .person-profile .person-profile_main.reverse > div > .row {
    flex-direction: row;
  }
}
.person-profile .person-profile_main .person-profile_img {
  position: relative;
  border-radius: 100px;
  overflow: hidden;
}
.person-profile .person-profile_main .person-profile_img div {
  background-color: #E9EFF7;
  position: absolute;
  bottom: 0;
  height: 80%;
  width: 100%;
  border-radius: 100px;
  z-index: -1;
}
.person-profile .person-profile_main .person-profile_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.person-profile .person-profile_main .person-profile_content {
  overflow: hidden;
  padding-top: 98px;
}
@media (max-width: 768px) {
  .person-profile .person-profile_main .person-profile_content {
    padding-top: 20px;
  }
}
.person-profile .person-profile_main .person-profile_content .profile-title {
  display: flex;
  justify-content: end;
}
@media (max-width: 768px) {
  .person-profile .person-profile_main .person-profile_content .profile-title {
    justify-content: start;
  }
}
.person-profile .person-profile_main .person-profile_content .profile-title > div {
  width: fit-content;
}
.person-profile .person-profile_main .person-profile_content h2 {
  margin-bottom: 12px !important;
}
.person-profile .person-profile_main .person-profile_content h5 {
  margin-bottom: 16px !important;
}
.person-profile .person-profile_main .person-profile_content p:last-child {
  margin-bottom: 0 !important;
}
.person-profile .show-more {
  margin-top: 6px;
}
.person-profile .person-profile_content--card {
  background-color: #F7F7F7;
  padding: 24px;
  border-radius: 8px;
  height: 100%;
  position: relative;
}
.person-profile .person-profile_content--card p {
  margin: 0 !important;
}
.person-profile .person-profile_content--card .circle-bg {
  width: 60px;
  position: absolute;
  top: -36px;
}
.person-profile .person-profile_content--card .circle-bg ~ p {
  padding-top: 16px;
}
.person-profile .personal-more-details h3:first-child {
  margin-bottom: 30px !important;
}
.person-profile .personal-more-details ol li {
  color: #676767;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 0 !important;
}

.client-item {
  border-bottom: 0.36px solid #BDBDBD;
  border-right: 0.36px solid #BDBDBD;
  height: 208px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.client-item img {
  height: 60%;
  width: 60%;
  object-fit: contain;
}

.grid-card {
  border: 0.5px solid #BDBDBD;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.grid-card a {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.grid-card a:hover + div + div span {
  opacity: 1;
  margin-left: 10px;
}
.grid-card a:hover + div > img {
  transform: scale(1.3);
}
.grid-card div:first-of-type {
  height: 329px;
  overflow: hidden;
}
.grid-card div:first-of-type img {
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.grid-card div:last-child {
  background-color: #F7F7F7;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-card div:last-child h5 {
  margin: 0 !important;
}
.grid-card div:last-child span {
  transition: all 0.3s ease;
  display: block;
  font-size: 18px;
  margin-top: 4.5px;
  margin-left: -13px;
  opacity: 0;
}

.grid-card-v2 {
  background-color: blue;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  height: 220px;
}
.grid-card-v2 a {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.grid-card-v2 a:hover + div + div + div span {
  opacity: 1;
}
.grid-card-v2 a:hover + div + div {
  background: linear-gradient(0deg, rgb(0, 0, 0), transparent);
}
.grid-card-v2 a:hover + div > img {
  transform: scale(1.3);
}
.grid-card-v2 .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent);
}
.grid-card-v2 div:first-of-type {
  height: 100%;
}
.grid-card-v2 div:first-of-type img {
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.grid-card-v2 div:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 26px 16px;
  display: flex;
  justify-content: space-between;
}
.grid-card-v2 div:last-child p {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-bottom: 0 !important;
  text-align: start;
}
.grid-card-v2 div:last-child span {
  opacity: 0;
  position: relative;
  z-index: 1;
  color: #fff;
  white-space: nowrap;
  align-self: flex-end;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.img-container {
  height: 308px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}
.img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.content-section > *:not(:last-child) {
  margin-bottom: 24px !important;
}
.content-section > :last-child {
  margin-bottom: 0 !important;
}
.content-section > *:not(ul):not(ol):not(h2) {
  text-align: center;
}
.content-section ol {
  display: flex;
  flex-wrap: wrap;
  list-style-position: inside;
  padding-left: 0;
}
.content-section ol li {
  width: 50%;
  padding-left: 8px;
  color: #676767;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 768px) {
  .content-section ol li {
    width: 100%;
  }
}

.testimonial {
  padding: 60px 0;
  border-radius: 8px;
}
.testimonial h2 {
  text-align: center;
}
.testimonial .circle-logo {
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.7s ease;
  font-size: 24px;
  overflow: hidden;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .testimonial .circle-logo {
    width: 40px;
  }
}
.testimonial .circle-logo img {
  height: 45%;
  width: 45%;
  object-fit: contain;
  transition: all 0.7s ease;
}
.testimonial .circle-logo.active {
  box-shadow: 0 3px 24px 0 rgba(21, 51, 94, 0.3);
  border: 4px solid #275CAB;
  width: 100%;
}
.testimonial .circle-logo.active img {
  height: 75%;
  width: 75%;
  object-fit: contain;
}
.testimonial .testimonial-logos {
  display: flex;
  align-items: center;
  padding: 16px 0;
  margin: 0 auto;
  width: 396px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .testimonial .testimonial-logos {
    width: 300px;
  }
}
.testimonial .testimonial-logos .testimonial-item {
  transition: all 0.7s ease;
  transform: translate(-100%, 0);
}
.testimonial .testimonial-logos .testimonial-item > div {
  width: 112px;
  aspect-ratio: 1/1;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .testimonial .testimonial-logos .testimonial-item > div {
    width: 80px;
  }
}
.testimonial .testimonial-main {
  display: flex;
  overflow: hidden;
}
.testimonial .testimonial-main .testimonial-content {
  flex-shrink: 0;
  width: 100%;
  text-align: center;
  transition: all 0.7s ease;
  transform: translate(-100%, 0);
}
.testimonial .testimonial-main .testimonial-content > div {
  width: calc(100% - 200px);
  margin: 0 auto;
}
@media (max-width: 992px) {
  .testimonial .testimonial-main .testimonial-content > div {
    width: 100%;
  }
}
.testimonial .testimonial-main .testimonial-content > div p {
  margin-top: 32px;
  padding: 0 13px;
}
@media (max-width: 992px) {
  .testimonial .testimonial-main .testimonial-content > div p {
    padding: 0 6px;
  }
}
.testimonial .testimonial-main .testimonial-content > div p ~ div {
  align-self: self-end;
}
.testimonial .testimonial-main .testimonial-content > div img {
  vertical-align: super;
  width: 56px;
  height: 41px;
}
@media (max-width: 992px) {
  .testimonial .testimonial-main .testimonial-content > div img {
    width: 36px;
    height: 26px;
  }
}
.testimonial .testimonial-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.testimonial .pagination-dot {
  width: 10px;
  height: 10px;
  background-color: #BDBDBD;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.testimonial .pagination-dot.active {
  background-color: #275CAB;
}

.reach-out-form {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
}
.reach-out-form label {
  color: #676767;
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}
.reach-out-form input[type=text] {
  background-color: #F7F7F7;
  border: none;
  padding: 13px 16px;
  border-radius: 8px;
  width: 100%;
}
.reach-out-form input[type=email] {
  background-color: #F7F7F7;
  border: none;
  padding: 13px 16px;
  border-radius: 8px;
  width: 100%;
}
.reach-out-form input[type=number] {
  background-color: #F7F7F7;
  border: none;
  padding: 13px 16px;
  border-radius: 8px;
  width: 100%;
}
.reach-out-form input[type=submit] {
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  padding: 15px 22px;
  background-color: #275CAB;
  color: #fff;
  transition: all 0.3s ease;
}
.reach-out-form input[type=submit]:hover {
  color: #275CAB;
  background-color: #F7F7F7;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4784313725);
}
.reach-out-form select {
  background-color: #F7F7F7;
  border: none;
  padding: 13px 16px;
  border-radius: 8px;
  width: 100%;
  color: #888;
  appearance: none;
  background-image: url("/arrow-down.png");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
.reach-out-form select:valid {
  color: #000;
}
.reach-out-form textarea {
  background-color: #F7F7F7;
  border: none;
  padding: 13px 16px;
  border-radius: 8px;
  width: 100%;
}
.reach-out-form form {
  display: flex !important;
  flex-wrap: wrap !important;
}
.reach-out-form .neo-form-field {
  width: calc(50% - 12px);
}
.reach-out-form .neo-form-field.odd {
  margin-right: 12px;
  margin-left: 0 !important;
}
.reach-out-form .neo-form-field.even {
  margin-left: 12px;
  margin-right: 0 !important;
}
@media (max-width: 768px) {
  .reach-out-form .neo-form-field {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.neo-footer {
  background-color: #E9EFF7;
  padding: 80px 0;
}
.neo-footer .footer-logo {
  height: 101px;
  margin: 0 auto;
}
.neo-footer .footer-logo a {
  display: block;
  width: fit-content;
}
@media (max-width: 768px) {
  .neo-footer .footer-logo a {
    margin: 0 auto;
  }
}
.neo-footer ul li:not(:first-child) a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #1C1C1C;
  font-weight: 500;
  font-size: 14px;
}
.neo-footer ul li:not(:first-child) a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 0.05em;
  bottom: 0;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.neo-footer ul li:not(:first-child) a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.neo-footer ul li:not(:last-child) {
  margin-bottom: 12px;
}
.neo-footer ul li:first-child {
  margin-bottom: 8px;
}
.neo-footer ul li:first-child a {
  text-decoration: none;
  color: #1C1C1C;
  font-weight: 500;
  font-size: 20px;
}
.neo-footer p {
  color: #1C1C1C;
  font-weight: 500;
  font-size: 14px;
  white-space: pre-line;
}
.neo-footer .copyright-info {
  margin-top: 32px;
  text-align: center;
}

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