@keyframes gradient {
  0% {
    background-position: 97% 0%;
  }
  50% {
    background-position: 4% 100%;
  }
  100% {
    background-position: 97% 0%;
  }
}
.blog {
  padding-top: 190px;
  padding-bottom: 90px;
  background: #002C44;
  position: relative;
}
.blog::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(241, 182, 3) 0%, rgb(239, 109, 95) 33%, rgb(14, 54, 76) 66%, rgb(182, 200, 214) 100%);
  background-size: 400% 100%;
  height: 10px;
  animation: gradient 4s ease infinite;
}
.blog .subject {
  background: #0E364C;
  color: #F1B603;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 8px 16px;
  border-radius: 1rem;
  display: block;
  text-transform: uppercase;
}
.blog h1 {
  font-size: calc(1.63125rem + 4.575vw);
  color: #fff;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .blog h1 {
    font-size: 5.0625rem;
  }
}

.content {
  background: #EDF2F6;
  padding-top: 60px;
  padding-bottom: 60px;
}
.content nav {
  padding-bottom: 30px;
}
.content .audio {
  margin-bottom: 30px;
}
.content .audio button {
  padding: 0;
}
.content .audio button:active, .content .audio button:focus {
  border: none;
  box-shadow: none;
}
.content .audio button svg {
  font-size: 2rem;
  margin: 0;
}
.content .my-titles {
  padding: 30px;
  border: solid 1px #002C44;
  border-radius: 20px;
  margin-bottom: 30px;
}
.content .my-titles span.h3 {
  font-size: calc(1.275rem + 0.3vw);
  letter-spacing: 0px;
  color: #002C44;
  margin-bottom: 24px;
  display: block;
}
@media (min-width: 1200px) {
  .content .my-titles span.h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .content .my-titles span.h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.content .my-titles a {
  display: block;
  margin-bottom: 6px;
  color: #002C44;
}
.content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.content p {
  font-size: 18px;
}
.content .solution {
  background: #002C44;
  border-radius: 5px;
  padding: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
}
.content .solution::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(241, 182, 3) 0%, rgb(239, 109, 95) 33%, rgb(14, 54, 76) 66%, rgb(182, 200, 214) 100%);
  background-size: 100% 400%;
  width: 10px;
  height: 100%;
  z-index: 1;
  margin: auto;
  animation: gradient 4s ease infinite;
}
.content .solution span.h3 {
  color: #fff;
  font-size: calc(1.35rem + 1.2vw);
  margin-bottom: 30px;
  display: block;
}
@media (min-width: 1200px) {
  .content .solution span.h3 {
    font-size: 2.25rem;
  }
}
.content .solution p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
}
.content .btn-arrow {
  color: #002C44;
}
.content h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .content h2 {
    font-size: 2rem;
  }
}
.content h3 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .content h3 {
    font-size: 1.5rem;
  }
}

.blogs {
  background: #EDF2F6;
  padding-top: 60px;
  padding-bottom: 120px;
}
.blogs h2 {
  font-size: calc(1.35rem + 1.2vw);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 1200px) {
  .blogs h2 {
    font-size: 2.25rem;
  }
}
.blogs article {
  margin-bottom: 90px;
}
.blogs article .r-subject {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
}
.blogs article .r-subject::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgb(241, 182, 3) 0%, rgb(239, 109, 95) 33%, rgb(14, 54, 76) 66%, rgb(182, 200, 214) 100%);
  background-size: 400% 100%;
  width: 98%;
  height: 10px;
  z-index: 1;
  margin: auto;
  animation: gradient 4s ease infinite;
}
.blogs article .r-subject .subject {
  color: #F1B603;
  background-color: #0E364C;
  padding: 8px 16px;
  border-radius: 22px;
  text-transform: uppercase;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
}
.blogs article h3 {
  font-size: calc(1.4625rem + 2.55vw);
  color: #002C44;
  margin-bottom: 30px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .blogs article h3 {
    font-size: 3.375rem;
  }
}
.blogs article p {
  color: #002C44;
  font-size: 18px;
  margin-bottom: 30px;
}
