/*
COLORS

--color-grey-light- 1: #faf9f9
--color-grey-light- 2: #f4f2f2
--color-grey-light- 3: #f0eeee
--color-grey-light- 4: #ccc

Grey dark 1: #333
Grey dark 2: #777
Grey dark 3: #999
*/
* {
  margin: 0;
  padding: 0; }

*,
*::before,
*::after {
  box-sizing: inherit; }

html, body {
  margin: 0 30px; }

html {
  box-sizing: border-box;
  font-size: 62.5%;
  margin: 0;
  padding: 0; }

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #54483A;
  background-color: #f9f7f6;
  padding-bottom: 1rem; }

h1, h2, h3, h4 {
  font-family: "Nunito", sans-serif;
  color: #FFFFFF; }

h1 {
  font-size: 2.5rem;
  font-weight: 700; }

h2 {
  font-weight: 400;
  font-size: 1.8rem; }

h3 {
  font-weight: 400;
  font-size: 1.5rem; }

p {
  font-size: 1.5rem; }

.container {
  max-width: 100rem;
  margin: 0 auto;
  min-height: 50rem; }

@media only screen and (max-width: 50em) {
  .container {
    max-width: 75rem;
    margin: 0 auto; } }

@media only screen and (max-width: 37.5em) {
  .container {
    max-width: 55rem;
    margin: 0 auto; } }

.content-two-column {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: flex;
  justify-content: space-between;
  gap: 3rem; }
  .content-two-column__block {
    flex: 1; }
    .content-two-column__block h1 {
      color: #1D71B8; }
  .content-two-column__sidebar-right {
    margin-top: 20px;
    background-color: var(--color-grey-dark-1);
    -webkit-box-flex: 1;
    -ms-flex: 1 0 250px;
    flex: 1 0 250px;
    max-width: 250px; }

@media only screen and (max-width: 50em) {
  .content-two-column {
    display: block;
    width: 100%; }
    .content-two-column__sidebar-right {
      display: none; } }

.section-container {
  display: flex; }
  .section-container-item {
    flex: 1; }

.header {
  position: sticky;
  top: 0;
  max-width: 100rem;
  height: 7rem;
  border-bottom: var(--color-grey-light-2);
  margin: 0.7rem auto 1rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease; }
  .header__logo {
    display: flex;
    align-items: center; }
    .header__logo img {
      height: 7rem;
      transition: height 0.3s ease, transform 0.3s ease; }
  .header.scrolled {
    height: 5rem;
    margin: 0 auto; }
  .header.scrolled .header__logo img {
    height: 4rem;
    transform: scale(0.9); }
  @media only screen and (max-width: 62.5em) {
    .header .container {
      padding-right: 0.2rem; } }
  .header__hamburger {
    display: none; }
  @media only screen and (max-width: 37.5em) {
    .header__logo img {
      height: 6rem; }
    .header__hamburger {
      display: block;
      width: 3rem; }
      .header__hamburger-icon {
        color: #0A246A; } }

.container-header {
  padding-top: 1rem;
  background-color: #e5f0fd;
  position: sticky;
  top: 0;
  margin-left: -30px;
  margin-right: -30px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000; }

nav .container__navigation {
  display: flex;
  max-width: 100rem;
  margin: 0 auto;
  justify-content: space-between; }
  nav .container__navigation ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around; }
  nav .container__navigation li {
    list-style: none;
    font-size: 1.8rem;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    text-decoration: none; }
    nav .container__navigation li .navigation__link {
      display: block;
      color: #1D71B8;
      text-decoration: none;
      padding: .6rem 1rem .3rem 1rem;
      transition: all .2s; }
      nav .container__navigation li .navigation__link:hover {
        color: #EF7D0A; }

#menu-toggle {
  display: none; }

@media only screen and (max-width: 37.5em) {
  .mobile-menu {
    position: fixed;
    top: 8rem;
    left: -100rem;
    width: 100rem;
    max-width: 100rem;
    height: 100vh;
    background: #f9f7f6;
    transition: left 0.3s ease-in-out;
    z-index: 999; }
    .mobile-menu .container__navigation {
      display: flex;
      flex-direction: column;
      max-width: 100rem;
      margin: 0 auto;
      justify-content: space-between; }
      .mobile-menu .container__navigation ul {
        display: flex;
        flex-direction: column;
        padding-top: 3rem;
        padding-left: 2.8rem;
        padding-bottom: 1.3rem;
        justify-content: space-around;
        border-bottom: 1px solid #EF7D0A; }
      .mobile-menu .container__navigation li {
        list-style: none;
        font-size: 2.3rem;
        font-family: "Josefin Sans", sans-serif;
        font-weight: 700;
        text-decoration: none; }
        .mobile-menu .container__navigation li .navigation__link {
          display: block;
          color: #1D71B8;
          text-decoration: none;
          padding: .6rem 1rem .3rem 1rem;
          transition: all .2s; }
          .mobile-menu .container__navigation li .navigation__link:hover {
            color: #EF7D0A; }
  #menu-toggle {
    display: none; }
  #menu-toggle:checked ~ .mobile-menu {
    left: 0; }
  .header__hamburger {
    z-index: 1001;
    cursor: pointer; }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none; } }

.active {
  color: #EF7D0A !important; }

.features {
  --gap: 2rem;
  --columns: 3;
  margin-top: .5rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap); }
  @media only screen and (max-width: 50em) {
    .features {
      --columns: 2; } }
  @media only screen and (max-width: 37.5em) {
    .features {
      --columns: 1; } }
  .features__title {
    margin-top: 1.5rem;
    font-weight: 400;
    font-size: 2.4rem;
    color: #1D71B8; }
  .features__footer {
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: center; }
    .features__footer a {
      text-decoration: none;
      overflow: hidden;
      border-radius: 5px; }
  .features .feature {
    display: flex;
    flex-direction: column;
    width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
    margin-top: 0.5rem;
    background-color: #FFF;
    overflow: hidden;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-in-out; }
    .features .feature:hover {
      box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3); }
    .features .feature__img-block {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 12.6rem;
      padding: 1rem 1rem 3rem 1rem; }
    .features .feature__img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      width: 100%; }
      .features .feature__img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; }
    .features .feature__name {
      margin: 0 auto;
      font-size: 1.3rem;
      font-weight: 400;
      width: 80%;
      background-color: #1D71B8;
      text-align: center;
      justify-self: center;
      transform: translateY(-60%);
      padding: .8rem 1rem .8rem 1rem;
      overflow: hidden;
      border-radius: 5px; }
    .features .feature__excerpt {
      margin: 0 1.2rem 1rem 1.2rem;
      font-size: 1.2rem;
      color: #54483A; }
    .features .feature__button {
      margin-top: auto;
      display: block;
      width: 100%;
      text-align: center;
      text-decoration: none; }
  .features .feature-2block {
    display: block;
    width: calc((100% / 2) - var(--gap) + (var(--gap) / 2));
    margin-top: 1rem;
    background-color: #FFF;
    overflow: hidden;
    border-radius: 5px; }
  .features .feature-4block {
    display: flex;
    flex-direction: column;
    width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
    margin-top: 0.5rem;
    background-color: #FFF;
    overflow: hidden;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-in-out; }
    @media only screen and (min-width: 62.5em) {
      .features .feature-4block {
        --columns: 4; } }
    @media only screen and (max-width: 50em) {
      .features .feature-4block {
        --columns: 3; } }
    @media only screen and (max-width: 37.5em) {
      .features .feature-4block {
        --columns: 2; } }
    @media only screen and (max-width: 30em) {
      .features .feature-4block {
        --columns: 1; } }
    .features .feature-4block:hover {
      box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3); }

.block-link {
  text-decoration: none; }

.head-homepage {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #FFFFFF;
  overflow: hidden;
  overflow: hidden;
  border-radius: 5px; }
  .head-homepage__img {
    width: 50%; }
  .head-homepage__content {
    width: 50%; }
    .head-homepage__content-name {
      font-weight: 400;
      font-size: 2.4rem;
      color: #1D71B8;
      margin: 1.5rem 2rem 1rem 2rem; }
    .head-homepage__content-excerpt {
      margin: 1.5rem 2rem 1rem 2rem;
      font-size: 1.4rem; }
    .head-homepage__content-button-small {
      display: inline-block;
      text-decoration: none;
      margin: 1rem 2rem 1.5rem 2rem;
      overflow: hidden;
      border-radius: 5px; }

@media only screen and (max-width: 50em) {
  .head-homepage {
    flex-direction: column; }
    .head-homepage__img {
      width: 100%;
      height: 35rem;
      object-fit: cover; }
    .head-homepage__content {
      width: 100%; } }

@media only screen and (max-width: 37.5em) {
  .head-homepage {
    flex-direction: column; }
    .head-homepage__img {
      width: 100%;
      height: 30rem;
      object-fit: cover; }
    .head-homepage__content {
      width: 100%; } }

.homepage-banner {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 100rem 1fr; }
  .homepage-banner__content {
    margin: 0 auto;
    margin-top: 4rem;
    grid-column: 2/3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-90%, -90%);
    justify-content: center; }
  @media only screen and (max-width: 900px) {
    .homepage-banner__content {
      transform: translate(-50%, -90%); } }
  .homepage-banner__img {
    display: block;
    width: 100%;
    height: 40vh;
    position: relative;
    object-fit: cover;
    object-position: center;
    grid-column: 1/4; }
  .homepage-banner__title {
    font-weight: 700;
    font-family: "Josefin Sans", sans-serif;
    font-size: 5rem;
    text-align: center;
    text-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
    z-index: 10; }
  .homepage-banner__excerpt {
    font-family: "Josefin Sans", sans-serif;
    font-size: 3rem; }
  .homepage-banner__btn {
    display: inline-block;
    text-decoration: none;
    margin: 1rem 2rem 1.5rem 0;
    overflow: hidden;
    overflow: hidden;
    border-radius: 5px;
    align-self: start;
    justify-self: start; }

.blog {
  display: block; }
  .blog__header {
    border-top: 1px solid #EF7D0A;
    border-bottom: 1px solid #EF7D0A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem; }
    .blog__header-title {
      color: #1D71B8;
      padding-left: 1rem; }
    .blog__header-image {
      height: 3rem; }
  .blog__date {
    color: #000000;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    padding-left: 10px;
    padding-right: 10px; }
  .blog__img {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 5px; }
  .blog__content {
    padding-left: 10px;
    padding-right: 10px;
    color: #000000; }
    .blog__content h2.wp-block-heading {
      font-size: 2.5rem;
      color: #1D71B8;
      font-weight: 700;
      margin-bottom: 1.2rem;
      clear: both; }
    .blog__content h3.wp-block-heading {
      font-size: 1.8rem;
      color: #1D71B8;
      font-weight: 700;
      margin-bottom: 1.2rem;
      clear: both; }
    .blog__content .wp-block-image {
      margin-bottom: 1.2rem; }
      .blog__content .wp-block-image img {
        border-radius: 5px; }
    .blog__content p {
      margin-bottom: 2rem; }
    .blog__content ul, .blog__content ol {
      margin-top: -1.5rem;
      margin-left: 3rem;
      margin-bottom: 1rem; }
      .blog__content ul li, .blog__content ol li {
        font-weight: 400;
        line-height: 1.6;
        font-size: 1.5rem; }

.footer-container {
  width: 100%;
  border-top: 1px solid #EF7D0A;
  border-bottom: 1px solid #EF7D0A;
  margin-top: 2rem; }
  .footer-container h3 a {
    color: #1D71B8;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none; }

.footer {
  max-width: 100rem;
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem; }
  .footer__about {
    width: 40%; }
    .footer__about p {
      font-size: 1.5rem; }
  .footer__links {
    width: 20%; }
    .footer__links ul {
      list-style: none;
      margin: 1rem 1.2rem 1.3rem 1.2rem;
      font-size: 1.5rem; }
    .footer__links li {
      line-height: 2rem; }
      .footer__links li a {
        text-decoration: none;
        color: #000000; }
        .footer__links li a:hover {
          color: #EF7D0A; }

@media only screen and (max-width: 37.5em) {
  .footer {
    flex-direction: column; } }

.copyright {
  text-align: center;
  margin: 1rem auto; }

.searchpage a {
  text-decoration: none; }

.searchpage__box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #EF7D0A; }
  .searchpage__box-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .searchpage__box-image {
    width: 200px;
    overflow: hidden;
    border-radius: 5px; }
  .searchpage__box-content h2, .searchpage__box-content p {
    font-size: 1.4rem; }
  .searchpage__box-content h2 {
    color: #1D71B8;
    font-weight: 700; }
  .searchpage__box-content p {
    color: #000000; }

.searchpage__result h3 {
  color: #1D71B8;
  font-size: 1.3rem;
  font-weight: 700; }

.btn {
  background-color: #1D71B8;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 1rem 3rem 0.8rem 3rem;
  cursor: pointer;
  transition: all .2s; }
  .btn:hover {
    background-color: #EF7D0A; }

@media only screen and (min-width: 50em) {
  .hide-on-desktop {
    display: none; } }

.form select {
  font-family: inherit;
  font-size: 1.5rem;
  background-color: #FFFFFF;
  border: 1px solid #1D71B8;
  padding: .7rem 2rem;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  transition: all .2s; }

.search {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem; }
  .search__input {
    font-family: inherit;
    font-size: 1.5rem;
    background-color: #FFFFFF;
    border: 1px solid #1D71B8;
    padding: .7rem 2rem;
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
    transition: all .2s;
    margin-right: -3.25rem; }
    .search__input:focus {
      outline: none;
      border: 1px solid #EF7D0A;
      width: 100%; }
    .search__input::-webkit-input-placeholder {
      font-size: 100%;
      color: var(--color-grey-light-4); }
  .search__input:focus + .search__button:focus {
    background-color: var(--color-grey-light-3); }
  .search__button {
    border: none;
    background-color: var(--color-grey-light-2); }
    .search__button:focus {
      outline: none; }
    .search__button:active {
      transform: translateY(2px); }
  .search__icon {
    height: 2rem;
    width: 2rem;
    fill: var(--color-grey-dark-3); }

.searchmobile {
  display: none; }

@media only screen and (max-width: 37.5em) {
  .search {
    display: none; }
  .searchmobile {
    display: block; } }

.socials {
  display: flex;
  justify-content: center;
  align-items: center; }
  .socials__items {
    flex: 1;
    padding: .5rem; }
    .socials__items-facebook, .socials__items-instagram, .socials__items-youtube {
      height: 2rem;
      width: 2rem; }
    .socials__items-facebook {
      fill: #039BE5; }
    .socials__items-instagram {
      fill: #304FFE; }
    .socials__items-youtube {
      fill: #FF3D00; }

@media only screen and (max-width: 50em) {
  .socials {
    display: none; } }

@media only screen and (max-width: 37.5em) {
  .socials {
    display: flex;
    width: 33%;
    margin-top: 2rem;
    margin-left: 2.8rem; }
    .socials__items-facebook, .socials__items-instagram, .socials__items-youtube {
      height: 3rem;
      width: 3rem; } }

.sidebar-most-read__header {
  background-color: #1D71B8;
  text-align: center;
  padding: .8rem 2rem .8rem 2rem;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 1rem; }

.sidebar-most-read a {
  text-decoration: none;
  color: #000000; }
  .sidebar-most-read a:hover {
    color: #EF7D0A; }

.sidebar-most-read__container {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 0.5rem;
  border-bottom: 1px solid #a2a2a2;
  display: flex;
  align-items: center; }
  .sidebar-most-read__container-number {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    width: 20%;
    color: #a2a2a2; }
  .sidebar-most-read__container-title {
    padding-top: 0.4rem;
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.6rem;
    width: 80%; }
  .sidebar-most-read__container-title-items {
    padding-top: 0.4rem;
    padding-left: 1rem;
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.6rem;
    width: 80%; }

.sidebar-most-read__list {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 2rem; }
  .sidebar-most-read__list-title {
    display: inline-block;
    width: 65%;
    vertical-align: top; }
  .sidebar-most-read__list-value {
    display: inline-block;
    width: 35%; }
  .sidebar-most-read__list-link-active {
    color: #EF7D0A !important; }
  .sidebar-most-read__list ul {
    list-style: none;
    margin: 1rem 1.2rem 1rem 1.2rem; }
  .sidebar-most-read__list li a {
    text-decoration: none;
    color: #000000; }
    .sidebar-most-read__list li a:hover {
      color: #EF7D0A; }

.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 2rem;
  font-size: 1.2rem; }

.pagination a, .pagination .current {
  padding: 5px 10px;
  border: 1px solid #EF7D0A;
  color: #1D71B8;
  text-decoration: none;
  overflow: hidden;
  border-radius: 5px; }

.pagination .current {
  font-weight: bold;
  color: #fff;
  border: 1px solid #1D71B8;
  background-color: #1D71B8; }

.tags {
  margin-top: 1rem; }
  .tags__single-page {
    margin-left: 1rem; }
  .tags__block {
    color: #f9f7f6;
    margin-bottom: 1.3rem; }
    .tags__block-post-types, .tags__block-categories {
      margin-right: 1rem;
      padding: 0.3rem 0.5rem;
      border-radius: 5px; }
    .tags__block-post-types {
      background-color: #1D71B8; }
    .tags__block-categories {
      background-color: #EF7D0A; }

.slider {
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 1rem; }

.container-breadcrums {
  margin: 1.5rem auto 0 auto;
  max-width: 100rem; }

.breadcrumbs {
  padding-left: 1rem;
  font-size: 1.4rem;
  color: #666; }

.breadcrumbs a {
  text-decoration: none;
  color: #0073aa; }

.breadcrumbs a:hover {
  text-decoration: underline; }

.video__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 1rem; }
  .video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.home-most-read__container {
  margin-top: 2rem;
  display: flex;
  gap: 2rem; }

.home-most-read__block {
  width: 50%; }
  .home-most-read__block a {
    text-decoration: none;
    color: #101d2c; }
  .home-most-read__block-container {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border-radius: 5px; }
    .home-most-read__block-container:hover {
      box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3); }
  .home-most-read__block-image {
    width: 15rem;
    height: 8rem;
    border-radius: 5px; }
  .home-most-read__block-text {
    padding-left: 2rem; }
    .home-most-read__block-text h3 {
      font-size: 1.6rem;
      font-weight: 700;
      color: #101d2c; }
    .home-most-read__block-text p {
      font-size: 1.3rem;
      color: #101d2c; }

@media only screen and (max-width: 600px) {
  .home-most-read__container {
    flex-direction: column; }
  .home-most-read__block {
    width: 100%; } }
