/* Services Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-448 {
        z-index: 1;
        overflow: hidden;
        position: relative;
        background: var(--bg01);
        padding: var(--sectionPadding);
    }
    #services-448 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        align-items: center;
        max-width: 34.375rem;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services-448 .cs-content {
        width: 100%;
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
    }
    #services-448 .cs-text {
        max-width: 65ch;
    }
    #services-448 .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        row-gap: clamp(1.5rem, 5vw, 3.75rem);
        column-gap: clamp(1rem, 1.5vw, 1.25rem);
    }
    #services-448 .cs-item {
        width: 100%;
        display: flex;
        list-style: none;
        padding-top: 9rem;
        max-width: 25.75rem;
        /* max-width: 22.5rem; */
        position: relative;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    #services-448 .cs-item:hover .cs-picture img {
        opacity: 0.4;
        transform: scale(1.2);
    }
    #services-448 .cs-item:hover .cs-flex:before {
        opacity: 1;
    }
    #services-448 .cs-picture {
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        display: block;
        overflow: hidden;
        height: 15.625rem;
        position: absolute;
        border-radius: 0.75rem; 
        background: var(--primary);
    }
    #services-448 .cs-picture img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        object-position: top;
        transition:
        transform 0.9s,
        opacity 0.5s;
    }
    #services-448 .cs-flex {
        width: 88%;
        display: flex;
        text-align: center;
        position: relative;
        align-items: center;
        box-sizing: border-box;
        flex-direction: column;
        border-radius: 0.75rem; 
        justify-content: center;
        background: var(--itemColor);
        padding: 0 1.5rem 1.5rem 1.5rem;
        border: 1px solid var(--borderColor);
        box-shadow: 0px 24px 54px rgba(87, 107, 147, 0.12);
    }
    #services-448 .cs-flex:before {
        /* hover border box */
        top: -1px;
        opacity: 0;
        left: -1px;
        content: "";
        right: -1px;
        bottom: -1px;
        display: block;
        position: absolute;
        pointer-events: none;
        box-sizing: border-box;
        border-radius: 0.75rem; 
        background: transparent;
        transition: opacity 0.5s;
        border: 4px solid var(--primary);
    }
    #services-448 .cs-wrapper {
        z-index: 10;
        display: flex;
        border-radius: 50%;
        position: relative;
        align-items: center;
        box-sizing: border-box;
        justify-content: center;
        background: var(--itemColor);
        border: 4px solid var(--primary);
        width: clamp(5rem, 9.2vw, 7.5rem);
        height: clamp(5rem, 9.2vw, 7.5rem);
        margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
        margin-top: calc(clamp(5rem, 9.2vw, 7.5rem) * -0.5);
    }
    #services-448 .cs-icon {
        height: auto;
        display: block;
        width: clamp(3rem, 4.3vw, 4rem);
    }
    #services-448 .cs-h3 {
        font-weight: 700;
        line-height: 1.2em;
        margin: 0 0 0.5rem 0;
        color: var(--headerColor);
        font-size: clamp(1.25rem, 1.9vw, 1.5625rem);
    }
    #services-448 .cs-item-text {
        font-weight: 400;
        line-height: 1.5em;
        color: var(--bodyTextColor);
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
    }
    #services-448 .cs-link {
        margin: 0;
        font-weight: 700;
        line-height: 1.5em;
        position: relative;
        text-decoration: none;
        color: var(--primary);
        display: inline-block;
        text-transform: uppercase;
        font-family: var(--subFont);
        font-size: clamp(1rem, 1.5vw, 1.25rem);
    }
    #services-448 .cs-link:hover:before {
        width: 100%;
    }
    #services-448 .cs-link:before {
        /* animated underline */
        left: 0;
        width: 0%;
        opacity: 1;
        content: "";
        height: 3px;
        display: block;
        bottom: -0.125rem;
        position: absolute;
        transition: width 0.3s;
        background: currentColor;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-448 .cs-container {
        max-width: 90rem;
    }
    #services-448 .cs-card-group {
        flex-direction: row;
    }
    #services-448 .cs-item {
        width: 47%;
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #services-448 .cs-topper {
        color: var(--secondary);
    }
    body.dark-mode #services-448 .cs-flex:before {
        /* hover border box */
        border: 4px solid var(--secondary);
    }
    body.dark-mode #services-448 .cs-wrapper {
        border: 4px solid var(--secondary);
    }
    body.dark-mode #services-448 .cs-link {
        color: var(--secondary);
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-448 .cs-card-group {
        flex-wrap: nowrap;
    }
    #services-448 .cs-item {
        width: 100%;
        padding-top: clamp(9rem, 17.5vw, 17.125rem);
    }
    #services-448 .cs-picture {
        height: clamp(14rem, 28vw, 26.75rem);
    }
}
/* About Us Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-311 {
        background: var(--bg04);
        padding: var(--sectionPadding);
    }
    #sbs-311 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 80rem;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sbs-311 .cs-content {
        width: 100%;
        display: flex;
        text-align: left;
        max-width: 33.875rem;
        flex-direction: column;
        align-items: flex-start;
    }
    /* #sbs-311 .cs-topper {
    color: var(--primary)
    } */
    #sbs-311 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-311 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-311 .cs-image-group {
        height: 39.75em;
        width: 39.4375em;
        position: relative;
        font-size: min(2.31vw, 0.7em);
    }
    #sbs-311 .cs-picture {
        display: block;
        overflow: hidden;
        position: absolute;
        border-radius: 0.75rem;
    }
    #sbs-311 .cs-picture img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.25rem;
        position: absolute;
    }
    #sbs-311 .cs-picture1 {
        top: 0;
        left: 0;
        width: 32.625em;
        height: 36.3125em;
    }
    #sbs-311 .cs-picture2 {
        right: 0;
        bottom: 0;
        height: 25em;
        width: 25.875em;
        background: #FFF;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px;
        border: clamp(0.375em, 1.5vw, 0.75em) solid #FFF;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-311 .cs-container {
        gap: 3.25rem;
        flex-flow: row;
        justify-content: space-between;
    }
    #sbs-311 .cs-image-group {
        font-size: min(1.2vw, 1em);
        flex: none;
    }
    #sbs-311 .cs-content {
        margin: 0;
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #sbs-311 .cs-topper {
        color: var(--secondary)
    }
}
/* Content Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #blog-1144 {
        z-index: 1;
        position: relative;
        background: var(--bg01);
        padding: var(--sectionPadding);
    }
    #blog-1144 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 49rem;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #blog-1144 .cs-content {
        width: 100%;
        display: flex;
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
    }
    #blog-1144 .cs-title {
        max-width: 20ch;
    }
    #blog-1144 .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        gap: 1.25rem;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
    }
    #blog-1144 .cs-item {
        z-index: 1;
        display: flex;
        text-align: left;
        list-style: none;
        overflow: hidden;
        position: relative;
        border-radius: 1rem;
        grid-column: span 12;
        flex-direction: column;
        background: var(--bg04);
        justify-content: space-between;
        border: 1px solid var(--itemColor);
        transition:
        box-shadow 0.3s,
        transform 0.3s;
    }
    #blog-1144 .cs-item:hover {
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    #blog-1144 .cs-item:hover .cs-picture img {
        opacity: 0.3;
        transform: scale(1.1);
    }
    #blog-1144 .cs-picture {
        flex: none;
        z-index: 1;
        width: 100%;
        height: 15rem;
        display: block;
        overflow: hidden;
        position: relative;
        background-color: #1a1a1a;
        border-bottom: 4px solid var(--primary);
    }
    #blog-1144 .cs-picture img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        transition:
        transform 0.6s,
        opacity 0.3s;
    }
    #blog-1144 .cs-flex {
        z-index: 2;
        height: 100%;
        display: flex;
        padding: 1.5rem;
        position: relative;
        box-sizing: border-box;
        flex-direction: column;
        align-items: flex-start;
    }
    #blog-1144 .cs-date {
        margin: 0;
        z-index: 2;
        left: 1.5rem;
        bottom: 100%;
        color: #FFF;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.2em;
        position: absolute;
        text-align: inherit;
        padding: 0.5rem 1rem;
        display: inline-block;
        box-sizing: border-box;
        background: var(--primary);
        font-family: var(--subFont);
        border-radius: 0.5rem 0.5rem 0 0;
    }
    #blog-1144 .cs-h3 {
        font-weight: 700;
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: inherit;
        margin: 0 0 0.75rem 0;
        transition: color 0.3s;
        color: var(--headerColor);
    }
    #blog-1144 .cs-item-text {
        line-height: 1.5em;
        text-align: inherit;
        margin: 0 0 1.25rem;
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        color: var(--bodyTextColor);
    }
    #blog-1144 .cs-link {
        display: flex;
        font-size: 1rem;
        font-weight: 700;
        margin-top: auto;
        line-height: 1.2em;
        align-items: center;
        text-decoration: none;
        color: var(--primary);
        justify-content: center;
    }
    #blog-1144 .cs-link:hover .cs-arrow {
        transform: translateX(0.25rem);
    }
    #blog-1144 .cs-arrow {
        height: auto;
        width: 1.25rem;
        transition: transform 0.3s;
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #blog-1144 .cs-topper {
        color: var(--secondary);
    }
    body.dark-mode #blog-1144 .cs-link {
        color: var(--secondary);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #blog-1144 .cs-container {
        max-width: 80rem;
    }
    #blog-1144 .cs-content {
        text-align: left;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    #blog-1144 .cs-title {
        margin: 0;
    }
    #blog-1144 .cs-item {
        grid-column: span 4;
    }
}
/* Puerto Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbsr-333 {
        background: var(--bg04);
        padding: var(--sectionPadding);
    }
    #sbsr-333 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        align-items: center;
        max-width: 34.375rem;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sbsr-333 .cs-content {
        width: 100%;
        display: flex;
        text-align: left;
        max-width: 32.625rem;
        flex-direction: column;
        align-items: flex-start;
    }
    #sbsr-333 .cs-text {
        margin-bottom: 1rem;
    }
    #sbsr-333 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbsr-333 .cs-image-group {
        width: 42.875em;
        height: 41.125em;
        position: relative;
        transform: scaleX(-1);
        font-size: min(2.08vw, .791em);
    }
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3em);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2em);
        }
        100% {
            transform: translateY(0);
        }
    }
    #sbsr-333 .cs-image-group:before {
        left: 0em;
        opacity: 1;
        content: "";
        z-index: 10;
        width: 7.5em;
        height: 7.5em;
        display: block;
        bottom: 6.25em;
        border-radius: 50%;
        position: absolute;
        animation-duration: 6s;
        background: var(--primary);
        animation-fill-mode: forwards;
        animation-name: floatAnimation;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }
    #sbsr-333 .cs-image-group:after {
        top: 0em;
        opacity: 1;
        content: "";
        z-index: -1;
        right: 6.25em;
        width: 9.375em;
        display: block;
        height: 9.375em;
        border-radius: 50%;
        position: absolute;
        animation-delay: 0.2s;
        animation-duration: 4s;
        background: var(--secondary);
        animation-fill-mode: forwards;
        animation-name: floatAnimation2;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }
    #sbsr-333 .cs-picture {
        top: 0;
        left: 0;
        display: block;
        width: 39.375em;
        height: 39.375em;
        overflow: hidden;
        border-radius: 50%;
        position: absolute;
        border: clamp(6px, 1.2vw, 12px) solid var(--borderColor);
    }
    #sbsr-333 .cs-picture img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        transform: scaleX(-1);
    }
    #sbsr-333 .cs-box {
        right: 0;
        bottom: 0;
        gap: 0.25rem;
        display: flex;
        width: 15.8125em;
        height: 15.8125em;
        border-radius: 50%;
        position: absolute;
        align-items: center;
        transform: scaleX(-1);
        flex-direction: column;
        justify-content: center;
        background-color: var(--secondary);
        border: clamp(6px, 1.2vw, 12px) solid var(--borderColor);
    }
    #sbsr-333 .cs-number {
        font-weight: bold;
        line-height: 1.2em;
        text-align: center;
        color: var(--bodyTextColorWhite);
        font-size: clamp(2rem, 5vw, 3.8125rem);
    }
    #sbsr-333 .cs-desc {
        line-height: 1.2em;
        text-align: center;
        max-width: 7.8125rem;
        color: var(--bodyTextColorWhite);
        font-size: clamp(0.875rem, 2.2vw, 1.5625rem);
    }
    #sbsr-333 .shadow {
        left: 50%;
        height: 0px;
        bottom: -2.5em;
        width: 29.875em;
        position: absolute;
        border-radius: 478px;
        backdrop-filter: blur(2px);
        transform: translateX(-55%);
        box-shadow: 0px 4px 50px 5px rgba(0, 0, 0, 0.5);
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #sbsr-333 .cs-topper {
        color: var(--secondary);
    }
}
@media only screen and (min-width: 64rem) {
    #sbsr-333 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    #sbsr-333 .cs-content {
        width: 50%;
    }
    #sbsr-333 .cs-image-group {
        order: 2;
        font-size: min(1.2vw, 1em);
    }
}
/* Stats Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #stats-5 {
        z-index: 1;
        position: relative;
        background: var(--bg01);
        padding: var(--sectionPadding);
    }
    #stats-5 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 80rem;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #stats-5 .cs-content {
        width: 100%;
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
    }
    #stats-5 .cs-title {
        color: var(--bodyTextColorWhite);
    }
    #stats-5 .cs-text {
        opacity: 0.8;
        color: var(--bodyTextColorWhite);
    }
    #stats-5 .cs-card-group {
        margin: 0;
        width: 100%;
        display: flex;
        gap: 3.4375em;
        flex-wrap: wrap;
        padding: 0 1.25rem;
        max-width: 31.25rem;
        align-items: center;
        flex-direction: column;
        box-sizing: border-box;
        border-radius: 0.75rem;
        background: var(--itemColor);
        justify-content: space-around;
        padding-bottom: clamp(3rem, 6.5vw, 5rem);
        border-top: 8px solid var(--primaryLight);
        padding-top: clamp(2.5rem, 5.7vw, 4.25rem);
        box-shadow: 0px 24px 54px rgba(87, 107, 147, 0.12);
    }
    #stats-5 .cs-item {
        width: 100%;
        list-style: none;
        text-align: center;
    }
    #stats-5 .cs-number {
        display: block;
        font-weight: 700;
        line-height: 1.2em;
        color: var(--primary);
        font-size: clamp(2.4375rem, 4.7vw, 3.8125rem);
        margin-bottom: clamp(0.25rem, 0.78vw, 0.5rem);
    }
    #stats-5 .cs-header {
        font-weight: 700;
        line-height: 1.2em;
        color: var(--headerColor);
        font-size: clamp(1rem, 2vw, 1.5625rem);
    }
    #stats-5 .cs-background {
        top: 0;
        left: 0;
        width: 100%;
        height: 65%;
        z-index: -1;
        display: block;
        position: absolute;
    }
    #stats-5 .cs-background:before {
        /* Overlay */
        top: 0;
        left: 0;
        z-index: 1;
        content: "";
        width: 100%;
        height: 100%;
        opacity: 0.8;
        display: block;
        position: absolute;
        background: #1A1A1A;
    }
    #stats-5 .cs-background img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #stats-5 .cs-topper {
        color: var(--secondary);
    }
}
/* In-between - 500px */
@media only screen and (min-width: 31.25rem) {
    #stats-5 .cs-card-group {
        gap: 0;
        flex-wrap: wrap;
        row-gap: 3.4375rem;
        flex-direction: row;
        align-items: center;
        column-gap: 6.25rem;
        justify-content: center;
    }
    #stats-5 .cs-item {
        /* sets even spacing */
        width: 7.8125rem;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #stats-5:before {
        height: 37.5%;
    }
    #stats-5 .cs-card-group {
        row-gap: 0;
        column-gap: 0;
        max-width: 100%;
        justify-content: space-around;
    }
    #stats-5 .cs-item {
        /* reset width */
        width: auto;
    }
}
/* Big Desktop Parallax Effect - 1300px */
@media only screen and (min-width: 81.25rem) {
    #stats-5 .cs-background {
        background: url("../img/hero.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    #stats-5 .cs-background img {
        display: none;
    }
}
/* Gallery Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-1446 {
        padding: var(--sectionPadding);
        background: var(--bg01);
        padding-top: 1rem;
    }
    #gallery-1446 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 80rem;
        position: relative;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-1446 .cs-gallery {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        position: relative;
        gap: clamp(1rem, 1.5vw, 1.25rem);
        grid-template-columns: repeat(auto-fit, minmax(19.0625rem, 1fr));
    }
    #gallery-1446 .cs-image {
        display: block;
        overflow: hidden;
        position: relative;
        border-radius: 0.75rem;
        min-height: clamp(16.25rem, 60vw, 20rem);
    }
    #gallery-1446 .cs-image img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
}
/* Where is Puerto Section */
@media only screen and (min-width: 0rem) {
    #sbs-336 {
        background: var(--bg01);
        padding: var(--sectionPadding);
    }
    #sbs-336 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        align-items: center;
        max-width: 34.375rem;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sbs-336 .cs-content {
        width: 100%;
        display: flex;
        text-align: left;
        max-width: 32.625rem;
        flex-direction: column;
        align-items: flex-start;
    }
    #sbs-336 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-336 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-336 .cs-image-group {
        height: 42em;
        width: 42.875em;
        position: relative;
        font-size: min(2.08vw, .791em);
    }
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2em);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-1em);
        }
        100% {
            transform: translateY(0);
        }
    }
    #sbs-336 .cs-image-group:before {
        left: 0em;
        opacity: 1;
        content: "";
        z-index: 10;
        width: 7.5em;
        height: 7.5em;
        display: block;
        bottom: 6.25em;
        border-radius: 50%;
        position: absolute;
        animation-duration: 6s;
        background: var(--secondary);
        animation-fill-mode: forwards;
        animation-name: floatAnimation;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }
    #sbs-336 .cs-picture {
        display: block;
        overflow: hidden;
        border-radius: 50%;
        position: absolute;
        border: clamp(6px, 1.2vw, 12px) solid var(--borderColor);
    }
    #sbs-336 .cs-picture img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
    #sbs-336 .cs-picture1 {
        width: 42em;
        height: 42em;
        top: -0.75em;
        left: -0.75em;
    }
    #sbs-336 .cs-picture2 {
        top: -0.75em;
        width: 12.5em;
        left: -0.75em;
        height: 12.5em;
        animation-duration: 20s;
        animation-fill-mode: forwards;
        animation-name: floatAnimation2;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }
    #sbs-336 .cs-picture3 {
        width: 18.75em;
        right: -0.75em;
        height: 18.75em;
        bottom: -0.75em;
        animation-delay: 1s;
        animation-duration: 13s;
        animation-fill-mode: forwards;
        animation-name: floatAnimation;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }
    #sbs-336 .shadow {
        left: 50%;
        height: 0px;
        bottom: -2.5em;
        width: 29.875em;
        position: absolute;
        border-radius: 478px;
        backdrop-filter: blur(2px);
        transform: translateX(-55%);
        box-shadow: 0px 4px 50px 5px rgba(0, 0, 0, 0.5);
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #sbs-336 .cs-topper {
        color: var(--secondary);
    }
}
@media only screen and (min-width: 64rem) {
    #sbs-336 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    #sbs-336 .cs-image-group {
        flex: none;
        font-size: min(1.2vw, 1em);
    }
    #sbs-336 .cs-content {
        width: 50%;
    }
}
/* Content Flair Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #list-1186 {
        margin: 0;
        padding: 0;
        width: 100%;
        gap: 1.5rem;
        display: flex;
        max-width: 39.375rem;
        flex-direction: column;
        align-items: flex-start;
    }
    #list-1186 .cs-li {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: flex-start;
        justify-content: flex-start;
        font-family: var(--bodyFont);
        gap: clamp(1rem, 2.5vw, 1.25rem);
        
    }
    #list-1186 .cs-li-picture {
        margin: 0;
        flex: none;
        display: flex;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        background: var(--bg04);
        transition: transform 0.3s;
        width: clamp(3.75rem, 6vw, 5rem);
        height: clamp(3.75rem, 6vw, 5rem);
    }
    #list-1186 .cs-li-picture:hover {
        transform: scale(1.1);
    }
    #list-1186 .cs-li-icon {
        height: auto;
        display: block;
        width: clamp(1.5rem, 3vw, 2rem);
    }
    #list-1186 .cs-h3 {
        font-weight: 700;
        text-align: left;
        font-size: 1.25rem;
        line-height: 1.2em;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
    }
    #list-1186 .cs-li-text {
        margin: 0;
        font-size: 1rem;
        text-align: left;
        line-height: 1.5em;
        color: var(--bodyTextColor);
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #list-1186 .cs-li-picture {
        background: #030F18;
    }
}