h1, h2, h3, h4, h5, h6,
.title {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
}
.content-box h1,
.title.one {
  font-size: 52px;
}
.content-box h2,
.title.two {
  font-size: 40px;
}
.title.twohalf{
  font-size: 33px;
}
.content-box h3,
.title.three {
  font-size: 25px;
}
.content-box h4,
.title.four {
  font-size: 22px;
}
.title.white,
.title span.white {
  color: var(--white);
}
.title.yellow,
.title span.yellow {
  color: var(--yellow);
}
.title.center {
  text-align: center;
}
@media (max-width: 1368px) {
  .content-box h1,
  .title.one {
    font-size: 42px;
  }
  .content-box h2,
  .title.two {
    font-size: 35px;
  }
  .title.twohalf{
    font-size: 27px;
  }
  .content-box h3,
  .title.three {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .content-box h1,
  .title.one {
    font-size: 36px;
  }
  .content-box h2,
  .title.two {
    font-size: 29px;
  }
  .title.twohalf{
    font-size: 26px;
  }
  .content-box h3,
  .title.three {
    font-size: 20px;
  }
  .content-box h4,
  .title.four {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .content-box h1,
  .title.one {
    font-size: 35px;
  }
  .content-box h2,
  .title.two {
    font-size: 28px;
  }
  .title.twohalf{
    font-size: 24px;
  }
}
@media (max-width: 420px) {
  .title.one {
    font-size: 26px;
  }
  .title.two {
    font-size: 22px;
  }
  .title.twohalf{
    font-size: 20px;
  }
  .title.three {
    font-size: 18px;
  }
  .title.four {
    font-size: 17px;
  }
}
.content-box {
  font-family: "IBM Plex Sans", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.paragraph{
  display: contents !important;
}
.content-box p,
.content-box li,
.paragraph {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
}
.content-box ul,
.content-box ol{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 3rem;
}
.paragraph em,
.content-box em{
  font-style: italic;
}
.content-box li{
  position: relative;
}
.content-box li::before{
  position: absolute;
  content: '';
  top: 8px;
  left: -2rem;
  width: 24px;
  height: 24px;
  border-radius: 255px;
  background: var(--green);  
}
.content-box img,
.content-box video{
  width: 100%;
}
.content-box.big li,
.content-box.big p,
p.paragraph.big {
  font-size: 21px;
}
.content-box.white p,
.paragraph.white {
  color: var(--white);
}
.content-box.center p,
.paragraph.center{
  text-align: center;
}
.content-box a{
  font-weight: 700;
  color: var(--green);
}
.content-box.white a{
  color: var(--yellow);
}
.content-box iframe{
  width: 100%
}
@media (max-width: 1368px){
  .content-box.big li,
  .content-box.big p,
  p.paragraph.big {
    font-size: 17px;
  } 
}
@media (max-width: 800px) {
  .content-box.big li,
  .content-box.big p,
  p.paragraph.big {
    font-size: 16px;

  }
}
.label {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
}
.label.small{
  font-size: 14px;
}
.label.yellow{
  color: var(--yellow);
}
.label.white {
  color: var(--white);
}
.label.center{
  text-align: center;
}
@media (max-width: 800px){
  .label {
    font-size: 17px;
  }  
  .label.small{
    font-size: 14px;
  }
}
@media (max-width: 420px){
  .label {
    font-size: 15px;
  }  
  .label.small{
    font-size: 13px;
  }
}
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--blue);
}
.link.underline{
  text-decoration: underline;
}
.link.small{
  font-size: 20px;
}
.link.yellow{
  color: var(--yellow);
}
.link:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .link {
    font-size: 18px;
  }
  .link.small{
    font-size: 17px;
  }  
}
@media (max-width: 460px) {
  .link {
    font-size: 17px;
  }
}
