.blog-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-width: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog-top-wrapper {
  text-align: center;
  background: #FFFFFF;
  color: #001F43;
  border-radius: 48px;
  padding: 6.4rem 9.6rem;
  margin: 4.8rem 0 6.4rem;
}
.blog-top h1 {
  font-size: 5.6rem;
  line-height: 6.4rem;
}
.blog-top p {
  font-size: 2rem;
  line-height: 3rem;
  margin: 2.4rem 0 4.8rem;
}
.blog-top span {
  font-size: 1.6rem;
  line-height: 2rem;
  display: block;
  text-align: center;
}
.blog-search {
  position: relative;
  max-width: 480px;
  margin: 0 auto 4.8rem;
}
.blog-search button {
  position: absolute;
  left: 20px;
  top: 14px;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-search input {
  width: 100%;
  display: block;
  padding: 1.6rem 1.6rem 1.6rem 5.6rem;
  background: #F3F8FE;
  font-size: 1.4rem;
  line-height: 2rem;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: border-color 0.4s ease-in-out;
  outline: none;
}
.blog-search input:focus, .blog-search input:hover {
  border-color: #127FFF;
}
.blog-search input::-moz-placeholder {
  color: #001F43;
}
.blog-search input::placeholder {
  color: #001F43;
}
.blog-categories {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
}
.blog-category {
  font-size: 1.2rem;
  line-height: 1.8rem;
  padding: 1rem 2.4rem 1.2rem;
  background: #DEEEFF;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  color: #001F43;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.blog-category:hover {
  background: #127FFF;
  color: #FFF;
}
.blog-category.active {
  background: #127FFF;
  color: #FFF;
}
@media all and (max-width: 768px) {
  .blog-top {
    margin: 6.4rem 0 0;
  }
  .blog-top-wrapper {
    padding: 2.4rem 1.6rem;
    border-radius: 16px;
    margin: 2.4rem 0;
  }
  .blog-top h1 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  .blog-top p {
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 0.8rem 0 1.6rem;
  }
  .blog-top span {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .blog-search {
    min-width: 256px;
    margin: 0 0 1.6rem;
    max-width: 100%;
  }
  .blog-search button {
    left: 12px;
    top: 14px;
  }
  .blog-search input {
    padding: 1.7rem 1.6rem 1.7rem 4.8rem;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .blog-categories {
    justify-content: flex-start;
  }
  .blog-category {
    font-size: 1rem;
    line-height: 1.6rem;
    padding: 0.6rem 1.6rem 0.8rem;
    border-radius: 8px;
  }
  .blog-category:hover {
    background: #DEEEFF;
    color: #001F43;
  }
  .blog-category.active {
    background: #127FFF;
    color: #FFF;
  }
}

.featured-article-content {
  display: flex;
  gap: 6.4rem;
  align-items: center;
  padding: 6.4rem;
  border-radius: 48px;
  background: #FFF;
  color: #001F43;
  margin: 0 0 6.4rem;
}
.featured-article-image {
  min-width: 632px;
  width: 632px;
  height: 512px;
  border-radius: 32px;
  overflow: hidden;
}
.featured-article-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.featured-article-text p {
  font-size: 1.4rem;
  line-height: 2rem;
}
.featured-article-title {
  display: block;
  font-size: 4rem;
  line-height: 4.8rem;
  margin: 0 0 1.2rem;
  font-weight: 700;
}
.featured-article-categories {
  display: flex;
  gap: 0.8rem;
  flex-flow: row wrap;
  margin: 0 0 2.4rem;
}
.featured-article-category {
  background: #DEEEFF;
  border-radius: 24px;
  padding: 0.2rem 1.6rem 0.4rem;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.featured-article-more {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 2.4rem 0 0;
  color: #127FFF;
  font-size: 1.4rem;
  line-height: 2rem;
  transition: color 0.4s ease-in-out;
}
.featured-article-more:hover {
  color: #FF5E18;
}
.featured-article-more:hover:after {
  border-color: #FF5E18;
}
.featured-article-more:after {
  content: "";
  display: inline-block;
  border-right: 2px solid #127FFF;
  border-bottom: 2px solid #127FFF;
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
  transition: border-color 0.4s ease-in-out;
}
.featured-article-author {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin: 0 0 1.2rem;
}
.featured-article-author img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.featured-article-author-details {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.featured-article-author-details span {
  color: #FF5E18;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 600;
}
.featured-article-author-details span:last-of-type {
  color: #98A9BE;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: normal;
}
@media all and (max-width: 1024px) {
  .featured-article-content {
    flex-flow: column;
    gap: 1.6rem;
    padding: 0;
    border-radius: 0;
    margin: 0 0 2.4rem;
  }
  .featured-article-content p {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .featured-article-categories {
    margin: 0 0 1.6rem;
  }
  .featured-article-title {
    font-size: 2rem;
    line-height: 3rem;
    margin: 0 0 0.8rem;
  }
  .featured-article-image {
    height: 184px;
    width: 100%;
    min-width: unset;
    border-radius: 16px;
  }
  .featured-article-more {
    margin: 1.6rem 0 0;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .featured-article-author {
    margin: 0 0 0.8rem;
    gap: 0.8rem;
  }
  .featured-article-author img {
    min-width: 24px;
    width: 24px;
    height: 24px;
  }
  .featured-article-author-details {
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
  }
  .featured-article-author-details span {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}

.articles {
  padding: 0 0 12.8rem;
}
.articles-results {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin: 0 0 4.8rem;
}
.articles-results span {
  font-weight: 700;
}
.articles-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 6.4rem 3.2rem;
}
.articles-item a img {
  height: 262px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  width: 100%;
  margin: 0 0 2.4rem;
}
.articles-item p {
  font-size: 1.4rem;
  line-height: 2rem;
}
.articles-title {
  display: block;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
}
.articles-categories {
  display: flex;
  gap: 0.8rem;
  flex-flow: row wrap;
  margin: 0 0 1.2rem;
}
.articles-category {
  background: #DEEEFF;
  border-radius: 24px;
  padding: 0.2rem 1.6rem 0.4rem;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.articles-author {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin: 0 0 1.2rem;
}
.articles-author img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.articles-author-details {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.articles-author-details span {
  color: #FF5E18;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 600;
}
.articles-author-details span:last-of-type {
  color: #98A9BE;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: normal;
}
.articles-pagination {
  display: flex;
  gap: 1rem;
  margin: 6.4rem 0 0;
  justify-content: center;
}
.articles-pagination a,
.articles-pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #127FFF;
  font-size: 1.4rem;
  line-height: 2rem;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
}
.articles-pagination .current {
  background: #127FFF;
  color: #FFF;
}
.articles-pagination .prev,
.articles-pagination .next {
  color: transparent;
}
.articles-pagination .prev:after,
.articles-pagination .next:after {
  content: "";
  display: inline-block;
  border-right: 2px solid #127FFF;
  border-bottom: 2px solid #127FFF;
  width: 6px;
  height: 6px;
}
.articles-pagination .prev {
  margin: 0 1.4rem 0 0;
}
.articles-pagination .prev:after {
  transform: rotate(135deg);
}
.articles-pagination .next {
  margin: 0 0 0 1.4rem;
}
.articles-pagination .next:after {
  transform: rotate(-45deg);
}
@media all and (max-width: 1024px) {
  .articles {
    padding: 0 0 1.6rem;
  }
  .articles-results {
    display: flex;
    flex-flow: column;
    text-align: center;
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 0 0 2.4rem;
  }
  .articles-results span {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .articles-list {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .articles-item {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .articles-item a img {
    border-radius: 16px;
    height: 184px;
    margin: 0 0 1.6rem;
  }
  .articles-item p {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .articles-title {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin: 0 0 0.8rem;
  }
  .articles-author {
    margin: 0 0 0.8rem;
    gap: 0.8rem;
  }
  .articles-author img {
    min-width: 24px;
    width: 24px;
    height: 24px;
  }
  .articles-author-details {
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
  }
  .articles-author-details span {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .articles-pagination {
    margin: 2.4rem 0 0;
  }
  .articles-pagination a,
  .articles-pagination span {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .articles-pagination .prev {
    margin: 0 0.2rem 0 0;
  }
  .articles-pagination .next {
    margin: 0 0 0 0.2rem;
  }
}
.articles-slider {
  background: #F4FBFF;
  padding: 12.8rem 0;
}
.articles-slider h2 {
  position: absolute;
  font-size: 4.8rem;
  line-height: 5.6rem;
}
.articles-slider-wrapper.swiper {
  padding: 9.6rem 0 0;
}
.articles-slider .swiper .swiper-button-prev,
.articles-slider .swiper .swiper-button-next {
  width: 52px;
  height: 52px;
  text-rendering: auto;
  color: #0C2243;
  top: 7px;
  --swiper-navigation-size: 14px;
  font-weight: 700;
  border-radius: 16px;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
  background: #FFFFFF;
}
.articles-slider .swiper .swiper-button-prev:hover,
.articles-slider .swiper .swiper-button-next:hover {
  color: #FFF;
  background: #127FFF;
}
.articles-slider .swiper .swiper-button-prev {
  left: unset;
  right: 64px;
}
.articles-slider .swiper .swiper-button-next {
  right: 0;
}
@media all and (max-width: 1024px) {
  .articles-slider {
    padding: 2.4rem 0;
  }
  .articles-slider h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  .articles-slider-wrapper.swiper {
    padding: 6.4rem 0 0;
  }
  .articles-slider .swiper .swiper-button-prev,
  .articles-slider .swiper .swiper-button-next {
    border-radius: 12px;
    width: 40px;
    height: 40px;
  }
  .articles-slider .swiper .swiper-button-prev {
    right: 48px;
  }
}

.articles-contact {
  background: linear-gradient(#D0E6FF, #F4FBFF);
  padding: 12.8rem 0;
}
.articles-contact-wrapper {
  display: flex;
  gap: 9.6rem;
}
.articles-contact-text {
  min-width: 347px;
  width: 347px;
  display: flex;
  flex-flow: column;
}
.articles-contact-text > span {
  color: #FF5E18;
  font-size: 2rem;
  line-height: 3rem;
  margin: 0 0 2.4rem;
  font-weight: 600;
}
.articles-contact-text h2 {
  font-size: 5.6rem;
  line-height: 6.4rem;
  font-weight: 700;
  margin: 0 0 9.6rem;
}
.articles-contact-info span {
  display: block;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.articles-contact-info > a {
  font-size: 1.4rem;
  line-height: 2rem;
}
.articles-contact-socials {
  margin: 2.4rem 0 0;
  display: flex;
  gap: 0.8rem;
}
.articles-contact-socials a {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.articles-contact-form {
  width: 100%;
}
.articles-contact-form > p {
  width: 100%;
}
.articles-contact-form label {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #001F43;
}
.articles-contact-form label span {
  color: #FF5E18;
}
.articles-contact-form form .articles-contact-cta {
  display: flex;
}
.articles-contact-form .wpcf7-not-valid-tip {
  color: #FF5E18;
}
.articles-contact-form .row {
  display: flex;
  gap: 3.2rem;
  margin: 0 0 3.2rem;
}
.articles-contact-form .row > p {
  width: 100%;
}
.articles-contact-form .last-row {
  display: flex;
  gap: 3.2rem;
  margin: 3.2rem 0 0;
}
.articles-contact-form input:not(.wpcf7-submit),
.articles-contact-form textarea,
.articles-contact-form select {
  margin: 1rem 0 0;
  border-radius: 12px;
  border: 2px solid transparent;
  padding: 1.7rem 2rem;
  transition: border-color 0.3s ease-in-out;
  outline: none;
  width: 100%;
}
.articles-contact-form input:not(.wpcf7-submit):hover, .articles-contact-form input:not(.wpcf7-submit):focus,
.articles-contact-form textarea:hover,
.articles-contact-form textarea:focus,
.articles-contact-form select:hover,
.articles-contact-form select:focus {
  border-color: #127FFF;
}
.articles-contact-form input:not(.wpcf7-submit).has-value,
.articles-contact-form textarea.has-value,
.articles-contact-form select.has-value {
  border-color: #127FFF;
}
.articles-contact-form input:not(.wpcf7-submit).wpcf7-not-valid,
.articles-contact-form textarea.wpcf7-not-valid,
.articles-contact-form select.wpcf7-not-valid {
  border-color: #FF5E18;
}
.articles-contact-form select {
  display: block;
  width: 100%;
  background: #FFF;
}
.articles-contact-form select option[value=""] {
  color: #B6C4D6;
}
.articles-contact-form select.wpcf7-not-valid {
  color: #B6C4D6;
}
.articles-contact-form select.wpcf7-not-valid option[value=""] {
  color: #B6C4D6;
}
.articles-contact-form select.wpcf7-not-valid option {
  color: #001F43;
}
.articles-contact-form select.wpcf7-not-valid:not(:-moz-placeholder) {
  border-color: #FF5E18;
}
.articles-contact-form select.wpcf7-not-valid:has(option[value=""]:checked), .articles-contact-form select.wpcf7-not-valid:not(:placeholder-shown) {
  border-color: #FF5E18;
}
.articles-contact-form select:has(option[value=""]:checked) {
  border-color: white;
}
.articles-contact-form select:not(:-moz-placeholder) {
  border-color: #127FFF;
}
.articles-contact-form select:not(:placeholder-shown) {
  border-color: #127FFF;
}
.articles-contact-form .wpcf7-submit {
  padding: 1.6rem 3.2rem;
  font-size: 1.4rem;
  line-height: 2rem;
  background: #127FFF;
  color: #FFF;
  outline: none;
  border: none;
}
.articles-contact-form .wpcf7-submit:hover {
  background: #ff5e18;
}
.articles-contact-form .wpcf7-spinner {
  position: absolute;
}
.articles-contact-cta {
  display: none;
  gap: 1rem;
  color: #127FFF;
  font-size: 1.4rem;
  line-height: 2rem;
  margin: 1.6rem 0 0;
}
.articles-contact-cta span {
  display: flex;
  width: 20px;
  height: 20px;
  background: #FFF;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.articles-contact-cta span:after {
  content: "";
  display: inline-block;
  border-right: 2px solid #127FFF;
  border-bottom: 2px solid #127FFF;
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
}
@media all and (max-width: 1024px) {
  .articles-contact {
    padding: 3.2rem 0;
  }
  .articles-contact-wrapper {
    flex-flow: column;
    gap: 1.6rem;
  }
  .articles-contact-text {
    text-align: center;
    min-width: none;
    width: auto;
    gap: 1.6rem;
  }
  .articles-contact-text > span {
    margin: 0;
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .articles-contact-text h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
    margin: 0;
  }
  .articles-contact-info span {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .articles-contact-info > a {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .articles-contact-socials {
    margin: 1.6rem 0 0;
    justify-content: center;
  }
  .articles-contact-form .row {
    flex-flow: column;
    gap: 1.6rem;
    margin: 0 0 1.6rem;
  }
  .articles-contact-form .wpcf7-submit {
    width: 100%;
  }
  .articles-contact-form .last-row {
    flex-flow: column;
    gap: 0rem;
  }
  .articles-contact-cta {
    font-size: 1.2rem;
    line-height: 1.8rem;
    align-self: center;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loading::before {
  content: "";
  background: #FFF;
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 48px;
}
.loading::after {
  content: "";
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid #127fff;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=blog.css.map */