/* 
Theme Name: Aviro360®
Description: Official website for Aviro360®
Author: Eclectic Nerds®
Author URI: http://www.eclecticnerds.com 
Version: 1.0 
Tags: webplatform
.
This work is copyrighted material. All files and other source material are considered intellectual property of Aviro360®.
Any reproduction of this material without express written concent of Aviro360® will result in legal action against those
in violation.
. 
*/

video::-webkit-media-controls-picture-in-picture-toggle {
    display: none !important;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar:horizontal {
    height: 8px;
}

::-webkit-scrollbar-track {
    background-color: #E8EBEF;
}

::-webkit-scrollbar-track:horizontal {
    background-color: rgba(255,255,255,0.0);
}

::-webkit-scrollbar-thumb {
    background-color: #AFB5BF;
    border-left: solid 1px #9EA3AC;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    transition: all 250ms linear;
}

::-webkit-scrollbar-thumb:horizontal {
    background-color: #AFB5BF;
    border-top: solid 1px #9EA3AC;
    border-left: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    transition: all 250ms linear;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #0074B8;
    border-left: solid 1px #9EA3AC;
}

::-webkit-scrollbar-thumb:horizontal:hover {
    background-color: #0074B8;
    border-left: 0px;
    border-top: solid 1px #9EA3AC;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll;
}

body, html {
    margin: 0;
    padding: 0;
    font-size: 0;
    font-family: 'Geist', serif;
    background-color: #F4F8FC;
}

.header--navigation-container {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 60px;
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: brightness(5) blur(40px);
    justify-content: center;
    z-index: 1000000;
    transition: all 350ms linear;
}

.header--navigation-container:hover {
    background-color: rgba(255,255,255,0.94);
}

.header--navigation {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 20px;
    width: calc(100% - 60px);
    max-width: 1340px;
    padding-left: 30px;
    padding-right: 30px;
}

.header--navigation-menu {
    display: none;
}

.header--navigation-home-logo {
    display: flex;
    align-self: center;
    color: #0074B8;
}

.header--navigation-home-logo {
    display: flex;
    align-self: center;
}

.header--navigation-home-logo a svg {
    color: #0074B8;
    transition: all 250ms linear;
}

.header--navigation-home-logo a:hover svg {
    color: #13A3DD;
}

.header--navigation-items {
    height: 60px;
}

.header--navigation-items .menu {
    height: 60px;
}

.header--navigation-items ul {
    height: 60px;
}

.header--navigation-items ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 0px;
    padding: 0px;
}

.header--navigation-items .menu-item {
    display: flex;
    height: 60px;
}

.header--navigation-items .menu-item a {
    position: relative;
    display: flex;
    font-family: 'Geist', serif;
    font-size: 16px;
    font-weight: 300;
    color: #000005;
    text-decoration: none;
    align-items: center;
    transition: all 250ms linear;
}

.header--navigation-items .menu-item a::before {
    content: '';
    position: absolute;
    top: 0px;
    width: 100%;
    height: 4px;
    border-radius: 0px 0px 50px 50px;
    background-color: transparent;
    transition: all 250ms linear;
}

.header--navigation-items .menu-item a:hover::before {
    background-color: #E4EDF8;
}

.header--navigation-items .menu-item.current-menu-item a,
.header--navigation-items .menu-item.current-page-parent a,
.header--navigation-items .menu-item.current_page_parent a {
    font-weight: 500;
    color: #0074B8;
}

.header--navigation-items .menu-item.current-menu-item a::before,
.header--navigation-items .menu-item.current-page-parent a::before,
.header--navigation-items .menu-item.current_page_parent a::before {
    background-color: #0074B8 !important;
}

.header--navigation-items .menu-item a:hover {
    color: #13A3DD;
}

.header--navigation-search {
    display: flex;
    align-self: center;
}

.header--navigation-search a svg {
    color: #232E38;
    transition: all 250ms linear;
}

.header--navigation-search a:hover svg {
    color: #13A3DD;
}

.header--navigation-buttons,
.header--navigation-menu-mobile-login {
    display: flex;
    align-self: center;
    gap: 10px;
}

.header--navigation-buttons a,
.header--navigation-menu-mobile-login a {
    display: flex;
    position: relative;
    min-width: 120px;
    height: 38px;
    font-size: 16px;
    font-family: 'Geist', serif;
    font-weight: normal;
    color: #0074B8;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 6px;
    transition: all 250ms linear;
    text-decoration: none;
}

.header--navigation-buttons a::before,
.header--navigation-menu-mobile-login a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to bottom, #B4E5F9, #ABCFE8);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.header--navigation-buttons a:hover,
.header--navigation-menu-mobile-login a:hover {
    background-color: #DEF8FF;
    color: #0074B8;
}

.header--navigation-buttons a:hover::before,
.header--navigation-menu-mobile-login a:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: #0074B8;
    -webkit-mask: #0074B8;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes subMenuOpen {
    0%   { max-height: 0px; }
    100% { max-height: 1000px; }
}

.header--sub-navigation-container {
    display: none;
    position: relative;
    width: calc(100% - 60px);
    max-width: 1340px;
    max-height: 0px;
    padding-left: 30px;
    padding-right: 30px;
    pointer-events: none;
    overflow: hidden;
}

.header--sub-navigation-container.is-open {
    display: flex;
    pointer-events: all;
    animation: subMenuOpen 1s cubic-bezier(0, 1.01, 1, 1) forwards;
}

.header--sub-navigation {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
}

.header--sub-navigation h6 {
    font-family: 'Geist', serif;
    font-size: 14px;
    font-weight: 200;
    color: #333E48;
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 0px;
    pointer-events: none;
}

@keyframes aviro360FlowAnimation {
    0%   { background-position: 0% 100%; }
    50%  { background-position: 100% 0%; }
    100% { background-position: 0% 100%; }
}

.header--sub-navigation-level-2 h6 {
    font-weight: 300;
    background: linear-gradient(45deg, #0074B8 0%, #E81144 100%);
    background-size: 200% 200%;
    animation: aviro360FlowAnimation 1500ms ease-in-out infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes subNavItemEnterAnimation {
    0%   { transform: translateY(-6px); opacity: 0.0; }
    100% { transform: translateY(0px); opacity: 1.0; }
}

.header--sub-navigation-level-2 {
    display: flex;
    flex-direction: column;
}

.header--sub-navigation-level-2 a {
    font-family: 'Geist', serif;
    font-weight: 600;
    font-size: 24px;
    color: #000005;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 250ms linear;
    opacity: 0.0;
    animation: subNavItemEnterAnimation 250ms cubic-bezier(0, 1.01, 1, 1) forwards;
}

.header--sub-navigation-level-2 a:hover {
    color: #13A3DD;
}

.header--sub-navigation-level-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.header--sub-navigation-level-3-item {
    display: flex;
    flex-direction: column;
}

.header--sub-navigation-level-3-item a {
    font-family: 'Geist', serif;
    font-weight: 400;
    font-size: 16px;
    color: #000005;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 250ms linear;
    opacity: 0.0;
    animation: subNavItemEnterAnimation 250ms cubic-bezier(0, 1.01, 1, 1) forwards;
}

.header--sub-navigation-level-3-item a:hover {
    color: #13A3DD;
}

.main--page a {
    text-decoration: none;
    color: #0074B8;
    transition: all 250ms linear;
}

.main--page a:hover {
    color: #13A3DD;
}

.footer--container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #F4F8FC;
    justify-content: center;
    transition: all 350ms linear;
}

.footer--inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(100% - 60px);
    max-width: 1340px;
    padding-left: 30px;
    padding-right: 30px;
}

.footer--branding {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 80px;
}

.footer--branding a {
    color: #333E48;
    transition: all 250ms linear;
}

.footer--branding a:hover {
    color: #13A3DD;
}

.footer--tagline {
    display: flex;
    position: relative;
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 0px;
    font-family: 'Geist', serif;
    font-size: 14px;
    font-weight: 300;
    background: linear-gradient(45deg, #0074B8 0%, #E81144 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: aviro360FlowAnimation 1500ms ease-in-out infinite;
}

.footer--site-map {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 80px;
    padding-right: 100px;
}

.footer--column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer--column-title,
a.footer--column-title {
    font-family: 'Geist', serif;
    font-size: 14px;
    font-weight: 300;
    color: #333E48;
    text-decoration: none;
    transition: all 250ms linear;
}

a.footer--column-title:hover {
    color: #13A3DD;
}

.footer--column .menu-item a {
    display: block;
    font-family: 'Geist', serif;
    font-size: 16px;
    font-weight: 500;
    color: #000005;
    text-decoration: none;
    padding-bottom: 10px;
    transition: all 250ms linear;
}

.footer--column .menu-item a:hover {
    color: #13A3DD;
}

.footer--legal {
    display: flex;
    justify-content: space-between;
    font-family: 'Geist', serif;
    font-size: 11px;
    color: #333E48;
    padding-bottom: 40px;
}

.footer--legal-links {
    display: flex;
    gap: 30px;
}

.footer--legal a {
    font-family: 'Geist', serif;
    font-size: 11px;
    color: #333E48;
    text-decoration: none;
    transition: all 250ms linear;
}

.footer--legal a:hover {
    color: #13A3DD;
}

.wp-block-button a {
    color: #FFFFFF;
    border-radius: 6px;
    border: 1px solid transparent;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 0%, rgba(0, 0, 0, 0.07) 93%, rgba(255, 255, 255, 0.07) 100%) padding-box,
        linear-gradient(#0074B8, #0074B8) padding-box,
        linear-gradient(to bottom, rgba(36, 206, 255, 0.25) 0%, rgba(0, 116, 184, 0.25) 100%) border-box;
    background-clip: padding-box, padding-box, border-box;
    filter: brightness(1);
    transition: all 250ms linear;
}

.wp-block-button.hot a {
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 0%, rgba(0, 0, 0, 0.07) 93%, rgba(255, 255, 255, 0.07) 100%) padding-box,
        linear-gradient(to top right, #0074B8, #664985) padding-box,
        linear-gradient(to bottom, rgba(36, 206, 255, 0.25) 0%, rgba(0, 116, 184, 0.25) 100%) border-box;
}

.wp-block-button a:hover {
    color: #FFFFFF;
    filter: brightness(1.3);
}

#main {
    position: relative;
    z-index: 0;
}

.main--page {
    position: relative;
    top: 60px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.5;
    z-index: 0;
}

.main--page-content {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 0;
}

.main--page-content > div {
    width: 100%;
    max-width: 1400px;
    align-self: center;
    padding-left: 30px;
    padding-right: 30px;
}

.main--page-content > div.full {
    max-width: unset;
}

.main--page-content > div.full-background {
    max-width: unset;
    padding-left: 0px;
    padding-right: 0px;
}

.main--page-content > div.full-background > * {
    width: 100%;
    max-width: calc(1400px - 60px);
    justify-self: center;
    padding-left: 30px;
    padding-right: 30px;
}

div.aviro360-white {
    background-color: #FFFFFF;
}

div.aviro360-air {
    background-color: #F1FAFE;
}

div.aviro360-frost {
    background-color: #E4EDF8;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main--page-content div,
.main--page-content h1,
.main--page-content h2,
.main--page-content h3,
.main--page-content h4,
.main--page-content h4,
.main--page-content h5,
.main--page-content h6 {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 700ms cubic-bezier(0, 1.01, 1, 1) forwards;
}

.main--page-content div.ignore {
    opacity: unset !important;
    transform: unset !important;
    animation: unset !important;
}

.main--page-content > div:nth-child(1) { animation-delay: 100ms; }
.main--page-content > div:nth-child(2) { animation-delay: 200ms; }
.main--page-content > div:nth-child(3) { animation-delay: 300ms; }
.main--page-content > div:nth-child(4) { animation-delay: 400ms; }
.main--page-content > div:nth-child(5) { animation-delay: 500ms; }
.main--page-content > div:nth-child(6) { animation-delay: 600ms; }
.main--page-content > div:nth-child(7) { animation-delay: 700ms; }
.main--page-content > div:nth-child(8) { animation-delay: 800ms; }

.msb-slider h1,
h1.wp-block-heading {
    font-size: 50px;
    font-weight: 600;
    color: #000005;
    margin-top: 80px;
    margin-bottom: 40px;
}

.msb-slider h2,
h2.wp-block-heading {
    font-size: 42px;
    font-weight: 200;
    color: #000005;
    margin-top: 80px;
    margin-bottom: 40px;
}

.msb-slider h3,
h3.wp-block-heading {
    font-size: 26px;
    font-weight: 300;
    color: #000005;
    margin-top: 20px;
    margin-bottom: 20px;
}

.msb-slider h3 {
    margin-top: 40px;
}

.wp-block-latest-posts__post-title,
h4 {
    font-size: 22px;
    font-weight: 300;
    color: #000005;
    margin-top: 20px;
    margin-bottom: 10px;
}

a.wp-block-latest-posts__post-title {
    transition: all 250ms linear;
    text-decoration: none;
}

a.wp-block-latest-posts__post-title:hover {
    color: #13A3DD;
}

.msb-slider h2,
.msb-slider h3,
.msb-slider p {
    width: calc(100% - 60px);
    max-width: calc(1400px - 60px);
    justify-self: center;
    padding-left: 30px;
    padding-right: 30px;
}

.msb-slider h1:has(+ h3),
.msb-slider h2:has(+ h3),
.msb-slider h3:has(+ p) {
    margin-bottom: 10px !important;
}

.msb-slider h1 + .msb-slider h3,
.msb-slider h2 + .msb-slider h3,
.msb-slider h3 + .msb-slider p,
h1 + h3,
h2 + h3 {
    margin-top: 0px !important;
}

.wp-block-heading a {
    color: #000005;
    text-decoration: none;
    transition: all 250ms linear;
}

h1.hot,
h2.hot,
h3.hot,
h4.hot,
h5.hot,
h6.hot {
  background: linear-gradient(to top right, #0074B8, #E81144);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

h1.no-space,
h2.no-space,
h3.no-space,
h4.no-space,
h5.no-space,
h6.no-space {
    margin-top: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

h3.no-space,
h4.no-space,
h5.no-space,
h6.no-space {
    margin-bottom: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 110%;
}

h1:has(+ h3),
h2:has(+ h3) {
    margin-bottom: 20px !important;
}

.wp-block-heading a:hover {
    color: #13A3DD;
}

.wp-block-cover__inner-container {
    opacity: unset !important;
    transform: unset !important;
    animation: unset !important;
}

.wp-block-cover__inner-container .wp-block-heading {
    color: #FFFFFF;
}

.wp-block-image img {
    border-radius: 12px;
}

.wp-block-image a img,
.wp-block-latest-posts__featured-image a img {
    transition: all 250ms linear;
}

.wp-block-image a img[src$=".jpg"],
.wp-block-image a img[src$=".jpeg"],
.wp-block-image a img[src$=".png"],
.wp-block-latest-posts__featured-image a img[src$=".jpg"],
.wp-block-latest-posts__featured-image a img[src$=".jpeg"],
.wp-block-latest-posts__featured-image a img[src$=".png"] {
    width: 500px;
    filter: brightness(1);
}

.wp-block-image a:hover img[src$=".jpg"],
.wp-block-image a:hover img[src$=".jpeg"],
.wp-block-image a:hover img[src$=".png"],
.wp-block-latest-posts__featured-image a:hover img[src$=".jpg"],
.wp-block-latest-posts__featured-image a:hover img[src$=".jpeg"],
.wp-block-latest-posts__featured-image a:hover img[src$=".png"] {
  filter: brightness(1.3);
}

.wp-block-image a img[src$=".svg"] {
  filter: invert(0) sepia(0) saturate(1) hue-rotate(0deg) brightness(1) contrast(1);
}

.wp-block-image a:hover img[src$=".svg"] {
  filter: invert(0.57) sepia(0.7) saturate(20.54) hue-rotate(163deg) brightness(0.94) contrast(0.97);
}

.wp-block-image.shadow img {
    box-shadow: 0px 10px 40px #E4EDF8;
}

.wp-block-latest-posts.is-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.wp-block-latest-posts li {
    width: 100% !important;
    display: flex;
    flex-direction: column;
}

.wp-block-latest-posts__featured-image {
    order: -2;
}

.wp-block-latest-posts__featured-image img {
    border-radius: 12px;
    clip-path: border-box;
    order: -2;
}

.wp-block-latest-posts__post-date {
    position: relative;
    top: 10px;
    order: -1;
    color: #333E48;
}

.wp-block-group.full .wp-block-group__inner-container {
    width: 100%;
    max-width: calc(1400px - 60px);
    justify-self: center;
}

.post--item {
    position: relative;
    top: 60px;
    z-index: 0;
}

.post--item-image {
    position: relative;
    width: 100%;
    max-height: 600px;
    aspect-ratio: 213 / 100;
}

.post--item-image-background {
    position: relative;
    background-size: cover;
    z-index: 0;
    width: 100%;
    max-height: 600px;
    aspect-ratio: 213 / 100;
    justify-self: center;
    filter: brightness(0.5);
}

.post--item-image-background::after {
    content: '';
    background-color: rgba(19,30,41,0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.post--item-header {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    justify-self: center;
    width: calc(100% - 60px);
    max-width: calc(1100px - 60px);
    padding-left: 30px;
    padding-right: 30px;
}

h1.post--item-title {
    font-family: 'Geist', serif;
    font-size: 50px;
    display: flex;
    font-weight: 200;
    color: #FFFFFF;
    margin: 0px;
}

.post--item-excerpt {
    font-family: 'Geist', serif;
    font-size: 18px;
    display: flex;
    font-weight: 200;
    max-width: 80%;
    color: #E4EDF8;
    opacity: 0.8;
}

.post--item-cats {
    display: flex;
    gap: 10px;
}

.post--item-cats a {
    font-family: 'Geist', serif;
    font-size: 14px;
    display: flex;
    color: #00B7A3;
    transition: all 250ms linear;
    text-decoration: none;
}

.post--item-cats a:hover {
    color: #00D1C0;
}

.post--item-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.post--item-author img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    clip-path: border-box;
}

.post--item-author-byline {
    font-family: 'Geist', serif;
    font-size: 14px;
    font-weight: 200;
    color: #E4EDF8;
    opacity: 0.8;
}

.post--item-content {
    width: calc(100% - 60px);
    max-width: calc(1100px - 60px);
    padding-left: 30px;
    padding-right: 30px;
    justify-self: center;
    margin-top: 60px;
    margin-bottom: 100px;
}

.post--item-content h2 {
    font-size: 30px;
    font-weight: 200;
    color: #000005;
    margin-top: 40px;
    margin-bottom: 0px;
}

.post--item-content h3 {
    font-size: 22px;
    font-weight: 200;
    margin-top: 20px;
    margin-bottom: 0px;
    color: #008576;
}

.post--item-content ul,
.post--item-content ol {
    padding-left: 30px;
}

.post--item-content p + ul,
.post--item-content p + ol {
  margin-top: -15px;
}

.post--item-content p,
.post--item-content li  {
    font-family: 'Geist', serif;
    font-size: 18px;
    color: #000005;
    font-weight: 300;
    line-height: 180%;
}

.post--item-content li {
    line-height: 160%;
}

blockquote.wp-block-quote {
    font-family: 'Geist', serif;
    font-style: italic;
    border-left: solid 4px #00B7A3;
    border-right: solid 4px #00B7A3;
    margin: 0px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #E4EDF8;
}

hr.wp-block-separator {
    width: 100%;
    border: 0px !important;
    border-top: solid 1px rgba(175,181,191,0.4) !important;
    margin-top: 60px;
    margin-bottom: 60px;
}

#main.posts {
    position: relative;
    top: 60px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    padding-bottom: 160px;
    background-color: #FFFFFF;
}

.news--item {
    display: grid;
    grid-template-columns: 40fr 60fr;
    gap: 40px;
    max-width: calc(1400px - 60px);
    padding-left: 30px;
    padding-right: 30px;
    align-self: center;
}

.news--item .news--item-image {
}

.news--item .news--item-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 250ms linear;
    aspect-ratio: 520 / 280;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    clip-path: border-box;
    filter: brightness(1.0);
}

.news--item .news--item-image img:hover {
    filter: brightness(1.3);
}

.news--item .news--item-details {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    padding-right: 120px;
}

a.news--item-title {
    font-family: 'Geist', serif;
    font-size: 26px;
    font-weight: 500;
    text-decoration: none;
    color: #000005;
    transition: all 250ms linear;
}

a.news--item-title:hover {
    color: #13A3DD;
}

.news--item-excerpt {
    font-family: 'Geist', serif;
    font-size: 16px;
    color: #232E38;
}

.news--item-date {
    font-family: 'Geist', serif;
    font-size: 12px;
    color: #232E38;
    padding-bottom: 8px;
}

.news--item-cats a {
    font-family: 'Geist', serif;
    font-size: 12px;
    text-decoration: none;
    color: #008576;
    transition: all 250ms linear;
}

.news--item-cats a:hover {
    color: #13A3DD;
}

@media (min-width: 900px) {

    #main.posts > .news--item:nth-of-type(1) {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: unset;
        padding-bottom: 40px;
    }

    #main.posts > .news--item:nth-of-type(1) .news--item-image {
        position: relative;
        z-index: 0;
    }

    #main.posts > .news--item:nth-of-type(1) .news--item-image img {
        width: 100%;
        height: auto;
        border-radius: unset;
        transition: all 250ms linear;
        aspect-ratio: 634 / 200;
        object-fit: cover;
        object-position: top center;
        overflow: hidden;
        clip-path: border-box;
        filter: brightness(0.5);
    }

    #main.posts > .news--item:nth-of-type(1) .news--item-image img:hover {
        filter: brightness(1.0);
    }

    #main.posts > .news--item:nth-of-type(1) .news--item-image::after {
        content: '';
        background-color: rgba(19,30,41,0.7);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 1;
        pointer-events: none;
    }

    #main.posts > .news--item:nth-of-type(1) .news--item-details {
        position: absolute;
        left: 50%;
        top: 50%;
        width: calc(100% - 60px);
        max-width: calc(1200px - 60px);
        padding-left: 30px;
        padding-right: 30px;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        z-index: 2;
        pointer-events: none;
    }

    #main.posts > .news--item:nth-of-type(1) a.news--item-title {
        width: calc(100% - 60px);
        font-family: 'Geist', serif;
        font-size: 36px;
        font-weight: 500;
        text-decoration: none;
        color: #FFFFFF;
        transition: all 250ms linear;
        text-align: center;
        align-self: center;
        letter-spacing: -0.03em;
        line-height: 100%;
    }

    #main.posts > .news--item:nth-of-type(1) .news--item-excerpt {
        max-width: 800px;
        font-family: 'Geist', serif;
        font-size: 16px;
        color: #FFFFFF;
        text-align: center;
        align-self: center;
    }

    #main.posts > .news--item:nth-of-type(1) .news--item-date {
        font-family: 'Geist', serif;
        font-size: 12px;
        color: #FFFFFF;
        padding-bottom: 8px;
        text-align: center;
    }

    #main.posts > .news--item:nth-of-type(1) .news--item-cats,
    #main.posts > .news--item:nth-of-type(1) .news--item-cats a {
        display: none;
    }
}

@media (min-width: 1200px) {
    
    #main.posts > .news--item:nth-of-type(1) a.news--item-title {
        font-size: 60px;
    }

}

.post--item-related {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    width: calc(100% - 60px);
    max-width: calc(1400px - 60px);
    border-top: solid 1px #E4EDF8;
    margin-left: 30px;
    margin-right: 30px;
    padding-top: 40px;
    padding-bottom: 140px;
    justify-self: center;
}

.post--item-related-item {
    width: 100%;
}

.post--item-related-item a {
    text-decoration: none;
}

.post--item-related-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    aspect-ratio: 16 / 8;
    clip-path: border-box;
    overflow: hidden;
    filter: brightness(1.0);
    transition: all 250ms linear;
}

.post--item-related-item a:hover img {
    filter: brightness(1.3);
}

.post--item-related-item-title {
    display: inline-flex;
    font-family: 'Geist', serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #000005;
    transition: all 250ms linear;
    padding-top: 20px;
}

.post--item-related-item a:hover .post--item-related-item-title {
    color: #13A3DD;
}

.post--item-related-item-excerpt {
    width: 100%;
    font-family: 'Geist', serif;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    color: #232E38;
}

.navigation.pagination {
    display: flex;
    font-family: 'Geist', serif;
    font-size: 12px;
    font-weight: 600;
    color: #232E38;
    width: calc(100% - 60px);
    max-width: calc(1400px - 60px);
    padding-left: 30px;
    padding-right: 30px;
    align-self: center;
}

.navigation .screen-reader-text {
    display: none;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.nav-links span,
.nav-links a {
    display: flex;
    width: 34px;
    height: 34px;
    text-decoration: none;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}

.nav-links span {
    color: #FFFFFF;
    background-color: #0074B8;
    pointer-events: none;
}

.nav-links a {
    color: #0074B8;
    background-color: #F1FAFE;
    transition: all 250ms linear;
}

.nav-links a:hover {
    background-color: #E4EDF8;
}

.nav-links a.prev,
.nav-links a.next {
    position: relative;
    font-size: 0px;
}

.nav-links a.prev::before {
    content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.5303 17.4697C15.8232 17.7626 15.8232 18.2373 15.5303 18.5302C15.2374 18.8231 14.7626 18.8231 14.4697 18.5302L8.46972 12.5302C8.17683 12.2373 8.17683 11.7626 8.46972 11.4697L14.4697 5.46967C14.7626 5.17678 15.2374 5.17678 15.5303 5.46967C15.8232 5.76256 15.8232 6.23732 15.5303 6.53022L10.0605 11.9999L15.5303 17.4697Z" fill="%230074B8"/></svg>');
    position: relative;
    left: -1px;
}

.nav-links a.next::before {
    content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.46973 6.53033C8.17684 6.23744 8.17684 5.76268 8.46973 5.46978C8.76263 5.17689 9.23739 5.17689 9.53028 5.46978L15.5303 11.4698C15.8232 11.7627 15.8232 12.2374 15.5303 12.5303L9.53028 18.5303C9.23738 18.8232 8.76262 18.8232 8.46973 18.5303C8.17684 18.2374 8.17684 17.7627 8.46973 17.4698L13.9395 12.0001L8.46973 6.53033Z" fill="%230074B8"/></svg>');
    position: relative;
    left: 1px;
}

.sgcc-main-wrapper {
    background-color: rgba(241,250,254,0.8) !important;
    backdrop-filter: brightness(5) blur(40px) !important;
    box-shadow: 0 10px 20px 0px rgba(0,0,0,0.1) !important;
}

.sgcc-main-wrapper .sgcc-container {
    padding: 20px 20px 20px 60px !important;
}

.sgcc-main-wrapper .sgcc-container .cookie-icon {
    top: 30px !important;
}

@media (max-width: 1040px) {

    h1.post--item-title {
        font-size: 36px;
    }

}

@media (max-width: 900px) {

    .wp-block-latest-posts.is-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header--navigation {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        gap: 10px;
        width: calc(100% - 40px);
        max-width: unset;
        padding-left: 20px;
        padding-right: 20px;
    }

    .header--navigation-menu {
        display: flex;
        color: #232E38;
        align-items: center;
        cursor: pointer;
        transition: all 250ms linear;
    }

    .header--navigation-menu:hover {
        color: #13A3DD;
    }

    .header--navigation-menu svg {
        position: relative;
        left: -3px;
    }

    .header--navigation-items {
        display: none;
    }

    .header--navigation-buttons a:last-child {
        display: none;
    }

    .header--navigation-buttons a {
        min-width: 0px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header--navigation-menu-mobile {
        position: fixed;
        inset: 0;
        z-index: 1000001;
        background: #FFFFFF;
        display: none;
        overflow-y: auto;
        transform: translateX(-100vw);
    }

    @keyframes menuSlideIn {
        0%   { transform: translateX(-100vw); }
        100% { transform: translateX(0px); }
    }

    .header--navigation-menu-mobile.is-open {
        display: block;
        animation: menuSlideIn 400ms cubic-bezier(0, 1.01, 1, 1) forwards;
    }

    body.menu-mobile-open {
        overflow: hidden;
    }

    .header--navigation-menu-mobile-inner {
        min-height: 100vh;
        padding: 16px 20px 32px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .header--navigation-menu-mobile-header {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .header--navigation-menu-mobile-close {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: #232E38;
        align-self: center;
        transition: all 250ms linear;
    }

    .header--navigation-menu-mobile-close:hover {
        color: #13A3DD;
    }

    .header--navigation-menu-mobile-level1 {
        margin-bottom: 24px;
    }

    .header--navigation-menu-mobile-level1-item {
        display: block;
        font-family: 'Geist', serif;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 5px;
        text-decoration: none;
        color: #000005;
        opacity: 0.0;
        animation: subNavItemEnterAnimation 250ms cubic-bezier(0, 1.01, 1, 1) forwards;
        transition: all 250ms linear;
    }

    .header--navigation-menu-mobile-level1-item:hover {
        color: #13A3DD;
    }

    .header--navigation-menu-mobile-level1-heading {
        display: flex;
        position: relative;
        margin-top: 0px;
        margin-bottom: 20px;
        padding: 0px;
        font-family: 'Geist', serif;
        font-size: 14px;
        font-weight: 300;
        background: linear-gradient(45deg, #0074B8 0%, #E81144 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        opacity: 0.0;
        animation: aviro360FlowAnimation 1500ms ease-in-out infinite, subNavItemEnterAnimation 250ms cubic-bezier(0, 1.01, 1, 1) forwards;
    }

    .header--navigation-menu-mobile-level2 {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .header--navigation-menu-mobile-level2-item {
        display: block;
        font-family: 'Geist', serif;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 8px;
        text-decoration: none;
        color: #000005;
        opacity: 0.0;
        animation: subNavItemEnterAnimation 250ms cubic-bezier(0, 1.01, 1, 1) forwards;
        transition: all 250ms linear;
    }

    .header--navigation-menu-mobile-level2-item:hover {
        color: #13A3DD;
    }

    .footer--inner {
        gap: 10px;
        width: calc(100% - 40px);
        max-width: unset;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer--site-map {
        display: none;
    }

    .footer--legal {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .post--item-related {
        display: flex;
        flex-direction: column;
    }

    .post--item-image {
        max-height: unset;
    }

    .post--item-image-background {
        filter: unset;
    }

    .post--item-image-background::after {
        display: none;
    }

    .post--item-header {
        position: relative;
        max-width: calc(1400px - 60px);
        padding-top: 40px;
    }

    h1.post--item-title {
        font-weight: 400;
        color: #000005;
    }

    .post--item-excerpt {
        color: #232E38;
    }

    .post--item-author-byline {
        color: #232E38;
    }

    .news--item {
        display: flex;
        flex-direction: column;
    }

    .news--item .news--item-details {
        padding-right: 0px;
    }

    .mobile-left figure,
    .mobile-right figure {
        float: unset !important;
        margin: 0px !important;
    }

    .mobile-left {
        text-align: left !important;
        justify-self: start !important;
        align-self: start !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .mobile-right {
        text-align: right !important;
        justify-self: end !important;
        align-self: end !important;
        justify-content: flex-end !important;
        align-items: flex-end !important;
    }

}

/* NUCLEAR OPTION ON INPUTS */
@media screen {

    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    input[type="search"],
    input[type="number"],
    input[type="date"],
    input[type="time"],
    input[type="datetime-local"],
    input[type="month"],
    input[type="week"],
    input:not([type]),
    select,
    textarea {
        font-family: 'Geist', serif !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        color: #000005 !important;
        border: 1px solid #AFB5BF !important;
        box-shadow: 5px 5px 20px #E4EDF8 !important;
        border-radius: 10px !important;
        outline: none !important;
        height: 54px !important;
        padding: 0 16px !important;
        background: white !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        transition: all 250ms linear;
    }

    select {
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.4697 8.46973C17.7626 8.17684 18.2373 8.17684 18.5302 8.46973C18.8231 8.76262 18.8231 9.23738 18.5302 9.53028L12.5302 15.5303C12.2373 15.8232 11.7626 15.8232 11.4697 15.5303L5.46967 9.53028C5.17678 9.23738 5.17678 8.76262 5.46967 8.46973C5.76256 8.17684 6.23732 8.17684 6.53022 8.46973L11.9999 13.9395L17.4697 8.46973Z' fill='%23232E38'/%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 16px center !important;
        background-size: 20px auto !important;
        padding-top: 8px !important;
        padding-right: 44px !important;
    }

    textarea {
        height: auto !important;
        min-height: 54px !important;
        padding: 16px !important;
        line-height: 1.45 !important;
        resize: vertical !important;
    }

    input::placeholder,
    textarea::placeholder,
    select::placeholder {
        color: #AFB5BF !important;
        opacity: 1 !important;
    }

    legend,
    legend *,
    label,
    label * {
        font-family: 'Geist', serif !important;
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    legend,
    legend * {
        color: #000005 !important;
    }

    label,
    label * {
        color: #232E38 !important;
    }

    [class*="required_text"],
    [class*="required_text"] span {
        color: #E81144 !important;
    }

    input[type="text"]:hover,
    input[type="password"]:hover,
    input[type="email"]:hover,
    input[type="tel"]:hover,
    input[type="url"]:hover,
    input[type="search"]:hover,
    input[type="number"]:hover,
    input[type="date"]:hover,
    input[type="time"]:hover,
    input[type="datetime-local"]:hover,
    input[type="month"]:hover,
    input[type="week"]:hover,
    select:hover,
    textarea:hover,
    input:focus,
    select:focus,
    textarea:focus,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
        border-color: #0074B8 !important;
        box-shadow: 5px 5px 20px #BAD8EC !important;
        outline: none !important;
    }

    input[type="submit"] {
        color: #FFFFFF !important;
        border-radius: 6px !important;
        border: 1px solid transparent !important;
        background:
            linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 0%, rgba(0, 0, 0, 0.07) 93%, rgba(255, 255, 255, 0.07) 100%) padding-box,
            linear-gradient(#0074B8, #0074B8) padding-box,
            linear-gradient(to bottom, rgba(36, 206, 255, 0.25) 0%, rgba(0, 116, 184, 0.25) 100%) border-box !important;
        background-clip: padding-box, padding-box, border-box !important;
        filter: brightness(1) !important;
        transition: all 250ms linear !important;
    }

    input[type="submit"]:hover {
        color: #FFFFFF !important;
        filter: brightness(1.3) !important;
    }

}