/* Modern CSS Reset */
:where(*, *::before, *::after) {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-width: 100vw;
  text-size-adjust: 100%;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  background-color: whitesmoke;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

main {
  height: 100vh;
  width: 100vw;
  padding: 50px;
  display: grid;
  grid-template-columns: 100px auto 100px;
}

.logo-indicators {
  display: flex;
  flex-direction: column;
  gap: 150px;
}
.logo i {
  font-size: 2.5rem;
  cursor: pointer;
}

.indicators {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.indicator {
  width: 2px;
  height: 80px;
  background-color: grey;
}

.nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  height: 100%;
}

.menu i {
  font-size: 1.75rem;
  cursor: pointer;
}

.social-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.social-media i {
  font-size: 1.5rem;
  cursor: pointer;
}

.content-section {
  position: relative;
  height: 640px;
  /* background-color: red; */
}

.image-texts {
  position: absolute;
  top: 30%;
  z-index: 10;
  overflow: hidden;
}

.image-texts .heading {
  font-size: 7rem;
  /* background-color:aqua; */
  line-height: 1;
  overflow: hidden;
  transform: translateX(-100%);
  opacity: 0;
}

.image-texts .description {
  width: 50%;
  font-size: 1.25rem;
  overflow: hidden;
  transform: translateY(200%);
  opacity: 0;
}

.image-container {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 5px;
}
.image-section {
  height: 100%;
  width: 90%;
  justify-self: end;
  overflow: hidden;
}
.image {
  overflow: hidden;
  height: 100%;
  width: 100%;
  transform: translateX(-100%);
  opacity: 0;
}
img {
  object-fit: cover;
  object-position: center;
}

.more-learn-section {
  position: absolute;
  bottom: 0%;
  left: 0%;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
}

.more-learn {
  font-size: 1.85rem;
}

.more-learn-section i {
  font-size: 1.5rem;
}
