
/*      ---------------------       */
/*                                  */
/*      Responsive Containers       */
/*                                  */
/*      ---------------------       */

.htmlcontent {
    position: relative;

    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;

    scrollbar-width: thin;

}

.rc-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 5vw;
    display: flex;
    flex-flow: row nowrap;
    gap: 5%;
    --lrg: 1200px;
    --sml: 800px;
}

.rc-carousal {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: row nowrap;
    overflow-x: hidden;
}

.rc-carousal > section {
    flex: 0 0 100vw;
    transition: opacity 1500ms ease-in;
    opacity: 0;
    /* transform: translateX(0); */
    will-change: transform;

}

.rc-carousal > section:first-child {
    opacity: 1;
}

.rc-outer {
    /* flex: 0 1 50%; */
    min-width: 50%;
    width: var(--sml);
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 3vh;

}

.col-1 {
    flex: 1 1 auto;
}

.col-2 {
    flex: 0 1 50%;
}

.col-3 {
    flex: 0 1 33%;
}

.rc-inner {
    width: 100%;
    max-width: var(--sml);
    display: flex;
    flex-flow: column nowrap;
    height: 50%;
    gap: 1vh;
}

.fill {
    height: 100%;
}

.wrap {
    flex-wrap: wrap;
}

.reverse {
    flex-flow: row-reverse nowrap;
}

.offcontent {
    display: none;
}

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

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

.content-center {
    justify-content: center;
}





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

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

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





.page-header {
    gap: 8vh;
}

.page-section {
    gap: 3vh;
}


.btn-unstyled {
    background: none;
    border: none;
    text-decoration: none;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: filter var(--delay) ease;
}

.btn-unstyled:focus {
    outline: none;
}






.test .rc-wrapper {
    background: rgb(53, 83, 92);
}

.test .rc-outer {
    background: paleturquoise;
}

.test .rc-inner {
    background: palegoldenrod;

}

.test .rc-inner * {
    background: palevioletred;

}
