:root {
  --color-accent: #0673cc;
  --color-body-bg: #262537;
  --color-secondary: #454462;
  --color-light: #f2f0ef;
  --color-text: #ffffff;
  --color-dark: #18191a;
  --color-black-text: #000000;
}

* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "poppins", serif;
  background-color: var(--color-body-bg);
  color: var(--color-text);
  overflow-x: hidden;
  box-sizing: border-box;
}

body.no-scroll {
  overflow: hidden;
}

header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
  display: flex;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  text-align: center;
  background-color: #d9d9d9;
}

header p {
  width: 75%;
}

.content {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 100px;
}
.column p,
.column h1,
.column b {
  text-align: left;
  width: 100%;
}

.column p {
  font-size: 18px;
  font-weight: 400;
}

.column b {
  font-size: 18px;
}

.column img {
  width: 50%;
  margin: 20px 0 50px 0;
}
.column p:first-child {
  font-weight: 300;
  font-size: 16px;
}
.column h1 {
  font-size: 3rem;
  margin-top: 20px;
  font-weight: 400;
}
.video-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-top: 50px;
}

.row1 {
  margin-right: 20px;
}

.timeline-container {
  background-color: #f2f0ef;
  color: black;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 100px;
}

.timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 15%;
  column-gap: 15%;
}
.timeline img {
  width: 350px;
  margin: 20px 0 50px 0;
}
.timeline p {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.5;
  width: 90%;
}
.timeline h2 {
  font-size: 36px;
  font-weight: bold;
}

.timeline a {
  color: var(--color-text);
  text-decoration: none;
  background-color: var(--color-dark);
  padding: 10px 5px;
  border-radius: 10px;
  font-weight: 300;
}

.content-timeline {
  transform: translateY(-20px);
}
.timeline-container {
  padding-bottom: 150px;
  transform: translateY(210px);
}

@media (max-width: 1200px) {
  header {
    height: 80vh;
  }
  
  .row2 img {
    display: none;
  }
  .content {
    flex-direction: column;
  }
  .video-container {
    justify-content: center;
    align-items: center;
  }
  .column {
    margin: 40px;
  }
  .timeline{
    margin: 0 5%;
  }
  .timeline p{
    width: 100%;
    font-size: 22px;
  }
}
@media (max-width: 800px) {
  .timeline{
    flex-direction: column;
    margin: 0 15%;
    transform: translateY(50px);

  }
  .timeline-container{
    padding-bottom: 110px;
    transform: none;
  }
  .content-timeline{
    width: 350px;
  }
  header {
    clip-path: none;
  }
  .column h1 {
    font-size: 2rem;
  }
  header p {
    font-size: 2.2rem;
    width: 100%;;
  }
  header{
    height: 70vh;
  }
}
@media (max-width: 480px) {
  .timeline img{
    width: 95%;
  }
  .column h1 {
    font-size: 1.4rem;
  }
  header p {
    font-size: 2rem;
    width: 100%;
  }
  header{
    height: 50vh;
  }
}
