/* GLOBAL */
html,
body {
  font-family: Archivo;
  margin: 0 auto;
}

/* html {
  background-color: white;
} */

body {
  position: relative;
  min-width: 1600px;
}

.content {
  display: flex;
  width: 1300px;
}

/* HEADER */

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background-color: #0c419a;
}

.logo {
  flex: 3;
}

.logo img {
  position: absolute;
  width: 500px;
  top: 0;
  left: 30px;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 5;
}

.menu a {
  text-decoration: none;
  color: white;
}

.social-medias img {
  width: 30px;
  margin: 0 5px;
}

.languages {
  color: white;
}

.languages a:hover {
  text-decoration: underline;
}

/* SECTION 1 - HOME */

#home {
  height: 620px;
  background-image: url("../assets/home-image.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home .text-content {
  width: 500px;
}

#home h1 {
  color: white;
  margin-top: 0;
  font-size: 48px;
}

#home p {
  margin-top: 0;
  color: white;
}

#home .description {
  font-size: 18px;
}

#home .small-text {
  font-size: 14px;
}

#home .small-text a {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

#home .small-text a:hover {
  text-decoration: underline;
}

/* SECTION 2 - ABOUT US */

#about-us {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about-us .text {
  width: 40%;
  margin-right: 10%;
}

#about-us h2 {
  font-size: 40px;
  color: #0c419a;
  margin-top: 0;
}

#about-us p {
  margin-top: 0;
  color: #767676;
  font-size: 17px;
  margin-bottom: 60px;
}

#about-us img {
  position: absolute;
  right: 0;
  width: 800px;
}

/* SECTION 3 - TECHNOLOGIES AND CAPABILITIES */

#technologies {
  height: 516px;
  background-color: #0c419a;
  display: flex;
  justify-content: center;
}

#technologies .content {
  flex-direction: column;
}

#technologies h2 {
  color: #34b3d1;
  font-size: 40px;
}

.cards {
  display: flex;
  justify-content: space-between;
}

.card {
  height: 300px;
  width: 230px;
  padding: 20px;
  border: 1px solid white;
}

.card .image {
  background-color: #34b3d1;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card .image img {
  width: 50px;
  height: 50px;
}

.card h3 {
  color: white;
  font-size: 18px;
}

.card p {
  color: white;
  font-size: 14px;
}

/* SECTION 4 - CONTACT & ONBOARDING */

#contact {
  height: 450px;
  display: flex;
  justify-content: center;
}

#contact .content {
  flex-direction: column;
}

#contact h2 {
  color: #0c419a;
  font-size: 40px;
  margin-bottom: 20px;
}

#contact p {
  color: #767676;
  font-size: 17px;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.row {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 10px 0;
}

.row input {
  border: none;
  border-radius: 5px;
  background-color: #f3f3f3;
  padding: 15px;
  font-size: 14px;
  flex: 1;
}

.row textarea {
  border: none;
  border-radius: 5px;
  background-color: #f3f3f3;
  padding: 15px;
  font-size: 14px;
  flex: 1;
  resize: none;
}

button {
  border: none;
  border-radius: 5px;
  padding: 10px;
  background-color: #0c419a;
  color: white;
  font-size: 14px;
}

/* SECTION 4 - FOOTER */

#footer {
  height: 100px;
  display: flex;
  justify-content: center;
  color: #929292;
}

#footer .content {
  border-top: 1px solid #0c419a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .links {
  display: flex;
  justify-content: space-between;
  width: 20%;
}

#footer .links a {
  cursor: pointer;
}

#footer .links a:hover {
  text-decoration: underline;
}
