main .about {
  display: flex;
  padding: 108px 349px 115px 348px;
}

.about .about-us h2 {
  font: 900 38px 'Roboto';
  color: var(--title);
  margin-bottom: 49px;
}

.about .about-us p {
  margin-top: 26px;
  font: 400 20px 'Roboto';
  color: var(--text);
}

.about .about-us p strong {
  font-weight: 700;
}

.about img {
  margin-left: 104px;
}

main .history {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 106px;
  position: relative;
  z-index: 1;
}

main .history span {
  margin-top: 81px;
  margin-bottom: 39px;
  font: 400 22px 'Roboto';
  color: var(--title);
  text-transform: uppercase;
}

main .history h2 {
  margin-bottom: 81px;
  font: 900 38px 'Roboto';
  color: var(--title);
}

main .history .timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

main .history .line {
  border-top: 4px solid var(--secondary);
  width: 780px;
}

main .history .progress-time{
  display: flex;
  margin: 0 435px;
  position: relative;
  bottom: 22px;
}

.history .progress-time li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 96px;
}

.history .progress-time li:last-child {
  margin-right: 0;
}

.progress-time li span.circle {
  display: block;
  background: var(--accent);
  width: 37px;
  height: 37px;
  border-radius: 50%;
  margin: 0 0 9px 0;
}

.progress-time li h3 {
  font: 700 24px 'Roboto';
  color: #000000;
  margin-bottom: 23px;
}

.progress-time li .card {
  width: 285px;
  height: 331px;
  z-index: 1;
  background: #EDEBEB;
  border: 1px solid #D0D0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.progress-time .card p {
  text-align: center;
  font: 400 20px 'Roboto';
  color: var(--text);
  line-height: 140%;
}

.progress-time li .paralelogram {
  background: var(--accent);
  height: 60px;
  width: 95px;
  transform: skew(-36deg);
  z-index: 0;
  position: relative;
  bottom: 37px;
  right: 73px;
}

main .our-mission {
  background: #1A1A1A;
  color: #FFFFFF;
  height: 817px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .our-mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width:18vw;
  max-width:220px;
  height:18vw;
  max-height:220px;
  background: #FFFFFF;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: translate(-2px, 0);
  z-index:2;
}

main .our-mission .paralelogram {
  background: var(--accent);
  height: 154px;
  width: 187px;
  transform: skew(-30deg);
  z-index: 0;
  box-shadow: -105px -41px 0px 0px rgba(253, 221, 36, 0.20);
}

main .our-mission .content {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-mission .content h2 {
  font: 900 38px 'Roboto';
  color: #FFFFFF;
  margin-bottom: 47px;
}

.our-mission .content p {
  font: 500 28px 'Roboto';
  color: #FFFFFF;
  line-height: 140%;
  width: 844px;
  text-align: center;
  margin-bottom: 92px;
}

.our-mission .content .certified-logo {
  display: flex;
}

.our-mission .content .certified-logo img + img {
  margin-left: 52px;
}

main .our-mission .footer-division {
  height: 95px;
  width: 100%;
  background: linear-gradient(135deg, #1A1A1A 14%, var(--accent) 0%);
}

main .our-values {
  padding: 151px 285px 105px 355px;
  display: flex;
  background: var(--surface);
}

.our-values .values h2 {
  font: 900 38px 'Roboto';
  color: var(--title);
  margin-bottom: 51px;
}

.our-values .values ul li {
  display: flex;
  align-items: center;
  margin-right: 114px;
}

.our-values .values ul li + li {
  margin-top: 42px;
}

.our-values li span {
  margin-right: 39px;
}

.our-values li span img {
  width: 25px;
  height: 25px;
  max-width: unset;
}

.our-values .values li p {
  font: 400 20px 'Roboto';
  color: var(--text);
}

.our-values .values li p strong {
  font-weight: 700;
}

.our-routine {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 107px;
  padding-bottom: 132px;
}

.our-routine  h2 {
  font: 900 38px 'Roboto';
  color: var(--title);
}

.our-routine p {
  margin-top: 25px;
  font: 400 22px 'Roboto';
  color: var(--primary);
}

.our-routine ul {
  margin-top: 38px;
  display: flex;
}

.our-routine li + li {
  margin-left: 32px;
}

@media(max-width: 1700px) {
    main .about {
        padding-right: 180px;
        padding-left: 261px;
    }
    
    main .our-values {
        padding-right: 116px;
        padding-left: 170px;
    }
}

@media(max-width: 1440px) {
  main .about {
    padding: 100px 180px;
  }

  .about img {
    margin-left: 74px;
    width: 556px;
  }

  main .our-values {
    padding: 100px 180px;
  }
}

@media(max-width: 1280px) {
  main .about {
    padding: 80px;
  }

  .about .about-us h2 {
    font-size: 32px;
  }

  .about .about-us p { 
    font-size: 18px;
    width: 442px;
  }

  main .history span {
    font-size: 18px;
    margin-bottom: 24px;
  }

  main .history h2 {
    font-size: 32px;
  }

  .history .progress-time li {
    margin-right: 56px;
  }

  main .history .line {
    width: 690px;
  }

  .progress-time li .card {
    width: 276px;
    height: 381px;
    padding: 0 13px;
  }

  .our-mission .content h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .our-mission .content p {
    font-size: 22px;
    width: 700px;
    margin-bottom: 64px;
  }

  main .our-values {
    padding: 100px 80px;
  }

  .our-values .values h2 {
    font-size: 32px;
    margin-bottom: 36px;
  }

  .our-values .values ul li {
    margin-right: 96px;
  }

  .our-values .values ul li + li {
    margin-top: 32px;
  }

  .our-values .values li p {
    font-size: 18px;
  }

  .our-values img {
    width: 420px;
    height: 550px;
  }

  .our-routine {
    padding-top: 72px;
    padding-bottom: 90px;
  }

  .our-routine h2 {
    font-size: 32px;
  }

  .our-routine p {
    font-size: 18px;
  }

  .our-routine ul {
    padding: 0 80px;
  }
}

@media(max-width: 768px) {
  main .about {
    padding: 0;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .about img {
    margin: 0;
    width: 460px;
    margin-top: 88px;
    margin-bottom: 56px;
  }

  .about .about-us {
    margin-bottom: 80px;
  }

  .about .about-us h2 {
    margin-bottom: 24px;
  }

  .about .about-us p {
    width: 430px;
  }

  main .history .timeline {
    flex-direction: row;
  }

  main .history .line {
    height: 600px;
    width: unset;
    border-left: 4px solid var(--secondary);
    margin-left: 100px;
  }

  main .history .progress-time {
    margin: 0;
    flex-direction: column;
    bottom: 0;
    right: 21px;
  }

  .history .progress-time li {
    margin: 0;
    flex-direction: row;
  }
  
  .progress-time .card-time {
    display: flex;
    align-items: center;
  }

  .progress-time li span.circle {
    margin: 0;
  }

  .progress-time li h3 {
    margin: 0;
    margin-left: 12px;
  }

  .progress-time li .card {
    width: 422px;
    height: 276px;
    padding: 0 64px;
    margin-left: 56px;
    margin-bottom: 36px;
  }

  .progress-time li:last-child .card {
    margin-bottom: 0;
  }

  .progress-time li .paralelogram {
    height: 120px;
  }

  main .our-values {
    padding: 0;
    flex-direction: column-reverse;
    align-items: center;
  }

  .our-values > img {
    width: 350px;
    height: 400px;
    margin-top: 96px;
    margin-bottom: 48px;
  }

  .our-values .values {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 80px;
  }

  .our-values .values h2 {
    margin-bottom: 0;
    text-align: center;
  }

  .our-values .values ul {
    margin-bottom: 64px;
  }

  .our-values .values ul li {
    margin: 0;
    margin-top: 32px;
  }
}

@media(max-width: 430px) {
  .about img {
    width: 320px;
    height: 300px;
    margin-top: 56px;
  }

  .about .about-us p {
    width: unset;
    padding: 0 56px;
    font-size: 16px;
  }

  .about .about-us {
    margin-bottom: 40px;
  }

  main .history span {
    font-size: 18px;
    margin-top: 56px;
    margin-bottom: 18px;
  }

  main .history h2 {
    margin-bottom: 56px;
  }

  main .history .line {
    margin-left: 56px;
    height: 700px;
  }
  
  .progress-time li h3 {
      font-size: 20px;
  }

  .progress-time li .card {
    margin-left: 14px;
    width: 210px;
    height: 320px;
    padding: 0 16px;
  }
  
  .progress-time .card p {
      font-size: 14px;
  }

  .progress-time li .paralelogram {
    display: none;
    margin-left: 90px;
  }

  main .our-mission::before {
    background: unset;
  }
  
  main .our-mission .footer-division {
    display: none;
  }

  .our-mission .content p {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    padding: 0 64px;
  }

  .our-mission .content h2 {
    margin-bottom: 24px;
  }

  .our-mission .content .certified-logo img {
    width: 160px;
  }

  .our-mission .content .certified-logo img:last-child {
    width: 90px;
  }
  
  .our-values .values li p {
      font-size: 16px;
  }

  .our-values > img {
    width: 270px;
    height: 300px;
    margin-top: 72px;
  }

  .our-values .values {
    margin: 0 48px;
  }

  .our-routine p {
    text-align: center;
    padding: 0 40px;
    font-size: 16px;
    font-weight: 300;
    margin-top: 18px;
  }

  .our-routine ul {
    display: flex;
    flex-direction: column;
  }

  .our-routine li {
    margin-bottom: 32px;
  }

  .our-routine li + li {
    margin-left: 0;
  }
}