/**
 * Base
 */
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
    --animate-duration:1s;
    --animate-delay:1s;
    --animate-repeat:1;
}

.animate__animated {
    animation-duration: 1s;
    animation-duration: var(--animate-duration);
    animation-fill-mode: both;
}

.animate__animated.animate__infinite {
    animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
    animation-iteration-count: 1;
    animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
    animation-iteration-count: 2;
    animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
    animation-iteration-count: 3;
    animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
    animation-delay: 1s;
    animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
    animation-delay: 2s;
    animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
    animation-delay: 3s;
    animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
    animation-delay: 4s;
    animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
    animation-delay: 5s;
    animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
    animation-duration: 0.5s;
    animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
    animation-duration: 0.8s;
    animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
    animation-duration: 3s;
    animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
    .animate__animated {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        animation-iteration-count: 1 !important;
    }
    .animate__animated[class*=Out] {
        opacity: 0;
    }
}
@keyframes bounce {
    0%, 20%, 53%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}
.animate__bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}
@keyframes flash {
    0%, 50%, to {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
.animate__flash {
    animation-name: flash;
}
@keyframes pulse {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        transform: scaleX(1);
    }
}
.animate__pulse {
    animation-name: pulse;
    animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
    0% {
        transform: scaleX(1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        transform: scaleX(1);
    }
}
.animate__rubberBand {
    animation-name: rubberBand;
}
@keyframes shakeX {
    0%, to {
        transform: translateZ(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translate3d(-10px, 0, 0);
    }
    20%, 40%, 60%, 80% {
        transform: translate3d(10px, 0, 0);
    }
}
.animate__shakeX {
    animation-name: shakeX;
}
@keyframes shakeY {
    0%, to {
        transform: translateZ(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translate3d(0, -10px, 0);
    }
    20%, 40%, 60%, 80% {
        transform: translate3d(0, 10px, 0);
    }
}
.animate__shakeY {
    animation-name: shakeY;
}
@keyframes headShake {
    0% {
        transform: translateX(0);
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        transform: translateX(0);
    }
}
.animate__headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake;
}
@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    to {
        transform: rotate(0deg);
    }
}
.animate__swing {
    transform-origin: top center;
    animation-name: swing;
}
@keyframes tada {
    0% {
        transform: scaleX(1);
    }
    10%, 20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }
    to {
        transform: scaleX(1);
    }
}
.animate__tada {
    animation-name: tada;
}
@keyframes wobble {
    0% {
        transform: translateZ(0);
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg);
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg);
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__wobble {
    animation-name: wobble;
}
@keyframes jello {
    0%, 11.1%, to {
        transform: translateZ(0);
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
.animate__jello {
    animation-name: jello;
    transform-origin: center;
}
@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}
.animate__heartBeat {
    animation-name: heartBeat;
    animation-duration: 1.3s;
    animation-duration: calc(var(--animate-duration) * 1.3);
    animation-timing-function: ease-in-out;
}
@keyframes backInDown {
    0% {
        transform: translateY(-1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInDown {
    animation-name: backInDown;
}
@keyframes backInLeft {
    0% {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInLeft {
    animation-name: backInLeft;
}
@keyframes backInRight {
    0% {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInRight {
    animation-name: backInRight;
}
@keyframes backInUp {
    0% {
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInUp {
    animation-name: backInUp;
}
@keyframes backOutDown {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateY(700px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutDown {
    animation-name: backOutDown;
}
@keyframes backOutLeft {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutLeft {
    animation-name: backOutLeft;
}
@keyframes backOutRight {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutRight {
    animation-name: backOutRight;
}
@keyframes backOutUp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateY(-700px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutUp {
    animation-name: backOutUp;
}
@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
.animate__bounceIn {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: bounceIn;
}
@keyframes bounceInDown {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0) scaleY(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0) scaleY(0.9);
    }
    75% {
        transform: translate3d(0, -10px, 0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, 5px, 0) scaleY(0.985);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInDown {
    animation-name: bounceInDown;
}
@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0) scaleX(1);
    }
    75% {
        transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }
    90% {
        transform: translate3d(5px, 0, 0) scaleX(0.995);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInLeft {
    animation-name: bounceInLeft;
}
@keyframes bounceInRight {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0) scaleX(1);
    }
    75% {
        transform: translate3d(10px, 0, 0) scaleX(0.98);
    }
    90% {
        transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInRight {
    animation-name: bounceInRight;
}
@keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0) scaleY(5);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    75% {
        transform: translate3d(0, 10px, 0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, -5px, 0) scaleY(0.985);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInUp {
    animation-name: bounceInUp;
}
@keyframes bounceOut {
    20% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%, 55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
.animate__bounceOut {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: bounceOut;
}
@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0) scaleY(0.985);
    }
    40%, 45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0) scaleY(3);
    }
}
.animate__bounceOutDown {
    animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0) scaleX(2);
    }
}
.animate__bounceOutLeft {
    animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0) scaleX(2);
    }
}
.animate__bounceOutRight {
    animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0) scaleY(0.985);
    }
    40%, 45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0) scaleY(3);
    }
}
.animate__bounceOutUp {
    animation-name: bounceOutUp;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.animate__fadeIn {
    animation-name: fadeIn;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInDown {
    animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInDownBig {
    animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInLeft {
    animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInLeftBig {
    animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInRight {
    animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInRightBig {
    animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInUp {
    animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInUpBig {
    animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInTopLeft {
    animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInTopRight {
    animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInBottomLeft {
    animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInBottomRight {
    animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.animate__fadeOut {
    animation-name: fadeOut;
}
@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}
.animate__fadeOutDown {
    animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}
.animate__fadeOutDownBig {
    animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}
.animate__fadeOutLeft {
    animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}
.animate__fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}
.animate__fadeOutRight {
    animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}
.animate__fadeOutRightBig {
    animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}
.animate__fadeOutUp {
    animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}
.animate__fadeOutUpBig {
    animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0);
    }
}
.animate__fadeOutTopLeft {
    animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
    }
}
.animate__fadeOutTopRight {
    animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 100%, 0);
    }
}
.animate__fadeOutBottomRight {
    animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0);
    }
}
.animate__fadeOutBottomLeft {
    animation-name: fadeOutBottomLeft;
}
@keyframes flip {
    0% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        animation-timing-function: ease-out;
    }
    40% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out;
    }
    50% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in;
    }
    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in;
    }
    to {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in;
    }
}
.animate__animated.animate__flip {
    backface-visibility: visible;
    animation-name: flip;
}
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}
.animate__flipInX {
    backface-visibility: visible !important;
    animation-name: flipInX;
}
@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateY(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}
.animate__flipInY {
    backface-visibility: visible !important;
    animation-name: flipInY;
}
@keyframes flipOutX {
    0% {
        transform: perspective(400px);
    }
    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}
.animate__flipOutX {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: flipOutX;
    backface-visibility: visible !important;
}
@keyframes flipOutY {
    0% {
        transform: perspective(400px);
    }
    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
.animate__flipOutY {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    backface-visibility: visible !important;
    animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
    0% {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        transform: skewX(-5deg);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__lightSpeedInRight {
    animation-name: lightSpeedInRight;
    animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
    0% {
        transform: translate3d(-100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
    60% {
        transform: skewX(-20deg);
        opacity: 1;
    }
    80% {
        transform: skewX(5deg);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__lightSpeedInLeft {
    animation-name: lightSpeedInLeft;
    animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
    0% {
        opacity: 1;
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
.animate__lightSpeedOutRight {
    animation-name: lightSpeedOutRight;
    animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: translate3d(-100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
}
.animate__lightSpeedOutLeft {
    animation-name: lightSpeedOutLeft;
    animation-timing-function: ease-in;
}
@keyframes rotateIn {
    0% {
        transform: rotate(-200deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateIn {
    animation-name: rotateIn;
    transform-origin: center;
}
@keyframes rotateInDownLeft {
    0% {
        transform: rotate(-45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInDownLeft {
    animation-name: rotateInDownLeft;
    transform-origin: left bottom;
}
@keyframes rotateInDownRight {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInDownRight {
    animation-name: rotateInDownRight;
    transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInUpLeft {
    animation-name: rotateInUpLeft;
    transform-origin: left bottom;
}
@keyframes rotateInUpRight {
    0% {
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInUpRight {
    animation-name: rotateInUpRight;
    transform-origin: right bottom;
}
@keyframes rotateOut {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(200deg);
        opacity: 0;
    }
}
.animate__rotateOut {
    animation-name: rotateOut;
    transform-origin: center;
}
@keyframes rotateOutDownLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(45deg);
        opacity: 0;
    }
}
.animate__rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
    transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(-45deg);
        opacity: 0;
    }
}
.animate__rotateOutDownRight {
    animation-name: rotateOutDownRight;
    transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(-45deg);
        opacity: 0;
    }
}
.animate__rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
    transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(90deg);
        opacity: 0;
    }
}
.animate__rotateOutUpRight {
    animation-name: rotateOutUpRight;
    transform-origin: right bottom;
}
@keyframes hinge {
    0% {
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        transform: rotate(80deg);
        animation-timing-function: ease-in-out;
    }
    40%, 80% {
        transform: rotate(60deg);
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
.animate__hinge {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2);
    animation-name: hinge;
    transform-origin: top left;
}
@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }
    50% {
        transform: rotate(-10deg);
    }
    70% {
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.animate__jackInTheBox {
    animation-name: jackInTheBox;
}
@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__rollIn {
    animation-name: rollIn;
}
@keyframes rollOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg);
    }
}
.animate__rollOut {
    animation-name: rollOut;
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.animate__zoomIn {
    animation-name: zoomIn;
}
@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInDown {
    animation-name: zoomInDown;
}
@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInLeft {
    animation-name: zoomInLeft;
}
@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInRight {
    animation-name: zoomInRight;
}
@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInUp {
    animation-name: zoomInUp;
}
@keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
.animate__zoomOut {
    animation-name: zoomOut;
}
@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomOutDown {
    animation-name: zoomOutDown;
    transform-origin: center bottom;
}
@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(-2000px, 0, 0);
    }
}
.animate__zoomOutLeft {
    animation-name: zoomOutLeft;
    transform-origin: left center;
}
@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(2000px, 0, 0);
    }
}
.animate__zoomOutRight {
    animation-name: zoomOutRight;
    transform-origin: right center;
}
@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomOutUp {
    animation-name: zoomOutUp;
    transform-origin: center bottom;
}
@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInDown {
    animation-name: slideInDown;
}
@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInLeft {
    animation-name: slideInLeft;
}
@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInRight {
    animation-name: slideInRight;
}
@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInUp {
    animation-name: slideInUp;
}
@keyframes slideOutDown {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}
.animate__slideOutDown {
    animation-name: slideOutDown;
}
@keyframes slideOutLeft {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
    }
}
.animate__slideOutLeft {
    animation-name: slideOutLeft;
}
@keyframes slideOutRight {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0);
    }
}
.animate__slideOutRight {
    animation-name: slideOutRight;
}
@keyframes slideOutUp {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0);
    }
}
.animate__slideOutUp {
    animation-name: slideOutUp;
}

.bg-primary {
    background-color: #012A38 !important;
}

.bg-white {
    background-color: white;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 12px;
    font-family: "Sora", sans-serif;
    line-height: 1.3;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    margin: 0;
    padding: 0;
}

ol {
    margin: 0;
    padding: 0;
}

p {
    padding: 0;
    margin: 0px 0px 5px 0px;
    margin: 0rem 0rem 0.3125rem 0rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0px 0px 10px 0px;
    margin: 0rem 0rem 0.625rem 0rem;
    font-weight: normal;
}

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

.wp-block-image.size-full img {
    width: 100% !important;
}

iframe {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora";
    font-style: normal;
    color: #012A38;
    font-weight: 600;
    letter-spacing: -0.25px;
}

h1 {
    font-size: 48px;
    line-height: 56px;
}

h2 {
    font-size: 32px;
    line-height: 42px;
}

p {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #4F6169;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 76px;
    padding-left: 76px;
    max-width: 1440px;
    box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
    .container {
        padding-right: 16px;
        padding-left: 16px;
    }
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-xl-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-xl-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xl-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-xl-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-xl-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-lg-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-lg-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-md-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-sm-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-sm-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-sm-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-sm-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-n1 {
    margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
    margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
    margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
    margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
    margin-left: -0.25rem !important;
}

.m-n2 {
    margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
    margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
    margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
    margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
    margin-left: -0.5rem !important;
}

.m-n3 {
    margin: -1rem !important;
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important;
}

.m-n4 {
    margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important;
}

.m-n5 {
    margin: -3rem !important;
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

/**
 * Header
 */
#masthead .primary-menu-row,
#secondary:not(.widget-area) {
    height: 64px;
}

#masthead {
    top: -64px;
    font-family: "Sora", sans-serif;
    font-style: normal;
    z-index: 11;
}
#masthead #secondary * {
    transition: all 0.3s;
}
#masthead.hide-menu {
    top: 0;
}
#masthead.hide-menu .primary-menu-row {
    height: 0;
    overflow: hidden;
}
#masthead.hide-menu .taxonomy-menu-row .d-flex.h-100.justify-between {
    position: relative;
}
#masthead.hide-menu .taxonomy-menu-row .d-flex.h-100.justify-between .tax-menu-content.show .menu-content {
    right: 0;
}
#masthead .site-branding {
    margin-right: 50px;
}
@media screen and (max-width: 1170px) {
    #masthead .primary-menu-row {
        display: none;
    }
}
#masthead #primary-menu > li > a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    letter-spacing: -0.25px;
    color: #EFEFEF;
    text-decoration: none;
    padding: 10px 20px;
}
#masthead #secondary {
    background-color: #EFEFEF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}
#masthead #secondary .search-form-modal .site-description,
#masthead #secondary .site-title {
    font-family: "Montserrat Alternates", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 25px;
    color: #FF523B;
    text-decoration: none;
}
#masthead #secondary .compact-title {
    display: flex;
}
@media screen and (max-width: 1170px) {
    #masthead #secondary .search-form-modal .site-description,
    #masthead #secondary .compact-description {
        font-weight: 600;
        font-size: 14px;
        line-height: 17px;
        letter-spacing: -0.02em;
        text-transform: lowercase;
        display: block !important;
    }
    #masthead #secondary .search-form-modal .site-description {
        top: 35px;
    }
}
#masthead #secondary:not(.search-open) .compact-description {
    display: none;
    color: #FF3300;
}
#masthead #secondary.search-open .tax-menu-content,
#masthead #secondary.search-open .search-button-wrap {
    display: none;
}
@media screen and (max-width: 1170px) {
    #masthead #secondary.search-open .search-form-modal.focus .search-wrap {
        z-index: 10;
    }
    #masthead #secondary.search-open .search-form-modal.focus .search-description,
    #masthead #secondary.search-open .search-form-modal.focus .search-wrap {
        transform: translateY(-20vh);
    }
    #masthead #secondary.search-open .search-form-modal.focus .inner-search-content {
        max-height: 55vh !important;
    }
}
#masthead #secondary:not(.search-open) .mobile-menu,
#masthead #secondary .close-mobile-btn {
    display: none;
}
#masthead #secondary .mobile-menu {
    padding: 0;
    border: 0;
    background: unset;
}
#masthead #secondary .mobile-menu label {
    margin-right: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #012A38;
}
@media screen and (max-width: 1170px) {
    #masthead #secondary .mobile-menu {
        display: block !important;
    }
    #masthead #secondary .mobile-menu label {
        display: none;
    }
}
@media screen and (max-width: 1170px) {
    #masthead #secondary .mobile-menu {
        padding: 0 10px;
    }
    #masthead #secondary .tax-menu-content {
        display: none;
    }
    #masthead #secondary .tax-menu-content.show {
        position: fixed;
        top: 0;
        left: 0;
        padding: 0;
        width: 100%;
        background: white;
        max-width: 100%;
        height: 100%;
        overflow: auto;
    }
    #masthead #secondary .tax-menu-content.show .close-mobile-btn {
        display: block;
        margin-left: auto;
        margin-right: 10px;
        margin-top: 10px;
        padding: 0;
        border: 0;
        background: unset;
    }
    #masthead #secondary .tax-menu-content.show .menu-content ul {
        flex-wrap: inherit;
    }
    #masthead #secondary .search-button-wrap {
        margin-left: auto;
    }
}
#masthead #secondary .tax-menu-content .tax-menu-item a {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #012A38;
    text-decoration: none;
}
#masthead #secondary .tax-menu-content .tax-menu-item a:hover {
    color: #FF3300;
}
#masthead #secondary .tax-menu-content .tax-menu-item.active a {
    color: #FF3300;
    font-weight: 700;
}
#masthead #secondary .search-button {
    height: 38px;
    border-radius: 4px;
    border: 0;
    padding: 0 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    display: flex;
    align-items: center;
    letter-spacing: -0.25px;
    color: #012A38;
    background: unset;
}
#masthead #secondary .search-button span {
    display: none;
}
@media screen and (min-width: 1171px) {
    #masthead #secondary .search-button {
        padding: 0 24px;
        width: 191px;
        border: 2px solid #012A38;
    }
    #masthead #secondary .search-button svg {
        margin-right: 10px;
    }
    #masthead #secondary .search-button span {
        display: block;
    }
}
#masthead #secondary .search-form-modal {
    height: calc(100vh - 64px);
    background-color: #012A38;
    animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
#masthead #secondary .search-form-modal .close-modal {
    top: 21px;
    right: 76px;
    background: unset;
    border: 0;
    width: 53px;
    height: 53px;
}
#masthead #secondary .search-form-modal .site-description {
    display: none;
}
#masthead #secondary .search-form-modal .search-content {
    border-bottom: 1px solid white;
}
#masthead #secondary .search-form-modal .search-content button[type=submit] {
    background: unset;
    border: 0;
    margin-bottom: 16px;
    margin-right: 30px;
    width: 41px;
    height: 41px;
}
#masthead #secondary .search-form-modal .search-content .search-field {
    background: unset;
    border: 0;
    outline: 0;
    font-weight: 600;
    font-size: 56px;
    line-height: 58px;
    letter-spacing: -0.25px;
    color: white;
    margin-bottom: 16px;
}
#masthead #secondary .search-form-modal .search-content .search-field::-moz-placeholder {
    opacity: 1;
    color: white;
}
#masthead #secondary .search-form-modal .search-content .search-field::placeholder {
    opacity: 1;
    color: white;
}
#masthead #secondary .search-form-modal .inner-search-content {
    background: white;
    top: calc(100% + 15px);
    max-height: calc(35vh - 75px);
    overflow: auto;
}
#masthead #secondary .search-form-modal .inner-search-content a {
    display: block;
    padding: 15px;
    color: #012A38;
    text-decoration: none;
}
#masthead #secondary .search-form-modal .search-description {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.25px;
    color: #969696;
    margin-top: 16px;
}
#masthead progress {
    width: 100%;
    position: fixed;
    height: 6px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    border: none;
    color: #FF3300;
    top: 63px;
    z-index: -1;
}
#masthead progress::-webkit-progress-bar {
    background-color: transparent;
}
#masthead progress::-webkit-progress-value {
    background-color: #FF3300;
}
#masthead progress::-moz-progress-bar {
    background-color: #FF3300;
}

body.admin-bar #masthead {
    top: -32px;
}
body.admin-bar #masthead.hide-menu {
    top: 32px;
}
body.admin-bar #masthead progress {
    top: 96px;
}

@media screen and (max-width: 1170px) {
    body.admin-bar #masthead {
        z-index: 99999 !important;
    }
    body.admin-bar #masthead .tax-menu-content .close-mobile-btn {
        margin-top: 60px !important;
    }
    #masthead {
        top: 0 !important;
    }
    #masthead #secondary .tax-menu-content .tax-menu-item a {
        font-family: "Sora", sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 23px;
        color: #000000;
    }
    #masthead progress {
        display: none;
    }
    .search-form-modal {
        font-family: "Sora", sans-serif;
        font-style: normal;
    }
    .search-form-modal .search-wrap,
    .search-form-modal .search-description {
        max-width: 95%;
        margin: auto;
    }
    .search-form-modal button[type=submit] {
        margin-bottom: 0 !important;
        margin-right: 10px !important;
        width: 32px !important;
        height: 32px !important;
    }
    .search-form-modal button[type=submit] svg {
        width: 32px;
        height: 32px;
    }
    .search-form-modal .search-field {
        font-size: 32px !important;
        margin-bottom: 0 !important;
    }
    .search-form-modal .close-modal {
        right: 10px !important;
    }
    .search-form-modal .site-description {
        left: 10px;
    }
}
@media screen and (min-width: 1171px) {
    body.desktop .tax-menu-content.show .menu-content {
        animation: fade-in 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
        position: absolute;
        right: 76px;
        top: 100%;
        background: white;
        z-index: 10;
        height: auto;
        max-height: calc(100vh - 64px);
        overflow: auto;
    }
}
body.mobile .tax-menu-content .menu-content > ul,
body.desktop .tax-menu-content.show .menu-content > ul {
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
}
body.mobile .tax-menu-content .menu-content > ul > li,
body.desktop .tax-menu-content.show .menu-content > ul > li {
    padding: 0 55px !important;
    width: 100%;
    box-sizing: border-box;
}
body.mobile .tax-menu-content .menu-content > ul > li > a,
body.desktop .tax-menu-content.show .menu-content > ul > li > a {
    display: block;
    padding: 19px 0;
    border-bottom: 0.75px solid rgba(1, 42, 56, 0.4);
}
body.mobile .tax-menu-content .menu-content > ul > li > a::after,
body.desktop .tax-menu-content.show .menu-content > ul > li > a::after {
    content: "";
    width: 20px;
    height: 10px;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'%3E%3Cpath d='M0.502861 10.4521C0.112339 10.8426 0.112345 11.4758 0.502872 11.8663C0.893399 12.2568 1.52656 12.2568 1.91709 11.8663L0.502861 10.4521ZM11.0013 2.78187C11.3919 2.39135 11.3918 1.75818 11.0013 1.36766C10.6108 0.977138 9.97763 0.977143 9.58711 1.36767L11.0013 2.78187ZM9.82859 11.1594C9.82859 11.7117 10.2763 12.1594 10.8286 12.1594C11.3809 12.1594 11.8286 11.7117 11.8286 11.1594H9.82859ZM10.8286 1.54077H11.8286C11.8286 0.988487 11.3809 0.540771 10.8286 0.540771V1.54077ZM1.20996 0.540771C0.657676 0.540771 0.209961 0.988487 0.209961 1.54077C0.209961 2.09306 0.657676 2.54077 1.20996 2.54077V0.540771ZM1.91709 11.8663L11.0013 2.78187L9.58711 1.36767L0.502861 10.4521L1.91709 11.8663ZM11.8286 11.1594V1.54077H9.82859V11.1594H11.8286ZM10.8286 0.540771H1.20996V2.54077H10.8286V0.540771Z' fill='black'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: 100% 0;
    float: right;
}
body.mobile .tax-menu-content .menu-content > ul > li:last-child,
body.desktop .tax-menu-content.show .menu-content > ul > li:last-child {
    border-bottom: 0;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/**
 * Layout
 */
.btn {
    font-family: "Sora", sans-serif;
    font-style: normal;
    display: table;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn.btn-primary {
    background: #012A38;
    border: 2px solid #012A38;
    color: white;
    transition: all 0.3s;
}
.btn.btn-primary svg path {
    stroke: white;
}
.btn.btn-primary:hover {
    background: transparent;
    border: 2px solid #012A38;
    color: #012A38;
    transition: all 0.3s;
}
.btn.btn-primary:hover svg path {
    stroke: #012A38;
}
.btn.btn-primary-outline {
    background: transparent;
    border: 2px solid #012A38;
    color: #012A38;
    transition: all 0.3s;
}
.btn.btn-primary-outline svg path {
    stroke: #012A38;
}
.btn.btn-primary-outline:hover {
    background: #012A38;
    border: 2px solid #012A38;
    color: white;
    transition: all 0.3s;
}
.btn.btn-primary-outline:hover svg path {
    stroke: white;
}
.btn.btn-secondary {
    background: #BFF90B;
    border: 2px solid #BFF90B;
    color: #012A38;
    transition: all 0.3s;
}
.btn.btn-secondary:hover {
    background: transparent;
    border: 2px solid #BFF90B;
    color: #BFF90B;
    transition: all 0.3s;
}
.btn.btn-secondary:hover svg path {
    stroke: #BFF90B;
}
.btn.btn-secondary-outline {
    background: transparent;
    border: 2px solid #BFF90B;
    color: #BFF90B;
    transition: all 0.3s;
}
.btn.btn-secondary-outline svg path {
    stroke: #BFF90B;
}
.btn.btn-secondary-outline:hover {
    background: #BFF90B;
    border: 2px solid #BFF90B;
    color: #012A38;
    transition: all 0.3s;
}
.btn.btn-secondary-outline:hover svg path {
    stroke: #012A38;
}
.btn svg {
    margin-left: 10px;
}

/**
 * Positions
 */
.position-absolute {
    position: absolute;
}

.position-relative {
    position: relative;
}

.position-initial {
    position: initial;
}

.nowrap {
    flex-wrap: nowrap;
}

.position-sticky,
.sticky {
    position: sticky;
    top: 0;
}

@media screen and (min-width: 600px) {
    body.admin-bar .sticky {
        top: 46px;
    }
}
@media screen and (min-width: 783px) {
    body.admin-bar .sticky {
        top: 32px;
    }
}
/**
 * Items Alignemts
 */
.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-stretch {
    align-items: stretch;
}

.align-baseline {
    align-items: baseline;
}

/**
 * Justify content
 */
.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

/**
 * Heights
 */
.h-100 {
    height: 100%;
}

.h-90 {
    height: 90%;
}

.h-80 {
    height: 80%;
}

.h-70 {
    height: 70%;
}

.h-60 {
    height: 60%;
}

.h-50 {
    height: 50%;
}

.h-40 {
    height: 40%;
}

.h-30 {
    height: 30%;
}

.h-20 {
    height: 20%;
}

.h-10 {
    height: 10%;
}

/**
 * Width
 */
.w-100 {
    width: 100%;
}

.w-90 {
    width: 90%;
}

.w-80 {
    width: 80%;
}

.w-70 {
    width: 70%;
}

.w-60 {
    width: 60%;
}

.w-50 {
    width: 50%;
}

.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}

.w-20 {
    width: 20%;
}

.w-10 {
    width: 10%;
}

/**
 * Display
 */
.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-none {
    display: none;
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

/**
 * Overflow
 */
.overflow-hidden {
    overflow: hidden;
}

.overflow-scroll {
    overflow: scroll;
}

.overflow-auto {
    overflow: auto;
}

/**
 * Gutenberg alignments
 */
.alignwide {
    margin-left: 0px;
    width: calc(100% + 50px);
    transform: translateX(-25px);
    max-width: calc(100% + 50px);
}

.alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: auto;
}

.hero-home-container {
    font-family: "Sora", sans-serif;
    font-style: normal;
    margin-bottom: 60px;
}
.hero-home-container .category-list .category-item {
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 4px 8px;
    border: 1px solid #012A38;
    border-radius: 2px;
    text-decoration: none;
    color: #012A38;
    margin-bottom: 22px;
    margin-right: 6px;
    transition: all 0.3s;
}
.hero-home-container .category-list .category-item:hover {
    transition: all 0.3s;
    border-color: #BFF90B;
    background-color: #BFF90B;
}
.hero-home-container .hero-home > .h-100.bg-primary {
    padding-top: 96px;
    padding-bottom: 96px;
}
@media screen and (max-width: 1024px) {
    .hero-home-container .hero-home .h-100.bg-primary {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .hero-home-container .hero-home .h-100.bg-primary .container.d-flex {
        flex-direction: column;
        background: unset;
    }
}
.hero-home-container .hero-home .container,
.hero-home-container .hero-home .wp-block-group__inner-container {
    height: 100%;
}
.hero-home-container .hero-home .container .wp-block-column:not(.container) {
    position: relative;
}
.hero-home-container .hero-home .hero-text-content {
    padding-right: 10px;
    padding-left: 0;
}
.hero-home-container .hero-home .hero-text-content h1 {
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    max-width: 512px;
    letter-spacing: -0.25px;
    color: white;
}
.hero-home-container .hero-home .hero-text-content p {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.25px;
    color: #D3D9DC;
    max-width: 512px;
}
.hero-home-container .hero-home .mobile-background-image {
    display: none;
}
@media screen and (max-width: 1024px) {
    .hero-home-container .hero-home .hero-text-content {
        background-color: #012A38;
        flex-basis: 100%;
        position: relative;
        justify-content: space-between;
        padding-top: 21px;
        padding-bottom: 21px;
        padding-right: 0;
    }
    .hero-home-container .hero-home .hero-text-content.container {
        display: flex;
    }
    .hero-home-container .hero-home .hero-text-content h1 {
        font-size: 24px;
        line-height: 26px;
        max-width: 90%;
        margin-top: 31px;
    }
    .hero-home-container .hero-home .hero-text-content p {
        font-size: 12px;
        line-height: 16px;
        max-width: 90%;
    }
    .hero-home-container .hero-home .hero-text-content .wp-block-group {
        position: relative;
    }
    .hero-home-container .hero-home .hero-text-content .mobile-background-image {
        display: block;
        max-width: 40%;
        -o-object-fit: contain;
           object-fit: contain;
        margin-right: -16px;
    }
}
.hero-home-container .hero-home .card {
    background: white;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    max-width: 622.37px;
    width: 90%;
    overflow: hidden;
    padding: 18px 22px;
    position: absolute;
}
.hero-home-container .hero-home .card .aditional-helper {
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 0;
}
.hero-home-container .hero-home .card img.wp-post-image {
    border-radius: 12px;
    margin-bottom: 40px;
    max-height: 302px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.hero-home-container .hero-home .card .label-featured {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #012A38;
    margin-bottom: 19px;
}
.hero-home-container .hero-home .card .card-post-title a {
    display: block;
    text-decoration: none;
    font-size: 32px;
    line-height: 42px;
    color: #012A38;
    margin-bottom: 22px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.hero-home-container .hero-home .card .card_post_info {
    display: flex;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #012A38;
    margin-bottom: 19px;
}
.hero-home-container .hero-home .card .card_post_info a {
    color: #012A38;
    text-decoration: none;
    position: relative;
    z-index: 1;
}
.hero-home-container .hero-home .card .card_post_info .separator {
    margin: 0 5px;
}
.hero-home-container .hero-home .card .card_post_link a {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #012A38;
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}
.hero-home-container .hero-home .card .card_post_link a svg {
    width: 14px;
    height: 14px;
    margin-left: 10px;
}
.hero-home-container .hero-home .card .card_post_info a:hover,
.hero-home-container .hero-home .card .card-post-title a:hover {
    color: #FF3300;
}
.hero-home-container .hero-home .card .category-list a {
    position: relative;
    z-index: 1;
}
@media screen and (min-width: 1025px) {
    .hero-home-container .hero-home .card .label-featured,
    .hero-home-container .hero-home .card .category-list,
    .hero-home-container .hero-home .card .card-post-title,
    .hero-home-container .hero-home .card .card_post_info,
    .hero-home-container .hero-home .card .card_post_link {
        padding: 0 40px;
    }
}
@media screen and (max-width: 1024px) {
    .hero-home-container .hero-home .card {
        margin: 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        max-width: 100vw;
        width: auto;
        box-sizing: border-box;
        padding: 30px 19px;
        box-shadow: unset;
        border-radius: 0;
        background: #EFEFEF;
        position: initial;
    }
    .hero-home-container .hero-home .card .wp-post-image {
        display: none;
    }
    .hero-home-container .hero-home .card .label-featured {
        font-weight: 500;
        font-size: 10.8351px;
        line-height: 15px;
        letter-spacing: 0.773935px;
        margin-bottom: 8px;
    }
    .hero-home-container .hero-home .card .category-list .category-item {
        font-size: 10.8351px;
        margin-right: 4.6px;
        margin-bottom: 8px;
    }
    .hero-home-container .hero-home .card .card-post-title a {
        font-size: 24px;
        line-height: 34px;
        letter-spacing: -0.193484px;
        margin-bottom: 34px;
    }
    .hero-home-container .hero-home .card .card_post_info {
        margin-bottom: 11px;
        font-size: 9.28723px;
        line-height: 14px;
        letter-spacing: 0.773935px;
        color: rgba(1, 42, 56, 0.8);
    }
    .hero-home-container .hero-home .card .card_post_info a {
        color: rgba(1, 42, 56, 0.8);
    }
    .hero-home-container .hero-home .card .card_post_link a {
        font-size: 13.9308px;
        line-height: 22px;
        margin: 0;
    }
    .hero-home-container .hero-home .card .card_post_link a svg {
        width: 11px;
        height: 11px;
        transform: rotate(-45deg);
    }
}
.hero-home-container .editors {
    background-color: #EFEFEF;
    transition: all 0.3s;
    font-family: "Sora", sans-serif;
    font-style: normal;
}
.hero-home-container .editors .container {
    padding-top: 62px;
    display: flex;
    flex-direction: column;
}
.hero-home-container .editors .container .content {
    max-width: 40%;
}
.hero-home-container .editors .editors-title {
    margin-bottom: 25px;
}
.hero-home-container .editors .picks .pick {
    margin-bottom: 40px;
}
.hero-home-container .editors .picks .pick .title {
    margin-bottom: 6px;
}
.hero-home-container .editors .picks .pick .title a {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.25px;
    color: #012A38;
    text-decoration: none;
    transition: all 0.3s;
}
.hero-home-container .editors .picks .pick .title a:hover {
    color: #FF3300;
}
.hero-home-container .editors .picks .pick .category-list .category-item {
    margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
    .hero-home-container .editors {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
}

.breadcrumb-container span,
.breadcrumb-container a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.25px;
    color: #012A38;
}
.breadcrumb-container a {
    text-underline-offset: 3px;
}
.breadcrumb-container .separator {
    margin: 0 8px 0 0;
}

#primary .category-list .category-item {
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
}

@media screen and (max-width: 1024px) {
    #primary .category-list .category-item {
        display: inline-flex;
        background-color: #FF3300;
        font-weight: 500;
        line-height: 15px;
        letter-spacing: 0.773935px;
        color: white;
        margin-right: 4.6px;
        margin-bottom: 4.6px;
        box-shadow: 0px 0.773935px 1.54787px rgba(0, 0, 0, 0.15);
        border-radius: 1.54787px;
        text-decoration: none;
        padding: 3px 6px;
        border: 0;
    }
    #primary .category-item:last-child {
        margin-right: 0;
    }
}
@media screen and (min-width: 1025px) {
    .container .posts-cards {
        margin: 0 -19px;
    }
    .container .posts-cards.three {
        margin: 0 -30px;
    }
}
.posts-cards {
    font-family: "Sora", sans-serif;
    font-style: normal;
    display: grid;
    grid-template-rows: 1fr;
}
.posts-cards.two {
    grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 1440px) {
    .posts-cards.two .card_image img {
        height: auto !important;
        max-height: 326px !important;
    }
}
@media screen and (max-width: 1439px) {
    .posts-cards.two .card_image img {
        height: auto !important;
        max-height: none !important;
    }
}
.posts-cards.three {
    grid-template-columns: 1fr 1fr 1fr;
}
.posts-cards.three .post-card {
    margin: 0 30px 19px;
}
@media screen and (min-width: 1440px) {
    .posts-cards.three .post-card .card_image img {
        height: auto !important;
        max-height: 203px;
    }
}
@media screen and (max-width: 1439px) {
    .posts-cards.three .post-card .card_image img {
        height: auto !important;
        max-height: none !important;
    }
}
.posts-cards.four {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.posts-cards.five {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 1440px) {
    .posts-cards.four, .posts-cards.five {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (max-width: 1024px) {
    .posts-cards.three, .posts-cards.four, .posts-cards.five {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 768px) {
    .posts-cards.card-list {
        grid-template-columns: 1fr;
    }
    .posts-cards.card-list .post-card {
        margin-right: 0px !important;
    }
}
.posts-cards a {
    color: #012A38;
    text-decoration: none;
    transition: all 0.3s;
}
.posts-cards .post-card {
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    margin: 0 19px 19px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 326px;
    position: relative;
}
.posts-cards .post-card .aditional-helper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.posts-cards .post-card .card_title a,
.posts-cards .post-card .card_info a {
    position: relative;
    z-index: 1;
}
.posts-cards .post-card .card_title a:hover,
.posts-cards .post-card .card_info a:hover {
    color: #FF3300;
}
.posts-cards .post-card:not(.onScrollVisible).animated {
    animation: fadeInUp2 2s 1 both;
}
@media screen and (max-width: 1024px) {
    .posts-cards .post-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .posts-cards .post-card:nth-child(odd) {
        margin-right: 20px !important;
    }
}
.posts-cards .post-card .card_image {
    display: block;
    margin-bottom: 24px;
}
.posts-cards .post-card .card_image img {
    width: 100%;
    height: 212px;
    -o-object-fit: cover;
       object-fit: cover;
}
@media screen and (max-width: 1399px) {
    .posts-cards .post-card .card_image img {
        height: auto;
    }
}
.posts-cards .post-card .card_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    display: flex;
    align-items: center;
    color: #012A38;
    margin: 0 24px 16px;
}
.posts-cards .post-card .card_info {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(1, 42, 56, 0.8);
    margin: 0 24px 28px;
}
.posts-cards .post-card .card_info a {
    color: rgba(1, 42, 56, 0.8);
}
.posts-cards .post-card .card_info .separator {
    margin: 0 5px;
    text-transform: lowercase;
}
.posts-cards .post-card .card_info .author,
.posts-cards .post-card .card_info .separator,
.posts-cards .post-card .card_info .read-in {
    display: inline-flex;
}
.posts-cards .post-card .category-list {
    margin: 0 24px 20px;
}
.posts-cards .post-card .category-list .category-item {
    flex-direction: row;
    align-items: flex-start;
    padding: 4px 8px;
    border: 1px solid #012A38;
    border-radius: 2px;
    text-decoration: none;
    color: #012A38;
    margin-right: 6px;
    transition: all 0.3s;
    font-size: 10px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 1024px) {
    .posts-cards .post-card .category-list .category-item {
        background-color: #E0DBC6;
        border: 0;
        font-weight: 400;
        font-size: 10.362px;
        line-height: 16px;
        letter-spacing: 0.863497px;
    }
    .posts-cards .post-card .category-list .category-item:hover {
        transition: all 0.3s;
        border-color: #BFF90B;
        background-color: #BFF90B;
    }
    .posts-cards .post-card .category-list .category-item:last-child {
        margin-right: 0px;
    }
}
.posts-cards .post-card .category-list .category-item:hover {
    transition: all 0.3s;
    border-color: #BFF90B;
    background-color: #BFF90B;
}
.posts-cards .post-card .category-list .category-item:last-child {
    margin-right: 0px;
}
@keyframes fadeInUp2 {
    0% {
        transform: translate3d(0px, 2rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        transform-style: preserve-3d;
        opacity: 0;
    }
    100% {
        transform: translate3d(0px, 0rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        transform-style: preserve-3d;
        opacity: 1;
    }
}
.post-author-bottom {
    font-family: "Sora", sans-serif;
    font-style: normal;
    display: flex;
    width: 100%;
    background: white;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
    box-sizing: border-box;
}
.post-author-bottom .author-img a {
    position: relative;
    width: 145px;
    height: 145px;
    display: flex;
    align-items: flex-end;
    float: left;
    margin-right: 44px;
    overflow: hidden;
}
.post-author-bottom .author-img img {
    z-index: 3;
    position: relative;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.post-author-bottom .title {
    margin-bottom: 10px;
}
.post-author-bottom .title a {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.133333px;
    color: #012A38;
    text-decoration: none;
}
.post-author-bottom .author-description {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #012A38;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.post-author-bottom .description-full {
    font-family: "Inter", sans-serif;
    letter-spacing: -0.25px;
    color: #012A38;
    font-weight: 400;
}
.post-author-bottom .description-full, .post-author-bottom .description-full > * {
    font-size: 16px;
    line-height: 24px;
}
.post-author-bottom:last-of-type {
    margin-bottom: 158px;
}

.feature-right-content {
    font-family: "Sora", sans-serif;
    font-style: normal;
}
.feature-right-content .col-6 {
    box-sizing: border-box;
}
.feature-right-content .featured-post::before {
    content: "";
    background: #012A38;
    width: 100vw;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    border: 1px solid #012A38;
}
.feature-right-content .featured-post .container {
    padding-top: 50px;
    padding-bottom: 58px;
}
.feature-right-content .featured-post .container .aditional-helper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
}
.feature-right-content .featured-post .container .image {
    margin-right: 32px;
}
.feature-right-content .featured-post .container .image img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 32px;
}
.feature-right-content .featured-post .container .content {
    margin-right: 32px;
}
.feature-right-content .featured-post .container .content .title a {
    font-weight: 700;
    font-size: 36.5025px;
    line-height: 47px;
    letter-spacing: -0.325915px;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.feature-right-content .featured-post .container .content .post_info {
    margin-bottom: 14px;
}
.feature-right-content .featured-post .container .content .post_info, .feature-right-content .featured-post .container .content .post_info a {
    text-decoration: none;
    display: flex;
    text-transform: uppercase;
    font-family: "Sora", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 23px;
    letter-spacing: 1.30366px;
    color: #FFFFFF;
}
.feature-right-content .featured-post .container .content .post_info a {
    position: relative;
    z-index: 1;
}
.feature-right-content .featured-post .container .content .post_info .separator {
    margin: 0 5px;
}
.feature-right-content .featured-post .container .content .category-list .category-item {
    border: 0.65183px solid #FF3300;
    border-radius: 2.60732px;
    font-weight: 400;
    font-size: 12px;
    line-height: 23px;
    letter-spacing: 1.30366px;
    color: #FF3300;
    text-decoration: none;
    padding: 5px 10px;
    display: inline-flex;
    transition: all 0.3s;
    margin-right: 10px;
    position: relative;
    z-index: 1;
}
.feature-right-content .featured-post .container .content .category-list .category-item:hover {
    background-color: #FF3300;
    color: white;
    transition: all 0.3s;
}
.feature-right-content .right-column {
    flex-direction: column;
    box-sizing: border-box;
    flex: 0 0 calc(40% + 1px);
    max-width: calc(40% + 1px);
}
.feature-right-content .right-column::after {
    content: "";
    background: white;
    position: absolute;
    width: 100vw;
    height: 100%;
    z-index: -1;
    border: 1px solid #012A38;
    left: 0;
    top: 0;
}
.feature-right-content .right-column .container .mobile {
    display: none;
}
.feature-right-content .right-column .container .title {
    font-family: "Sora", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.25px;
    color: #FF3300;
    max-width: 335.67px;
    margin-bottom: 16px;
}
.feature-right-content .right-column .container .description {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.25px;
    margin-bottom: 68px;
    max-width: 409.59px;
}
@media screen and (max-width: 1024px) {
    .feature-right-content .featured-post {
        display: none;
    }
    .feature-right-content .right-column {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
        border: 0 !important;
        background-color: #012A38;
    }
    .feature-right-content .right-column::after {
        content: unset;
    }
    .feature-right-content .right-column .container {
        margin: 30px 0;
    }
    .feature-right-content .right-column .desktop {
        display: none;
    }
    .feature-right-content .right-column .mobile {
        display: block !important;
    }
    .feature-right-content .right-column .title {
        max-width: unset !important;
        font-size: 20px !important;
        line-height: 30px !important;
        letter-spacing: -0.0025em !important;
        color: #FFFFFF !important;
        margin-bottom: 8px !important;
    }
    .feature-right-content .right-column .description {
        max-width: unset !important;
        font-size: 14px !important;
        line-height: 20px !important;
        color: #969696 !important;
        margin-bottom: 16px !important;
    }
    .feature-right-content .right-column .hbspt-form .hs_email .input::before {
        background-image: url("data:image/svg+xml,%3Csvg width='26' height='17' viewBox='0 0 26 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.6538 0.0986328H2.96154C1.604 0.0986328 0.5 1.20386 0.5 2.56017V13.6371C0.5 14.9946 1.604 16.0986 2.96154 16.0986H22.6538C24.0114 16.0986 25.1154 14.9946 25.1154 13.6371V2.56017C25.1154 1.20386 24.0114 0.0986328 22.6538 0.0986328ZM20.3314 2.56017L12.8077 7.26294L5.284 2.56017H20.3314ZM2.96154 13.6371V4.01125L12.1554 9.75771C12.3548 9.88202 12.5812 9.94479 12.8077 9.94479C13.0342 9.94479 13.2606 9.88202 13.46 9.75771L22.6538 4.01125L22.6551 13.6371H2.96154Z' fill='white'/%3E%3C/svg%3E");
        background-size: 17px 11px;
        width: 37px;
    }
    .feature-right-content .right-column .hbspt-form .input {
        margin-bottom: 16px;
    }
    .feature-right-content .right-column .hbspt-form .input input[name=email] {
        border: 1px solid #FFFFFF;
        border-radius: 2px;
        background: unset;
        padding: 10px 37px;
        color: white;
    }
    .feature-right-content .right-column .hbspt-form .actions {
        position: relative;
        display: inline;
    }
    .feature-right-content .right-column .hbspt-form .actions input[type=submit] {
        padding: 0;
        color: #BFF90B;
    }
    .feature-right-content .right-column .hbspt-form .actions::after {
        right: -19px;
        background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33398 1.20703L13.334 6.20703M13.334 6.20703L8.33398 11.207M13.334 6.20703L1.33398 6.20703' stroke='%23BFF90B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }
}

.feature-left-content {
    font-family: "Sora", sans-serif;
    font-style: normal;
    background-color: #EFEFEF;
    padding: 105px 0;
}
@media screen and (max-width: 1024px) {
    .feature-left-content {
        display: none;
    }
}
.feature-left-content .content {
    width: 20%;
}
.feature-left-content .content .title {
    font-weight: 600;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.25px;
    color: #012A38;
    margin-bottom: 8px;
}
.feature-left-content .content .description {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #4F6169;
    margin-bottom: 58px;
}
.feature-left-content .posts-cards {
    width: 80%;
    margin: 0;
}
.feature-left-content .posts-cards .post-card {
    margin: 0 30px;
}
.feature-left-content .posts-cards .post-card:first-child {
    margin-left: 0;
}
.feature-left-content .posts-cards .post-card:last-child {
    margin-right: 0;
}

.social-share-buttons {
    margin-bottom: 48px;
}
.social-share-buttons .social {
    margin-right: 19px;
}
.social-share-buttons .social:last-child {
    margin-right: 0;
}
.social-share-buttons .copy-link-url {
    border: 0;
    background: unset;
}

.tooltip {
    position: absolute;
    top: 100%;
    padding: 10px 0 0;
    left: 0;
    opacity: 1;
    transform: translateY(0);
    transition: 200ms 100ms opacity, 300ms 100ms transform;
}
.tooltip .tooltip-body {
    display: flex;
    gap: 10px;
    background: #012A38;
    color: white;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.tooltip .tooltip-arrow-up {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #012A38;
    position: absolute;
    color: white;
    top: 5px;
    left: 5px;
}
.tooltip.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    z-index: -1;
}

.hbspt-form {
    position: relative;
}
.hbspt-form input[name=email] {
    width: 100%;
    border: 1px solid rgba(1, 42, 56, 0.4);
    border-radius: 2px;
    outline: unset;
    padding: 16px 0 16px 59px;
    box-sizing: border-box;
    font-family: "Sora", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.25px;
    color: #012A38;
}
.hbspt-form .submitted-message {
    background: #BFF90B;
    text-align: center;
    padding: 10px;
    border-radius: 3px;
}
.hbspt-form .hs_error_rollup {
    display: none;
}
.hbspt-form .hs_email label:not(.hs-error-msg) {
    display: none;
}
.hbspt-form .hs_email label.hs-error-msg {
    font-family: "Inter", sans-serif;
    font-style: normal;
    color: #FF3300;
}
.hbspt-form .hs_email .input {
    position: relative;
}
.hbspt-form .hs_email .input::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='17' viewBox='0 0 25 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.4878 0.207031H2.79552C1.43798 0.207031 0.333984 1.31226 0.333984 2.66857V13.7455C0.333984 15.103 1.43798 16.207 2.79552 16.207H22.4878C23.8454 16.207 24.9494 15.103 24.9494 13.7455V2.66857C24.9494 1.31226 23.8454 0.207031 22.4878 0.207031ZM20.1654 2.66857L12.6417 7.37134L5.11798 2.66857H20.1654ZM2.79552 13.7455V4.11965L11.9894 9.86611C12.1888 9.99042 12.4152 10.0532 12.6417 10.0532C12.8681 10.0532 13.0946 9.99042 13.294 9.86611L22.4878 4.11965L22.4891 13.7455H2.79552Z' fill='%23012A38'/%3E%3C/svg%3E");
    display: block;
    width: 64px;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
}
.hbspt-form .actions {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}
.hbspt-form .actions input[type=submit] {
    background: #012A38;
    border-radius: 4px;
    font-family: "Sora", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
    letter-spacing: -0.25px;
    color: #FFFFFF;
    border: 2px solid #012A38;
    padding: 16px 48px 16px 24px;
    transition: all 0.3s;
    height: 100%;
}
.hbspt-form .actions input[type=submit]:hover {
    background: white;
    color: #012A38;
    transition: all 0.3s;
}
.hbspt-form .actions::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33398 1.20703L13.334 6.20703M13.334 6.20703L8.33398 11.207M13.334 6.20703L1.33398 6.20703' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    right: 24px;
    display: block;
    width: 15px;
    height: 13px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}
.hbspt-form .actions:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33398 1.20703L13.334 6.20703M13.334 6.20703L8.33398 11.207M13.334 6.20703L1.33398 6.20703' stroke='%23012A38' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transition: all 0.3s;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 60px 0 80px;
}
.navigation .btn.loading {
    pointer-events: none;
}
.navigation .btn.loading svg {
    display: none;
}
.navigation .btn.loading::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' fill='none' stroke='%23ffffff' stroke-width='10' r='35' stroke-dasharray='164.93361431346415 56.97787143782138'%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='1s' values='0 50 50%3B360 50 50' keyTimes='0%3B1'%3E%3C/animateTransform%3E%3C/circle%3E%3C/svg%3E");
    display: inline-flex;
    width: 15px;
    height: 15px;
    margin-left: 6px;
    position: relative;
    top: 2px;
}
@media screen and (min-width: 1025px) {
    .navigation .prev svg {
        margin-left: 0px;
        margin-right: 10px;
    }
    .navigation .prev svg.mobile-arrow {
        display: none;
    }
    .navigation .prev svg.desktop {
        display: inline-block;
    }
}
@media screen and (max-width: 1024px) {
    .navigation .prev svg.desktop {
        display: none;
    }
}

.navigation .btn-primary {
    display: flex;
    transition: all 0.3s;
}
.navigation .btn-primary:hover {
    background: #BFF90B;
    border-color: #BFF90B;
    transition: all 0.3s;
}
.navigation .btn-primary:hover.next svg {
    transition: all 0.3s;
    margin-left: 15px;
}
.navigation .btn-primary .next svg {
    transition: all 0.3s;
}

body.home .feature-right-content {
    margin-top: 98px;
    margin-bottom: 120px;
}
body.home .feature-right-content .featured-post {
    flex: 0 0 60%;
    max-width: 60%;
}
body.home .feature-right-content .right-column {
    position: relative;
    background: transparent !important;
}
body.home .feature-right-content .right-column .hs-error-msgs {
    list-style: none;
    padding: 0;
}
body.home .feature-right-content .right-column .hs-error-msgs li {
    margin-bottom: 0;
    margin-top: 4px;
}
@media screen and (min-width: 1025px) {
    body.home .feature-right-content {
        background-color: transparent !important;
    }
    body.home .feature-right-content .right-column {
        padding: 0;
    }
    body.home .feature-right-content .right-column .container {
        padding-right: 0;
    }
    body.home .feature-right-content .newsletter .hbspt-form .actions {
        position: relative;
        display: inline-block;
        width: auto;
    }
    body.home .feature-right-content .newsletter .hbspt-form .actions input[type=submit] {
        color: #012A38;
        background: unset;
        border: unset;
        padding-left: 0;
    }
    body.home .feature-right-content .newsletter .hbspt-form .actions:after {
        background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33398 1.20703L13.334 6.20703M13.334 6.20703L8.33398 11.207M13.334 6.20703L1.33398 6.20703' stroke='%23012A38' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        transition: all 0.3s;
    }
}
@media screen and (max-width: 1024px) {
    body.home .feature-right-content {
        margin-top: 7px;
        margin-bottom: 40px;
        width: 100vw;
        margin-left: -16px !important;
    }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
    body.home .feature-right-content .newsletter .hs-error-msgs {
        position: relative;
        padding: 0;
    }
}
body.home .pricing-title {
    margin-bottom: 8px;
}
body.home .pricing-description {
    margin-bottom: 54px;
}
body.home #colophon .newsletter .title {
    font-size: 32px;
    line-height: 42px;
}

body.category .mobile-feature {
    font-family: "Sora", sans-serif;
    font-style: normal;
    display: none;
}
body.category .mobile-feature .category-name {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #012A38;
    padding: 12px 24px;
}
body.category .archive-content.posts-cards .post-card {
    margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
    body.category .archive-content.posts-cards .post-card {
        margin-bottom: 17px;
    }
}
@media screen and (min-width: 1025px) {
    body.category .cat-featured .text-content .feature-title {
        display: block !important;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #FFFFFF;
        border: 1px solid #FFFFFF;
        border-radius: 2px;
        padding: 4px 8px;
        margin: 0 0 16px 0;
    }
}
body.category .cat-featured .text-content .title a {
    line-height: 40px;
    display: block;
}
body.category .cat-featured .text-content .post_info .separator {
    text-transform: lowercase;
}
@media screen and (max-width: 1024px) {
    body.category .cat-featured {
        background-color: #EFEFEF !important;
    }
}
@media screen and (min-width: 1025px) {
    body.category .cat-featured .row .col-5.p-0 {
        display: flex;
        height: 100%;
    }
    body.category .cat-featured .image-content img {
        display: block;
    }
}
@media screen and (max-width: 1024px) {
    body.category .mobile-feature {
        display: block;
    }
}

.cat-featured {
    font-family: "Sora", sans-serif;
    font-style: normal;
    margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
    .cat-featured {
        background-color: #EFEFEF;
    }
    .cat-featured .breadcrumb-container {
        display: none;
    }
}
.cat-featured .breadcrumb-container {
    padding-top: 32px;
    height: 20px;
}
.cat-featured .breadcrumb-container span,
.cat-featured .breadcrumb-container a {
    color: #FFFFFF;
}
.cat-featured .tax-featured .container {
    padding-bottom: 77px;
}
.cat-featured .tax-featured .text-content {
    height: calc(100% - 32px - 20px);
    flex-direction: column;
    margin-top: 64px;
}
.cat-featured .tax-featured .text-content .title {
    margin-bottom: 6px;
}
.cat-featured .tax-featured .text-content .title,
.cat-featured .tax-featured .text-content .title a {
    font-weight: 600;
    font-size: 32px;
    line-height: 60px;
    letter-spacing: -0.25px;
    color: white;
    text-decoration: none;
}
@media screen and (max-width: 1024px) {
    .cat-featured .tax-featured .text-content .title,
    .cat-featured .tax-featured .text-content .title a {
        font-size: 24px;
        line-height: 34px;
        letter-spacing: -0.193484px;
        color: #012A38;
        margin-bottom: 16px;
    }
}
.cat-featured .tax-featured .text-content .feature-title {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.773935px;
    color: #012A38;
    margin-top: 30px;
    margin-bottom: 8px;
}
.cat-featured .tax-featured .text-content .feature-title,
.cat-featured .tax-featured .text-content .category-list {
    display: none;
}
@media screen and (max-width: 1024px) {
    .cat-featured .tax-featured .text-content .feature-title,
    .cat-featured .tax-featured .text-content .category-list {
        display: block;
    }
    .cat-featured .tax-featured .text-content .feature-title .category-item,
    .cat-featured .tax-featured .text-content .category-list .category-item {
        font-size: 12px;
    }
}
.cat-featured .tax-featured .text-content .post_info {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 26px;
}
.cat-featured .tax-featured .text-content .post_info a {
    color: #FFFFFF;
    text-decoration: none;
}
@media screen and (max-width: 1024px) {
    .cat-featured .tax-featured .text-content .post_info a {
        color: rgba(1, 42, 56, 0.8);
    }
}
.cat-featured .tax-featured .text-content .post_info .separator {
    margin: 0 5px;
}
.cat-featured .tax-featured .text-content .post_info .author,
.cat-featured .tax-featured .text-content .post_info .separator,
.cat-featured .tax-featured .text-content .post_info .read-in {
    display: inline-flex;
}
@media screen and (max-width: 1024px) {
    .cat-featured .tax-featured .text-content .post_info {
        font-size: 11px;
        line-height: 14px;
        letter-spacing: 0.773935px;
        color: rgba(1, 42, 56, 0.8);
        margin-bottom: 11px;
    }
}
.cat-featured .tax-featured .text-content .post-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.25px;
    text-decoration-line: underline;
    display: block;
    margin-bottom: 46px;
    color: #FFFFFF;
}
.cat-featured .tax-featured .text-content .post-link svg {
    margin-left: 4.7px;
}
@media screen and (max-width: 1024px) {
    .cat-featured .tax-featured .text-content .post-link {
        font-size: 14px;
        line-height: 22px;
        color: #012A38;
        margin-bottom: 48px;
    }
    .cat-featured .tax-featured .text-content .post-link svg {
        transform: rotate(-45deg);
    }
    .cat-featured .tax-featured .text-content .post-link svg path {
        stroke: #012A38;
        transform: scale(1.2) translate(-4px, -1px);
    }
}
@media screen and (max-width: 1024px) {
    .cat-featured .tax-featured {
        flex-direction: column-reverse;
    }
    .cat-featured .tax-featured .col-5,
    .cat-featured .tax-featured .col-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .cat-featured .tax-featured .image-content {
        display: none;
    }
    .cat-featured .tax-featured .container {
        padding-bottom: 0px;
    }
    .cat-featured .tax-featured .text-content {
        margin-top: 0px;
    }
}
.cat-featured .tax-featured .image-content img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.tax-sign-up {
    font-family: "Sora", sans-serif;
    font-style: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    background-color: #012A38;
    margin: 96px 0;
}
.tax-sign-up .title {
    font-weight: 600;
    font-size: 32px;
    line-height: 42px;
    color: #FFFFFF;
    max-width: 660px;
}
@media screen and (max-width: 1024px) {
    .tax-sign-up {
        display: none;
    }
}

.feature-right-content.taxonomy {
    display: none;
}
@media screen and (max-width: 1024px) {
    .feature-right-content.taxonomy {
        display: block;
        margin-bottom: 7px;
    }
}

.entry-content ol,
.entry-content ul {
    font-family: "Inter", sans-serif;
    padding-inline-start: 40px;
}
.entry-content ol li,
.entry-content ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.25px;
    text-align: left;
    margin-bottom: 24px;
    color: #012A38;
}
.entry-content ol li::marker,
.entry-content ul li::marker {
    color: #012A38;
}
.entry-content ul {
    list-style: initial;
}

.single .cat-featured {
    background-color: #EFEFEF;
    margin-bottom: 70px;
}
.single .cat-featured .text-content .category-list {
    display: block;
}
.single .cat-featured .text-content .category-list .category-item {
    display: inline-flex;
    background-color: #FF3300;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: white;
    margin-right: 4.6px;
    margin-bottom: 16px;
    box-shadow: 0px 0.773935px 1.54787px rgba(0, 0, 0, 0.15);
    border-radius: 1.54787px;
    text-decoration: none;
    padding: 3px 6px;
    border: 0;
    text-transform: uppercase;
}
.single .cat-featured .text-content .category-item:last-child {
    margin-right: 0;
}
.single .cat-featured .text-content .title {
    font-size: 32px;
    line-height: 40px;
    color: #012A38;
    margin-bottom: 12px;
}
.single .cat-featured .text-content .post_info {
    color: rgba(1, 42, 56, 0.8);
}
.single .cat-featured .text-content .post_info .author {
    display: block !important;
    margin-bottom: 7px;
}
.single .cat-featured .text-content .post_info .author a {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1px;
    text-decoration-line: underline;
    color: #012A38;
    margin-bottom: 7px;
}
.single .cat-featured .text-content .post_info .published-date {
    display: inline-flex;
}
@media screen and (max-width: 1024px) {
    .single .cat-featured {
        background-color: white;
        margin-bottom: 40px;
    }
    .single .cat-featured .text-content {
        margin-top: 24px;
    }
    .single .cat-featured .text-content .category-list {
        display: flex;
        flex-wrap: wrap;
        order: 1;
    }
    .single .cat-featured .text-content .category-list .category-item {
        font-size: 12px;
    }
    .single .cat-featured .text-content .title {
        display: flex;
        order: 2;
        font-weight: 600;
        font-size: 24px;
        line-height: 34px;
    }
    .single .cat-featured .text-content .social-share-buttons {
        order: 4;
    }
    .single .cat-featured .text-content .post_info {
        order: 3;
        display: flex;
    }
    .single .cat-featured .text-content .post_info .author {
        display: inline-flex !important;
        order: 1;
    }
    .single .cat-featured .text-content .post_info .author a {
        font-size: 12px;
        line-height: 14px;
        letter-spacing: 0.7739354968px;
        text-align: left;
        color: rgba(1, 42, 56, 0.8);
    }
    .single .cat-featured .text-content .post_info .separator {
        order: 2;
    }
    .single .cat-featured .text-content .post_info .read-in {
        order: 3;
    }
    .single .cat-featured .text-content .post_info .published-date {
        display: none;
    }
    .single .cat-featured .tax-featured .image-content {
        display: block;
    }
}
.single .sidebar {
    font-family: "Sora", sans-serif;
    font-style: normal;
    width: 25%;
}
.single .sidebar .left-sidebar-content {
    position: sticky;
    max-height: calc(100vh - 128px - 52px);
    overflow: auto;
    height: 100%;
}
.single .sidebar .left-sidebar-content::-webkit-scrollbar {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 5px;
}
.single .sidebar .left-sidebar-content::-webkit-scrollbar-thumb {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #012A38;
    border-radius: 12px;
}
.single .sidebar .left-sidebar-content::-webkit-scrollbar-thumb:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #00465c;
}
.single .sidebar #table_of_content {
    margin-right: 10px;
    padding-bottom: 100px;
}
.single .sidebar #table_of_content .content {
    max-width: unset;
    margin-bottom: 24px;
}
.single .sidebar #table_of_content .title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.25px;
    color: #012A38;
}
.single .sidebar #table_of_content ol {
    list-style: none;
    font-family: "Inter", sans-serif;
    font-style: normal;
}
.single .sidebar #table_of_content ol li {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #012A38;
    margin: 20px 0;
    padding-right: 24px;
    cursor: pointer;
    transition: border 0.3s;
}
.single .sidebar #table_of_content ol li.active {
    font-weight: 600;
    border-left: 8px solid #012A38;
    padding-left: 16px;
}
@media screen and (min-width: 1025px) {
    .single .share-icons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .single .share-icons button,
    .single .share-icons a {
        margin: 5px;
    }
    .single .share-icons .social-link {
        margin: 11px 12px 11px 10px;
    }
}
.single .content {
    max-width: 45%;
    margin-bottom: 158px;
}
.single .content .cb-blockquote {
    margin: 50px 0;
}
.single .content .cb-blockquote--primary {
    font-family: "Sora", sans-serif;
    font-style: normal;
}
.single .content .cb-blockquote--primary::before {
    content: "";
    width: 64px;
    height: 69px;
    display: block;
    float: left;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='69' viewBox='0 0 64 69' fill='none'%3E%3Cpath d='M60.3914 0.287146C62.0482 0.287146 63.3914 1.63029 63.3914 3.28715V36.9595C63.3914 38.102 62.7424 39.1453 61.7176 39.6504L4.64463 67.7805C2.65098 68.7631 0.318347 67.3123 0.318347 65.0896V3.28715C0.318347 1.63029 1.66149 0.287146 3.31835 0.287146H60.3914Z' fill='%23FF3300'/%3E%3Cpath xmlns='http://www.w3.org/2000/svg' d='M12.1818 30.1175C25.7717 30.1175 33.2069 18.8556 33.2069 9.09235C33.2069 8.77575 33.1999 8.45211 33.1858 8.13551C34.6322 7.08952 35.8804 5.79391 36.8718 4.30956C35.5247 4.90889 34.0945 5.3003 32.63 5.47043C34.172 4.54612 35.3266 3.09408 35.8797 1.38347C34.4291 2.24318 32.8427 2.84964 31.1884 3.17684C30.0738 1.99253 28.6002 1.20838 26.9952 0.945624C25.3903 0.682864 23.7435 0.956129 22.3094 1.72317C20.8754 2.49021 19.7339 3.70831 19.0616 5.18913C18.3892 6.66995 18.2234 8.33101 18.5898 9.91551C15.6525 9.76811 12.7789 9.00506 10.1553 7.67584C7.53176 6.34661 5.21684 4.48088 3.36061 2.19959C2.41717 3.82618 2.12848 5.75097 2.5532 7.58277C2.97793 9.41456 4.08419 11.0159 5.64717 12.0614C4.47378 12.0241 3.3261 11.7082 2.29894 11.1397V11.2312C2.29789 12.9382 2.88801 14.5928 3.96899 15.9139C5.04998 17.235 6.5551 18.141 8.22852 18.4778C7.14156 18.7752 6.00075 18.8185 4.89436 18.6045C5.36657 20.0725 6.28531 21.3564 7.52237 22.2772C8.75943 23.1979 10.2531 23.7094 11.7949 23.7404C9.17737 25.7965 5.944 26.9117 2.61554 26.9064C2.02526 26.9055 1.43557 26.8694 0.849609 26.7981C4.23097 28.9674 8.1644 30.1196 12.1818 30.1175Z' fill='white' style='transform: translate(11px, 11px)%3B'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
.single .content .cb-blockquote--primary .blockquote-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0;
    padding-left: 16.2px;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.25px;
    color: #012A38;
}
.single .content .cb-blockquote--primary .blockquote-content .cb-blockquote__author {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.25px;
    color: #012A38;
    background-color: unset;
    padding: 0;
    margin: 10px 0 0 0;
}
@media screen and (max-width: 1024px) {
    .single .content .cb-blockquote--primary::before {
        width: 56px;
        height: 62px;
    }
    .single .content .cb-blockquote--primary .blockquote-content {
        font-size: 16px;
        line-height: 22px;
        color: #000000;
    }
}
.single .content .cb-blockquote--secondary {
    font-size: 20px;
    font-weight: bold;
    font-family: "paralucent", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-family: var(--ff-primary);
    border-left: 5px solid #FF3300;
    padding-left: 20px;
}
.single .content .cb-blockquote--teritary {
    border-top: 6px solid;
    border-color: #000000;
    border-color: var(--color-black);
    padding-top: 20px;
}
.single .content .cb-blockquote--teritary,
.single .content .cb-blockquote--teritary p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-family: var(--ff-base);
    font-size: 16px;
    line-height: 24px;
    color: #787882;
    color: var(--color-muted);
}
.single .content .cb-blockquote--teritary p {
    margin-bottom: 15px;
}
.single .content .cb-blockquote__author {
    margin: 10px 0 60px;
    background-color: #FF3300;
    padding: 4px 12px;
    font-style: normal;
    font-size: 16px;
    font-family: "paralucent", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-family: var(--ff-primary);
    display: inline-block;
    font-weight: bold;
}
@media (min-width: 768px) {
    .single .content .cb-blockquote--secondary {
        font-size: 30px;
        padding-left: 30px;
    }
    .single .content .cb-blockquote--teritary,
    .single .content .cb-blockquote--teritary p {
        font-size: 18px;
        line-height: 28px;
    }
}
@media (max-width: 767px) {
    .single .content .cb-blockquote--primary,
    .single .content .cb-blockquote--secondary {
        font-size: 18px;
        line-height: 28px;
    }
}
.single .content .entry-content {
    margin-bottom: 107px;
}
.single .content .entry-content h1,
.single .content .entry-content h4,
.single .content .entry-content h5,
.single .content .entry-content h6 {
    margin: 0px 0px 16px 0px;
}
.single .content .entry-content h2 {
    margin: 32px 0 16px;
}
.single .content .entry-content h3 {
    margin: 24px 0 16px;
}
@media screen and (min-width: 1440px) and (max-width: 1599px) {
    .single .content .entry-content h3 {
        font-size: 20px;
    }
}
@media screen and (min-width: 1600px) {
    .single .content .entry-content h3 {
        font-size: 24px;
    }
}
.single .content .entry-content figure {
    max-width: 100%;
}
.single .content .entry-content figure img {
    max-width: 100%;
}
.single .content .entry-content table,
.single .content .entry-content p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.25px;
    color: #012A38;
    margin-bottom: 14px;
}
.single .content .entry-content p {
    color: #00000a !important;
}
.single .content .entry-content strong {
    font-weight: 600;
}
.single .content .entry-content a:not(.chargebee-cta-button, .chargebee-resource-link, .chargebee-compact-course-link, .chargebee-primary-button, .cta-button, .btn, .btn.btn-secondary, .btn-secondary) {
    color: #FF3300 !important;
}
.single .content .entry-content a:not(.chargebee-cta-button, .chargebee-resource-link, .chargebee-compact-course-link, .chargebee-primary-button, .cta-button, .btn, .btn.btn-secondary, .btn-secondary) strong,
.single .content .entry-content a:not(.chargebee-cta-button, .chargebee-resource-link, .chargebee-compact-course-link, .chargebee-primary-button, .cta-button, .btn, .btn.btn-secondary, .btn-secondary) mark,
.single .content .entry-content a:not(.chargebee-cta-button, .chargebee-resource-link, .chargebee-compact-course-link, .chargebee-primary-button, .cta-button, .btn, .btn.btn-secondary, .btn-secondary) b {
    color: #FF3300 !important;
}
.single .content .entry-content .story-cta a,
.single .content .entry-content .cb-cta-button a,
.single .content .entry-content .cb-main-cta a {
    color: #fff !important;
}
.single .content .entry-content .chargebee-gartner-box a:not(.chargebee-cta-button, .chargebee-resource-link, .chargebee-compact-course-link, .chargebee-primary-button, .cta-button, .btn, .btn.btn-secondary, .btn-secondary) {
    color: #EFEFEF !important;
}
.single .content .entry-content .chargebee-primary-cta-container .chargebee-primary-text {
    padding-right: 10px;
}
.single .sidebar-widget {
    font-family: "Sora", sans-serif;
    font-style: normal;
    width: 25%;
}
.single .sidebar-widget .widget-area {
    height: 100%;
    margin-bottom: 35px;
}
.single .sidebar-widget .widget.widget_block {
    position: relative;
    z-index: 1;
}
.single .sidebar-widget .sidebar-widget-wrapper {
    position: sticky;
    display: flex;
    flex-direction: column;
    overflow: auto;
    padding-right: 5px;
}
.single .sidebar-widget .sidebar-widget-wrapper::-webkit-scrollbar {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 5px;
}
.single .sidebar-widget .sidebar-widget-wrapper::-webkit-scrollbar-thumb {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #012A38;
    border-radius: 12px;
}
.single .sidebar-widget .sidebar-widget-wrapper::-webkit-scrollbar-thumb:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #00465c;
}
.single .sidebar-widget .related-posts {
    background: #EFEFEF;
    padding: 33px 28px 29px;
    border-radius: 4px;
    margin-bottom: 42px;
}
.single .sidebar-widget .related-posts .related-title {
    margin-bottom: 16px;
}
.single .sidebar-widget .related-posts .related-post .title {
    font-weight: 600;
}
.single .sidebar-widget .related-posts .related-post .read-in {
    margin-bottom: 16px;
}
.single .sidebar-widget .right-sidebar-newsletter {
    background: #EFEFEF;
    border-radius: 4px;
    padding: 32px 24px 1px 24px;
    margin-left: auto;
}
.single .sidebar-widget .right-sidebar-newsletter h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.0025em;
    color: #012A38;
    margin-bottom: 11px;
}
.single .sidebar-widget .right-sidebar-newsletter p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.25px;
    color: #012A38;
    margin-bottom: 16px;
}
.single .sidebar-widget .right-sidebar-newsletter .hbspt-form input[name=email] {
    background: #FFFFFF;
    border: 1px solid #92A1A8;
    border-radius: 4px;
}
.single .sidebar-widget .right-sidebar-newsletter .hbspt-form .hs_email .hs-error-msgs {
    position: initial;
}
.single .sidebar-widget .right-sidebar-newsletter .hbspt-form .actions {
    position: relative;
    display: inline-flex;
    margin-top: 18px;
}
.single .sidebar-widget .right-sidebar-newsletter .hbspt-form .actions input[type=submit] {
    font-weight: 600;
    line-height: 24px;
    text-decoration-line: underline;
    color: #012A38;
    background: unset;
    border: 0;
    padding: 0;
}
.single .sidebar-widget .right-sidebar-newsletter .hbspt-form .actions::after {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33398 1.20703L13.334 6.20703M13.334 6.20703L8.33398 11.207M13.334 6.20703L1.33398 6.20703' stroke='%23012A38' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    right: -21px;
}
.single .sidebar-widget .scroll-button-container {
    opacity: 1;
    transition: all 0.3s;
    margin-bottom: 35px;
    margin-left: auto;
    display: block;
    margin-top: 0;
}
.single .sidebar-widget .scroll-button-container .scroll-top-btn {
    margin-left: auto;
    font-family: "Sora", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #012A38;
    background: unset;
    border: 0;
    display: flex;
    align-items: center;
}
.single .sidebar-widget .scroll-button-container .scroll-top-btn svg {
    margin-left: 9px;
}
.single .social-link {
    cursor: pointer;
}
.single .related-posts {
    font-family: "Sora", sans-serif;
    font-style: normal;
    margin-bottom: 60px;
}
.single .related-posts .related-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    color: #FF3300;
}
.single .related-posts .posts .related-post {
    border-bottom: 1.4px solid #D3D9DC;
    margin-bottom: 12px;
}
.single .related-posts .posts .related-post .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.25px;
    color: #012A38;
    text-decoration: none;
    margin-top: 4px;
    margin-bottom: 8px;
    display: block;
    transition: all 0.3s;
}
.single .related-posts .posts .related-post .title:hover {
    transition: all 0.3s;
    color: #f30 !important;
}
.single .related-posts .posts .related-post .read-in {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(1, 42, 56, 0.8);
    margin-bottom: 12px;
}
.single .related-posts .posts .related-post:last-child {
    border-bottom: 0;
}
.single .newsletter {
    display: none;
}
.single #colophon .newsletter-bottom-single .title {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.0025em;
}
.single #colophon .newsletter-bottom-single .description {
    font-size: 14px;
    line-height: 18px;
    color: #C3C3C3;
}
.single #colophon .newsletter-bottom-single .hbspt-form input[name=email] {
    border-radius: 4px;
}
.single #colophon .newsletter-bottom-single .hbspt-form .actions:after {
    content: unset;
}
.single #colophon .newsletter-bottom-single .hbspt-form .actions input[type=submit] {
    padding: 16px 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    height: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.single #colophon .middle-row .close-middle-section {
    position: relative;
    left: 20px;
    cursor: pointer;
}
.single #colophon .middle-row .close-middle-section img {
    min-width: 19px;
    min-height: 19px;
}
@media screen and (max-width: 1024px) {
    .single .post-author-bottom .description-full,
    .single .related-posts,
    .single .sidebar,
    .single .sidebar-widget {
        display: none;
    }
    .single .content {
        margin-bottom: 60px;
        max-width: 100%;
    }
    .single .author-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .single #colophon .middle-row {
        display: none;
    }
    .single #colophon .newsletter {
        display: block;
    }
}

body.search #primary > .container {
    margin-top: 50px;
}
body.search #primary > .container .search-title {
    margin-bottom: 50px;
}
body.search #primary > .container .navigation {
    display: none;
}
body.search #primary > .container .navigation.show-navigation {
    display: flex;
}

@media screen and (min-width: 1025px) {
    body.author #masthead {
        height: 128px;
        transition: all 0.3s;
    }
    body.author #masthead.scroll_init {
        transition: all 0s !important;
    }
    body.author #masthead.scroll_init #secondary:not(.widget-area) {
        transition: all 0s !important;
        visibility: hidden;
        height: 0;
        overflow: hidden;
    }
    body.author #masthead .primary-menu-row {
        position: relative;
        z-index: 1;
        background: #012A38;
    }
    body.author #masthead.scroll_down {
        height: 64px;
    }
    body.author #masthead.scroll_down #secondary:not(.widget-area) {
        transform: translateY(-65px);
        position: relative;
        z-index: 0;
    }
}
@media screen and (max-width: 1024px) {
    body.author .feature-right-content.taxonomy {
        margin-bottom: 40px;
    }
}

.author.tax-featured .text-content {
    display: inline-flex;
    max-width: 489px;
    margin-top: 0;
}
.author.tax-featured .text-content .title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 12px;
}
.author.tax-featured .text-content .author-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.25px;
    color: #EFEFEF;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.author.tax-featured .text-content .description-full,
.author.tax-featured .text-content .description-full p {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.25px;
    color: #92A1A8;
    max-height: 200px;
    max-width: 400px;
    margin-bottom: 12px;
    overflow: auto;
}
.author.tax-featured .text-content .description-full p,
.author.tax-featured .text-content .description-full p p {
    overflow: visible;
}
.author.tax-featured .text-content .description-full::-webkit-scrollbar,
.author.tax-featured .text-content .description-full p::-webkit-scrollbar {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 5px;
}
.author.tax-featured .text-content .description-full::-webkit-scrollbar-thumb,
.author.tax-featured .text-content .description-full p::-webkit-scrollbar-thumb {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #D3D9DC;
    border-radius: 12px;
}
.author.tax-featured .text-content .description-full::-webkit-scrollbar-thumb:hover,
.author.tax-featured .text-content .description-full p::-webkit-scrollbar-thumb:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #D3D9DC;
}
.author.tax-featured .text-content .social-share-buttons {
    margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
    .author.tax-featured .col-6 {
        flex: unset;
        width: initial;
    }
}
.author.tax-featured .image-content {
    margin: 0;
}
.author.tax-featured .image-content.post-author-bottom {
    background: unset;
    box-shadow: unset;
    display: block;
    width: initial;
}
.author.tax-featured .image-content.post-author-bottom .author-img {
    width: 270px;
    height: 270px;
    max-height: 100%;
    max-width: 100%;
    position: relative;
    margin: 50px 32px 50px auto;
}
.author.tax-featured .image-content.post-author-bottom .author-img img {
    height: 100%;
    display: block;
    margin-top: 0;
}
.author.tax-featured .image-content.post-author-bottom .author-img svg {
    bottom: 0;
}
.author.tax-featured .image-content.post-author-bottom .author-img svg.mobile {
    display: none;
}
@media screen and (max-width: 1024px) {
    .author.tax-featured {
        flex-direction: row;
        padding: 20px 0;
    }
    .author.tax-featured .image-content {
        position: unset;
    }
    .author.tax-featured .image-content.post-author-bottom .author-img {
        position: unset;
        margin: auto;
        padding-right: 20px;
    }
    .author.tax-featured .image-content.post-author-bottom .author-img img {
        -o-object-fit: contain;
           object-fit: contain;
    }
    .author.tax-featured .text-content .title {
        font-size: 20px;
        line-height: 28px;
        color: white;
        margin-bottom: 4px;
    }
    .author.tax-featured .text-content .author-description {
        font-size: 12px;
        line-height: 16px;
        overflow: initial;
        display: block;
        margin-bottom: 4px;
    }
    .author.tax-featured .text-content .description-full,
    .author.tax-featured .text-content .description-full p {
        font-size: 12px;
        line-height: 16px;
        color: #A2C1C4;
        margin-bottom: 22px;
    }
    .author.tax-featured .text-content .social-share-buttons {
        margin-bottom: 0;
    }
    .author.tax-featured .text-content .social-share-buttons .social {
        margin-right: 10px;
    }
    .author.tax-featured .text-content .social-share-buttons .social svg {
        width: 18px;
        height: 18px;
    }
}

.author-middle-section {
    font-family: "Sora", sans-serif;
    font-style: normal;
    margin-bottom: 96px;
    margin-top: 96px;
}
.author-middle-section .col-6 {
    max-height: 422px;
}
.author-middle-section .col-6.bg-primary {
    display: flex;
    align-items: center;
    justify-content: center;
}
.author-middle-section .col-6 .text-content {
    display: inline-flex;
    flex-direction: column;
    max-width: 85%;
}
.author-middle-section .col-6 .text-content .title {
    font-size: 32px;
    line-height: 42px;
    color: #FFFFFF;
    margin-bottom: 14px;
}
.author-middle-section .col-6 .text-content .description {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.25px;
    color: #D3D9DC;
    margin-bottom: 40px;
}
.author-middle-section .col-6 .text-content .btn-secondary {
    margin-right: 32px;
}
.author-middle-section .middle-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
@media screen and (max-width: 1024px) {
    .author-middle-section {
        display: none;
    }
}

/**
 * Footer
 */
#colophon {
    /**
     * Social buttons
     */
}
#colophon .title {
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 4px;
}
#colophon .description {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #D3D9DC;
    margin-bottom: 32px;
}
#colophon .hbspt-form {
    width: 100%;
}
#colophon .hbspt-form .hs_email .input::before {
    background-image: url("data:image/svg+xml,%3Csvg width='26' height='17' viewBox='0 0 26 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.6538 0.0986328H2.96154C1.604 0.0986328 0.5 1.20386 0.5 2.56017V13.6371C0.5 14.9946 1.604 16.0986 2.96154 16.0986H22.6538C24.0114 16.0986 25.1154 14.9946 25.1154 13.6371V2.56017C25.1154 1.20386 24.0114 0.0986328 22.6538 0.0986328ZM20.3314 2.56017L12.8077 7.26294L5.284 2.56017H20.3314ZM2.96154 13.6371V4.01125L12.1554 9.75771C12.3548 9.88202 12.5812 9.94479 12.8077 9.94479C13.0342 9.94479 13.2606 9.88202 13.46 9.75771L22.6538 4.01125L22.6551 13.6371H2.96154Z' fill='white'/%3E%3C/svg%3E");
}
#colophon .hbspt-form .hs_email .hs-error-msgs {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
}
#colophon .hbspt-form input[name=email] {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    color-scheme: dark;
}
#colophon .hbspt-form .actions input[type=submit] {
    background: #BFF90B;
    border-radius: 4px;
    color: #012A38;
    border-color: #BFF90B;
}
#colophon .hbspt-form .actions input[type=submit]:hover {
    background: transparent;
    color: #BFF90B;
    border-color: #BFF90B;
}
#colophon .hbspt-form .actions::after {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33398 1.20703L13.334 6.20703M13.334 6.20703L8.33398 11.207M13.334 6.20703L1.33398 6.20703' stroke='%23012A38' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
#colophon .hbspt-form .actions:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33398 1.20703L13.334 6.20703M13.334 6.20703L8.33398 11.207M13.334 6.20703L1.33398 6.20703' stroke='%23BFF90B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
#colophon .hbspt-form .hs_error_rollup {
    display: none;
}
#colophon .newsletter {
    background-color: #012A38;
    padding: 86px 0 86px;
}
#colophon .newsletter .footer-one {
    margin: auto;
    display: flex;
    justify-content: center;
    max-width: 550px;
}
#colophon .newsletter .footer-one.widget_nav_menu {
    margin-top: 40px;
    max-width: 650px;
}
#colophon .newsletter .footer-one .title {
    font-size: 36px;
    line-height: 48px;
}
#colophon .newsletter .footer-one.widget_nav_menu .menu-footer-news-section-container {
    width: 100%;
    margin: 0 18px;
}
#colophon .newsletter .footer-one.widget_nav_menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    list-style: square;
}
@media screen and (min-width: 1025px) {
    #colophon .newsletter .footer-one.widget_nav_menu ul li {
        position: relative;
        left: 15px;
    }
}
#colophon .newsletter .footer-one.widget_nav_menu ul li::marker {
    color: rgba(211, 217, 220, 0.8);
}
#colophon .newsletter .footer-one.widget_nav_menu ul li a {
    font-family: "Sora", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.25px;
    color: rgba(211, 217, 220, 0.8);
    text-decoration: none;
    display: block;
    transform: translateX(-15px);
    padding-left: 15px;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    #colophon .newsletter .footer-one .title {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.0025em;
    }
    #colophon .newsletter .description {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.25px;
        color: #969696;
    }
    #colophon .newsletter .hbspt-form {
        margin-bottom: 0px;
    }
    #colophon .newsletter .hbspt-form .hs_email .input input[name=email] {
        padding: 5px 34px;
        height: 45px;
    }
    #colophon .newsletter .hbspt-form .hs_email .input::before {
        background-size: 14px 9px;
        width: 37px;
    }
    #colophon .newsletter .hbspt-form .actions {
        display: flex;
    }
    #colophon .newsletter .hbspt-form .actions input[type=submit] {
        font-size: 0;
        padding: 0;
        height: 100%;
        width: 35px;
    }
    #colophon .newsletter .hbspt-form .actions::after {
        right: 50%;
        transform: translate(50%, -50%);
        width: 7px;
        background-size: 7px 5px;
        height: 5px;
    }
    #colophon .newsletter {
        padding: 40px 0 40px;
    }
    #colophon .newsletter .footer-one.widget_nav_menu ul {
        grid-template-columns: 1fr 1fr;
    }
    #colophon .newsletter .footer-one.widget_nav_menu ul li a {
        font-family: "Inter", sans-serif;
        font-size: 12px;
        line-height: 16px;
        color: #969696;
    }
}
#colophon .middle-row {
    position: fixed;
    bottom: 0px;
    display: block;
    background-color: #012A38;
    padding: 30px 0 24px 0;
    z-index: 5;
    width: 100%;
    transition: all 0.3s;
}
#colophon .middle-row > .container {
    display: grid;
}
#colophon .middle-row .title,
#colophon .middle-row .description {
    text-align: left;
}
#colophon .middle-row .description {
    margin: 0;
}
#colophon .middle-row .wp-block-group,
#colophon .middle-row .hbspt-form {
    width: 100%;
    margin: 0;
}
#colophon .socila-row {
    font-family: "Sora", sans-serif;
    font-style: normal;
    background-color: #EFEFEF;
    padding: 80px 0;
    font-size: 14px;
    font-weight: 500;
}
#colophon .socila-row .social-icons-row {
    margin-bottom: 32px;
}
#colophon .socila-row .social-icons-row .wp-block-image.size-large a {
    display: flex;
}
#colophon .socila-row .social-icons-row .wp-block-image.size-large a img {
    height: 24px;
    width: auto;
}
#colophon .socila-row .social-icons-block .icon {
    margin-right: 28px;
}
#colophon .socila-row .social-icons-block .icon:last-child {
    margin-right: 0;
}
#colophon .socila-row .copyright {
    font-family: "Sora", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    margin-right: 91px;
    line-height: 20px;
    letter-spacing: -0.0025em;
    color: #012A38;
}
#colophon .socila-row #menu-footer-menu {
    display: flex;
    line-height: 20px;
    letter-spacing: -0.0025em;
}
#colophon .socila-row #menu-footer-menu li {
    border-right: 2px solid #012A38;
    padding: 0 10px;
}
#colophon .socila-row #menu-footer-menu li:last-child {
    border: 0;
    padding-right: 0;
}
#colophon .socila-row #menu-footer-menu li a {
    color: #012A38;
    text-decoration: none;
}
@media screen and (max-width: 1024px) {
    #colophon .socila-row {
        background-color: #012A38;
        padding: 29px 0;
    }
    #colophon .socila-row .is-content-justification-space-between:not(.social-icons-row),
    #colophon .socila-row .wp-block-image {
        display: none;
    }
    #colophon .socila-row .social-icons-row {
        margin-bottom: 0px;
    }
    #colophon .socila-row .social-icons-block {
        margin: auto;
    }
    #colophon .socila-row .social-icons-block .icon {
        background: #A2C1C4;
        padding: 7px;
        border-radius: 50px;
    }
    #colophon .socila-row .social-icons-block .icon img {
        width: 15px;
        height: 15px;
        -o-object-fit: contain;
           object-fit: contain;
    }
}

.author #colophon {
    padding-bottom: 30px;
    background: #012A38;
    margin-top: 80px;
}
.author #colophon .socila-row {
    padding: 0;
    background: unset;
}
.author #colophon .socila-row .footer-two .social-icons-row {
    justify-content: flex-end !important;
    margin-bottom: 0;
}
.author #colophon .socila-row .footer-two .social-icons-row .icon {
    background: #a2c1c4;
    padding: 7px;
    border-radius: 50px;
}
.author #colophon .socila-row .footer-two .social-icons-row .icon img {
    width: 15px;
    height: 15px;
    -o-object-fit: contain;
       object-fit: contain;
}
.author #colophon .socila-row .footer-two .wp-block-image {
    display: none;
}
.author #colophon .socila-row .footer-two:last-child {
    display: none;
}

/**
 * Views
 */
