/*********************
START: ABOUT US
*********************/
.aboutUs {
  padding-block-end: var(--spaceSection);
}

.aboutUs--content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aboutUs--text {
  width: 40%;
}

.aboutUs--text h2 {
  color: var(--primary-color);
  margin-block: 0.5rem 1rem;
}

.aboutUs--text p {
  font-size: var(--txt18);
  line-height: var(--line-height160);
  text-align: justify;
  margin-block: 1rem 1.5rem;
  color: var(--baseDark-color);
}

.aboutUs--image {
  width: 58%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem;
  background-image: url(../img/icons/aboutUsRectangle.svg);
  border-radius: var(--border-radius10);
}

.aboutUs--image>img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/2.5;
  object-fit: cover;
  border-radius: var(--border-radius10);
}

/*********************
END: ABOUT US
*********************/


/*********************
START: WORTH
*********************/
.worth {
  padding-block-end: 7rem;
}

.worth .title {
  flex-direction: column;
}

.worth ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-block-start: 1.5rem;
  border-radius: var(--border-radius10);
  padding: 2rem;
  background-color: rgba(230, 230, 230, 0.3);
}

.worth ul li {
  margin: 5px;
  flex-basis: calc(20% - 10px);
}

.worth ul li>img {
  width: 80px;
  height: auto;
  aspect-ratio: 4/3.5;
  object-fit: contain;
}

/*********************
END: WORTH
*********************/


/*********************
START: HONORS
*********************/
.honors {
  position: relative;
}

.honors--content {
  padding: 3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--border-radius10);
  background-image: url(../img/icons/servicesRectangle-blue.svg);
}

.honors--text {
  width: 45%;
}

.honors--text>ul {
  margin-block-start: 2rem;
  position: relative;
}

.honors--text>ul>li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-block-end: 1.5rem;
}

.honors--text>ul li:not(:last-child):before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-image: url(../img/icons/line.svg);
  background-repeat: no-repeat;
  right: 20px;
  top: 40px;
}


.honors--text>ul>li div {
  background-color: var(--grayLight-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 0.5rem;
  font-family: var(--font-familyNum);
}

.honors--image {
  width: 55%;
}

.honors--image>img {
  width: 80%;
}

/*********************
END: HONORS
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 2560px) {
  .aboutUs--text h2 {
    font-size: var(--txt35);
  }

  .aboutUs--text span,
  .honors--text>ul>li>h4 {
    font-size: var(--txt30);
  }

  .honors--text>ul>li>h4 {
    font-weight: 500;
  }

  .aboutUs--text p,
  .worth--content p,
  .worth ul li>span {
    font-size: var(--txt25);
  }

  .honors--text>ul>li div {
    font-size: var(--txt20);
  }

  .worth ul li>img {
    width: 100px;
  }

  .honors--image>img {
    padding-inline-start: 4rem;
  }
}

@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .aboutUs--text h2 {
    font-size: var(--txt30);
  }

  .aboutUs--text span,
  .honors--text>ul>li>h4 {
    font-size: var(--txt25);
  }

  .aboutUs--text p,
  .worth--content p,
  .worth ul li>span {
    font-size: var(--txt20);
  }

  .honors--text>ul>li div {
    font-size: var(--txt18);
  }

  .worth ul li>img {
    width: 90px;
  }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {}

@media screen and (max-width: 1320px) {}

@media screen and (max-width: 1200px) {
  .worth ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .worth ul li>img {
    margin-block-end: 0.75rem;
  }
}

@media screen and (max-width: 992px) {
  .aboutUs--content {
    flex-direction: column-reverse;
  }

  .aboutUs--text {
    width: 100%;
    margin-block-start: 2rem;
  }

  .aboutUs--image {
    width: 65%;
  }

  .honors--content {
    flex-direction: column;
  }

  .honors--text {
    width: 100%;
    margin-block-start: 2rem;
  }

  .honors--image>img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .aboutUs--image {
    width: 100%;
  }

  .honors--image {
    width: 70%;
  }

  .worth ul li {
    flex-basis: calc(33.33% - 10px);
  }
}


@media screen and (max-width: 576px) {
  .honors--image {
    width: 80%;
  }

  .honors--content {
    padding: 2rem 1rem;
  }

  .worth ul li span {
    font-size: var(--txt14);
  }

  .worth ul li>img {
    width: 70px;
  }
}

@media screen and (max-width: 425px) {
  .honors--image {
    width: 90%;
  }

  .worth ul li {
    flex-basis: calc(50% - 10px);
  }
}

@media screen and (max-width: 375px) {
  .honors--image {
    width: 100%;
  }

}

/*********************
END: MEDIA
*********************/