@import "../../vendors/outfit-font/css/style.css";
@import "colors.css";

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

body {
  font-family: Outfit, sans-serif;
  line-height: 1.26;
}
.about-section {
  position: relative;
  margin: 80px;
  padding: 80px 100px;
  text-align: center;
  border-radius: 16px;
  background-color: var(--grey-white);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-text {
  margin-top: 20px;
  max-width: 820px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--subtitle);
}

.about-image {
  position: absolute;
  bottom: -51px;
  right: 0;
}

.advantages-section {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 80px 120px;
}

.advantages-bg-1 {
  position: absolute;
  right: 28px;
  top: -57px;
}

.advantages-bg-2 {
  position: absolute;
  left: 0;
  bottom: -144px;
}

.advantages-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 1200px;
}

.advantages-items {
  position: relative;
  margin-top: 60px;
  width: 100%;
}

.advantages-item {
  display: flex;
}

.advantages-first {
  position: relative;
  left: -20px;
  justify-content: flex-start;
  margin-bottom: 56px;
}

.advantages-second {
  justify-content: center;
  margin-bottom: 56px;
}

.advantages-third {
  justify-content: flex-end;
  position: relative;
  left: 20px;
}

.advantages-item-content {
  flex-basis: calc(100% / 3 - 14px);
  min-width: 260px;
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 16px;
  background-color: var(--alice-blue);
  transition: background-color 0.5s ease;
}

.advantages-header {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}

.advantages-icon {
  margin-right: 15px;
  padding: 10px;
  border-radius: 8px;
  background-color: var(--white);
}

.advantages-icon img {
  display: block;
  object-fit: cover;
}

.advantages-image {
  position: absolute;
  bottom: -75px;
  left: 23px;
}

.advantages-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-blue);
  transition: color 0.5s ease;
}

.advantages-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--subtitle);
  transition: color 0.5s ease;
}

.circle {
  position: absolute;
  bottom: 0;
  left: calc(50% - 13px);
  width: 26px;
  height: 26px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  transform: translate(0, 40%) scale(0);
  transition: transform 3s ease;
  pointer-events: none;
}

.container-scroller {
  position: relative;
  padding-top: 20px;
  overflow: hidden;
  background-color: var(--background);
}

.contact-section {
  padding: 80px;
}

.contact-section img {
  position: absolute;
}

.contact-data {
  position: relative;
  min-width: 620px;
  height: 793px;
  padding: 80px;
  border-radius: 16px;
  background: linear-gradient(115deg, #CAE2FF 0%, #67A0E2 100%);
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  height: 100%;
  z-index: 2;
}

.contact-heading {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: var(--dark-active);
}

.contact-greeting,
.contact-message {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
  color: var(--dark-active);
}

.contact-message {
  max-width: 340px;
  align-self: center;
  text-align: center;
}

.contact-bg-1 {
  right: 37.5%;
  bottom: 42px;
}

.contact-bg-2 {
  right: 11.5%;
  bottom: 94px;
}

.contact-bg-3 {
  right: 24.5%;
  bottom: 336px;
}

.contact-bg-4 {
  left: 13%;
  bottom: 288px;
}

.contact-bg-5 {
  left: 24.5%;
  top: 272px;
}

.contact-bg-6 {
  left: 3.5%;
  top: 66px;
}

.contact-bg-7 {
  left: 0;
  bottom: 46px;
}

.contact-bg-8 {
  right: 0;
  top: 0;
  border-top-right-radius: 16px;
}

.dashed-arrow {
  position: absolute;
  top: -102px;
  left: 0;
  pointer-events: none;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.form {
  position: relative;
  width: 372px;
}

.form label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark-default);
}

.form textarea {
  height: 140px;
  resize: none;
}

.form input, .form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 300;
  font-family: Outfit, sans-serif;
  line-height: 1.6;
  transition: background-color 0.3s ease;
  color: var(--dark-active);
  background-color: var(--columbia-blue);
}

.form input::placeholder, .form textarea::placeholder {
  color: var(--subtitle);
}

.form input:focus, .form textarea:focus {
  outline: none;
  border: none;
  background-color: var(--white);
}

.form button {
  padding: 18px 24px;
  width: 100%;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: Outfit, sans-serif;
  line-height: 1.26;
  color: var(--button-text);
  background-color: var(--rich-black);
}

.form button:active {
  background-color: var(--rich-black-active);
}

.form button img {
  margin-left: 8px;
}

.footer {
  position: relative;
  padding: 60px 80px 70px;
  background-color: var(--background);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--dark-default);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, var(--french-gray) 50%, transparent 0%);
  background-size: 20px 20px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 315px;
}

.footer-nav-menu {
  min-width: 165px;
}

.footer-address-title {
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--delft-blue);
}

.footer-address-value {
  line-height: 1.6;
  color: var(--subtitle);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.footer-content > div {
  padding: 20px;
}

.footer-general-info {
  width: 315px;
}

.footer img {
  display: block;
}

.footer-side-data {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.footer-group-link {
  font-weight: 400;
  color: var(--accent-blue);
}

.footer-link {
  color: var(--accent-blue);
}

.footer .footer-mailto {
  margin-bottom: 20px;
  text-decoration: none;
  color: var(--dark-default);
}

.footer .footer-mailto:hover {
  color: var(--delft-blue-hover);
}

.footer-info {
  margin: 30px 0 10px;
}

.footer-linkedin {
  margin-top: 20px;
}

.footer .nav-list {
  display: flex;
  flex-flow: column wrap;
  gap: 20px 0;
  height: 125px;
  margin-top: -5px;
}

.footer .nav-link {
  margin: 0 10px;
}

.header {
  position: relative;
  padding: 0 80px;
  height: 800px;
}

.header-bg {
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 0;
  height: 690px;
}

.header-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 50%;
}

.header-content {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin-top: 48px;
  margin-bottom: 136px;
}

.header-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 11px 24px;
  width: fit-content;
  cursor: pointer;
  overflow: hidden;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--button-text);
  background-color: var(--rich-black);
}

.header-button-content {
  position: relative;
  z-index: 1;
}

.header-button:active {
  background-color: var(--rich-black-active);
}

.header-button .arrow-right {
  position: relative;
  z-index: 1;
  top: 2px;
  height: 22px;
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.header-image picture {
  z-index: 0;
}

.header-image img {
  width: 100%;
  max-width: 644px;
}

.header-data-block {
  display: flex;
  align-items: center;
  flex: 1 1 545px;
  position: relative;
  z-index: 1;
  padding: 20px;
  background-color: var(--background);
}

.header-data-block h1 {
  margin-bottom: 10px;
  font-size: 56px;
  font-weight: 600;
  color: var(--delft-blue);
}

.header-data {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
}

.header-title {
  display: inline-block;
  position: relative;
  width: 200px;
  background: linear-gradient(90deg, #5975B1 0%, #2553B5 36.34%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-heading img {
  position: absolute;
  left: -16px;
  top: 58px;
  width: 220px;
}

.header-data-text {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  text-align: left;
  color: var(--subtitle);
}

.header-line {
  position: absolute;
  bottom: 0;
  left: -182px;
  width: calc(100vw + 170px);
  height: 35px;
  overflow: hidden;
}

.header-line-inner {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.header-line-items {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-line-items :first-child {
  margin-left: 40px;
}

.header-line h3 {
  font-size: 28px;
  font-weight: 400;
  color: var(--slate-gray);
}

.industry-section {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding: 80px 100px;
  background: linear-gradient(89.69deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.industry-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  width: fit-content;
  margin-top: 60px;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 1;
  padding: 30px 20px;
  border-radius: 16px;
  background-color: var(--white);
  transition: background-color 0.5s ease;
}

.industry-item-title {
  width: 150px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: var(--delft-blue-hover);
  transition: color 0.5s ease;
}

.industry-image {
  position: relative;
  padding: 30px;
  border-radius: 8px;
  width: 100px;
  height: 100px;
  background-color: var(--lake-blue);
  transition: background-color 0.5s ease;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-bg-1 {
  position: absolute;
  left: -410px;
  bottom: -355px;
}

.industry-bg-2 {
  position: absolute;
  right: -412px;
  top: -66px;
}

.linkedin-link {
  height: 32px;
}

.logo {
  position: relative;
  height: 54px;
}
.logo img {
  max-height: 72px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 20px;
}

.navbar nav {
  display: block;
}

.navbar-box {
  position: relative;
  z-index: 5;
  border-radius: 16px;
  background: linear-gradient(90.31deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%),
  #EBF0F5;
  border: 1px solid;
  border-image-source: linear-gradient(89.69deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 100%);
  transition: border-radius 0.5s ease;
}

.nav-list {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 5px;
  margin: 0 15px;
  color: var(--dark-default);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
}

.nav-link:hover {
  color: var(--delft-blue-hover);
}

.nav-link:active {
  color: var(--dark-active);
}

.products-section {
  padding: 80px 100px 206px 100px;
}

.products-content {
  display: flex;
  justify-content: center;
}

.products-items {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  margin-top: 40px;
  gap: 20px;
  max-width: 1240px;
}

.product-item.platform-item {
  position: relative;
}

.product-item {
  display: flex;
  align-items: center;
  flex-basis: calc(100% / 3 - 14px);
  gap: 15px;
  min-width: 350px;
  padding: 20px;
  border-radius: 16px;
  background-color: var(--alice-blue);
}

.product-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--delft-blue-hover);
}

.products-side-content {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 0;
  bottom: -130px;
  width: 505px;
}

.products-side-content img {
  position: relative;
  top: -50px;
}

.products-side-text {
  width: 400px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--accent-blue);
}

.section-subtitle {
  margin-bottom: 20px;
  background: linear-gradient(180deg, #4D7CFF 0%, #1D366D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--delft-blue);
}

.services-section {
  padding: 80px 100px;
  background: linear-gradient(90.31deg, #FFFFFF66 0%, #FFFFFF33 100%);
}

.services-data {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.services-items {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: 40px 20px;
  margin-top: 60px;
  max-width: 1240px;
}

.services-item {
  position: relative;
  flex-basis: calc(100% / 3 - 14px);
  min-width: 395px;
  height: 435px;
  border-radius: 16px;
  background-color: var(--joseph-blue);
}

.services-content {
  padding: 20px 20px 15px;
}

.services-image {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
}

.services-heading {
  margin: 15px 0 10px;
  font-size: 20px;
  font-weight: 500;
  color: var(--delft-blue-hover);
}

.services-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 8px;
  background-color: var(--accent-blue);
  color: var(--button-text);
  font-size: 20px;
  font-weight: 800;
}

.services-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--subtitle);
}

.team-section {
  position: relative;
  padding: 80px 100px;
}

.team-bg-1 {
  position: absolute;
  right: 28px;
  top: -70px;
}

.team-bg-2 {
  position: absolute;
  left: 0;
  bottom: -432px;
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.team-member {
  display: flex;
  justify-content: center;
  position: relative;
  width: 295px;
  z-index: 1;
  padding: 30px 10px 60px;
  border-radius: 8px;
  background-color: var(--white);
}

.team-member img {
  width: 200px;
}

.team-member-info {
  position: absolute;
  bottom: 10px;
  width: calc(100% - 20px);
  height: 100px;
  padding: 26px 20px;
  border-radius: 4px;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  background: linear-gradient(90.31deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.team-member-name {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-active);
}

.team-member-position {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--subtitle);
}

.toggle-icon {
  display: none;
}

@media (min-width: 1440px) {
  .navbar nav {
    position: relative;
    right: 74px;
  }
}
