﻿@font-face {
  font-family: 'Ubuntu';
  src: url("../../Fonts/Ubuntu-Regular.ttf") format('truetype');
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../../Fonts/Ubuntu-Light.ttf") format('truetype');
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../../Fonts/Ubuntu-Medium.ttf") format('truetype');
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../../Fonts/Ubuntu-Bold.ttf") format('truetype');
  font-style: normal;
  font-weight: 700;
}
.menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  height: 70px;
  padding: 8px 0px;
  justify-content: space-between;
  align-self: stretch;
  display: flex;
  flex-direction: row;
  font-family: "Ubuntu";
  background: #FFF;
  align-items: center;
}
.menu .ageas-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.menu .ageas-container ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 0px;
  margin-bottom: 0;
}
.menu .ageas-container ul .menu-logo {
  height: 40px;
  width: 71px;
}
.menu .ageas-container ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  align-self: center;
  padding: 8px 12px;
  border: 2px solid transparent;
  text-align: center;
}
.menu .ageas-container ul li a {
  color: #495680;
  text-decoration: none;
}
.menu .ageas-container ul li:hover {
  border-radius: 8px;
  background: rgba(0, 33, 77, 0.08);
}
.menu .ageas-container ul li:active a {
  color: #00214D;
}
.menu .ageas-container ul li:focus-visible {
  border-radius: 8px;
  background: rgba(0, 33, 77, 0.08);
  border: 2px solid #141414;
  color: #00214D;
}
.menu .ageas-container ul li:first-child:hover {
  border-radius: 0;
  background: unset;
}
.menu .ageas-container div {
  display: flex;
  align-content: center;
  margin: 8px 12px;
  align-items: center;
}
.menu .ageas-container div .virtual-wallet-anchor {
  text-decoration: none;
  width: unset;
  height: unset;
  margin-right: 20px;
  padding: 8px 12px;
  border: 2px solid transparent;
  text-align: center;
}
.menu .ageas-container div .virtual-wallet-anchor .virtual-wallet-anchor-container {
  display: flex;
  gap: 8px;
  margin: unset;
}
.menu .ageas-container div .virtual-wallet-anchor .virtual-wallet-anchor-container img {
  height: 24px;
  width: 24px;
}
.menu .ageas-container div .virtual-wallet-anchor .virtual-wallet-anchor-container span {
  color: #495680;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  align-self: center;
}
.menu .ageas-container div a {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  width: 36px;
  justify-content: center;
  height: 36px;
  transition: all ease-in-out 200ms;
}
.menu .ageas-container div a:hover {
  border-radius: 8px;
  background: rgba(0, 33, 77, 0.08);
}
.menu .ageas-container div a:focus-visible {
  border-radius: 8px;
  background: rgba(0, 33, 77, 0.08);
  border: 2px solid #141414;
}
.menu .ageas-container div a .private-area-icon {
  height: 24px;
  width: 24px;
}
.menu-mobile {
  display: none;
}
.drawer {
  display: none;
}
@media screen and (min-width: 0px) and (max-width: 1024px) {
  .menu {
    display: none;
  }
  .menu-mobile {
    display: flex;
    width: 100%;
    padding: 8px 0px;
    height: 64px;
    justify-content: space-between;
    position: fixed;
    background: #FFF;
    z-index: 999;
    top: 0;
  }
  .menu-mobile .menu-logo {
    height: 48px;
    width: 85px;
  }
  .menu-mobile .menu-mobile-right {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }
  .menu-mobile .menu-mobile-right .private-area-icon {
    height: 24px;
    width: 24px;
  }
  .menu-mobile .menu-mobile-right .drawer-icon {
    height: 24px;
    width: 24px;
  }
  .menu-mobile .menu-mobile-left {
    align-self: center;
  }
  .drawer {
    display: none;
    width: 100%;
    height: 100%;
    z-index: 1000;
    position: fixed;
    top: 0;
    backdrop-filter: blur(24px);
    transition: all 200ms ease-in-out;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%), linear-gradient(255deg, rgba(255, 255, 255, 0.5) 0%, rgba(244, 246, 250, 0.8) 100%, rgba(244, 246, 250, 0.5) 100%);
    -webkit-backdrop-filter: blur(24px);
  }
  .drawer ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px 16px 16px;
    margin-bottom: 24px;
    z-index: 1002;
    position: fixed;
    width: 100%;
  }
  .drawer ul li {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    padding: 8px 10px;
    border: 2px solid transparent;
    height: 40px;
    display: flex;
    align-items: center;
  }
  .drawer ul li a {
    text-decoration: none;
    color: #00214D;
  }
  .drawer ul li:focus-visible {
    border-radius: 8px;
    /*background: rgba(0, 33, 77, 0.08);*/
    border: 2px solid #141414;
    background: rgba(0, 33, 77, 0.24);
  }
  .drawer .close-button-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 48px;
    position: relative;
    z-index: 1002;
    padding: 16px 16px 0 16px;
  }
  .drawer .close-button-container .close-button {
    height: 37px;
    width: 37px;
    padding: 8px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .drawer .close-button-container .close-button img {
    height: 24px;
    width: 24px;
  }
  .drawer .mobile-separator {
    height: 1px;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
    background: #00214D;
    opacity: 0.24;
    border: none;
  }
  .drawer .virtual-wallet-anchor {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    padding: 8px 12px;
    border: 2px solid transparent;
    height: 40px;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: #495680;
  }
  .drawer .virtual-wallet-anchor .virtual-wallet-anchor-container {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .drawer .virtual-wallet-anchor .virtual-wallet-anchor-container img {
    height: 24px;
    width: 24px;
  }
  .drawer.open {
    display: block;
  }
}
.footer {
  color: #FFF;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  font-family: 'Ubuntu';
  background: #00214D;
}
.footer .ageas-container .footer-upper {
  display: flex;
  flex-direction: row;
  padding: 48px 0px;
  gap: 32px;
  justify-content: center;
}
.footer .ageas-container .footer-upper .footer-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 508px;
}
.footer .ageas-container .footer-upper .footer-left .footer-logo img {
  height: 88px;
  width: auto;
}
.footer .ageas-container .footer-upper .footer-left .social-media-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-text {
  font-weight: 700;
  font-size: 14px;
  font-style: normal;
  line-height: 150%;
  align-self: center;
}
.footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-icon-container {
  display: flex;
  flex-direction: row;
}
.footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-icon-container .social-media-item {
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.48);
  border-left: 1px solid rgba(255, 255, 255, 0.48);
  height: 24px;
  padding: 0 4px;
}
.footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-icon-container .social-media-item:first-of-type {
  border-left: unset;
  padding-left: 0;
}
.footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-icon-container .social-media-item:last-of-type {
  border-right: unset;
  padding-right: 0;
}
.footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-icon-container .social-media-item a {
  padding: 8px 12px;
  width: fit-content;
  border: 2px solid transparent;
}
.footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-icon-container .social-media-item a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease-out;
}
.footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-icon-container .social-media-item a:active {
  border-radius: 8px;
  transition: none;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.08);
}
.footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-icon-container .social-media-item a:focus-visible {
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease-in-out;
  outline-offset: 0px;
}
.footer .ageas-container .footer-upper .footer-left .footer-card-button {
  padding: 16px 16px 16px 24px;
  color: #FFF;
  text-decoration: none;
  border-radius: 16px;
  background: #314071;
  max-width: 416px;
}
.footer .ageas-container .footer-upper .footer-left .footer-card-button .footer-card {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.footer .ageas-container .footer-upper .footer-left .footer-card-button .footer-card .footer-card-left .footer-card-title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 8px;
}
.footer .ageas-container .footer-upper .footer-left .footer-card-button .footer-card .footer-card-left .footer-card-title b {
  font-weight: 700;
}
.footer .ageas-container .footer-upper .footer-left .footer-card-button .footer-card .footer-card-left .footer-card-subtitle {
  font-size: 16px;
  line-height: 24px;
}
.footer .ageas-container .footer-upper .footer-left .footer-card-button .footer-card .footer-card-left .footer-card-cta {
  text-decoration: underline;
  color: #15D4B6;
  width: fit-content;
}
.footer .ageas-container .footer-upper .footer-left .footer-card-button .footer-card .footer-card-left .footer-card-cta:hover {
  text-decoration: none;
}
.footer .ageas-container .footer-upper .footer-left .footer-card-button .footer-card .footer-card-left .footer-card-cta:focus-visible {
  border: 2px solid #141414;
}
.footer .ageas-container .footer-upper .footer-left .footer-card-button .footer-card .footer-card-left .footer-card-cta:active {
  text-decoration: none;
}
.footer .ageas-container .footer-upper .footer-left .footer-card-button .footer-card .footer-card-right {
  display: flex;
  align-items: center;
}
.footer .ageas-container .footer-upper .footer-left .footer-card-button .footer-card .footer-card-right .footer-card-image img {
  height: 80px;
  width: auto;
}
.footer .ageas-container .footer-upper .footer-center {
  width: 308px;
}
.footer .ageas-container .footer-upper .footer-center ul {
  list-style-type: none;
  display: flex;
  gap: 4px;
  flex-direction: column;
  padding: 0;
}
.footer .ageas-container .footer-upper .footer-center ul li {
  font-weight: 500;
  line-height: 24px;
  font-size: 16px;
  width: fit-content;
}
.footer .ageas-container .footer-upper .footer-center ul li a {
  text-decoration: none;
  color: #FFF;
}
.footer .ageas-container .footer-upper .footer-right {
  width: 416px;
}
.footer .ageas-container .footer-upper .footer-right .footer-help-card {
  border-radius: 16px;
  background-image: url(../../Images/Mesh_FooterCardHelp_1.jpg);
  background-size: cover;
  padding: 24px;
  color: #141414;
}
.footer .ageas-container .footer-upper .footer-right .footer-help-card .help-card-email {
  display: flex;
  font-size: 18px;
  line-height: 27px;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 32px;
  word-wrap: normal;
}
.footer .ageas-container .footer-upper .footer-right .footer-help-card .footer-help-card-cta {
  display: flex;
}
.footer-lower {
  display: flex;
  gap: 32px;
  background-color: #314071;
  padding: 24px 0px;
  justify-content: space-between;
}
.footer-lower .ageas-container {
  display: flex;
}
.footer-lower .ageas-container .footer-lower-container {
  display: flex;
}
.footer-lower .ageas-container .footer-lower-container .footer-disclaimer {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #CDD4E5;
}
.footer-lower .ageas-container .footer-lower-container .footer-disclaimer u {
  font-size: 13px;
  font-weight: 300;
}
.footer-lower .ageas-container .footer-lower-container .awards-container {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  flex: unset;
  flex-wrap: nowrap;
}
.footer-lower .ageas-container .footer-lower-container .awards-container img {
  height: 48px;
  width: 48px;
}
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .footer .ageas-container .footer-upper .footer-left {
    width: 39.24%;
  }
  .footer .ageas-container .footer-upper .footer-center {
    width: 23.5%;
  }
  .footer .ageas-container .footer-upper .footer-right {
    width: 32.7%;
  }
  .footer-lower .ageas-container .footer-lower-container {
    width: unset;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer .ageas-container .footer-upper {
    padding: 48px 0;
    flex-wrap: wrap;
    align-self: stretch;
    justify-content: center;
  }
  .footer .ageas-container .footer-upper .footer-left {
    width: 340px;
  }
  .footer .ageas-container .footer-upper .footer-left .social-media-container {
    flex-direction: column;
  }
  .footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-text {
    align-self: unset;
  }
  .footer .ageas-container .footer-upper .footer-left .footer-card-button {
    display: none;
  }
  .footer .ageas-container .footer-upper .footer-center {
    width: 328px;
  }
  .footer .ageas-container .footer-upper .footer-right {
    width: 431px;
    margin-right: auto;
    margin-left: auto;
  }
  .footer-lower .ageas-container .footer-lower-container {
    flex-direction: column;
    width: unset;
  }
  .footer-lower .ageas-container .footer-lower-container .footer-disclaimer {
    order: 2;
    width: 100%;
    max-width: 640px;
  }
  .footer-lower .ageas-container .footer-lower-container .awards-container {
    order: 1;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 0px) and (max-width: 767.99px) {
  .footer {
    flex-direction: column;
  }
  .footer .ageas-container .footer-upper {
    padding: 24px 0;
    flex-direction: column;
  }
  .footer .ageas-container .footer-upper .footer-left {
    justify-content: center;
    width: unset;
  }
  .footer .ageas-container .footer-upper .footer-left .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer .ageas-container .footer-upper .footer-left .social-media-container {
    flex-direction: column;
    justify-content: center;
  }
  .footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-text {
    text-align: center;
  }
  .footer .ageas-container .footer-upper .footer-left .social-media-container .social-media-icon-container {
    justify-content: center;
  }
  .footer .ageas-container .footer-upper .footer-left .footer-card-button {
    display: none;
  }
  .footer .ageas-container .footer-upper .footer-center ul .Nas-03 {
    padding: unset;
  }
  .footer .ageas-container .footer-upper .footer-right {
    min-width: 311px;
    max-width: 479px;
    width: unset;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .ageas-container .footer-upper .footer-right .footer-help-card {
    padding: 16px;
  }
  .footer-lower {
    /*justify-content: center;*/
  }
  .footer-lower .ageas-container {
    padding-top: 32px;
    padding-bottom: 32px;
    flex-direction: column;
  }
  .footer-lower .ageas-container .footer-lower-container {
    width: unset;
  }
  .footer-lower .ageas-container .footer-lower-container .footer-disclaimer {
    order: 2;
    width: 100%;
    max-width: 640px;
  }
  .footer-lower .ageas-container .footer-lower-container .awards-container {
    order: 1;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .footer-lower .ageas-container .footer-lower-container .awards-container img {
    flex: 0 0 19%;
  }
}
@media screen and (min-width: 1441px) {
  .footer-lower {
    justify-content: center;
  }
  .footer-lower .ageas-container {
    padding: 32px 16px;
    flex-direction: column;
  }
  .footer-lower .ageas-container .footer-lower-container {
    width: 1296px;
  }
}
.Pri-01 {
  min-width: 146px;
  box-shadow: 0px 4px 4px 0px rgba(154, 161, 186, 0.24), 0px 8px 24px 0px rgba(154, 161, 186, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  justify-content: center;
  border-radius: 40px;
  color: #00214D;
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-feature-settings: 'clig' off, 'liga' off;
  text-decoration: none;
  transition: background 1s;
  background: #15D4B6;
  transition: all 200ms ease-in-out;
  height: 48px;
}
.Pri-01:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 128px 0px rgba(180, 232, 223, 0.08), 0px 24px 40px -16px #B4E8DF;
}
.Pri-01:focus-visible {
  outline-color: #00214D;
  outline-style: auto;
  outline-offset: 5px;
  outline-width: initial;
}
.Pri-01:hover:active {
  border: 1px solid transparent;
  background: #15D4B6;
  color: #00214D;
  transform: unset;
}
.Pri-01:active {
  background: #44ddc5;
  opacity: 1;
  border-radius: 40px;
}
.Pri-01:disabled {
  opacity: 0.32;
}
.Pri-01-arrow {
  min-width: 146px;
  box-shadow: 0px 4px 4px 0px rgba(154, 161, 186, 0.24), 0px 8px 24px 0px rgba(154, 161, 186, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  justify-content: center;
  border-radius: 40px;
  color: #00214D;
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-feature-settings: 'clig' off, 'liga' off;
  text-decoration: none;
  transition: background 1s;
  background: #15D4B6;
  transition: all 200ms ease-in-out;
  height: 48px;
}
.Pri-01-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 128px 0px rgba(180, 232, 223, 0.08), 0px 24px 40px -16px #B4E8DF;
}
.Pri-01-arrow:focus-visible {
  outline-color: #00214D;
  outline-style: auto;
  outline-offset: 5px;
  outline-width: initial;
}
.Pri-01-arrow:hover:active {
  border: 1px solid transparent;
  background: #15D4B6;
  color: #00214D;
  transform: unset;
}
.Pri-01-arrow:active {
  background: #44ddc5;
  opacity: 1;
  border-radius: 40px;
}
.Pri-01-arrow:disabled {
  opacity: 0.32;
}
.Pri-01-arrow:after {
  content: url(/Content/Images/arrow-right-black.svg);
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  width: 16px;
}
.Pri-02 {
  min-width: 146px;
  box-shadow: 0px 4px 4px 0px rgba(154, 161, 186, 0.24), 0px 8px 24px 0px rgba(154, 161, 186, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  justify-content: center;
  border-radius: 40px;
  background: #FFFFFF;
  color: #00214D;
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-feature-settings: 'clig' off, 'liga' off;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  height: 48px;
}
.Pri-02:hover {
  transform: translateY(-2px);
  box-shadow: 0px 16px 40px 0px rgba(0, 0, 128, 0.1);
}
.Pri-02:focus-visible {
  outline-color: #00214D;
  outline-style: auto;
  outline-offset: 5px;
  outline-width: initial;
}
.Pri-02:hover:active {
  border: 1px solid transparent;
  background: #FFFFFF;
  color: #00214D;
  transform: unset;
}
.Pri-02:active {
  background: #F6F6F6;
  opacity: 1;
  border-radius: 40px;
}
.Pri-02:disabled {
  opacity: 0.32;
}
.Pri-02-arrow {
  min-width: 146px;
  box-shadow: 0px 4px 4px 0px rgba(154, 161, 186, 0.24), 0px 8px 24px 0px rgba(154, 161, 186, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  justify-content: center;
  border-radius: 40px;
  background: #FFFFFF;
  color: #00214D;
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-feature-settings: 'clig' off, 'liga' off;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  height: 48px;
}
.Pri-02-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0px 16px 40px 0px rgba(0, 0, 128, 0.1);
}
.Pri-02-arrow:focus-visible {
  outline-color: #00214D;
  outline-style: auto;
  outline-offset: 5px;
  outline-width: initial;
}
.Pri-02-arrow:hover:active {
  border: 1px solid transparent;
  background: #FFFFFF;
  color: #00214D;
  transform: unset;
}
.Pri-02-arrow:active {
  background: #F6F6F6;
  opacity: 1;
  border-radius: 40px;
}
.Pri-02-arrow:disabled {
  opacity: 0.32;
}
.Pri-02-arrow:after {
  content: url(/Content/Images/arrow-right-black.svg);
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  width: 16px;
}
.Pri-03 {
  min-width: 146px;
  box-shadow: 0px 4px 4px 0px rgba(154, 161, 186, 0.24), 0px 8px 24px 0px rgba(154, 161, 186, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  justify-content: center;
  border-radius: 40px;
  background: #FFFFFF;
  color: #141414;
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-feature-settings: 'clig' off, 'liga' off;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  height: 48px;
}
.Pri-03:hover {
  transform: translateY(-2px);
  box-shadow: 0px 16px 40px 0px rgba(0, 0, 128, 0.1);
}
.Pri-03:hover:active {
  border: 1px solid transparent;
  background: #FFFFFF;
  color: #141414;
  transform: unset;
}
.Pri-03:active {
  background: #F6F6F6;
  opacity: 1;
  border-radius: 40px;
}
.Pri-03:focus-visible {
  outline-color: #141414;
  outline-style: auto;
  outline-offset: 5px;
  outline-width: initial;
}
.Pri-03:disabled {
  opacity: 0.32;
}
.Pri-03-arrow {
  min-width: 146px;
  box-shadow: 0px 4px 4px 0px rgba(154, 161, 186, 0.24), 0px 8px 24px 0px rgba(154, 161, 186, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  justify-content: center;
  border-radius: 40px;
  background: #FFFFFF;
  color: #141414;
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-feature-settings: 'clig' off, 'liga' off;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  height: 48px;
}
.Pri-03-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0px 16px 40px 0px rgba(0, 0, 128, 0.1);
}
.Pri-03-arrow:hover:active {
  border: 1px solid transparent;
  background: #FFFFFF;
  color: #141414;
  transform: unset;
}
.Pri-03-arrow:active {
  background: #F6F6F6;
  opacity: 1;
  border-radius: 40px;
}
.Pri-03-arrow:focus-visible {
  outline-color: #141414;
  outline-style: auto;
  outline-offset: 5px;
  outline-width: initial;
}
.Pri-03-arrow:disabled {
  opacity: 0.32;
}
.Pri-03-arrow:after {
  content: url(/Content/Images/arrow-neu-06.svg);
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  width: 16px;
}
.Acc-01 {
  min-width: 146px;
  box-shadow: 0px 4px 4px 0px rgba(154, 161, 186, 0.24), 0px 8px 24px 0px rgba(154, 161, 186, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  justify-content: center;
  border-radius: 40px;
  background: #E00060;
  color: #FFFFFF;
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-feature-settings: 'clig' off, 'liga' off;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  height: 48px;
}
.Acc-01:hover {
  transform: translateY(-2px);
  box-shadow: 0px 16px 40px 0px rgba(0, 0, 128, 0.1);
}
.Acc-01:hover:active {
  border: 1px solid transparent;
  background: #E00060;
  color: #F6F6F6;
  transform: unset;
}
.Acc-01:active {
  background: #E00060;
  opacity: 1;
  border-radius: 40px;
}
.Acc-01:focus-visible {
  outline-color: #FFFFFF;
  outline-style: auto;
  outline-offset: 5px;
  outline-width: initial;
}
.Acc-01:disabled {
  opacity: 0.32;
}
.Acc-01-arrow {
  min-width: 146px;
  box-shadow: 0px 4px 4px 0px rgba(154, 161, 186, 0.24), 0px 8px 24px 0px rgba(154, 161, 186, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  justify-content: center;
  border-radius: 40px;
  background: #E00060;
  color: #FFFFFF;
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-feature-settings: 'clig' off, 'liga' off;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  height: 48px;
}
.Acc-01-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0px 16px 40px 0px rgba(0, 0, 128, 0.1);
}
.Acc-01-arrow:hover:active {
  border: 1px solid transparent;
  background: #E00060;
  color: #F6F6F6;
  transform: unset;
}
.Acc-01-arrow:active {
  background: #E00060;
  opacity: 1;
  border-radius: 40px;
}
.Acc-01-arrow:focus-visible {
  outline-color: #FFFFFF;
  outline-style: auto;
  outline-offset: 5px;
  outline-width: initial;
}
.Acc-01-arrow:disabled {
  opacity: 0.32;
}
.Acc-01-arrow:after {
  content: url(/Content/Images/arrow-neu-06.svg);
  filter: brightness(0) invert(1);
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  width: 16px;
}
.Sec-1 {
  min-width: 146px;
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 1px solid #00214D;
  color: #00214D;
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-feature-settings: 'clig' off, 'liga' off;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  height: 48px;
}
.Sec-1:hover {
  transform: translateY(-2px);
}
.Sec-1:focus-visible {
  outline-color: #00214D;
  outline-style: auto;
  outline-offset: 5px;
  outline-width: initial;
}
.Sec-1:active {
  background: rgba(0, 33, 77, 0.08);
}
.Sec-1:disabled {
  background: transparent;
  opacity: 0.32;
  border: 1px solid #00214D;
}
.Sec-1-arrow {
  min-width: 146px;
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 1px solid #00214D;
  color: #00214D;
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-feature-settings: 'clig' off, 'liga' off;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  height: 48px;
}
.Sec-1-arrow:hover {
  transform: translateY(-2px);
}
.Sec-1-arrow:focus-visible {
  outline-color: #00214D;
  outline-style: auto;
  outline-offset: 5px;
  outline-width: initial;
}
.Sec-1-arrow:active {
  background: rgba(0, 33, 77, 0.08);
}
.Sec-1-arrow:disabled {
  background: transparent;
  opacity: 0.32;
  border: 1px solid #00214D;
}
.Sec-1-arrow:after {
  content: url(/Content/Images/arrow-right-black.svg);
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  width: 16px;
}
.Sec-2 {
  min-width: 146px;
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 1px solid #141414;
  color: #141414;
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  font-feature-settings: 'clig' off, 'liga' off;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  height: 48px;
}
.Sec-2:hover {
  transform: translateY(-2px);
}
.Sec-2:focus-visible {
  outline-color: #141414;
  outline-style: auto;
  outline-offset: 5px;
  outline-width: initial;
}
.Sec-2:active {
  background: rgba(0, 33, 77, 0.08);
}
.Sec-2:disabled {
  background: transparent;
  opacity: 0.32;
  border: 1px solid #141414;
}
.Ter-01 {
  color: #00214D;
  font-family: Ubuntu;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: block;
  position: relative;
  transition: all 200ms ease-in-out;
  height: fit-content;
}
.Ter-01:before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00214D;
  transform: scaleX(40%);
  transition: transform 0.3s;
  transform-origin: left center;
}
.Ter-01:hover:before {
  transform: scaleX(1);
}
.Ter-01:focus-visible {
  outline: none;
  border: 2px solid #00214D;
  border-radius: 8px;
  padding: 4px 12px;
}
.Ter-01:focus-visible:before {
  width: 0;
}
.Ter-01:active:before {
  transform-origin: right center;
  transform: scaleX(40%);
}
.Ter-01-arrow {
  color: #00214D;
  font-family: Ubuntu;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: block;
  position: relative;
  transition: all 200ms ease-in-out;
  height: fit-content;
}
.Ter-01-arrow:before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00214D;
  transform: scaleX(40%);
  transition: transform 0.3s;
  transform-origin: left center;
}
.Ter-01-arrow:hover:before {
  transform: scaleX(1);
}
.Ter-01-arrow:focus-visible {
  outline: none;
  border: 2px solid #00214D;
  border-radius: 8px;
  padding: 4px 12px;
}
.Ter-01-arrow:focus-visible:before {
  width: 0;
}
.Ter-01-arrow:active:before {
  transform-origin: right center;
  transform: scaleX(40%);
}
.Ter-01-arrow:after {
  content: url(/Content/Images/arrow-right-black.svg);
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  width: 16px;
  margin-left: 8px;
}
.Ter-02 {
  color: #141414;
  font-family: Ubuntu;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: block;
  position: relative;
  transition: all 200ms ease-in-out;
  height: fit-content;
}
.Ter-02:before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #141414;
  transform: scaleX(40%);
  transition: transform 0.3s;
  transform-origin: left center;
}
.Ter-02:hover:before {
  transform: scaleX(1);
}
.Ter-02:focus-visible {
  outline: none;
  border: 2px solid #141414;
  border-radius: 8px;
  padding: 4px 12px;
}
.Ter-02:focus-visible:before {
  width: 0;
}
.Ter-02:active:before {
  transform-origin: right center;
  transform: scaleX(40%);
}
.Ter-02-arrow {
  color: #141414;
  font-family: Ubuntu;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: block;
  position: relative;
  transition: all 200ms ease-in-out;
  height: fit-content;
}
.Ter-02-arrow:before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #141414;
  transform: scaleX(40%);
  transition: transform 0.3s;
  transform-origin: left center;
}
.Ter-02-arrow:hover:before {
  transform: scaleX(1);
}
.Ter-02-arrow:focus-visible {
  outline: none;
  border: 2px solid #141414;
  border-radius: 8px;
  padding: 4px 12px;
}
.Ter-02-arrow:focus-visible:before {
  width: 0;
}
.Ter-02-arrow:active:before {
  transform-origin: right center;
  transform: scaleX(40%);
}
.Ter-02-arrow:after {
  content: url(/Content/Images/arrow-neu-06.svg);
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  width: 16px;
  margin-left: 8px;
}
.Nas-01 {
  background: transparent;
  box-shadow: none;
  color: #00214D;
  border-radius: 8px;
  padding: 8px 10px;
  height: 40px;
  min-width: 40px;
  max-width: 640px;
  justify-content: left;
  border: 2px solid transparent;
}
.Nas-01:hover {
  background: rgba(0, 33, 77, 0.08);
  color: #00214D;
  border-color: transparent;
}
.Nas-01:active {
  color: #00214D;
  background: rgba(0, 33, 77, 0.24);
}
.Nas-01:focus-visible {
  color: var(--color-extended-bra-02-d-01);
  border: 2px solid #00214D;
  outline: 0;
}
.Nas-03 {
  background: transparent;
  box-shadow: none;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 8px 10px;
  height: 40px;
  min-width: 40px;
  max-width: 640px;
  justify-content: left;
  border: 2px solid transparent;
}
.Nas-03:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: transparent;
}
.Nas-03:active {
  background: rgba(255, 255, 255, 0.24);
}
.Nas-03:focus-visible {
  border: 2px solid #FFFFFF;
  outline: 0;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .Pri-01 {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
  }
  .Pri-01:after {
    content: url(/Content/Images/arrow-right-black.svg);
    display: inline-block;
    vertical-align: middle;
    height: 16px;
    width: 16px;
    margin-left: 8px;
  }
  .Pri-01-arrow {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
  }
  .Pri-02 {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
    /*&:after {
            content: url(/Content/Images/arrow-right-black.svg);
            display: inline-block;
            vertical-align: middle;
            height: 16px;
            width: 16px;
            margin-left: 8px;
        }*/
  }
  .Pri-02-arrow {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
  }
  .Pri-03 {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
  }
  .Pri-03:after {
    content: url(/Content/Images/arrow-neu-06.svg);
    display: inline-block;
    vertical-align: middle;
    height: 16px;
    width: 16px;
    margin-left: 8px;
  }
  .Pri-03-arrow {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
  }
  .Acc-01 {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
  }
  .Acc-01:after {
    content: url(/Content/Images/arrow-neu-06.svg);
    display: inline-block;
    vertical-align: middle;
    height: 16px;
    width: 16px;
    margin-left: 8px;
  }
  .Acc-01-arrow {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
  }
  .Sec-1 {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
  }
  .Sec-1-arrow {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
  }
  .Sec-2 {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
  }
  .Sec-2-arrow {
    width: 250px;
    padding: 12px 24px;
    height: 40px;
  }
  .Ter-01:before {
    transform: unset;
  }
  .Ter-01-arrow:before {
    transform: unset;
  }
  .Ter-02:before {
    transform: unset;
  }
  .Ter-02-arrow:before {
    transform: unset;
  }
}
.no-scroll {
  overflow-y: hidden;
}
body {
  font-family: "Ubuntu", Arial, Helvetica, sans-serif;
}
body .top-widget {
  margin-top: 70px;
}
body .navigation {
  display: flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  background: transparent;
  border: none;
  color: #495680;
  margin-top: 16px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  line-height: 150%;
  gap: 8px;
  /*&:before {
            content: '';
            vertical-align: middle;
            height: 28px;
            width: 28px;
            margin-right: 16px;
            background: url(/Content/Images/light-blue-back.svg);
            background-size: contain;
        }*/
}
body .navigation div {
  margin-top: 3px;
}
body .navigation img {
  height: 24px;
  width: 24px;
}
body .navigation:active {
  border-radius: 8px;
  transition: none;
  border: 0px !important;
  background: rgba(0, 33, 77, 0.08);
  color: #00214D;
}
body .navigation:focus-visible {
  border: 2px solid #141414 !important;
  border-radius: 8px;
  background: rgba(0, 33, 77, 0.08);
  transition: all 0.2s ease-in-out;
}
body .navigation:hover {
  border-radius: 8px;
  background: rgba(0, 33, 77, 0.08);
}
body .navigation:hover {
  background: rgba(0, 33, 77, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease-out;
}
body .infopage-container {
  margin-top: 70px;
}
body .infopage-container .ageas-container {
  justify-content: center;
}
body .infopage-container .ageas-container .infopage-title-container {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-bottom: 0px;
  color: #00214D;
  /*padding-top: 32px;*/
  background-image: url("/Content/Images/Mad-04.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body .infopage-container .ageas-container .infopage-title-container .infopage-title {
  padding-top: 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 16px;
}
body .infopage-container .ageas-container .infopage-title-container .infopage-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
body .infopage-container .ageas-container .infopage-chips-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
}
body .infopage-container .ageas-container .infopage-chips-container .chip.active {
  border-radius: 6px;
  color: #00214D;
  box-shadow: 0px 8px 24px 0px rgba(154, 161, 186, 0.2), 0px 4px 4px 0px rgba(154, 161, 186, 0.24);
  padding: 12px 8px;
}
body .infopage-container .ageas-container .infopage-chips-container .chip {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  cursor: pointer;
  padding: 12px 8px;
  color: #495680;
  background: transparent;
  border: none;
  height: 43px;
  display: flex;
  align-items: center;
}
body .infopage-container .ageas-container .infopage-chips-container .chip:hover {
  border-radius: 6px;
  /*box-shadow: 0px 8px 24px 0px rgba(154, 161, 186, 0.20), 0px 4px 4px 0px rgba(154, 161, 186, 0.24);*/
  padding: 12px 8px;
  background: rgba(0, 33, 77, 0.08);
}
body .infopage-container .ageas-container .infopage-chips-container .chip:focus-visible {
  background: rgba(0, 33, 77, 0.08);
  border: 2px solid #141414;
}
body .infopage-container .ageas-container .infopage-content-section {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 95px 0 80px 0;
  color: #00214D;
}
body .infopage-container .ageas-container .infopage-content-section:not(.active) {
  display: none;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content-title {
  font-size: 40px;
  line-height: 140%;
  margin-bottom: 32px;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content {
  color: #00214D;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content h2 {
  font-size: 32px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 32px;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content h3 {
  font-size: 24px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 16px;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content h4 {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 16px;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content a {
  color: #0A806C;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content a:hover {
  text-decoration: none;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content p {
  text-align: justify;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 16px;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content p u {
  color: #0A806C;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content ul {
  font-size: 16px;
  margin-bottom: 8px;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content figure {
  margin-bottom: 32px;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content figure img {
  width: 100%;
  height: auto;
}
body .infopage-container .ageas-container .infopage-content-section .infopage-content figure figcaption {
  font-size: 14px;
  line-height: 150%;
  text-align: justify;
  font-weight: 400;
  margin-top: 24px;
}
body .error404-background {
  background: linear-gradient(180deg, #DBDEFF 0%, rgba(219, 222, 255, 0) 100%);
}
body .error404-background .ageas-container .error404-navigation {
  padding-top: 24px;
}
body .error404-background .ageas-container .error404-navigation a {
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  align-self: center;
  padding: 8px 12px;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
  color: #495680;
  height: 40px;
  display: flex;
  width: fit-content;
}
body .error404-background .ageas-container .error404-navigation a:hover {
  border-radius: 8px;
  background: rgba(0, 33, 77, 0.08);
}
body .error404-background .ageas-container .error404-navigation a:active {
  color: #00214D;
}
body .error404-background .ageas-container .error404-navigation a:focus-visible {
  border-radius: 8px;
  background: rgba(0, 33, 77, 0.08);
  border: 2px solid #141414;
  color: #00214D;
}
body .error404-background .ageas-container .error404-navigation .navigation {
  margin-top: 8px;
}
body .error404-background .ageas-container .error404-container {
  margin-top: 70px;
  display: flex;
  gap: 144px;
  padding: 48px 0 48px 0;
}
body .error404-background .ageas-container .error404-container .error404-left {
  color: #141414;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
body .error404-background .ageas-container .error404-container .error404-left .error404-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 8px;
}
body .error404-background .ageas-container .error404-container .error404-left .error404-subtitle {
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 16px;
}
body .error404-background .ageas-container .error404-container .error404-left .error404-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
body .error404-background .ageas-container .error404-container .error404-left .error404-content a {
  text-decoration-line: underline;
  color: #15D4B6;
}
body .error404-background .ageas-container .error404-container .error404-left .error404-content a:hover {
  text-decoration-line: none;
}
body .error404-background .ageas-container .error404-container .error404-left .error404-content a:focus {
  border: 2px solid #141414;
}
body .error404-background .ageas-container .error404-container .error404-right {
  max-width: 538px;
}
body .error404-background .ageas-container .error404-container .error404-right img {
  max-height: 528px;
  width: 100%;
}
body .faqhp-container {
  margin-top: 70px;
}
body .faqhp-container .ageas-container {
  justify-content: center;
}
body .faqhp-container .ageas-container .faqhp-title-container {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 80px;
  color: #00214D;
}
body .faqhp-container .ageas-container .faqhp-title-container .faqhp-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 16px;
}
body .faqhp-container .ageas-container .faqhp-chips-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
body .faqhp-container .ageas-container .faqhp-chips-container .chip.active {
  border-radius: 6px;
  color: #00214D;
  box-shadow: 0px 8px 24px 0px rgba(154, 161, 186, 0.2), 0px 4px 4px 0px rgba(154, 161, 186, 0.24);
  padding: 12px 8px;
}
body .faqhp-container .ageas-container .faqhp-chips-container .chip {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  cursor: pointer;
  padding: 12px 8px;
  color: #495680;
  background: transparent;
  border: none;
  height: 43px;
  display: flex;
  align-items: center;
}
body .faqhp-container .ageas-container .faqhp-chips-container .chip:hover {
  border-radius: 6px;
  /*box-shadow: 0px 8px 24px 0px rgba(154, 161, 186, 0.20), 0px 4px 4px 0px rgba(154, 161, 186, 0.24);*/
  background: rgba(0, 33, 77, 0.08);
}
body .faqhp-container .ageas-container .faqhp-chips-container .chip:focus-visible {
  background: rgba(0, 33, 77, 0.08);
  border: 2px solid #141414;
}
body .faqhp-container .ageas-container .faqhp-content-section {
  max-width: 864px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 95px 0 80px 0;
  color: #00214D;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body .faqhp-container .ageas-container .faqhp-content-section:not(.active) {
  display: none;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible {
  border: 1px solid rgba(0, 33, 77, 0.24);
  border-radius: 16px;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  background: var(--Glass-Gma-01, linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), linear-gradient(255deg, rgba(255, 255, 255, 0.5) 0%, rgba(244, 246, 250, 0.8) 100%, rgba(205, 212, 229, 0.5) 100%));
  min-height: 59px;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible:hover {
  /*background-color: rgba(0, 33, 77, 0.08);
                            border-radius: 8px !important;*/
  box-shadow: 0px 16px 40px 0px rgba(0, 0, 128, 0.1);
  background: unset;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible:focus-visible {
  border: 2px solid #00214D;
  border-radius: 8px !important;
  box-shadow: none;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible:active {
  box-shadow: none;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible:active .collapsible-header {
  background: unset;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-header {
  color: #00214D;
  cursor: pointer;
  padding: 16px;
  font-family: Ubuntu;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  background: transparent;
  display: inline-flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  align-items: start;
  border: none;
  max-width: 865px;
  min-width: 450px;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-header .plus {
  height: 24px;
  width: 24px !important;
  background: url(../../Images/Bas-003.svg) center no-repeat;
  background-size: cover;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-header .minus {
  height: 24px;
  width: 24px !important;
  background: url(../../Images/Bas-002.svg) center no-repeat;
  background-size: contain;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content {
  display: none;
  color: #00214D;
  padding: 24px 16px;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content h2 {
  font-size: 32px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 32px;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content h3 {
  font-size: 24px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 16px;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content h4 {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 16px;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content a {
  color: #0A806C;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content a:hover {
  text-decoration: none;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content p {
  text-align: justify;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 16px;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content p u {
  color: #0A806C;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content ul {
  font-size: 16px;
  margin-bottom: 8px;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content figure {
  margin-bottom: 32px;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content figure img {
  width: 100%;
  height: auto;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content figure figcaption {
  font-size: 14px;
  line-height: 150%;
  text-align: justify;
  font-weight: 400;
  margin-top: 24px;
}
body .faqhp-container .ageas-container .faqhp-content-section .collapsible.active {
  background: #FFFFFF;
  height: unset;
}
@media screen and (min-width: 0px) and (max-width: 991px) {
  .body .top-widget {
    margin-top: 64px;
  }
  .body .error404-background .ageas-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .body .error404-background .ageas-container .error404-container {
    margin-top: unset;
    flex-direction: column;
    gap: 40px;
  }
  .body .error404-background .ageas-container .error404-container .error404-left .error404-subtitle {
    font-size: 24px;
  }
  .body .error404-background .ageas-container .error404-container .error404-right {
    display: flex;
    justify-content: center;
  }
  .body .error404-background .ageas-container .error404-container .error404-right img {
    max-height: 328px;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  body .top-widget {
    margin-top: 64px;
  }
  body .error404-background .ageas-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  body .error404-background .ageas-container .error404-container {
    margin-top: unset;
    flex-direction: column;
    gap: 40px;
  }
  body .error404-background .ageas-container .error404-container .error404-left .error404-subtitle {
    font-size: 24px;
  }
  body .error404-background .ageas-container .error404-container .error404-right {
    display: flex;
    justify-content: center;
  }
  body .error404-background .ageas-container .error404-container .error404-right img {
    max-height: 328px;
  }
  body .infopage-container {
    padding: 24px 0px 48px 0px;
  }
  body .infopage-container .ageas-container {
    flex-direction: column;
    display: flex;
    /* .infopage-chips-container::-webkit-scrollbar {
                    display: none;
                }*/
  }
  body .infopage-container .ageas-container .infopage-title-container {
    text-align: unset;
    padding-bottom: 32px;
    margin-left: unset;
    margin-right: unset;
  }
  body .infopage-container .ageas-container .infopage-title-container .infopage-title {
    font-size: 24px;
    line-height: 150%;
  }
  body .infopage-container .ageas-container .infopage-chips-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    height: 80px;
    padding: 0px 8px 0px 8px;
    gap: 8px;
    justify-content: flex-start;
    /*                    -ms-overflow-style: none;
                    scrollbar-width: none; */
  }
  body .infopage-container .ageas-container .chip {
    display: inline-flex;
    align-items: center;
    transition: all 300ms ease;
  }
  body .infopage-container .ageas-container .infopage-content-section {
    padding: 32px 0px;
    word-break: break-word;
  }
  body .infopage-container .ageas-container .infopage-content-section .infopage-content-title {
    font-size: 32px;
    line-height: 150%;
    margin-bottom: 32px;
  }
  body .infopage-container .ageas-container .infopage-content-section .infopage-content {
    color: #00214D;
  }
  body .infopage-container .ageas-container .infopage-content-section .infopage-content h2 {
    font-size: 24px;
    line-height: 150%;
    font-weight: 400;
    margin-bottom: 32px;
  }
  body .infopage-container .ageas-container .infopage-content-section .infopage-content h3 {
    font-size: 20px;
    line-height: 150%;
    font-weight: 400;
    margin-bottom: 16px;
  }
  body .infopage-container .ageas-container .infopage-content-section .infopage-content h4 {
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    margin-bottom: 16px;
  }
  body .infopage-container .ageas-container .infopage-content-section .infopage-content p {
    text-align: justify;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 16px;
  }
  body .infopage-container .ageas-container .infopage-content-section .infopage-content p u {
    color: #0A806C;
  }
  body .infopage-container .ageas-container .infopage-content-section .infopage-content ul {
    font-size: 16px;
    margin-bottom: 8px;
  }
  body .infopage-container .ageas-container .infopage-content-section .infopage-content figure {
    margin-bottom: 32px;
  }
  body .infopage-container .ageas-container .infopage-content-section .infopage-content figure img {
    width: 100%;
    height: auto;
  }
  body .infopage-container .ageas-container .infopage-content-section .infopage-content figure figcaption {
    font-size: 14px;
    line-height: 150%;
    text-align: justify;
    font-weight: 400;
    margin-top: 24px;
  }
}
@media screen and (min-width: 0px) and (max-width: 512px) {
  body .faqhp-container {
    padding: 0px 0px 48px 0px;
  }
  body .faqhp-container .ageas-container {
    flex-direction: column;
    display: flex;
  }
  body .faqhp-container .ageas-container .faqhp-title-container {
    text-align: unset;
    margin-bottom: 48px;
    padding-top: 48px;
  }
  body .faqhp-container .ageas-container .faqhp-title-container .faqhp-title {
    font-size: 24px;
    line-height: 150%;
  }
  body .faqhp-container .ageas-container .faqhp-chips-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    height: 80px;
    padding: 0px 8px 0px 8px;
    gap: 8px;
    justify-content: flex-start;
    /*-ms-overflow-style: none;
                    scrollbar-width: none;*/
  }
  body .faqhp-container .ageas-container .chip {
    display: inline-flex;
    align-items: center;
    transition: all 300ms ease;
  }
  body .faqhp-container .ageas-container .faqhp-content-section {
    padding: 48px 0px;
    margin-left: unset;
    margin-right: unset;
    word-break: break-word;
  }
  body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-header {
    min-width: 328px;
    max-width: 703px;
  }
  body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content {
    color: #00214D;
  }
  body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content h2 {
    font-size: 24px;
    line-height: 150%;
    font-weight: 400;
    margin-bottom: 32px;
  }
  body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content h3 {
    font-size: 20px;
    line-height: 150%;
    font-weight: 400;
    margin-bottom: 16px;
  }
  body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content h4 {
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    margin-bottom: 16px;
  }
  body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content p {
    text-align: justify;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 16px;
  }
  body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content p span {
    color: #0A806C;
  }
  body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content ul {
    font-size: 16px;
    margin-bottom: 8px;
  }
  body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content figure {
    margin-bottom: 32px;
  }
  body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content figure img {
    width: 100%;
    height: auto;
  }
  body .faqhp-container .ageas-container .faqhp-content-section .collapsible .collapsible-content figure figcaption {
    font-size: 14px;
    line-height: 150%;
    text-align: justify;
    font-weight: 400;
    margin-top: 24px;
  }
}
@media screen and (min-width: 0px) and (max-width: 512px) {
  body .ageas-container {
    grid-row-gap: 16px;
    grid-column-gap: 0px;
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media screen and (min-width: 512px) and (max-width: 768px) {
  body .ageas-container {
    grid-row-gap: 24px;
    grid-column-gap: 0px;
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  body .ageas-container {
    grid-row-gap: 24px;
    grid-column-gap: 0px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  body .ageas-container {
    grid-row-gap: 24px;
    grid-column-gap: 0px;
    padding-right: 48px;
    padding-left: 48px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1441px) {
  body .ageas-container {
    grid-row-gap: 32px;
    grid-column-gap: 0px;
    padding-right: 64px;
    padding-left: 64px;
  }
}
@media screen and (min-width: 1441px) {
  body .ageas-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 64px;
    padding-left: 64px;
  }
}
.categorySectionContainer {
  display: flex;
  width: 100%;
  padding: 6rem 4rem 5rem 4rem;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.categorySectionContainer #articleForm {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.categorySectionContainer .search {
  display: flex;
  justify-content: center;
  align-self: stretch;
  width: 100%;
}
.categorySectionContainer .search .search-container {
  width: 100%;
  position: relative;
  display: flex;
  align-self: stretch;
  max-width: 40rem;
}
.categorySectionContainer .search .search-container input {
  width: 100%;
  display: flex;
  height: 3.5rem;
  padding: 1rem;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  border-radius: 1rem;
  border: 1px solid rgba(0, 33, 77, 0.24);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), linear-gradient(255deg, rgba(255, 255, 255, 0.5) 0%, rgba(244, 246, 250, 0.8) 100%, rgba(205, 212, 229, 0.5) 100%);
}
.categorySectionContainer .search .search-container .search-icon {
  background: none;
  border: none;
  position: absolute;
  top: 0.8rem;
  right: 0.5rem;
}
.categorySectionContainer .top-buttons {
  display: flex;
  width: 100%;
  max-width: 90rem;
  justify-content: end;
  gap: 1rem;
}
.categorySectionContainer .top-buttons .filter-btn {
  display: none;
  background: none;
  border-radius: 2.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #00214D;
  color: #00214D;
  width: 100%;
  gap: 0.5rem;
  max-width: 22.5rem;
}
.categorySectionContainer .top-buttons select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 22.5rem;
  height: 3.625rem;
  padding: 0 1rem;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #2C3A64;
  cursor: pointer;
  background-image: url('/Content/Images/Bas-007.svg');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  border-radius: 1rem;
  box-shadow: 0px 4px 4px 0px rgba(154, 161, 186, 0.24), 0px 8px 24px 0px rgba(154, 161, 186, 0.2);
}
.categorySectionContainer .categoryListContainer {
  max-width: 90rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}
.categorySectionContainer .categoryListContainer .filters {
  display: flex;
  padding-right: 7rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  flex: 1 0 0;
}
.categorySectionContainer .categoryListContainer .filters .divider {
  width: 100%;
  height: 0.0625rem;
  background: rgba(0, 33, 77, 0.16);
}
.categorySectionContainer .categoryListContainer .filters .introduction {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.categorySectionContainer .categoryListContainer .filters .introduction p {
  color: #314071;
  font-family: Ubuntu;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  margin: 0;
}
.categorySectionContainer .categoryListContainer .filters .introduction .section-title {
  color: #00214D;
  font-family: Ubuntu;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6875rem;
}
.categorySectionContainer .categoryListContainer .filters .author-filter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}
.categorySectionContainer .categoryListContainer .filters .author-filter p {
  color: #314071;
  font-family: Ubuntu;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6875rem;
  /* 150% */
  margin: 0;
}
.categorySectionContainer .categoryListContainer .filters .author-filter select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 3.625rem;
  padding: 0 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 33, 77, 0.24);
  background: linear-gradient(255deg, rgba(255, 255, 255, 0.5) 0%, rgba(244, 246, 250, 0.8) 100%);
  font-size: 1rem;
  font-weight: 500;
  color: #2C3A64;
  cursor: pointer;
  background-image: url('/Content/Images/Bas-007.svg');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
.categorySectionContainer .categoryListContainer .filters .categories {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.categorySectionContainer .categoryListContainer .filters .categories p {
  color: #314071;
  font-family: Ubuntu;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6875rem;
  /* 150% */
  margin: 0;
}
.categorySectionContainer .categoryListContainer .filters .categories .options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.categorySectionContainer .categoryListContainer .filters .categories .options input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #c8d1e1;
  border-radius: 6px;
  background-color: #f2f4f7;
  position: relative;
  cursor: pointer;
  margin-right: 0.5rem;
  vertical-align: middle;
  transition: background 0.2s ease, border 0.2s ease;
}
.categorySectionContainer .categoryListContainer .filters .categories .options input[type="checkbox"]:checked {
  background-color: #00cfc1;
  border-color: #00cfc1;
}
.categorySectionContainer .categoryListContainer .filters .categories .options input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.categorySectionContainer .categoryListContainer .filters .button-group {
  display: flex;
  gap: 1rem;
}
.categorySectionContainer .categoryListContainer .filters .button-group .Pri-01 {
  border: none;
}
.categorySectionContainer .categoryListContainer .categoryGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 0;
  height: fit-content;
}
.categorySectionContainer .categoryListContainer .categoryGrid .categoryCard {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-radius: 1rem;
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
}
.categorySectionContainer .categoryListContainer .categoryGrid .categoryImg {
  height: 12.5rem;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  border: none;
  border-radius: 1rem 1rem 0 0;
  object-fit: cover;
}
.categorySectionContainer .categoryListContainer .categoryGrid .categoryInfo {
  padding: 18px 20px 16px 18px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.categorySectionContainer .categoryListContainer .categoryGrid .categoryLink {
  display: flex;
  padding: 0.5rem 1rem;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  right: 1rem;
  top: -4rem;
  border-radius: 1rem 1rem 0rem 1rem;
  background: #B2F2E7;
  box-shadow: 0px 4px 4px 0px rgba(154, 161, 186, 0.24), 0px 8px 24px 0px rgba(154, 161, 186, 0.2);
}
.categorySectionContainer .categoryListContainer .categoryGrid .categorySubtitle {
  color: #141414;
  font-family: Ubuntu;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3125rem;
  margin: 0;
}
.categorySectionContainer .categoryListContainer .categoryGrid .categoryTitle {
  color: #141414;
  font-family: Ubuntu;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6875rem;
  text-decoration: none;
}
.categorySectionContainer .categoryListContainer .categoryGrid .author-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.categorySectionContainer .categoryListContainer .categoryGrid .author-row p {
  color: #141414;
  font-family: Ubuntu;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  margin: 0;
}
.categorySectionContainer .categoryListContainer .categoryGrid .author-row .initials {
  display: flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.5rem;
  border: 1px solid #FFF;
  background: #515151;
  color: #FFF;
}
.categorySectionContainer .filter-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
  justify-content: center;
  align-items: flex-end;
}
.categorySectionContainer .filter-modal-content {
  background: white;
  border-radius: 1rem 1rem 0 0;
  padding: 2rem 1rem;
  width: 100%;
  position: relative;
  max-height: 99%;
  overflow: auto;
  height: auto;
}
.categorySectionContainer .filter-modal-content .filters-mobile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.categorySectionContainer .filter-modal-content .filters-mobile .divider {
  width: 100%;
  height: 0.0625rem;
  background: rgba(0, 33, 77, 0.16);
}
.categorySectionContainer .filter-modal-content .filters-mobile .introduction {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.categorySectionContainer .filter-modal-content .filters-mobile .introduction p {
  color: #314071;
  font-family: Ubuntu;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  margin: 0;
}
.categorySectionContainer .filter-modal-content .filters-mobile .introduction .section-title {
  color: #00214D;
  font-family: Ubuntu;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6875rem;
}
.categorySectionContainer .filter-modal-content .filters-mobile .author-filter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}
.categorySectionContainer .filter-modal-content .filters-mobile .author-filter p {
  color: #314071;
  font-family: Ubuntu;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6875rem;
  /* 150% */
  margin: 0;
}
.categorySectionContainer .filter-modal-content .filters-mobile .author-filter select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 3.625rem;
  padding: 0 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 33, 77, 0.24);
  background: linear-gradient(255deg, rgba(255, 255, 255, 0.5) 0%, rgba(244, 246, 250, 0.8) 100%);
  font-size: 1rem;
  font-weight: 500;
  color: #2C3A64;
  cursor: pointer;
  background-image: url('/Content/Images/Bas-007.svg');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
.categorySectionContainer .filter-modal-content .filters-mobile .categories {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.categorySectionContainer .filter-modal-content .filters-mobile .categories p {
  color: #314071;
  font-family: Ubuntu;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6875rem;
  /* 150% */
  margin: 0;
}
.categorySectionContainer .filter-modal-content .filters-mobile .categories .options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.categorySectionContainer .filter-modal-content .filters-mobile .categories .options input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #c8d1e1;
  border-radius: 6px;
  background-color: #f2f4f7;
  position: relative;
  cursor: pointer;
  margin-right: 0.5rem;
  vertical-align: middle;
  transition: background 0.2s ease, border 0.2s ease;
}
.categorySectionContainer .filter-modal-content .filters-mobile .categories .options input[type="checkbox"]:checked {
  background-color: #00cfc1;
  border-color: #00cfc1;
}
.categorySectionContainer .filter-modal-content .filters-mobile .categories .options input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.categorySectionContainer .filter-modal-content .filters-mobile .button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.categorySectionContainer .filter-modal-content .filters-mobile .button-group .Pri-01 {
  border: none;
}
.categorySectionContainer .close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.pagination-container {
  display: flex;
  width: 100%;
  max-width: 90rem;
  justify-content: flex-end;
}
.pagination {
  display: flex;
  justify-content: center;
  margin: 2em 0;
}
.pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li {
  margin: 0 0.2em;
}
.pagination a,
.pagination strong {
  display: block;
  padding: 0.5em 1em;
  border-radius: 4px;
  color: #00457c;
  background: none;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.pagination a:hover {
  background: #00214D3D;
  color: #00214D;
}
.pagination strong {
  background: #00214D;
  color: #fff;
  cursor: default;
}
.categoryLink {
  display: inline-block;
  padding: 0.4em 1.1em;
  margin: 0.2em 0.4em 0.2em 0;
  border-radius: 20px;
  background: #ebf3fa;
  color: #00457c;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.categoryLink:hover,
.categoryLink:focus {
  background: #00457c !important;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09) !important;
  text-decoration: none;
}
@media (max-width: 1023px) {
  .categorySectionContainer {
    padding: 6rem 2.5rem 5rem 2.5rem;
    align-items: center;
  }
  .categorySectionContainer .top-buttons {
    justify-content: center;
  }
  .categorySectionContainer .top-buttons .filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .categorySectionContainer .categoryListContainer {
    display: flex;
    width: 100%;
  }
  .categorySectionContainer .categoryListContainer .categoryGrid {
    width: 100%;
  }
  .categorySectionContainer .categoryListContainer .filters {
    display: none !important;
  }
  .categorySectionContainer .categoryListContainer .filter-modal {
    display: none;
    flex-direction: column;
    max-height: 100vh;
  }
  .pagination-container {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .categorySectionContainer {
    padding: 6rem 2rem 5rem 2rem;
  }
  .categorySectionContainer .categoryListContainer .categoryGrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 425px) {
  .categorySectionContainer .filter-modal-content .filters-mobile .button-group {
    display: flex;
    flex-direction: column;
  }
  .categorySectionContainer .filter-modal-content .filters-mobile .button-group button,
  .categorySectionContainer .filter-modal-content .filters-mobile .button-group a {
    width: 100%;
  }
}