.componentSourcingPage {
  background: #fff;
}

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

.textBlock h5,
.titleBlock h5 {
  font-weight: 700;
  font-size: 14px;
  color: #004D80;
  line-height: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.textBlock h2,
.titleBlock h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
  /*text-transform: capitalize;*/
}

.textBlock h2{
    max-width: 500px;
}

.textBlock p,
.titleBlock p,
.introFull {
  font-size: 16px;
  color: #3A4150;
  line-height: 27px;
}

.textBlock p:first-of-type {
  margin-top: 28px;
}

.textBlock p:not(:last-child) {
  margin-bottom: 9px;
}

.textBlock strong,
.introFull strong {
  font-weight: 700;
  color: inherit;
}

.center {
  text-align: center;
}

.sourceIntro {
  padding: 80px 0 76px;
}

.introGrid {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(360px, 540px);
  gap: 50px;
  align-items: start;
}

.sourceIntro .imgBox {
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}

.sourceIntro .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.introFull {
  margin-top: 42px;
}

.bomExpertise {
  background: #F4F7FB;
  padding: 76px 0 80px;
}

.expertiseMap {
  min-height: 330px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 350px) 300px minmax(0, 350px);
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.expertiseList {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.expertiseList .item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 20px;
  align-items: center;
}

.expertiseList.right .item {
  grid-template-columns: 44px minmax(0, 1fr);
}

.expertiseList p {
  font-size: 14px;
  color: #3A4150;
  line-height: 20px;
  text-transform: capitalize;
}

.expertiseList.left p {
  text-align: right;
}

.ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EAF4FA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ico img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.expertiseCore {
  width: 256px;
  height: 256px;
  position: relative;
  justify-self: center;
}

.expertiseCore::before,
.expertiseCore::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 18px solid rgba(0, 134, 236, .16);
  animation: bomRipple 2.8s linear infinite;
}

.expertiseCore::before {
  width: 190px;
  height: 190px;
}

.expertiseCore::after {
  width: 190px;
  height: 190px;
  animation-delay: 1.4s;
}

.ringOuter {
  width: 256px;
  height: 256px;
  background: rgba(213, 234, 248, .62);
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: bomPulse 2.8s ease-in-out infinite;
}

.ringMid {
  width: 220px;
  height: 220px;
  background: rgba(184, 223, 246, .72);
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: bomPulse 2.8s ease-in-out infinite .35s;
}

.ringInner {
  width: 190px;
  height: 190px;
  background: #0086EC;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ringInner img {
  width: 128px;
  height: 43px;
}

@keyframes bomRipple {
  0% {
    opacity: .7;
    transform: translate(-50%, -50%) scale(.82);
  }

  70% {
    opacity: .18;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.58);
  }
}

@keyframes bomPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(.96);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
}

.validation {
  padding: 76px 0 84px;
}

.validationWrap {
  position: relative;
  margin-top: 44px;
  padding: 0 58px;
}

.validationSwiper {
  overflow: hidden;
  padding: 0 3px;
}

.validationSwiper .swiper-slide {
  text-align: center;
}

.validationSwiper .swiper-slide:hover h3{
    color: #004D80;
}

.deviceCard {
  height: 360px;
  background: #fff;
  border: 1px solid #E2E6EC;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 77, 128, .1);
  padding: 16px;
  transition: all .3s ease-in-out;
}

.deviceCard:hover {
  box-shadow: 0 8px 22px rgba(0, 77, 128, .16);
  transform: translateY(-4px);
}

.deviceCard img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.validationSwiper h3 {
  font-weight: 700;
  font-size: 15px;
  color: #2A2F36;
  line-height: 34px;
  margin-top: 14px;
  text-align: center;
}

.validationArrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #DDECF6;
  position: absolute;
  top: 161px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
}

.validationArrow:hover {
  background: #004D80;
}

.validationArrow span {
  width: 9px;
  height: 9px;
  border-top: 2px solid #004D80;
  border-right: 2px solid #004D80;
  transition: all .3s ease-in-out;
}

.validationArrow:hover span {
  border-color: #fff;
}

.validationPrev {
  left: 0;
  background: #DDECF6;
}

.validationPrev span {
  border-color: #004D80;
  transform: rotate(-135deg);
}

.validationNext{
  right: 0;
  background: #DDECF6;
}

.validationNext:hover {
  background: #004D80;
}

.validationNext span{
  border-color: #004D80;
  transform: rotate(45deg);
}

.validationNext:hover span {
  border-color: #fff;
}

@media (max-width: 1024px) {
  .sourceIntro,
  .bomExpertise,
  .validation {
    padding: 64px 0;
  }

  .introGrid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sourceIntro .imgBox {
    height: 360px;
  }

  .expertiseMap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .expertiseList {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    gap: 18px;
  }

  .expertiseList.left {
    order: 2;
  }

  .expertiseCore {
    order: 1;
  }

  .expertiseList.right {
    order: 3;
  }

  .expertiseList .item,
  .expertiseList.right .item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .expertiseList.left .item .ico {
    order: 1;
  }

  .expertiseList.left .item p {
    order: 2;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .sourceIntro,
  .bomExpertise,
  .validation {
    padding: 52px 0;
  }

  .textBlock h2,
  .titleBlock h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .textBlock p,
  .titleBlock p,
  .introFull {
    font-size: 15px;
    line-height: 25px;
  }

  .sourceIntro .imgBox {
    height: 280px;
  }

  .introFull {
    margin-top: 32px;
  }

  .expertiseCore {
    width: 220px;
    height: 220px;
  }

  .ringOuter {
    width: 220px;
    height: 220px;
  }

  .ringMid {
    width: 190px;
    height: 190px;
  }

  .ringInner {
    width: 164px;
    height: 164px;
  }

  .ringInner img {
    width: 110px;
  }

  .validationWrap {
    padding: 0;
  }

  .validationArrow {
    display: none;
  }

  .deviceCard {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .textBlock h2,
  .titleBlock h2 {
    font-size: 25px;
    line-height: 31px;
  }

  .sourceIntro .imgBox {
    height: 220px;
  }

  .expertiseList .item,
  .expertiseList.right .item {
    gap: 14px;
  }

  .deviceCard {
    height: 280px;
  }
}
