:root {
  --ff-family-main: "Poppins", sans-serif;
  --ff-family-header: "Lora", sans-serif;
  --ff-family-accent: "Open Sans", sans-serif;
  --clr-bg: #f5f2f0;
  --clr-dark: #333333;
}

body {
  background-color: var(--clr-bg);
}
* {
  border: 0;
  padding: 0;
  margin: 0;
}
.hero-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.left-container {
  flex-basis: 30%;
  background-image: url(./images/background.jpg);
  background-size: cover;
  padding: 40px;
  min-height: 50vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
/* .left-container {
  flex-basis: 30%;
  min-width: 30%;
  background-image: url(./images/background.jpg);
  background-size: cover;
  padding: 40px;
  display: flex;
} */
/* .left-container > img {
  width: 30%;
} */
.right-container {
  padding: 50px;
  flex-basis: 70%;
}
.nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
  font-family: var(--ff-family-main);
}
.nav-container > * {
  width: 50%;
}
nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
nav > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: rgb(158, 158, 158);
  padding: 10px 20px;
}
nav > a:hover {
  color: var(--clr-dark);
}

.line > hr {
  border: 0;
  border-bottom: 1px solid var(--clr-dark);
}
.header-text {
  display: flex;
  height: 50vh;
}
.hero-text {
  flex-basis: 70%;
}

.hero-text > h1 {
  font-family: var(--ff-family-header);
  font-size: 10rem;
  line-height: 8rem;
}
#hollow {
  -webkit-text-fill-color: var(--clr-bg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--clr-dark);
}
#fill {
  margin-left: 25%;
}

.hero-text-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  flex-basis: 30%;
  position: relative;
}
.hero-text-right > p {
  color: #999898;
  font-family: var(--ff-family-accent);
  font-size: 2.5rem;
}
.btn-main > button {
  padding: 10px 40px;
  background-color: #000;
  color: #f5f2f0;
  font-size: 1rem;
  font-family: var(--ff-family-main);
}
.icon-container > img {
  width: 70%;
}
.icon-container {
  position: absolute;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 60px;
  right: 0;
  top: 0;
}
.container {
  display: flex;
  font-family: var(--ff-family-main);
}

.img-container > img {
  width: 80%;
  height: 300px;
  object-fit: cover;
}
.list {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  gap: 1rem;
}

.list-item::marker {
  font-size: 2rem;
  color: grey;
  list-style-position: inside;
}
.list > li:nth-child(1)::marker {
  color: var(--clr-dark);
  font-size: 2rem;
}
.list-item::marker:first-child {
  color: grey;
}
.list-contianer {
  flex-basis: 30%;
  position: relative;
}
.text-container {
  flex-basis: 60%;
}
.icon-container-2 {
  flex-basis: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 6rem;
}

.line-vert {
  height: 1px;
  width: 100%;
  position: absolute;
  background-color: grey;
  transform-origin: top left;
  transform: rotate(90deg);
  left: -22px;
  top: 20px;
}

.quote::before {
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 4rem;
  display: block;
}
@media only screen and (max-width: 1200px) {
  .hero-container {
    flex-direction: column;
    overflow: auto;
  }
  .right-container {
    padding: 30px;
  }
  .header-text {
    flex-direction: column;
  }
  .hero-text-right {
    flex-basis: 50%;
  }
  .container {
    margin-top: 50px;
    flex-wrap: wrap;
  }
  .list-contianer {
    flex-basis: 100%;
  }
  .hero-text > h1 {
    font-size: 7rem;
  }
  .text-container {
    margin-top: 1rem;
    flex-basis: 80%;
  }
  .icon-container {
    top: 20px;
  }
  .icon-container-2 {
    font-size: 5rem;
    flex-basis: 20%;
  }
  #fill {
    margin-left: 10%;
  }
}
