/* CSS Reset */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Page CSS */

:root {
  --color-brand: #922a6e;
  --color-paragraph: #525252;
}

body {
  font-family: "Work Sans", sans-serif;
}

h1 {
  font-size: 2em;
  line-height: 1.3;
}

h2.services-title {
  font-size: 2.2em;
  line-height: 1.3;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  /* margin-top: 2.75em; */
  margin-bottom: 1.25em;
}

p {
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.3em;
  text-align: left;
  margin: 40px 0;
}

p.intro-description {
  margin: 20px 0;
  max-width: 20em;
}

a {
  color: var(--color-brand);
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 500;
  max-width: fit-content;
}

h1,
h2,
h3 {
  font-weight: 500;
}

i {
  color: var(--color-brand);
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.25em;
  gap: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 2.5em;
  width: 100%;
  position: fixed;
  background: rgba(255, 255, 255, 0.205);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.nav-logo {
  height: auto;
  width: 200px;
}

.nav-item-container {
  color: black;
  display: flex;
}

a.nav-item {
  color: black;
  transition: all 0.15s ease;
}
a.nav-item:hover {
  color: blueviolet;
}

.active {
  font-weight: 700;
}

/* navigation bar */
.nav-item-container {
  display: none;
}

.intro-services-image {
  display: none;
}

/* main content */

.intro-container {
  min-height: 100vh;
  height: 100%;
  padding: 10em 40px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 1) 48%,
    rgba(115, 142, 239, 1) 48%
  );
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.intro-content {
  max-width: 100%;
}

.intro-description {
  color: var(--color-paragraph);
}

.intro-language {
  color: var(--color-paragraph);
}

.intro-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px 0;
}

.intro-services a {
  font-size: 1.25em;
}

.background-image {
  position: relative;
  right: 0px;
  width: 30em;
}

/* Hero Content */
.hero-content {
  padding-top: 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #eaeaea;
}

.description-container {
  max-width: 65em;
  width: 100%;
  padding: 0 2em;
  margin-bottom: 8em;
}

/* Project Section */

.project-image-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.project-image-item {
  width: 200px;
  margin: 20px auto;
}

.breadcumb {
  padding: 4em;
  background: black;
  color: #fff;
}

.breadcumb {
  color: #fff;
  font-size: 15px;
}

.breadcumb-link,
.breadcumb-title {
  color: #fff;
}

.breadcumb,
a:hover {
  color: #808080;
}

/* Team Profile Section */

.team-profile-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875em;
  max-width: 62em;
  margin-bottom: 2.5rem;
  justify-content: center;
  align-items: center;
}

.team-profile-card {
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: center;
  align-items: center;
}
.team-profile-image-container {
  height: 360px;
  width: 360px;
}

/* Join Us Section */

.join-team-button {
  color: #154fff;
  outline-style: solid;
  padding: 10px 20px;
  transition: all 0.15s ease;
}

.join-team-button:hover {
  outline-color: #154fff65;
  background-color: #154fff65;
}

/* Integration Section */

.hero-content.integration {
  background-color: #eaeaea;
}

.icon-row {
  display: flex;
  flex-flow: row wrap;
}

.icon-container {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  flex: 1 1 0%;
  margin: 1em;
}
.icon-image {
  height: 100px;
  width: 100px;
}

.icon-description {
  margin-top: 5px;
}

/* Collaborate Section */

.hero-content.collaborate {
  color: #ffffff;
  background-color: #154fff;
  padding: 10em;
}

h2.content-title.collaborate {
  font-size: 3.6em;
  line-height: 1.3em;
}

.collaborate-button {
  color: #ffffff;
  outline-style: solid;
  padding: 10px 20px;
  transition: all 0.15s ease;
}

.collaborate-button:hover {
  outline-color: rgba(255, 255, 255, 0.446);
  background-color: rgba(255, 255, 255, 0.446);
}

.footer-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-icon {
  font-size: 32px;
  color: #154fff;
}

/* responsive */

@media (min-width: 670px) {
  .nav-item-container {
    display: block;
  }

  .nav-item {
    margin: 0 20px;
  }

  .intro-services-image {
    display: block;
  }

  .intro-content {
    display: flex;
    flex-direction: column;
    max-width: 45%;
  }

  .breadcumb-link {
    font-size: 36px;
  }
}
