.step-component {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 0px;
  color: #001A45;
  margin-bottom: 10px;
}
.step-component.blue-circle {
  background-color: #F3FAFE;
  border-radius: 70%;
  height: 200px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.step-component.white-circle {
  background-color: white;
  border-radius: 70%;
  height: 200px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.step-component img {
  height: 80px;
  width: auto;
}
@media only screen and (max-width: 700px) {
  .step-component img {
    height: 90px;
  }
}
.step-component b {
  margin-top: 10px;
  height: 30px;
  font-size: 22px;
}
.step-component p {
  margin: 0;
  margin-top: 10px;
  text-align: center;
  width: 78%;
}
@media only screen and (max-width: 700px) {
  .step-component p {
    width: 70%;
  }
}

.static-slider-block {
  padding: 7vh 0;
  padding-top: 1vh;
}
.static-slider-block h2 {
  color: #5D8CBC;
  text-align: center;
  font-size: 34px;
}
.static-slider-block .splide__arrow {
  background-color: transparent;
}
.static-slider-block .splide__arrow--next {
  right: -0.5em;
}
.static-slider-block .splide__arrow--prev {
  left: -0.5em;
}
.static-slider-block .splide__arrow svg {
  fill: #001A45;
  width: 2em;
  height: 2em;
}

.review {
  width: 90%;
  margin: auto;
  background: transparent linear-gradient(180deg, #DDEDFE 0%, #F5FAFF 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #A2CDF8;
  border-radius: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 240px;
  color: #001A45;
  position: relative;
  margin-bottom: 10px;
}
.review::before {
  position: absolute;
  content: "";
  left: 13%;
  top: 6%;
  width: 40px;
  height: 40px;
  background-image: url(../../images/quotation.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.review b {
  margin-top: 25px;
  margin-bottom: 15px;
  max-width: 80%;
  text-align: center;
}
.review span {
  margin-top: 0;
}

.article-card {
  width: 80%;
  margin: auto;
  box-shadow: 0px 3px 6px #D4ECFA;
  border-radius: 50px;
  background-color: white;
  padding: 25px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #001A45;
  margin-bottom: 25px;
  height: 250px;
  justify-content: space-between;
}
.article-card b {
  font-size: 22px;
  text-align: center;
}
.article-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 50px 50px 0 0;
}

.slider-block {
  padding: 7vh 0;
}
.slider-block h2 {
  color: #5D8CBC;
  text-align: center;
  font-size: 34px;
  margin-top: 0;
  margin-bottom: 2em;
}
.slider-block .splide__arrow {
  background-color: transparent;
}
.slider-block .splide__arrow svg {
  fill: #001A45;
  width: 2em;
  height: 2em;
}
.slider-block .splide__arrow--next {
  right: -2em;
}
@media only screen and (max-width: 700px) {
  .slider-block .splide__arrow--next {
    right: -0.5em;
  }
}
.slider-block .splide__arrow--prev {
  left: -2em;
}
@media only screen and (max-width: 700px) {
  .slider-block .splide__arrow--prev {
    left: -0.5em;
  }
}

.articles-list {
  display: flex;
  flex-wrap: wrap;
}
.articles-header {
  background-color: #F3FAFE;
  padding: 50px 0;
  border-radius: 0px 0 50px 50px;
  text-align: center;
  margin-bottom: 50px;
}
.articles-header h1 {
  margin: 0;
  color: #001A45;
}
.articles-card {
  width: 80%;
  margin: auto;
  box-shadow: 0px 3px 6px #D4ECFA;
  border-radius: 50px;
  background-color: white;
  padding: 25px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #001A45;
  margin-bottom: 25px;
  height: 290px;
  justify-content: space-between;
  cursor: pointer;
  border: 3px solid #F3FAFE;
}
.articles-card-con {
  width: 33%;
}
@media only screen and (max-width: 700px) {
  .articles-card-con {
    width: 100%;
  }
}
.articles-card b {
  font-size: 20px;
  text-align: center;
}
.articles-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 50px 50px 0 0;
}
.articles-card span {
  margin-top: 15px;
  text-align: center;
}