.aboutPage {
  background: #fff;
}

.aboutProfile h2,
.aboutProfile h3,
.aboutProfile h4 {
  color: #2A2F36;
}

.profileIntro {
  background: #fff;
  padding: 84px 0 70px;
}

.profileIntro h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
  text-align: center;
}

.profileText {
  margin-top: 42px;
}

.profileText p {
  font-size: 17px;
  color: #5C6470;
  line-height: 34px;
}

.profileText p:not(:last-child) {
  margin-bottom: 10px;
}

.statsList {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.statsList .item {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.statsList .icon {
  width: 48px;
  height: 48px;
  background: #004D80;
  border-radius: 3px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.statsList .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statsList h4 {
  font-weight: 700;
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 9px;
}

.statsList p {
  font-size: 13px;
  color: #5C6470;
  line-height: 13px;
  white-space: nowrap;
}

.expertiseChoice {
  background: #F4F6F8;
  padding: 72px 0 85px;
}

.expertiseChoice .main {
  display: grid;
  grid-template-columns: 655px 1fr;
  gap: 50px;
}

.expertiseChoice h3 {
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
  margin-bottom: 45px;
}

.expertiseList {
  display: grid;
  grid-template-columns: repeat(2, 310px);
  gap: 30px 35px;
}

.expertiseList .item {
  height: 210px;
  background: #fff;
  border: 1px solid #E2E6EC;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.expertiseList .icon {
  width: 54px;
  height: 54px;
  background: #EAF4FA;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
}

.expertiseList .icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.expertiseList h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25.2px;
  text-align: center;
}

.whyBox {
  border-left: 1px solid #E2E6EC;
  padding-left: 50px;
}

.whyList {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.whyList .item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.whyList img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  flex: 0 0 25px;
  margin-top: 3px;
}

.whyList p {
  font-size: 18px;
  color: #12141A;
  line-height: 25.2px;
}

.globalOps {
  min-height: 516px;
  /*background-image: linear-gradient(180deg, rgba(234, 244, 250, .4) 0%, rgba(234, 244, 250, .4) 100%), url('../images/about-operations-bg.png');*/
  
  background: #F4F6F8;
  padding: 86px 0 78px;
  position: relative;
}

.globalOps .title {
  text-align: center;
}

.globalOps .title h3 {
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
  margin-bottom: 20px;
}

.globalOps .title p {
  font-weight: 600;
  font-size: 17px;
  color: #5C6470;
  line-height: 17px;
}

.opsWrap {
  position: relative;
  margin-top: 50px;
}

.opsList {
  width: 100%;
  overflow: hidden;
}

.opsList .swiper-wrapper {
  align-items: stretch;
}

.opsList .item {
  height: auto;
  min-height: 198px;
  background: #fff;
  border: 1px solid #E2E6EC;
  border-radius: 10px;
  overflow: hidden;
}

.opsList .top {
  height: 60px;
  background: #004D80;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
}

.opsList .top img {
  width: 24px;
  height: 29px;
  object-fit: contain;
}

.opsList h4 {
  font-weight: 700;
  font-size: 18px;
  color: #E2EEF5;
  line-height: 18px;
  white-space: nowrap;
}

.opsList .body {
  padding: 30px 32px 24px;
}

.opsList p {
  font-size: 16px;
  color: #2A2F36;
  line-height: 20px;
  position: relative;
  padding-left: 12px;
}

.opsList p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: #004D80;
  border-radius: 50%;
}

.opsList p:not(:last-child) {
  margin-bottom: 6px;
}

.opsArrow {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 84px;
  z-index: 1;
  transition: all .3s ease-in-out;
}

.opsArrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter .3s ease-in-out;
}

.opsArrow:hover img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(97%) saturate(1356%) hue-rotate(178deg) brightness(89%) contrast(103%);
}

.opsPrev {
  left: -55px;
}

.opsNext {
  right: -55px;
}

@media (max-width: 1180px) {
  .expertiseChoice .main {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 375px);
    gap: 36px;
  }

  .expertiseList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opsPrev {
    left: -15px;
  }

  .opsNext {
    right: -15px;
  }
}

@media (max-width: 1024px) {
  .profileIntro {
    padding: 70px 0 60px;
  }

  .statsList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .expertiseChoice {
    padding: 64px 0 70px;
  }

  .expertiseChoice .main {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .expertiseChoice h3 {
    margin-bottom: 34px;
  }

  .expertiseList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whyBox {
    border-left: 0;
    padding-left: 0;
  }

  .whyList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .globalOps {
    padding: 70px 0;
  }

  .opsArrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .profileIntro {
    padding: 56px 0;
  }

  .profileIntro h2,
  .expertiseChoice h3,
  .globalOps .title h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .profileText {
    margin-top: 30px;
  }

  .profileText p {
    font-size: 15px;
    line-height: 28px;
  }

  .statsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .statsList .item {
    gap: 16px;
  }

  .statsList .icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .statsList h4 {
    font-size: 24px;
    line-height: 24px;
  }

  .expertiseChoice {
    padding: 56px 0;
  }

  .expertiseList {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .expertiseList .item {
    height: auto;
    min-height: 180px;
  }

  .expertiseList .icon {
    margin-bottom: 28px;
  }

  .whyList {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .whyList p {
    font-size: 16px;
    line-height: 24px;
  }

  .globalOps {
    min-height: 0;
    padding: 56px 0;
  }

  .opsWrap {
    margin-top: 34px;
  }

  .opsList .body {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .profileIntro h2,
  .expertiseChoice h3,
  .globalOps .title h3 {
    font-size: 25px;
    line-height: 31px;
  }

  .statsList {
    grid-template-columns: 1fr;
  }

  .expertiseList .item {
    padding: 22px 18px;
  }

  .expertiseList h4 {
    font-size: 17px;
    line-height: 24px;
  }

  .opsList .top {
    padding: 0 18px;
  }

  .opsList h4 {
    font-size: 16px;
    line-height: 20px;
    white-space: normal;
  }
}
