@font-face {
  font-family: "gilroy";
  src: url("../fonts/gilroy/Gilroy-Regular.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "gilroy";
  src: url("../fonts/gilroy/Gilroy-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "gilroy";
  src: url("../fonts/gilroy/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "gilroy";
  src: url("../fonts/gilroy/Gilroy-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
:root {
  --gilroy: "gilroy", sans-serif;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.3;
  font-family: var(--gilroy);
  font-weight: 400;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

body.show-menu {
  overflow: hidden;
}
body.show-menu .sidebar-menu-bg {
  opacity: 1;
  visibility: visible;
}
body.show-menu .sidebar-menu {
  transform: translateX(0);
  opacity: 1;
}

main .subtitle {
  font-size: clamp(18px, 2vw, 24px);
  font-family: var(--gilroy);
  font-weight: 500;
  color: #175ACE;
  display: inline-flex;
  gap: 15px;
}
main .subtitle::before {
  content: "";
  display: block;
  width: 50px;
  border-top: 2px solid #175ACE;
  margin-top: 15px;
}
main .primary-title {
  font-size: clamp(36px, 3vw, 42px);
  font-family: var(--gilroy);
  font-weight: 500;
}
main .primary-title span {
  color: #175ACE;
}
main .primary-title.lg {
  font-size: clamp(38px, 4vw, 62px);
}
main .primary-title.light {
  color: #fff;
}
main .desc {
  font-size: 16px;
  font-family: var(--gilroy);
  font-weight: 500;
  color: #000;
}
main .desc.fw-400 {
  font-weight: 400;
}
main .desc.light {
  color: #fff;
}
main .primary-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #175ACE;
  font-size: 16px;
  font-family: var(--gilroy);
  font-weight: 400;
  color: #fff;
  border: 0;
  outline: 0;
}
main .primary-btn.light {
  color: #000;
  background-color: #fff;
}
main .primary-btn.dark {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
main .primary-btn.disabled {
  opacity: 0.7;
  pointer-events: none;
}
main .close-menu,
main .open-menu {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
  border-radius: 8px;
  background-color: #175ACE;
}
main .sidebar-menu-bg {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 18;
}
main .sidebar-menu {
  position: fixed;
  inset: 0;
  background-color: #fff;
  max-width: 450px;
  transform: translateX(-110%);
  opacity: 0;
  transition: 0.3s;
  z-index: 20;
}
main .sidebar-menu .head {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #ddd;
  align-items: center;
  padding: 0 15px;
}
main .sidebar-menu .head img {
  width: 300px;
}
main .sidebar-menu .body {
  padding: 20px 15px;
  overflow: auto;
  height: calc(100dvh - 90px);
}
main .sidebar-menu .body a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
main .sidebar-menu .body a::before {
  content: "";
  display: block;
  width: 0;
  border-top: 2px solid #175ACE;
}
main .sidebar-menu .body a.active::before {
  width: 20px;
}
main .home-banner-video {
  position: relative;
}
main .home-banner-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
main .home-banner-video video {
  width: 100%;
  max-height: 690px;
  min-height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
main .home-banner-video > img {
  width: 100%;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
main .home-banner-video.banner::after {
  display: none;
}
main .sec-margin {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  main .sec-margin {
    margin-bottom: 60px;
  }
}
main .home-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 0;
  z-index: 1;
}
main .home-banner .home-banner-content {
  text-align: center;
  padding-top: 100px;
}
main .home-banner .home-banner-content .home-banner-subtitle {
  font-size: clamp(22px, 3vw, 36px);
  color: #fff;
  font-family: var(--gilroy);
  font-weight: 500;
  margin-bottom: 15px;
}
main .home-banner .home-banner-content .home-banner-title {
  font-size: clamp(34px, 5vw, 68px);
  color: #fff;
  font-family: var(--gilroy);
  font-weight: 600;
  margin-bottom: 15px;
}
main .home-banner .home-banner-content .home-banner-title span {
  color: #175ACE;
}
main .home-banner .home-banner-content .home-banner-desc {
  font-size: clamp(14px, 2vw, 16px);
  color: #fff;
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  main .home-banner .home-banner-content {
    padding-top: 50px;
  }
}
main .home-banner .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 30px;
  background-color: #fff;
  border-radius: 8px;
}
main .home-banner .header-main .menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
main .home-banner .header-main .menu a {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
main .home-banner .header-main .menu a.active::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 8px;
  background-color: #175ACE;
}
main .home-banner .header-main .menu a.primary {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 500;
  background-color: #175ACE;
  border-radius: 8px;
  color: #fff;
}
@media screen and (max-width: 600px) {
  main .home-banner .header-main {
    padding: 15px;
  }
  main .home-banner .header-main img {
    width: 250px;
  }
}
main .services-section .services-card {
  position: relative;
  max-width: 310px;
  margin: auto;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 2px 2px 28px rgba(54, 33, 33, 0.15);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 0;
}
main .services-section .services-card > div {
  position: relative;
  z-index: 2;
}
main .services-section .services-card::after {
  content: "";
  position: absolute;
  width: 1000px;
  height: 1000px;
  top: 100%;
  left: 100%;
  border-radius: 1000px;
  background-color: #175ACE;
  transition: 0.4s;
  opacity: 0;
  z-index: 1;
}
main .services-section .services-card span {
  display: inline-block;
  margin-bottom: 30px;
}
main .services-section .services-card span svg,
main .services-section .services-card span path {
  transition: 0.4s;
}
main .services-section .services-card:hover::after {
  top: -50%;
  left: -50%;
  opacity: 1;
}
main .services-section .services-card:hover span path {
  fill: #fff;
}
main .services-section .services-card:hover h5 {
  color: #fff;
}
main .services-section .services-card:hover p {
  color: #fff;
}
main .services-section .services-card h5 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2vw, 26px);
  font-family: var(--gilroy);
  font-weight: 500;
  transition: 0.3s;
}
main .services-section .services-card p {
  font-size: 18px;
  font-family: var(--gilroy);
  font-weight: 400;
  transition: 0.3s;
  margin: 0;
}
main .our-catalyst {
  position: relative;
  padding: 100px 0;
  background-color: #000;
  overflow: hidden;
}
main .our-catalyst .our-catalyst-br {
  position: absolute;
  right: -13%;
  bottom: -13%;
  z-index: 0;
}
main .our-catalyst .primary-title {
  font-weight: 400;
}
main .our-catalyst .primary-title,
main .our-catalyst .desc,
main .our-catalyst .primary-btn {
  position: relative;
  z-index: 1;
}
main .our-catalyst .our-catalyst-img {
  position: relative;
  display: inline-block;
}
main .our-catalyst .our-catalyst-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 120%;
  background-color: rgba(23, 90, 206, 0.35);
  filter: blur(100px);
  z-index: 0;
}
main .our-catalyst .our-catalyst-img img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  main .our-catalyst {
    padding: 60px 0;
  }
  main .our-catalyst .our-catalyst-br {
    right: -200px;
    bottom: -200px;
  }
}
main .our-clients .swiper-slide.swiper-slide-active .client-card {
  padding: 40px;
  background-color: #175ACE;
}
main .our-clients .swiper-slide.swiper-slide-active .client-card p {
  color: #fff;
}
main .our-clients .swiper-slide.swiper-slide-active .client-card .client-info div span:nth-child(2) {
  font-size: 18px;
  font-family: var(--gilroy);
  font-weight: 500;
  color: #fff;
}
main .our-clients .swiper-slide.swiper-slide-active .client-card .client-info div span:nth-child(3) {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6666666667);
}
main .our-clients .client-card {
  padding: 20px;
  border-radius: 8px;
  height: 100%;
  background-color: rgba(23, 90, 206, 0.05);
  transition: 0.3s;
}
main .our-clients .client-card p {
  color: #2D2D2D;
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--gilroy);
  font-weight: 500;
  margin-bottom: 40px;
}
main .our-clients .client-card .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
main .our-clients .client-card .client-info > img {
  width: 65px;
  height: 65px;
  min-width: 65px;
}
main .our-clients .client-card .client-info > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
main .our-clients .client-card .client-info > div span {
  display: block;
}
main .our-clients .client-card .client-info > div span:nth-child(2) {
  font-size: 16px;
  font-family: var(--gilroy);
  font-weight: 500;
  color: #000;
}
main .our-clients .client-card .client-info > div span:nth-child(3) {
  font-size: 12px;
  color: #ccc;
}
main .our-clients .client-card .client-info > div > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
main .our-clients .arrows-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
main .our-clients .arrows-slider-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  box-shadow: 2px 2px 28px rgba(54, 33, 33, 0.15);
}
main .our-clients .arrows-slider-wrapper .swiper-slider {
  flex: 1;
}
@media screen and (max-width: 550px) {
  main .our-clients .arrows-slider-wrapper .arrows-slider-arrow {
    display: none;
  }
}
main .faq .faq-qa {
  margin-bottom: 20px;
}
main .faq .faq-qa .faq-q {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 5px;
  margin-bottom: 10px;
}
main .faq .faq-qa .faq-q > div {
  max-width: 620px;
  font-size: clamp(18px, 2vw, 24px);
  font-family: var(--gilroy);
  font-weight: 400;
}
main .faq .faq-qa .faq-q span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 44px;
  background-color: #175ACE;
  cursor: pointer;
}
main .faq .faq-qa .faq-q span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  border-top: 2px solid #fff;
}
main .faq .faq-qa .faq-q span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 15px;
  border-top: 2px solid #fff;
  transition: 0.3s;
}
main .faq .faq-qa .faq-q.show span::after {
  transform: translate(-50%, -50%) rotate(0);
}
main .faq .faq-qa .faq-a {
  overflow: hidden;
  transition: height 0.5s ease;
  height: 0;
}
main .faq .faq-qa .faq-a p {
  max-width: 620px;
  font-size: clamp(18px, 2vw, 24px);
  font-family: var(--gilroy);
  font-weight: 300;
}
main .states {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  box-shadow: 1px 1px 28px rgba(54, 33, 33, 0.1);
  padding: 25px 50px;
  border-radius: 8px;
}
main .states > div span {
  font-size: 16px;
  font-weight: 400;
  color: #175ACE;
  display: block;
  margin-bottom: 10px;
}
main .states > div .primary-title {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  main .states {
    flex-wrap: wrap;
  }
  main .states > div {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 450px) {
  main .states {
    justify-content: center;
    text-align: center;
  }
  main .states > div {
    width: 100%;
  }
}
main .how-we-work {
  position: relative;
  padding: 100px 0;
  background-color: #000;
  overflow: hidden;
}
main .how-we-work::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -400px;
  transform: translateY(-50%);
  width: 490px;
  height: 490px;
  border-radius: 490px;
  background-color: rgba(23, 90, 206, 0.35);
  filter: blur(140px);
}
main .how-we-work::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -400px;
  transform: translateY(-50%);
  width: 490px;
  height: 490px;
  border-radius: 490px;
  background-color: rgba(23, 90, 206, 0.35);
  filter: blur(140px);
}
main .how-we-work .primary-title {
  font-weight: 400;
}
main .how-we-work .desc {
  font-weight: 300;
}
main .how-we-work .how-we-work-cards {
  display: flex;
  flex-wrap: wrap;
}
main .how-we-work .how-we-work-cards .how-we-work-card {
  flex: 1;
  padding: 20px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main .how-we-work .how-we-work-cards .how-we-work-card:not(:first-child) {
  margin-inline-start: -30px;
}
main .how-we-work .how-we-work-cards .how-we-work-card img {
  max-width: 150px;
  margin: auto;
  margin-bottom: 20px;
}
main .how-we-work .how-we-work-cards .how-we-work-card .how-we-work-title {
  max-width: 150px;
  margin: auto;
  color: #fff;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}
@media screen and (max-width: 992px) {
  main .how-we-work .how-we-work-cards .how-we-work-card {
    position: relative;
    right: -10px;
    flex: unset;
    width: 50%;
    padding: 30px 15px;
    margin: -5px !important;
  }
}
@media screen and (max-width: 768px) {
  main .how-we-work .how-we-work-cards .how-we-work-card img {
    width: 70px;
  }
}
@media screen and (max-width: 768px) {
  main .how-we-work {
    padding: 60px 0;
  }
}
main .industries-card {
  border-radius: 20px;
  background-color: rgba(23, 90, 206, 0.05);
  overflow: hidden;
  margin-bottom: 50px;
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
}
main .industries-card > img {
  width: 100%;
}
main .industries-card .content {
  flex: 1;
  padding: 25px 15px;
  border: 1px solid rgba(23, 90, 206, 0.2);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
main .industries-card .content img {
  width: 45px;
  margin-bottom: 10px;
}
main .industries-card .content h5 {
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  color: #000;
  margin-bottom: 10px;
}
main .industries-card .content p {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  font-size: 16px;
}
main .contact-us {
  position: relative;
  padding: 80px 0;
  background-color: #000;
  overflow: hidden;
}
main .contact-us::before {
  content: "";
  position: absolute;
  top: -350px;
  right: -350px;
  width: 560px;
  height: 560px;
  background-color: rgba(23, 90, 206, 0.35);
  filter: blur(100px);
  z-index: 0;
}
main .contact-us::after {
  content: "";
  position: absolute;
  left: -350px;
  bottom: -350px;
  width: 560px;
  height: 560px;
  background-color: rgba(23, 90, 206, 0.35);
  filter: blur(100px);
  z-index: 0;
}
main .contact-us .row {
  position: relative;
  z-index: 1;
}
main .contact-us .contact-form label {
  font-family: var(--gilroy);
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
main .contact-us .contact-form .input {
  position: relative;
  margin-bottom: 25px;
}
main .contact-us .contact-form .input textarea,
main .contact-us .contact-form .input input {
  display: block;
  border: 0;
  outline: 0;
  width: 100%;
  padding: 10px 20px;
  height: 55px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.05);
}
main .contact-us .contact-form .input textarea {
  height: auto;
}
main .contact-us .contact-form .input .error {
  font-size: 14px;
  color: red;
  font-family: var(--gilroy);
  font-weight: 500;
  display: none;
  margin-top: 4px;
}
main .contact-us .contact-form .input.error input,
main .contact-us .contact-form .input.error textarea {
  border-color: red;
}
main .contact-us .contact-form .input.error .error {
  display: block;
}
main .case-studies {
  padding: 100px 0;
  background-color: #000;
}
main .case-studies .case-studies-card {
  display: block;
}
main .case-studies .case-studies-card .img img {
  width: 100%;
}
main .case-studies .case-studies-card .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 25px;
}
main .case-studies .case-studies-card .content .card-title {
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
  margin-bottom: 10px;
  font-weight: 400;
}
main .case-studies .case-studies-card .content .card-desc {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
main .case-studies-detail {
  padding: 200px 0 60px 0;
}
main .case-studies-detail .subtitle {
  font-size: 13px;
  margin-bottom: 35px;
}
main .case-studies-detail .subtitle::before {
  margin-top: 8px;
}
main .case-studies-detail .primary-title {
  font-size: clamp(36px, 4vw, 48px);
}
main .case-studies-detail .project-detail-tags {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
main .case-studies-detail .project-detail-tags li {
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  background: rgba(0, 0, 0, 0.03);
  padding: 4px 14px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
main .case-studies-detail .embrace-tags span {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #175ACE;
  gap: 5px;
  background-color: rgba(23, 90, 206, 0.05);
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 14px;
  font-family: Gilroy;
  font-weight: 500;
}
main .case-studies-detail .embrace-tags span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #175ACE;
}
main .case-studies-detail .desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.55);
}
main .case-studies-detail .desc1 {
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 30px;
}
main .case-studies-detail .desc2 {
  font-size: clamp(18px, 2vw, 24px);
}
main .case-studies-detail .project-info-box {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}
main .case-studies-detail .project-info-box {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px;
}
main .case-studies-detail .project-info-box ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
main .case-studies-detail .project-info-box ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
main .case-studies-detail .flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
main .case-studies-detail .project-info-box ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
main .case-studies-detail .project-info-box ul li .project-info-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main .case-studies-detail .project-info-box ul li p,
main .case-studies-detail .project-info-box ul li h6 {
  color: #000;
}
main .case-studies-detail .project-info-box ul li .project-info-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 20px;
}
main .case-studies-detail .project-info-box ul li .project-info-tags span {
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  background: #fff;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
main .case-studies-detail .statistics-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px 0;
  border-top: 1px solid #EDEDED;
}
main .case-studies-detail .statistics-item .count {
  color: #175ACE;
  font-weight: 400;
  line-height: 1;
  font-size: clamp(42px, 6vw, 80px);
}
main .case-studies-detail .statistics-item .info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}
main .case-studies-detail .statistics-item .item-subtitle {
  font-size: 20px;
  color: #303030;
  font-weight: 300;
  text-align: right;
}
main .case-studies-detail .statistics-item .item-title {
  font-size: 24px;
  color: #303030;
  font-weight: 400;
  max-width: 500px;
}
main .case-studies-detail .vision-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-top: 30px;
}
main .case-studies-detail .vision-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  padding: 20px 0;
}
main .case-studies-detail .vision-list li:not(:first-child) {
  border-top: 1px solid #EDEDED;
}
main .case-studies-detail .vision-list li::before {
  content: "";
  display: block;
  width: 8px;
  min-width: 8px;
  height: 8px;
  background-color: #175ACE;
}
main footer {
  background-color: #175ACE;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  margin-top: 180px;
  padding-bottom: 50px;
}
main footer .footer-top {
  position: relative;
  top: -100px;
  text-align: center;
  background-image: url("../images/footer-top.png");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right;
  padding: 50px 20px;
  border-radius: 16px;
  overflow: hidden;
  z-index: 0;
}
main footer .footer-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000 45%, rgba(0, 0, 0, 0.2) 78%);
  z-index: 1;
}
main footer .footer-top > div {
  position: relative;
  z-index: 2;
}
main footer .footer-top .primary-title {
  max-width: 700px;
  margin: auto;
  margin-bottom: 20px;
}
main footer .desc {
  max-width: 380px;
}
main footer .social-media {
  display: flex;
  gap: 14px;
}
main footer .social-media a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 4px;
  background-color: #fff;
}
main footer .social-media a img {
  width: 26px;
}
main footer .input {
  position: relative;
  margin-bottom: 20px;
}
main footer .input textarea,
main footer .input input {
  display: block;
  border: 0;
  outline: 0;
  width: 100%;
  padding: 10px 20px;
  height: 55px;
  border-radius: 8px;
  color: #000;
  font-weight: 500;
  border: 1px solid #fff;
}
main footer .input textarea {
  height: auto;
}
main footer .input .error {
  font-size: 14px;
  color: red;
  font-family: var(--gilroy);
  font-weight: 500;
  display: none;
  margin-top: 4px;
}
main footer .input.error input {
  border-color: red;
}
main footer .input.error .error {
  display: block;
}/*# sourceMappingURL=style.css.map */