* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

button {
  font-family: "Poppins", sans-serif;
}

header {
  display: flex;
  width: 90%;
  height: 18vh;
  margin: auto;
  align-items: center;
}

.logo-container,
.nav-links,
.cart {
  display: flex;
}

.logo-container {
  flex: 1;
}
.logo-container img {
  width: 110%;
}
.logo {
  font-weight: 400;
  font-size: 20px;
  margin: 5px;
  padding-top: 6px;
}
nav {
  flex: 3;
}
.nav-links {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}
.nav-link {
  color: #5f5f79;
  font-size: 18px;
  text-decoration: none;
  margin: 10px;
}
.cart {
  flex: 1;
  justify-content: flex-end;
  margin-right: 2rem;
}

/* ABOUT US PAGE */

.presentation {
  display: flex;
  width: 90%;
  margin: auto;
  margin-top: 20px;
  align-items: flex-start;
}

.introduction {
  flex: 1;
}

.intro-text h1 {
  font-size: 44px;
  font-weight: 500;
  background: linear-gradient(to right, #494964, #7a7a8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-text p {
  margin-top: 10px;
  font-size: 16px;
  color: #585772;
}

.cta {
  padding-top: 50px;
}

.cta-select {
  border: 2px solid #5436a5;
  background: transparent;
  color: #5436a5;
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 15px;
}

.cta-call {
  background: #5436a5;
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 15px;
  border: none;
  color: white;
  margin-top: 10px;
  margin-left: 10px;
}

.cta-select:hover {
  border: 2px solid #6d40e9;
  color: #6e48da;
}

.cta-call:hover {
  background: #6e48da;
}

.cover {
  flex: 1;
  display: flex;
  height: 60vh;
  margin-left: 5rem;
}

.cover img {
  height: 100%;
  filter: drop-shadow(0px 5px 3px black);
}

/* COMPANY PROFILE */

.introduction2 {
  background: #7a7a8f1a;
  padding: 3rem;
}

.intro-text2 h1 {
  font-size: 30px;
  font-weight: 500;
  color: #797091;
}

.intro-text2 p {
  font-size: 16px;
  color: #585772;
  padding-right: 1rem;
  padding-left: 3rem;
  padding-bottom: 1rem;
}

.bodytext2 {
  padding: 3rem;
}

.bodytext2 h1 {
  font-size: 30px;
  font-weight: 450;
  color: #797091;
}

.bodytext2 p {
  font-size: 16px;
  color: #585772;
}

.lists2 {
  padding-left: 2rem;
  font-size: 16px;
  color: #585772;
}

.list2 {
  padding-top: 1rem;
  font-weight: 500;
}

/* CONTACT US */

.introduction3 {
  background-image: url("img/world_map.jpg");
  background-color: #7a7a8f5b;
  background-position: center;
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  width: 100%;
  height: 30vh;
}

.intro-text3 {
  color: #ffffff;
  filter: drop-shadow(3px 3px 3px #888888);
  text-align: center;
  padding: 10vh;
  font-weight: 500;
  font-size: 20px;
}

.contact1,
.contact2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 3rem;
}

.flag {
  width: 10rem;
}

.contact-text1,
.contact-text2 {
  padding-left: 2rem;
}

.contact-text3 {
  padding-left: 2rem;
}


.contact3 {
  margin-left: 45px;
}

/* PRODUCTS */

.presentation4 {
  display: flex;
  width: 90%;
  margin: auto;
  min-height: 70vh;
  align-items: center;
  flex-wrap: wrap;
}

.card {
  border: 0.1rem #c0c0c0 solid;
  background-color: #e6f5fc;
  border-radius: 0.5rem;
  margin: 1rem;
}
.card-body {
  padding: 1rem;
  width: 290px;
}

/* CLIENTS */

.presentation5 {
  display: flex;
  justify-content: center;
  margin-top: -125px;
}
.login {
  background: rgba(128, 128, 128, 0.815);
  margin: 15rem;
  padding: 3rem;
}
.login > * {
  /* > * means all direct child elements have this applied to them */
  margin-bottom: 0.5rem;
}
.submitBtn {
  width: 100%;
  background-color: #4caf50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.submitBtn:hover {
  background-color: #439946;
}
.userInput {
  width: 100%;
}

/* OTHER */

@keyframes drop {
  0% {
    opacity: 0;
    transform: translate(-80px);
  }
  100% {
    opacity: 1;
    transform: translate(0px);
  }
}

/* PHONE */

@media screen and (max-width: 1024px) {
  .presentation {
    flex-direction: column;
  }
  .introduction {
    margin-top: 5vh;
    text-align: center;
  }
  intro-text h1 {
    font-size: 30px;
  }
  .intro-text p {
    font-size: 18px;
  }
  .cta {
    padding: 10px 0px 0px 0px;
  }
  .cover img {
    height: 80%;
  }
  .nav-link {
    font-size: 10px;
  }
  .logo {
    font-size: 14px;
  }
}
