html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

p {
    color: inherit;
}

.sg-line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sg-line-clamp.sg-v1 {
    -webkit-line-clamp: 1;
}

.sg-line-clamp.sg-v2 {
    -webkit-line-clamp: 2;
}

.sg-line-clamp.sg-v3 {
    -webkit-line-clamp: 3;
}

.sg-line-clamp.sg-v4 {
    -webkit-line-clamp: 4;
}

.sg-line-clamp.sg-v5 {
    -webkit-line-clamp: 5;
}

.alignnone, .aligncenter, .alignleft, .alignright {
    max-width: 100%;
    height: auto;
}

.alignleft {
    float: left;
    margin: 0.5em 1em 0.5em 0;
}

.alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.size-thumbnail, .size-medium, .size-large, .size-full {
    max-width: 100%;
    height: auto;
}

.wp-caption img {
    display: inline;
}

.wp-caption-text {
    padding: 10px;
    color: #fff;
    background: #333333;
}

/*font sizes*/
.sg-font-size-smallest {
    font-size: 14px !important;
}

.sg-font-size-smallest p {
    font-size: 14px !important;
}

.sg-font-size-small {
    font-size: 16px !important;
}

.sg-font-size-small p {
    font-size: 16px !important;
}

.sg-font-size-md {
    font-size: 20px !important;
}

.sg-font-size-md p {
    font-size: 20px !important;
}

.sg-font-size-lg {
    font-size: 34px !important;
}

.sg-font-size-lg p {
    font-size: 34px !important;
}

.font-size-small {
    font-size: small !important;
}

.font-size-smaller {
    font-size: smaller !important;
}

.font-size-xsmall {
    font-size: x-small !important;
}

.font-size-large {
    font-size: large !important;
}

.font-size-larger {
    font-size: larger !important;
}

.font-size-xlarge {
    font-size: x-large !important;
}

.skip-to-content-link {
    left: 2%;
    top: -1%;
    border-radius: 0 0 10px 10px;
    padding: 13px;
    transform: translateY(-100%);
    transition: transform 0.3s;
    background: #fff12d;
}

.skip-to-content-link:focus {
    transform: translateY(0%);
}

.accessibleBtn-play {
    width: 115px;
}

.accessibleBtn-play:after {
    color: inherit;
    content: "\f04b";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    font-style: normal;
    text-align: right;
    float: right;
}

.accessibleBtn-pause {
    width: 115px;
}

.accessibleBtn-pause:after {
    color: inherit;
    content: "\f04c";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    font-style: normal;
    text-align: right;
    float: right;
}

/* Underline styles */
.sg-hover-underline {
    display: block;
    position: relative;
    padding: 0.2em 0.3em;
    transition: 0.3s;
    overflow: hidden;
    text-decoration: none;
}

/* Fade in */
.sg-hover-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: #d13902;
    opacity: 0;
    transition: 500ms;
}

.sg-hover-underline:hover,
.sg-hover-underline:focus {
    background: #ffffff;
    padding: 4px;
}

.sg-hover-underline:hover i,
.sg-hover-underline:focus i {
    color: black !important;
}

.sg-hover-underline:hover::after,
.sg-hover-underline:focus::after {
    opacity: 1;
    transform: translate3d(0, 0.2em, 0);
}

.sg-hover-underline::after {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
}

.sg-hover-underline:hover::after,
.sg-hover-underline:focus::after {
    transform: translate3d(0, 0, 0);
}

/* ----------------------------------------------
 * Generated by Animista on 2023-10-26 9:46:27
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.heartbeat:hover {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

#sgbc_menu {
    width: 100%;
}

.img-fluid, img {
    max-width: 100%;
    height: auto;
}

.playpausebtns button {
    font-weight: 700;
}

.playpausebtns-playing .accessibleBtn-play {
    display: none;
}

.playpausebtns-playing .accessibleBtn-pause {
    display: block;
}

.playpausebtns-paused .accessibleBtn-play {
    display: block;
}

.playpausebtns-paused .accessibleBtn-pause {
    display: none;
}

ul ::marker {
    color: #d13902;
}

.nav-item::marker {
    content: "" !important;
}

.ratio-9x16 {
    --bs-aspect-ratio: calc(16 / 9 * 100%);
}
p a {
    color: #d13902 !important;
    text-decoration: underline !important;
}
