:root {
  --bullet-blue-light: #8ea7b9;
  --bullet-blue-dark: #64869e;
  --bullet-brown: #8d8c8c;
  --primary: #366883;
  --black: #111122;
  --background: #f9f9f9;
  --white: #fefefe;
  --shadow: #dddddd;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: var(--primary);
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  background-color: var(--background);
}

.header {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--background);
  border-bottom: 2px solid var(--black);
}
.header-logo {
  margin-left: 8px;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-logo-image {
  height: 50px;
}
.header-navbar {
  height: 100%;
  align-items: center;
  display: none;
}
.header-navbar-anchor {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  padding: 8px;
  line-height: 44px;
  transition: 0.5s;
}
.header-navbar-anchor:hover {
  background-color: var(--primary);
  color: var(--white);
}

.hero-container {
  width: 100%;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero-name-container {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  background-color: #ffffffaa;
  z-index: 1;
}
.hero-name {
  font-size: 28px;
  padding: 0 16px;
}
.hero-title-container {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  background-color: #ffffffaa;
  z-index: 1;
}
.hero-title {
  font-size: 24px;
  text-align: center;
  width: 100%;
  padding: 0 16px;
}
.hero-image-container {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
}
.hero-image-container img {
  width: 1048px;
  position: absolute;
  right: -80px;
  top: -160px;
}

.main {
  width: 100%;
  margin-bottom: 40px;
  background-color: var(--black);
  text-align: center;
  padding: 20px;
}
.main-text {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.work-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.work-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.work-list {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.work-item {
  width: 350px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bullet {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.blue-light {
  background-color: var(--bullet-blue-light);
}
.blue-dark {
  background-color: var(--bullet-blue-dark);
}
.brown {
  background-color: var(--bullet-brown);
}

.work-item-title {
  font-size: 20px;
  margin-bottom: 12px;
}
.work-item-description {
  font-size: 18px;
  text-align: center;
}

.objectives-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.objectives-title {
  width: 100%;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: 20px;
  font-size: 22px;
  margin-bottom: 24px;
}

.objectives-list {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.objectives-item {
  width: 350px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.objectives-item-description {
  font-size: 18px;
  text-align: center;
}

.services-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.services-title {
  width: 100%;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: 20px;
  font-size: 22px;
  margin-bottom: 24px;
}

.services-list {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.services-item {
  width: 600px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-item-title {
  font-size: 20px;
  margin-bottom: 12px;
  text-align: center;
}
.services-item-description {
  font-size: 18px;
  text-align: center;
}

.methodology-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.methodology-item {
  padding: 0 8px 0 12px;
  margin-bottom: 24px;
}
.methodology-title {
  width: 100%;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: 20px;
  font-size: 22px;
  margin-bottom: 18px;
}
.methodology-item-title {
  width: 100%;
  color: var(--primary);
  text-align: center;
  padding: 20px;
  font-size: 22px;
  margin-bottom: 4px;
}
.methodology-item-description {
  max-width: 72ch;
  font-size: 18px;
}
.methodology-item-description p {
  margin-bottom: 12px;
}
.curriculum-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.curriculum-title {
  width: 100%;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: 20px;
  font-size: 22px;
  margin-bottom: 18px;
}
.curriculum-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px 0 12px;
}
.curriculum-name {
  width: 100%;
  color: var(--black);
  text-align: center;
  margin-bottom: 20px;
}
.curriculum-description {
  width: 100%;
  max-width: 700px;
  font-size: 18px;
  margin-bottom: 16px;
}
.curriculum-companies-list {
  list-style: none;
}
.curriculum-companies {
  width: 100%;
  max-width: 700px;
  font-size: 18px;
  margin-bottom: 12px;
}
.curriculum-roles-description {
  width: 100%;
  max-width: 700px;
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 24px;
  text-align: left;
}
.curriculum-roles-list {
  list-style: none;
  width: 100%;
  max-width: 700px;
}
.bullet2 {
  min-width: 24px;
  height: 24px;
  border-radius: 7px;
  margin-right: 16px;
}

.curriculum-roles-item {
  width: 100%;
  height: 48px;
  max-width: 700px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding-left: 8px;
}

.footer-container {
  width: 100%;
  height: 250px;
  color: var(--white);
  background-color: var(--black);
  display: flex;
  padding: 20px;
}
.footer-title {
  width: 100%;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 24px;
  padding-top: 20px;
}

.footer-left {
  width: 50%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
}
.footer-logo-image {
  height: 50%;
}
.footer-right {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.socialMedia {
  text-decoration: none;
  color: var(--white);
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
.socialMedia-button {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  border: none;
  background-color: transparent;
  color: var(--white);
  cursor: pointer;
}

.socialMedia-icon {
  width: 30px;
  height: 30px;
  margin-left: 16px;
  margin-right: 16px;
  display: flex;
}
.socialMedia-icon img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}
.socialMedia-text {
  font-size: 16px;
}

@media only screen and (min-width: 768px) {
  .header-navbar {
    display: flex;
  }
  .hero-container {
    height: 400px;
  }
  .hero-name-container {
    width: 50%;
    height: 50%;
    padding-top: 80px;
    display: flex;
    align-items: center;
  }
  .hero-name {
    font-size: 34px;
    text-align: center;
  }
  .hero-title-container {
    width: 50%;
    height: 50%;
    padding-bottom: 80px;
  }
  .hero-title {
    font-size: 28px;
  }

  .hero-image-container img {
    width: 1280px;
    right: 0;
    top: -220px;
  }

  .main {
    margin-bottom: 52px;
    padding: 20px;
  }
  .main-text {
    font-size: 24px;
    line-height: 38px;
  }
  .work-container {
    margin-bottom: 52px;
  }

  .work-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .objectives-container {
    margin-bottom: 52px;
  }

  .objectives-title {
    font-size: 24px;
    margin-bottom: 36px;
  }
  .services-container {
    margin-bottom: 52px;
  }

  .services-title {
    font-size: 24px;
    margin-bottom: 36px;
  }
  .methodology-container {
    margin-bottom: 52px;
  }
  .methodology-item {
    margin-bottom: 32px;
  }
  .methodology-title {
    font-size: 24px;
  }
  .methodology-item-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .curriculum-container {
    margin-bottom: 52px;
  }
  .curriculum-title {
    margin-bottom: 24px;
    font-size: 24px;
  }
  .footer-title {
    font-size: 22px;
  }

  .footer-left {
    display: flex;
  }
  .footer-right {
    width: 50%;
  }
  .socialMedia-text {
    font-size: 18px;
  }
}
