/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
/* Weights */
.site-header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  z-index: 100;
  background: #FFF;
  border-top: 7px solid #EE1B2D; }
  .site-header:before {
    content: ' ';
    position: absolute;
    width: 33.3333333%;
    height: 7px;
    top: -7px;
    left: 0;
    background: #023C79; }
  .site-header:after {
    content: ' ';
    position: absolute;
    width: 33.3333333%;
    height: 7px;
    top: -7px;
    right: 0;
    background: #A3D9E7; }
  .site-header .container {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
  .site-header img.custom-logo {
    width: 100%;
    max-width: 200px;
    height: auto; }
  .site-header .mobile-btn {
    appearance: none;
    cursor: pointer;
    background: none;
    padding: 1rem;
    margin: 0;
    border: 0;
    width: 25px;
    height: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 120; }
    @media (min-width: 1010px) {
      .site-header .mobile-btn {
        display: none; } }
    .site-header .mobile-btn span {
      width: 25px;
      height: 2px;
      background: #000;
      position: absolute;
      left: 0;
      transition: .3s; }
      .site-header .mobile-btn span:before {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 2px;
        top: -8px;
        left: 0;
        background: #000;
        transition: .3s; }
      .site-header .mobile-btn span:after {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -8px;
        left: 0;
        background: #000;
        transition: .3s; }
    .site-header .mobile-btn.active span {
      background: none; }
      .site-header .mobile-btn.active span:before {
        top: 0;
        transform: rotate(45deg);
        background: #FFF; }
      .site-header .mobile-btn.active span:after {
        bottom: 0;
        transform: rotate(-45deg);
        background: #FFF; }

#mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #023C79;
  margin: 0;
  padding: 2rem;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out; }
  @media (min-width: 1010px) {
    #mobile-menu {
      display: none; } }
  #mobile-menu.active {
    opacity: 1;
    visibility: visible; }
    #mobile-menu.active .menu li {
      opacity: 1;
      transform: translateY(0);
      transition-delay: .3s; }
      #mobile-menu.active .menu li:nth-child(2) {
        transition-delay: .4s; }
      #mobile-menu.active .menu li:nth-child(3) {
        transition-delay: .5s; }
      #mobile-menu.active .menu li:nth-child(4) {
        transition-delay: .6s; }
      #mobile-menu.active .menu li:nth-child(5) {
        transition-delay: .7s; }
      #mobile-menu.active .menu li:nth-child(6) {
        transition-delay: .8s; }
  #mobile-menu .menu-main-menu-container {
    width: 100%; }
  #mobile-menu .menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%; }
    #mobile-menu .menu li {
      margin-bottom: 1rem;
      opacity: 0;
      transform: translateY(1rem);
      transition: .3s; }
      #mobile-menu .menu li:last-child {
        margin-bottom: 0; }
      #mobile-menu .menu li a {
        color: #FFF;
        font-size: 1.5rem;
        font-weight: 300;
        text-decoration-color: transparent;
        transition: .3s; }
        #mobile-menu .menu li a:hover, #mobile-menu .menu li a:focus {
          color: #A3D9E7; }

#main-menu {
  display: none;
  list-style-type: none;
  padding: 0;
  margin: 0; }
  @media (min-width: 1010px) {
    #main-menu {
      display: flex; } }
  #main-menu .menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; }
    #main-menu .menu li {
      margin-left: 2rem; }
      #main-menu .menu li:first-child {
        margin-left: 0; }
      #main-menu .menu li a {
        font-size: 1rem;
        font-weight: 700;
        color: #000;
        text-decoration-color: transparent;
        transition: .3s; }
        #main-menu .menu li a:hover, #main-menu .menu li a:focus {
          color: #EE1B2D; }
      #main-menu .menu li:last-child a {
        background: #023C79;
        padding: 0.9rem 1.2rem;
        color: #FFF;
        transition: .3s;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.1rem; }
        #main-menu .menu li:last-child a:hover, #main-menu .menu li:last-child a:focus {
          background: #A3D9E7;
          color: #023C79; }

.site-footer {
  width: 100%;
  background: #023C79; }
  .site-footer .container {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center; }
    @media (min-width: 800px) {
      .site-footer .container {
        justify-content: space-between; } }
    .site-footer .container img {
      width: 100%;
      max-width: 250px; }

.footer-bottom {
  width: auto;
  font-size: 0.8rem;
  color: #FFF;
  margin-top: 2rem; }
  @media (min-width: 800px) {
    .footer-bottom {
      margin-top: 0;
      text-align: right; } }
  .footer-bottom a {
    color: #FFF; }

.carousel .swiper-slide {
  width: 100%;
  background: #eee;
  position: relative; }
  .carousel .swiper-slide .image {
    width: 100%;
    height: 350px;
    position: relative;
    z-index: -1; }
    @media (min-width: 800px) {
      .carousel .swiper-slide .image {
        height: calc(100svh - 106px);
        min-height: 500px;
        max-height: 700px; } }
    .carousel .swiper-slide .image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center; }
  .carousel .swiper-slide .overlay {
    z-index: 10;
    display: block;
    box-sizing: border-box; }
    @media (min-width: 800px) {
      .carousel .swiper-slide .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        max-width: 1400px;
        margin: 0 auto;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start; } }
    .carousel .swiper-slide .overlay .box {
      background: #023C79;
      padding: 2rem;
      width: 100%;
      margin: 0; }
      @media (min-width: 800px) {
        .carousel .swiper-slide .overlay .box {
          width: auto;
          max-width: 500px;
          margin: 0; } }
    .carousel .swiper-slide .overlay .title {
      font-size: 1.5rem;
      line-height: 2.3rem;
      font-weight: 700;
      color: #FFF;
      padding: 0;
      margin: 0; }
      @media (min-width: 800px) {
        .carousel .swiper-slide .overlay .title {
          font-size: 1.5rem;
          line-height: 2rem; } }
    .carousel .swiper-slide .overlay .subtitle {
      color: #FFF;
      font-size: 1.1rem; }
.carousel .swiper-pagination {
  display: none; }
  @media (min-width: 800px) {
    .carousel .swiper-pagination {
      display: flex;
      text-align: left;
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      left: 0;
      right: 0;
      bottom: 1rem;
      padding: 0 0.5rem; } }
  .carousel .swiper-pagination .swiper-pagination-bullet-active {
    background: #EE1B2D !important; }
  .carousel .swiper-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.8); }
.carousel .swiper-button-next, .carousel .swiper-button-prev {
  width: 20px;
  height: 20px;
  color: #FFF; }
  @media (min-width: 800px) {
    .carousel .swiper-button-next, .carousel .swiper-button-prev {
      display: none; } }

.blog-header {
  width: 100%;
  background: #333;
  padding: 2rem;
  text-align: center; }
  .blog-header h2 {
    color: #FFF; }

.blog-main {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.25rem;
  padding: 2rem;
  max-width: 75rem;
  margin: 0 auto; }
  @media (min-width: 576px) {
    .blog-main {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 992px) {
    .blog-main {
      grid-template-columns: repeat(3, 1fr); } }

.blog-post {
  display: flex;
  flex-direction: column;
  text-decoration: none; }
  @media (min-width: 576px) {
    .blog-post {
      width: 48%;
      margin: 0 1%; }
      @supports (display: grid) {
        .blog-post {
          width: 100%;
          margin: 0; } } }
  .blog-post .image {
    width: 100%;
    height: 300px;
    background-size: cover !important;
    background-position: center center !important; }
  .blog-post .meta {
    color: #000;
    text-transform: uppercase;
    font-size: 0.9rem; }
  .blog-post .title {
    color: #000;
    font-size: 1.2rem; }
  .blog-post p {
    color: #000; }

.post-single {
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  margin: 0 auto; }
  .post-single .attachment-post-thumbnail {
    width: 100%;
    height: auto; }

.share-buttons {
  font-size: 0.7rem;
  line-height: 0.7rem;
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  margin: 0 0 3.75rem;
  z-index: 2;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start; }
  .share-buttons li {
    height: auto;
    flex: 0 1 auto;
    width: calc(33.3333333% - 1px);
    margin-right: 0.063rem; }
    .share-buttons li:last-child {
      width: 33.3333333%;
      margin-right: 0; }
      .share-buttons li:last-child a {
        border-radius: 0 0.188rem 0.188rem 0; }
    .share-buttons li:first-child a {
      border-radius: 0.188rem 0 0 0.188rem; }
  .share-buttons svg {
    fill: #fff;
    margin-right: 0.313rem;
    width: 1rem;
    height: 1rem; }
  .share-buttons a {
    display: block;
    padding: 0.75rem 0.75rem 0.563rem;
    text-align: center;
    color: White; }

.share-twitter {
  background: #1da1f2; }

.share-facebook {
  background: #3b5998; }

.share-pinterest {
  background: #b5071a; }

.error {
  width: 100%;
  height: 100vh;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .error .content {
    max-width: 61.25rem;
    width: 100%;
    padding: 2rem;
    text-align: center; }
    .error .content h1 {
      font-size: 14rem;
      font-weight: 900;
      margin: 0;
      padding: 0;
      color: #000; }
    .error .content h3 {
      font-size: 5rem;
      font-weight: 900;
      color: #000;
      margin: 0;
      padding: 0; }
    .error .content h4 {
      font-size: 2rem;
      color: #000;
      margin-top: 0.625rem; }
    .error .content a {
      background: #FFF;
      border: 3px solid #000;
      color: #000;
      margin-top: 0.625rem;
      padding: 0.5rem 2rem;
      display: inline-block; }
      .error .content a:hover {
        background: #000;
        text-decoration: none;
        color: #FFF; }

html {
  box-sizing: border-box; }

* {
  box-sizing: inherit;
  font-family: soleil, sans-serif;
  font-weight: 400; }

p {
  font-size: 1rem;
  line-height: 1.6rem;
  font-weight: 300; }

body {
  font-size: 16px;
  padding: 0;
  margin: 0; }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2 );
  margin-right: calc( -100vw / 2 + 100% / 2 );
  max-width: 100vw; }

.alignfull img {
  width: 100vw; }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto; }

.btn, #gform_submit_button_1, #gform_submit_button_2, #gform_submit_button_3 {
  background: #EE1B2D;
  padding: 0.6rem 0.8rem 0.8rem 0.8rem;
  color: #FFF;
  transition: .3s;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  text-decoration-color: transparent;
  display: inline-block;
  margin-top: 1rem;
  border: 3px solid #EE1B2D; }
  .btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus, #gform_submit_button_2:hover, #gform_submit_button_2:focus, #gform_submit_button_3:hover, #gform_submit_button_3:focus {
    background: #A3D9E7;
    color: #023C79;
    border-color: #A3D9E7; }

#gform_submit_button_1, #gform_submit_button_2, #gform_submit_button_3 {
  border: 0;
  cursor: pointer; }

.btn-outline {
  border: 3px solid #EE1B2D;
  padding: 0.6rem 0.8rem;
  color: #EE1B2D;
  text-transform: uppercase;
  text-decoration-color: transparent;
  font-weight: 700;
  transition: .3s; }
  .btn-outline:hover, .btn-outline:focus {
    background: #EE1B2D;
    color: #FFF; }

main {
  padding-top: 106px; }

.home-text {
  width: 100%;
  padding: 4rem 0;
  background: url("/wp-content/uploads/2025/10/shape-1.png");
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: bottom right; }
  @media (min-width: 992px) {
    .home-text {
      padding: 6rem 0; } }
  .home-text .container {
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap; }
    @media (min-width: 992px) {
      .home-text .container {
        padding: 0 4rem; } }
    .home-text .container article {
      width: 100%; }
      @media (min-width: 992px) {
        .home-text .container article {
          width: 50%;
          padding-right: 6rem;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center; } }
      .home-text .container article h1 {
        font-size: 2rem;
        font-weight: 900;
        color: #023C79;
        padding: 0;
        margin: 0; }
        @media (min-width: 800px) {
          .home-text .container article h1 {
            font-size: 2.2rem; } }
      .home-text .container article .buttons {
        display: flex;
        flex-wrap: wrap;
        margin-top: 2rem; }
        @media (min-width: 992px) {
          .home-text .container article .buttons {
            margin-top: 2rem; } }
        .home-text .container article .buttons .btn {
          margin-top: 0;
          margin-bottom: 1rem; }
          .home-text .container article .buttons .btn:nth-child(1) {
            margin-right: 1rem; }
        .home-text .container article .buttons .btn-outline {
          margin-bottom: 1rem; }
    .home-text .container aside {
      width: 100%;
      height: 400px;
      margin-top: 2rem; }
      @media (min-width: 992px) {
        .home-text .container aside {
          width: 50%;
          margin-top: 0;
          height: 500px; } }
      .home-text .container aside img {
        width: 100%;
        height: 100%;
        object-fit: cover; }

.help {
  width: 100%;
  background: #F4FAFC;
  padding: 4rem 0;
  text-align: center; }
  .help h2 {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #023C79;
    padding: 0 0 0.5rem 0;
    margin: 0 0 2rem 0;
    border-bottom: 4px solid #EE1B2D; }
    @media (min-width: 800px) {
      .help h2 {
        font-size: 2.5rem; } }
    .help h2:before {
      content: ' ';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 33.3333333%;
      height: 4px;
      background: #023C79; }
    .help h2:after {
      content: ' ';
      position: absolute;
      bottom: -4px;
      right: 0;
      width: 33.3333333%;
      height: 4px;
      background: #A3D9E7; }
  .help .container {
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    padding: 0 2rem; }
    @media (min-width: 800px) {
      .help .container {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 0 3rem;
        padding: 0 4rem; } }
    .help .container .box {
      text-align: left; }
      .help .container .box .image {
        width: 100%;
        height: 300px; }
        .help .container .box .image img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .help .container .box h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #023C79;
        padding: 1rem 0 0 0;
        margin: 0; }
      .help .container .box p {
        font-size: 1rem; }

.image-text {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #023C79; }
  .image-text .image {
    width: 100%;
    height: 500px; }
    @media (min-width: 800px) {
      .image-text .image {
        width: 50%;
        min-height: 600px; } }
    .image-text .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .image-text .content {
    padding: 2rem; }
    @media (min-width: 800px) {
      .image-text .content {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center; } }
    .image-text .content h2 {
      font-weight: 700;
      font-size: 2rem;
      color: #A3D9E7;
      padding: 0;
      margin: 0; }
    .image-text .content p {
      color: #FFF;
      padding: 0;
      margin: 0 0 1rem 0; }

.logos {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem; }
  @media (min-width: 450px) {
    .logos {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 600px) {
    .logos {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 800px) {
    .logos {
      grid-template-columns: repeat(4, 1fr); } }

.resources {
  background: #FFF url("/wp-content/uploads/2025/11/blue-shapes.png");
  background-size: 150px;
  background-repeat: no-repeat;
  background-position: 0 20px;
  padding: 6rem 0;
  display: block; }
  .resources p {
    font-size: 1.3rem;
    font-weight: 700; }
  @media (min-width: 800px) {
    .resources {
      background-size: 250px;
      background-position: 0 40px; } }
  @media (min-width: 576px) {
    .resources .container {
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 2rem; } }
  @media (min-width: 800px) {
    .resources .container {
      grid-template-columns: repeat(3, 1fr); } }

.image-block {
  width: 100%;
  height: 600px;
  position: relative; }
  .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .image-block .container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 1rem; }
  .image-block .overlay {
    background: #023C79;
    width: 90%;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    padding: 2rem; }
    @media (min-width: 800px) {
      .image-block .overlay {
        width: 500px;
        left: 0; } }
    .image-block .overlay h2 {
      font-size: 2rem;
      color: #FFF;
      padding: 0;
      margin: 0;
      font-weight: 700; }
    .image-block .overlay p {
      color: #FFF; }

.page-header {
  width: 100%;
  height: 300px;
  background: #F4FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative; }
  .page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; }
  .page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; }
    .page-header .overlay h1 {
      color: #FFF; }
  .page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #023C79;
    position: relative;
    border-bottom: 4px solid #EE1B2D;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-fill-mode: forwards;
    animation-delay: .3s; }
    .page-header h1:before {
      content: ' ';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 33.3333333%;
      height: 4px;
      background: #023C79; }
    .page-header h1:after {
      content: ' ';
      position: absolute;
      bottom: -4px;
      right: 0;
      width: 33.3333333%;
      height: 4px;
      background: #A3D9E7; }

.split-block {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: .5s; }
  .split-block article {
    width: 100%; }
    @media (min-width: 800px) {
      .split-block article {
        width: 60%; } }
    .split-block article .wp-block-gallery .wp-block-image {
      height: 250px;
      padding: 0.5rem;
      border: 4px solid #FFF;
      transition: .3s; }
      .split-block article .wp-block-gallery .wp-block-image:hover, .split-block article .wp-block-gallery .wp-block-image:focus {
        border-color: #EE1B2D; }
    .split-block article h2 {
      font-size: 2rem;
      font-weight: 900;
      color: #023C79;
      padding: 0 0 0.8rem 0;
      margin: 0; }
    .split-block article h3 {
      font-size: 1.5rem;
      color: #023C79;
      padding: 0;
      margin: 0; }
    .split-block article p {
      font-size: 1.1rem;
      line-height: 1.8rem; }
      .split-block article p a {
        color: #EE1B2D; }
    .split-block article ul {
      list-style-type: none;
      padding: 0;
      margin: 2rem 0 0 0; }
      .split-block article ul li {
        margin-bottom: 0;
        padding: 0.7rem;
        background: #F4FAFC; }
        .split-block article ul li a {
          color: #023C79;
          text-decoration-color: transparent;
          width: 100%;
          display: block;
          transition: .3s; }
          .split-block article ul li a:hover, .split-block article ul li a:focus {
            color: #EE1B2D; }
        .split-block article ul li:nth-child(even) {
          background: #FFF; }
  .split-block aside {
    width: 100%;
    position: relative;
    margin-top: 4rem; }
    @media (min-width: 800px) {
      .split-block aside {
        width: 40%;
        padding-left: 2rem;
        margin-top: 0; } }
    @media (min-width: 992px) {
      .split-block aside {
        padding-left: 6rem; } }
    .split-block aside .box {
      background: #023C79;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      position: sticky;
      top: 100px; }
      .split-block aside .box h2 {
        font-size: 1.5rem;
        color: #FFF;
        padding: 0;
        margin: 0; }
      .split-block aside .box p {
        color: #FFF;
        font-size: 1.1rem; }
        .split-block aside .box p strong {
          font-weight: 900; }

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(1rem); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.std-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }
  .std-content .wp-block-gallery .wp-block-image {
    height: 250px;
    padding: 0.5rem;
    border: 4px solid #FFF;
    transition: .3s; }
    .std-content .wp-block-gallery .wp-block-image:hover, .std-content .wp-block-gallery .wp-block-image:focus {
      border-color: #EE1B2D; }
  .std-content p {
    font-size: 1.1rem;
    line-height: 1.8rem; }
  .std-content .newsletter {
    list-style-type: none;
    padding: 0;
    margin: 2rem 0 0 0; }
    .std-content .newsletter li {
      margin-bottom: 0;
      padding: 0.7rem;
      background: #F4FAFC; }
      .std-content .newsletter li a {
        color: #023C79;
        text-decoration-color: transparent;
        width: 100%;
        display: block;
        transition: .3s; }
        .std-content .newsletter li a:hover, .std-content .newsletter li a:focus {
          color: #EE1B2D; }
      .std-content .newsletter li:nth-child(even) {
        background: #FFF; }

.std-content-small {
  max-width: 980px; }

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 1rem;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  background: #FFF;
  cursor: pointer;
  transition: border 0.3s, box-shadow 0.3s;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="10" viewBox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 10,0 5,5"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px; }

select:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); }

input[type='text'], input[type='email'], input[type='tel'], textarea {
  width: 100%;
  height: 40px;
  border: 1px solid #ccc; }

textarea {
  height: 300px; }

.gfield_label {
  font-weight: 400 !important;
  font-size: 0.9rem !important; }

.gfield_required {
  font-size: 0.6rem !important;
  color: #EE1B2D; }

.gform-field-label--type-sub, .gfield_description {
  font-size: 0.8rem !important; }

.gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100% !important; }

.gform_required_legend {
  display: none; }

.gsection_title {
  font-size: 1.5rem;
  color: #023C79; }

.links {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 600px) {
    .links {
      grid-template-columns: 1fr 1fr; } }
  .links a {
    background: #023C79;
    padding: 2rem;
    text-decoration-color: transparent;
    transition: .3s; }
    .links a:hover, .links a:focus {
      background: #A3D9E7; }
      .links a:hover h2, .links a:hover p, .links a:focus h2, .links a:focus p {
        color: #023C79; }
    .links a h2 {
      color: #FFF;
      font-weight: 900;
      padding: 0;
      margin: 0;
      transition: .3s; }
    .links a p {
      color: #FFF;
      font-size: 1.1rem;
      line-height: 1.8rem;
      margin-bottom: 0;
      transition: .3s; }

/*# sourceMappingURL=style.css.map */
