* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.sec {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #0062be;
  padding: 100px;
  transition: 0.5s;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 80px;
}

.navigation {
  display: flex;
  gap: 40px;
}

.navigation li {
  list-style: none;
}

.navigation li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.textBox {
  max-width: 600px;
}

.textBox h2 {
  color: white;
  font-size: 4em;
}

.textBox span {
  font-size: 1.2em;
  font-weight: 900;
}

.textBox p {
  color: white;
  margin: 20px 0;
}

.textBox a {
  display: inline-block;
  padding: 10px 25px;
  background: white;
  color: #111;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.imgBox {
  width: 600px;
  display: flex;
  justify-content: flex-end;
}

.imgBox img {
  max-width: 260px;
}

.thumb {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.thumb li {
  list-style: none;
  cursor: pointer;
}

.thumb img {
  width: 40px;
  transition: 0.5s;
}

.thumb img:hover {
  transform: translateY(-10px);
}

.sci {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.sci li {
  list-style: none;
  margin: 5px 0;
}

.sci img {
  width: 25px;
  filter: invert(1);
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  text-align: center;
}