@import url("https://fonts.googleapis.com/css?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;

  --primary-color: #00abf0;
  --secondary-color: #081b29;
  --text-color: #ededed;
}

body {
  background: var(--secondary-color);
  color: var(--text-color);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 10%;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 25px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
}

.navbar a {
  font-size: 18px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  margin-left: 35px;
  .transition: 3s
}

.home {
  margin-top: 150px;
  align-items: center;
  padding: 0 10%;
}

.home-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.home-content-information {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  max-width: 50%;
  justify-content: center;
}

.home-content-information h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.home-content-information h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
}

.home-content-hero {
  border-radius: 10px;
  box-shadow: -50px 50px 50px 0 var(--primary-color);
  height: 900px;
  overflow: hidden;
  aspect-ratio: 9/16;
  margin: 0 auto;
}

.home-content-hero img {
  height: 1500px;
  transform: translate(-240px, -460px);
}

.home-content p {
  font-size: 16px;
  margin: 20px 0 40px;
}

.home-content .btn-box {
  display: flex;
  justify-content: space-between;
  width: 345px;
  height: 50px;
}

.btn-box a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-size: 19px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 1;
  overflow: hidden;
  transition: .25s ease-out;
}

.btn-box a:nth-child(1) {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.btn-box a:nth-child(1):hover {
  color: var(--primary-color);
}

.btn-box a:nth-child(1)::before {
  background: var(--secondary-color);
}

.btn-box a:nth-child(2) {
  background: transparent;
  color: var(--primary-color);
}

.btn-box a:nth-child(2):hover {
  color: var(--secondary-color);
}

.btn-box a:nth-child(2)::before {
  background: var(--primary-color);
}


.btn-box a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background: red;
  transition: .25s ease-out;
}

.btn-box a:hover::before {
  width: 100%;
}

.home-social {
  position: absolute;
  bottom: 40px;
  width: 170px;
  display: flex;
  justify-content: space-between;
}

.home-social a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  font-size: 20px;
  color: #00abf0;
  text-decoration: none;
  z-iondex: 1;
  overflow: hidden;
  transition: .25s ease-out;
}

.home-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transition: .25s ease-out;
}

.home-social a:hover::before {
  width: 100%;
}

.home-social a:hover {
  color: var(--secondary-color);
}