/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    body.cs-open {
        overflow: hidden;
    }

    #cs-navigation {
        width: 100%;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        padding: 0.75rem 1rem;
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: fixed;
        z-index: 10000;
    }

    #cs-navigation:before {
        content: "";
        width: 100%;
        height: 0vh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        display: block;
        position: absolute;
        top: 100%;
        right: 0;
        z-index: -1100;
        transition: height 0.5s, opacity 0.5s;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    #cs-navigation.cs-active:before {
        height: 150vh;
        opacity: 1;
    }

    #cs-navigation.cs-active .cs-ul-wrapper {
        opacity: 1;
        transform: scaleY(1);
        transition-delay: 0.15s;
    }

    #cs-navigation.cs-active .cs-li {
        opacity: 1;
        transform: translateY(0);
    }

    #cs-navigation .cs-container {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    #cs-navigation .cs-logo {
        width: 40%;
        max-width: 9.125rem;
        height: 3.75rem;
        margin: 0 auto 0 0;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    #cs-navigation .cs-logo img {
        width: 100%;
        height: 100%;
        /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
        object-fit: contain;
    }

    #cs-navigation .cs-toggle {
        /* 44px - 48px */
        width: clamp(2.75rem, 6vw, 3rem);
        height: clamp(2.75rem, 6vw, 3rem);
        margin: 0 0 0 auto;
        background-color: transparent;
        border: none;
        border-radius: 0.25rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #cs-navigation .cs-active .cs-line1 {
        top: 50%;
        transform: translate(-50%, -50%) rotate(225deg);
    }

    #cs-navigation .cs-active .cs-line2 {
        top: 50%;
        transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
        transform-origin: center;
    }

    #cs-navigation .cs-active .cs-line3 {
        opacity: 0;
        bottom: 100%;
    }

    #cs-navigation .cs-box {
        /* 24px - 28px */
        width: clamp(1.5rem, 2vw, 1.75rem);
        /* 14px - 16px */
        height: clamp(0.875rem, 1.5vw, 1rem);
        position: relative;
    }

    #cs-navigation .cs-line {
        width: 100%;
        height: 2px;
        background-color: #1a1a1a;
        border-radius: 2px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    #cs-navigation .cs-line1 {
        top: 0;
        transition: transform 0.5s, top 0.3s, left 0.3s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-direction: normal;
        animation-fill-mode: forwards;
        transform-origin: center;
    }

    #cs-navigation .cs-line2 {
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        transition: top 0.3s, left 0.3s, transform 0.5s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-direction: normal;
        animation-fill-mode: forwards;
    }

    #cs-navigation .cs-line3 {
        bottom: 0;
        transition: bottom 0.3s, opacity 0.3s;
    }

    #cs-navigation .cs-ul-wrapper {
        width: 100%;
        height: auto;
        padding-bottom: 2.4em;
        background-color: #fff;
        box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
        opacity: 0;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: -1;
        overflow: hidden;
        transform: scaleY(0);
        transition: transform 0.4s, opacity 0.3s;
        transform-origin: top;
    }

    #cs-navigation .cs-ul {
        width: 100%;
        height: auto;
        max-height: 65vh;
        margin: 0;
        padding: 3rem 0 0 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.25rem;
        overflow: auto;
    }

    #cs-navigation .cs-li {
        text-align: center;
        list-style: none;
        width: 100%;
        margin-right: 0;
        opacity: 0;
        /* transition from these values */
        transform: translateY(-4.375rem);
        transition: transform 0.6s, opacity 0.9s;
    }

    #cs-navigation .cs-li:nth-of-type(1) {
        transition-delay: 0.05s;
    }

    #cs-navigation .cs-li:nth-of-type(2) {
        transition-delay: 0.1s;
    }

    #cs-navigation .cs-li:nth-of-type(3) {
        transition-delay: 0.15s;
    }

    #cs-navigation .cs-li:nth-of-type(4) {
        transition-delay: 0.2s;
    }

    #cs-navigation .cs-li:nth-of-type(5) {
        transition-delay: 0.25s;
    }

    #cs-navigation .cs-li:nth-of-type(6) {
        transition-delay: 0.3s;
    }

    #cs-navigation .cs-li:nth-of-type(7) {
        transition-delay: 0.35s;
    }

    #cs-navigation .cs-li:nth-of-type(8) {
        transition-delay: 0.4s;
    }

    #cs-navigation .cs-li:nth-of-type(9) {
        transition-delay: 0.45s;
    }

    #cs-navigation .cs-li:nth-of-type(10) {
        transition-delay: 0.5s;
    }

    #cs-navigation .cs-li:nth-of-type(11) {
        transition-delay: 0.55s;
    }

    #cs-navigation .cs-li:nth-of-type(12) {
        transition-delay: 0.6s;
    }

    #cs-navigation .cs-li:nth-of-type(13) {
        transition-delay: 0.65s;
    }

    #cs-navigation .cs-li-link {
        /* 16px - 24px */
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        line-height: 1.2em;
        text-decoration: none;
        margin: 0;
        color: var(--headerColor);
        display: inline-block;
        position: relative;
    }

    #cs-navigation .cs-li-link:before {
        /* active state underline */
        content: "";
        width: 100%;
        height: 1px;
        background: currentColor;
        opacity: 1;
        display: none;
        position: absolute;
        bottom: -0.125rem;
        left: 0;
    }

    #cs-navigation .cs-li-link.cs-active:before {
        display: block;
    }

    #cs-navigation .cs-button-solid {
        display: none;
    }
}

/*-- -------------------------- -->
  <---     Navigation Dropdown    -->
  <--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    #cs-navigation .cs-li {
        text-align: center;
        width: 100%;
        display: block;
    }

    #cs-navigation .cs-dropdown {
        color: var(--bodyTextColorWhite);
        position: relative;
    }

    #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
        height: auto;
        margin: 0.75rem 0 0 0;
        padding: 0.75rem 0;
        opacity: 1;
        visibility: visible;
    }

    #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
        opacity: 1;
    }

    #cs-navigation .cs-dropdown .cs-li-link {
        position: relative;
        transition: opacity 0.3s;
    }

    #cs-navigation .cs-drop-icon {
        width: 0.9375rem;
        height: auto;
        position: absolute;
        top: 50%;
        right: -1.25rem;
        transform: translateY(-50%);
    }

    #cs-navigation .cs-drop-ul {
        width: 100%;
        height: 0;
        margin: 0;
        padding: 0;
        background-color: var(--primary);
        opacity: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0.75rem;
        overflow: hidden;
        transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
    }

    #cs-navigation .cs-drop-li {
        list-style: none;
    }

    #cs-navigation .cs-li-link.cs-drop-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 2vw, 1.25rem);
        color: #fff;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-navigation .cs-dropdown {
        position: relative;
    }

    #cs-navigation .cs-dropdown:hover,
    #cs-navigation .cs-dropdown:focus-within {
        cursor: pointer;
    }

    #cs-navigation .cs-dropdown:hover .cs-drop-ul,
    #cs-navigation .cs-dropdown:focus-within .cs-drop-ul {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
    }

    #cs-navigation .cs-dropdown:hover .cs-drop-li,
    #cs-navigation .cs-dropdown:focus-within .cs-drop-li {
        opacity: 1;
        transform: translateY(0);
    }

    #cs-navigation .cs-drop-icon {
        width: 0.9375rem;
        height: auto;
        display: inline-block;
    }

    #cs-navigation .cs-drop-ul {
        min-width: 12.5rem;
        margin: 0;
        padding: 0;
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
        opacity: 0;
        border-bottom: 5px solid var(--primary);
        visibility: hidden;
        /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
        position: absolute;
        top: 100%;
        z-index: -100;
        overflow: hidden;
        transform: scaleY(0);
        transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
        transform-origin: top;
    }

    #cs-navigation .cs-drop-li {
        font-size: 1rem;
        text-decoration: none;
        list-style: none;
        width: 100%;
        height: auto;
        color: var(--bodyTextColor);
        opacity: 0;
        display: block;
        transform: translateY(-0.625rem);
        transition: opacity 0.6s, transform 0.6s;
    }

    #cs-navigation .cs-drop-li:nth-of-type(1) {
        transition-delay: 0.05s;
    }

    #cs-navigation .cs-drop-li:nth-of-type(2) {
        transition-delay: 0.1s;
    }

    #cs-navigation .cs-drop-li:nth-of-type(3) {
        transition-delay: 0.15s;
    }

    #cs-navigation .cs-drop-li:nth-of-type(4) {
        transition-delay: 0.2s;
    }

    #cs-navigation .cs-drop-li:nth-of-type(5) {
        transition-delay: 0.25s;
    }

    #cs-navigation .cs-drop-li:nth-of-type(6) {
        transition-delay: 0.3s;
    }

    #cs-navigation .cs-drop-li:nth-of-type(7) {
        transition-delay: 0.35s;
    }

    #cs-navigation .cs-drop-li:nth-of-type(8) {
        transition-delay: 0.4s;
    }

    #cs-navigation .cs-drop-li:nth-of-type(9) {
        transition-delay: 0.45s;
    }

    #cs-navigation .cs-li-link.cs-drop-link {
        font-size: 1rem;
        line-height: 1.5em;
        text-decoration: none;
        white-space: nowrap;
        width: 100%;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        padding: 0.75rem;
        color: var(--bodyTextColor);
        display: block;
        transition: color 0.3s, background-color 0.3s;
    }

    #cs-navigation .cs-li-link.cs-drop-link:hover,
    #cs-navigation .cs-li-link.cs-drop-link:focus {
        background-color: #f7f7f7;
        outline: none;
    }

    #cs-navigation .cs-li-link.cs-drop-link:before {
        display: none;
    }
}

/*-- -------------------------- -->
  <---     Desktop Navigation     -->
  <--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-navigation {
        width: 100%;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        padding: 0 1rem;
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: fixed;
        z-index: 10000;
    }

    #cs-navigation .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1.5rem;
    }

    #cs-navigation .cs-toggle {
        display: none;
    }

    #cs-navigation .cs-logo {
        width: 18.4%;
        max-width: 21.875rem;
        height: 3.75rem;
        /* margin-right auto pushes everything away from it to the right */
        margin: 0 auto 0 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }

    #cs-navigation .cs-logo img {
        width: 100%;
        height: 100%;
        /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
        object-fit: contain;
        object-position: left;
    }

    #cs-navigation .cs-ul {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        /* 20px - 36px */
        gap: clamp(1.25rem, 2.6vw, 2.25rem);
    }

    #cs-navigation .cs-li {
        list-style: none;
        padding: 1.75rem 0;
        /* prevent flexbox from squishing it */
        flex: none;
    }

    #cs-navigation .cs-li-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1vw, 1rem);
        line-height: 1.5rem;
        text-decoration: none;
        margin: 0;
        color: var(--bodyTextColor);
        display: block;
        position: relative;
    }

    #cs-navigation .cs-li-link:hover:before {
        width: 100%;
    }

    #cs-navigation .cs-li-link.cs-active:before {
        width: 100%;
    }

    #cs-navigation .cs-li-link:before {
        /* active state underline */
        content: "";
        width: 0%;
        height: 2px;
        background: var(--primary);
        opacity: 1;
        display: block;
        position: absolute;
        bottom: 0rem;
        left: 0;
        transition: width 0.3s;
    }

    #cs-navigation .cs-button-solid {
        line-height: clamp(1.875rem, 3.5vw, 2.5rem);
        min-width: 4rem;
        padding: 0 1.5rem;
        background-color: #e4e4e4;
        color: var(--bodyTextColor);
        border-radius: 0.25rem;
    }

    #cs-navigation .cs-button-solid::before {
        border-radius: 0.25rem;
    }
}


/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero {
        padding: var(--sectionPadding);
        /* 160px - 200px */
        padding-top: clamp(8rem, 15vw, 10rem);
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    #hero .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    #hero .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        /* 40px - 52px */
        margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
        position: relative;
        z-index: 1;
    }

    #hero .cs-flex {
        /* prevents flexbox from squishing it */
        flex: none;
    }

    #hero .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.438rem, 5vw, 3.813rem);
    }

    #hero .cs-text {
        margin-bottom: 1.25rem;
    }

    #hero .cs-picture {
        width: 100%;
        height: clamp(20rem, 50vw, 40rem);
        /* 16px - 20px */
        margin-bottom: clamp(1rem, 4vw, 4rem);
        display: block;
        position: relative;
    }

    #hero .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 2.5rem;
        position: absolute;
    }

    #hero .stats {
        width: 100%;
    }

    #hero .stats .cs-ul {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }

    #hero .stats .cs-item {
        list-style: none;
        width: 100%;
        /* making flex so we can align a heading with 1 line to the bottom */
        display: flex;
        flex-direction: column;
        align-self: stretch;
        align-content: space-between;
        padding: 0 3rem;
    }

    #hero .stats .cs-number {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        line-height: 1.2em;
        font-weight: 600;
        text-align: left;
        color: var(--primary);
        display: block;
        margin: 0 0 0.5rem 0;
    }

    #hero .stats .cs-h3 {
        font-size: clamp(1.2rem, 2vw, 1.5rem);
        line-height: 1.5em;
        font-weight: 400;
        text-align: left;
        /* auto margin top will push text to bottom if there's only one line */
        margin: 0;
        color: var(--bodyTextColor);
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero .cs-text {
        font-size: 1.25rem;
    }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero .cs-content {
        display: flex;
        flex-direction: column;
    }

    #hero .cs-title {
        max-width: 46.875rem;
    }

    #hero .stats .cs-ul {
        flex-direction: row;
    }

    #hero .stats .cs-item {
        width: 30%;
    }
}

/* Large Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
    #hero .cs-title {
        margin: 0;
    }

    #hero .cs-container {
        flex-direction: column;
    }

    #hero .cs-content {
        text-align: left;
        max-width: 80rem;
        gap: 1.25rem;
        flex-direction: row;
        align-items: flex-start;
    }

    #hero .cs-flex {
        width: 50%;
        max-width: 39.375rem;
    }
}


/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #detalii {
        padding: var(--sectionPadding);
        overflow: hidden;
    }

    #detalii .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 4vw, 4rem);
    }

    #detalii .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
        position: relative;
        z-index: 10;
    }

    #detalii .cs-text {
        margin-bottom: 1rem;
    }

    #detalii .cs-text:last-of-type {
        margin-bottom: 2rem;
    }

    #detalii .cs-image-group {
        width: 100%;
        max-width: 41.875rem;
        height: 100vw;
        max-height: 39.375rem;
        position: relative;
        display: block;
        z-index: 1;
    }

    #detalii .cs-picture {
        /* big background image */
        width: 93%;
        height: 93%;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
    }

    #detalii .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 1rem;
    }

    #detalii .cs-box {
        text-align: left;
        width: 70%;
        max-width: 19rem;
        /* 20px - 40px */
        padding: clamp(1.25rem, 4vw, 2.5rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #F7F7F7;
        display: inline-flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 10;
        border-radius: 0.5rem;
    }

    #detalii .cs-desc {
        /* 16px - 31px */
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        line-height: 1.2em;
        font-weight: 400;
        text-align: inherit;
        width: 100%;
        color: var(--bodyTextColor);
        position: relative;
        z-index: 10;
    }

    #detalii .cs-graphic {
        width: 150%;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    #detalii .cards {
        max-width: 36.5rem;
        margin: auto;
        align-items: center;
        margin-top: 2rem;
    }

    #detalii .cards .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 4vw, 4rem);
    }

    #detalii .cards .cs-panel {
        text-align: center;
        list-style: none;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        /* 24px - 32px */
        padding: clamp(1.5rem, 3vw, 2rem);
        background-color: #F7F7F7;
        border-radius: 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-column: span 12;
        position: relative;
        z-index: 1;
        transition: border-color 0.3s;
    }

    #detalii .cards .cs-panel:hover {
        border-color: var(--primary);
    }

    #detalii .cards .cs-panel:hover .cs-h3 {
        color: var(--primary);
    }

    #detalii .cards .cs-panel:hover .cs-icon {
        transform: rotateY(360deg);
    }

    #detalii .cards .cs-panel .cs-icon-picture {
        margin-bottom: 1.25rem;
        perspective: 700px;
        transform-style: preserve-3d;
    }

    #detalii .cards .cs-panel .cs-icon {
        width: 3rem;
        height: auto;
        display: block;
        transition: transform 0.5s;
    }

    #detalii .cards .cs-panel .cs-h3 {
        font-weight: 600;
        font-size: 1.25rem;
        line-height: 1.5em;
        text-align: inherit;
        margin: 0;
        margin-bottom: 0.75rem;
        color: var(--headerColor);
        transition: color 0.3s;
    }

    #detalii .cards .cs-panel .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColor);
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #detalii .cs-container {
        max-width: 80rem;
        /* set to horizontal arrangement */
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    #detalii .cs-content {
        width: 48%;
        padding: 3rem 0;
        align-self: center;
        /* prevents flexbox from squishing it */
        flex: none;
    }

    #detalii .cs-image-group {
        width: 55%;
        max-width: 41.875rem;
        min-height: 41.875rem;
        max-height: 100%;
        height: auto;
        margin: 0;
    }

    #detalii .cs-picture {
        width: 93%;
        height: 94%;
    }

    #detalii .cs-box {
        bottom: 0rem;
    }

    #detalii .cs-graphic {
        max-width: 44.6875rem;
        left: auto;
        right: 8.125rem;
        transform: translateY(-50%);
    }

    #detalii .cards {
        max-width: 80rem;
    }

    #detalii .cards .cs-panel {
        text-align: left;
        margin: 0;
        align-items: flex-start;
        grid-column: span 4;
    }
}



/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #activitati {
        padding: var(--sectionPadding);
    }

    #activitati .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }

    #activitati .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        /* changes to 433px at desktop */
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #activitati .cs-text {
        margin-bottom: 1rem;
    }

    #activitati .cs-text:last-of-type {
        margin-bottom: 2rem;
    }

    .cs-text .cs-list {
        max-width: 39.375rem;
        margin: 0 0 2rem 0;
        padding: 0;
        /* clips the bullets to create the half circle */
        overflow: hidden;
    }

    .cs-text .cs-li {
        list-style: none;
        margin: 0;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.75rem;
        position: relative;
    }

    .cs-text .cs-li:before {
        /* bullet */
        content: "";
        width: 1rem;
        height: 1rem;
        margin-top: 0.1875rem;
        /* make it overflow the parent by half it's width to make an eclipse */
        margin-left: -0.5rem;
        background: var(--primary);
        border-radius: 50%;
        display: block;
        /* prevents flexbox from squishing it */
        flex: none;
    }

    #activitati .cs-image-group {
        /* scales the whole group based on the view width size and stop when that vales equals .745em, resets at desktop */
        font-size: min(1.959vw, 0.745em);
        width: 46.125em;
        height: 41.375em;
        display: block;
        position: relative;
        z-index: 1;
    }

    #activitati .cs-picture {
        position: absolute;
    }

    #activitati .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 1rem;
    }

    #activitati .cs-picture1 {
        width: 13.6875em;
        height: 27.5em;
        top: 6.375em;
        right: 0;
        z-index: -1;
    }

    #activitati .cs-picture1 img {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    #activitati .cs-picture3 img {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    #activitati .cs-picture2 {
        width: 19.1875em;
        height: 37.5em;
        bottom: 0;
        right: 13.5625em;
        z-index: 10;
    }

    #activitati .cs-picture3 {
        width: 13.625em;
        height: 27.5em;
        top: 11.375em;
        left: 0;
        z-index: -1;
    }

    #activitati .cs-stripes {
        width: 36.125em;
        height: auto;
        display: block;
        position: absolute;
        top: 0em;
        right: 4.5em;
        z-index: -2;
    }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #activitati .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #activitati .cs-content {
        max-width: 27.0625rem;
    }

    #activitati .cs-image-group {
        font-size: min(1.2vw, 1em);
        flex: none;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
}





/*-- -------------------------- -->
<---         Why Choose         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    .tri-services {
        /* Centers Button */
        text-align: center;
        padding: var(--sectionPadding);
        /* prevents the arrow from causing an overflow */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    .tri-services .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }

    .tri-services .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    .tri-services .cs-text {
        max-width: 62.5rem;
    }

    .tri-services .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }

    .tri-services .cs-item {
        width: 100%;
        text-align: left;
        list-style: none;
        /* 20px - 32px */
        padding: clamp(1.25rem, 2.3vw, 2rem);
        background-color: #F7F7F7;
        border-radius: 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        grid-column: span 6;
        position: relative;
        z-index: 1;
    }

    .tri-services .cs-icon {
        width: 4rem;
        height: auto;
        display: block;
        margin-bottom: 1rem;
    }

    .tri-services .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.5em;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
        transition: color 0.3s;
    }

    .tri-services .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        transition: color 0.3s;
    }

    .tri-services .cs-floater {
        width: 21.9375rem;
        height: auto;
        display: none;
        position: absolute;
        top: -13.75rem;
        right: -3.75rem;
        transform: rotate(-66deg);
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    .tri-services .cs-container {
        max-width: 80rem;
    }

    .tri-services .cs-item {
        grid-column: span 2;
    }

    .tri-services .cs-floater {
        display: block;
    }
}




/* Mobile - 360px */
/* you can copy and paste these styles into the section CSS where you placed the #list-1186 HTML, or you can place it in your global stylesheet so you can reuse the HTML in any Side By Side section on your site. That way when you make changes to it, it will also change everywhere in the site */
@media only screen and (min-width: 0rem) {

    #beneficii .cs-title {
        margin-left: auto;
        margin-right: auto;
        max-width: 48rem;
    }

    #beneficii .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(1, 12fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }

    #beneficii .cs-li {
        list-style: none;
        margin: 0;
        padding: 1rem 2rem;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        /* 16px - 20px */
        gap: clamp(1rem, 2.5vw, 1.25rem);
    }

    #beneficii .cs-li-picture {
        /* 60px - 80px */
        width: clamp(3.75rem, 6vw, 5rem);
        height: clamp(3.75rem, 6vw, 5rem);
        margin: 0;
        background-color: #f7f7f7;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
    }

    #beneficii .cs-li-icon {
        /* 24px - 32px */
        width: clamp(1.5rem, 3vw, 2rem);
        height: auto;
        display: block;
    }

    #beneficii .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 600;
        text-align: left;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
    }

    #beneficii .cs-li-text {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: left;
        margin: 0;
        color: var(--bodyTextColor);
    }
}

@media only screen and (min-width: 64rem) {
    #beneficii .cs-container {
        max-width: 80rem;
    }

    #beneficii .cs-card-group {
        grid-template-columns: repeat(2, 6fr);
    }
}


/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta {
        padding: var(--sectionPadding);
        position: relative;
        background-color: var(--primaryLight);
        border-top: 10px solid var(--primary);
    }

    #cta .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }

    #cta .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #cta .cs-title {
        color: var(--bodyTextColor);
        line-height: 1.3;
    }

    #cta .cs-text {
        margin-bottom: 1rem;
        color: var(--bodyTextColor);
        opacity: 0.8;
    }

    #cta .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
}



/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #footer {
        /* 60px - 100px top and bottom */
        padding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
        background-color: #1a1a1a;
        /* Navigation Links */
        /* Contact Links */
    }

    #footer .cs-container {
        width: 100%;
        /* reset on tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        /* 68px - 100px */
        column-gap: clamp(4.25rem, calc(10%), 6.25rem);
    }

    #footer .cs-logo-group {
        /* takes up all the space, lets the other ul's wrap below it */
        width: 100%;
        position: relative;
    }

    #footer .cs-logo {
        /* 210px - 240px */
        width: clamp(13.125rem, 8vw, 15rem);
        height: auto;
        display: block;
        /* 28px - 44px */
        margin-bottom: clamp(1.75rem, 4.17vw, 2.75rem);
    }

    #footer .cs-logo-img {
        width: 100%;
        height: auto;
    }

    #footer .cs-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 2.5vw, 1rem);
        line-height: 1.5em;
        margin: 0;
        margin-bottom: 2rem;
        /* changes to 305px at desktop */
        max-width: 33.75rem;
        color: var(--bodyTextColorWhite);
    }

    #footer .cs-nav {
        padding: 0;
        margin: 0;
    }

    #footer .cs-nav-li {
        list-style: none;
        line-height: 1.5em;
        margin-bottom: 0.5rem;
    }

    #footer .cs-nav-li:last-of-type {
        margin-bottom: 0;
    }

    #footer .cs-header {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 600;
        margin-bottom: 0.875rem;
        color: var(--bodyTextColorWhite);
        position: relative;
        display: block;
    }

    #footer .cs-nav-link {
        font-size: 1rem;
        text-decoration: none;
        line-height: 1.5em;
        color: var(--bodyTextColorWhite);
        position: relative;
    }

    #footer .cs-nav-link:before {
        /* underline */
        content: "";
        width: 0%;
        height: 0.125rem;
        /* current color of the parent */
        background: currentColor;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -0.125rem;
        left: 0;
        transition: width 0.3s;
    }

    #footer .cs-nav-link:hover:before {
        width: 100%;
    }

    #footer .cs-contact {
        margin: 0;
        padding: 0;
        width: auto;
        display: flex;
        flex-direction: column;
        align-self: stretch;
    }

    #footer .cs-contact-li {
        list-style: none;
        margin-bottom: 0rem;
    }

    #footer .cs-contact-li:last-of-type {
        margin-bottom: 0;
    }

    #footer .cs-contact-link {
        font-size: 1rem;
        text-decoration: none;
        line-height: 1.5em;
        text-align: left;
        color: var(--bodyTextColorWhite);
        display: inline-block;
    }

    #footer .cs-contact-link:hover {
        text-decoration: underline;
    }

    #footer .cs-address {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .cs-social-group {
        /* pushes away from the other flex items */
        margin-top: auto;
        margin-left: auto;
    }

    .cs-social {
        display: inline-flex;
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .cs-social-link {
        width: 1.5rem;
        height: 1.5rem;
        background-color: #4e4b66;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        transition:
            transform 0.3s,
            background-color 0.3s;
    }

    .cs-social-link:hover {
        background-color: var(--primary);
        transform: translateY(-0.1875rem);
    }

    .cs-social-img {
        height: 0.8125rem;
        width: auto;
        display: block;
    }

    .copyright {
        padding: 1rem 2rem;
        text-align: center;
        color: var(--bodyTextColorWhite);
        background-color: #121212;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
    }

    .copyright a {
        text-decoration: none;
        color: var(--secondary);
        font-weight: 600;
        transition: color 0.3s;
    }

    .copyright a:hover {
        color: var(--primary);
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #footer .cs-container {
        max-width: 80rem;
        row-gap: 0;
    }

    #footer .cs-logo-group {
        width: auto;
        /* pushes everything to the right of it as far as possible in a flexbox */
        margin-right: auto;
    }

    #footer .cs-text {
        max-width: 24rem;
        margin: 0;
    }

    #footer .cs-nav,
    #footer .cs-contact {
        /* 8px - 12px */
        margin-top: clamp(0.5rem, 1.2vw, 0.75rem);
    }
}




/*-- -------------------------- -->
<---       Pagina: Proiect      -->
<--- -------------------------- -*/


/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-proiect {
        /* Centers button */
        text-align: center;
        /* 144px - 300px - leaving extra space for the navigation */
        padding: clamp(9rem, 25.95vw, 9rem) 1rem 0;
        /* 130px - 450px */
        padding-bottom: clamp(12.125rem, 30.95vw, 28.125rem);
        position: relative;
        z-index: 1;
        /* Prevents white rectangle pseudos from overlapping the sections below */
        overflow: hidden;
    }

    #hero-proiect:before {
        /* Left side of the triangle */
        content: "";
        width: 31.25rem;
        /* make really long so it covers the whole screen all the way to desktop */
        height: 250rem;
        background: #fff;
        opacity: 1;
        transform: rotate(-67deg);
        transform-origin: center;
        position: absolute;
        display: block;
        bottom: -139.6875rem;
        /* this makes the right edge sit at the 50% line at all times */
        right: 50%;
        z-index: 0;
    }

    #hero-proiect:after {
        /* Right side of the triangle */
        content: "";
        width: 31.25rem;
        height: 250rem;
        background: #fff;
        opacity: 1;
        transform: rotate(67deg);
        transform-origin: center;
        position: absolute;
        display: block;
        bottom: -139.6875rem;
        /* this makes the left edge sit at the 50% line at all times */
        left: 50%;
        z-index: 0;
    }

    #hero-proiect .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }

    #hero-proiect .cs-background:before {
        /* Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.5;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }

    #hero-proiect .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        max-height: 770px;
        object-fit: cover;
    }

    #hero-proiect .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
    }

    #hero-proiect .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: center;
        max-width: 51.8125rem;
        /* 16px - 24px */
        margin: 0 auto clamp(1rem, 4vw, 1.5rem);
        color: #fff;
        position: relative;
    }

    #hero-proiect .cs-title:after {
        /* Divider Line */
        content: "";
        /* 60px - 100px */
        width: clamp(3.75rem, 9.5vw, 6.25rem);
        /* 4px - 8px */
        height: clamp(0.25rem, 0.8vw, 0.5rem);
        /* 16px - 24px */
        margin: clamp(1rem, 4vw, 1.5rem) auto clamp(1rem, 4vw, 1.5rem);
        background: var(--primary);
        opacity: 1;
        position: relative;
        display: block;
    }

    #hero-proiect .cs-text {
        /* 16px - 25px */
        font-size: clamp(1rem, 1.95vw, 1.5625rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        /* 464px - 800px */
        max-width: clamp(29rem, 60vw, 50rem);
        margin: 0 auto;
        /* 40px - 48px */
        margin-bottom: clamp(2.5rem, 4vw, 3rem);
        color: #fff;
    }
}

/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-services {
        /* 40px - 100px */
        padding: 0 1em clamp(2.5rem, 7.9vw, 6.25rem) 1rem;
        position: relative;
        /* give a higher z index than the hero so it can sit on top */
        z-index: 10;
    }

    #hero-services .cs-card-group {
        width: 100%;
        max-width: 29.0625rem;
        margin: 0 auto 0;
        /* negative margin pulls it up on top of the hero section */
        /* -46px to -76px - we're calculating whatever clamp is and multiplying by -1
            to make the value negative since clamp doesn't work with negative values */
        margin-top: calc(clamp(5rem, 13vw, 4.75rem) * -1);
        /* 40px - 60px top and bottom, 16px - 44px left & right */
        padding: clamp(2.5rem, 4.7vw, 3.75rem) clamp(1rem, 5.3vw, 2.75rem);
        box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.05);
        border-radius: 0.3125rem;
        border-top: 8px solid var(--primary);
        background-color: #fff;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
    }

    #hero-services .cs-item {
        list-style: none;
        margin: 0 auto 2rem;
        width: 100%;
        max-width: 22.5rem;
    }

    #hero-services .cs-item:last-of-type {
        margin-bottom: 0;
    }

    #hero-services .cs-icon {
        /* 68px - 88px */
        width: clamp(4.25rem, 8.8vw, 5.5rem);
        /* 68px - 88px */
        height: clamp(4.25rem, 8.8vw, 5.5rem);
        margin: auto;
        /* 20px - 24px */
        margin-bottom: clamp(1.25rem, 5vw, 1.5rem);
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #hero-services .cs-icon img {
        /* 44px - 52px */
        width: clamp(2.75rem, 5.8vw, 3.25rem);
        height: auto;
    }

    #hero-services .cs-title {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: center;
        margin: 0 auto 0.5rem;
        color: var(--headerColor);
    }

    #hero-services .cs-text {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5em;
        max-width: 22.5rem;
        margin: 0 auto;
        color: var(--bodyTextColor);
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero-services .cs-card-group {
        max-width: 49rem;
        /* -76px to -320px - we're calculating whatever clamp is and multiplying by -1
               to make the value negative since clamp doesn't work with negative values */
        margin-top: calc(clamp(4.75rem, 20vw, 20rem) * -1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        column-gap: 2.5rem;
    }

    #hero-services .cs-item {
        width: 45%;
        max-width: 19.625rem;
    }

    #hero-services .cs-item:last-of-type {
        margin-bottom: 2rem;
    }
}

/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #hero-services .cs-card-group {
        max-width: 80rem;
        flex-wrap: nowrap;
    }

    #hero-services .cs-item {
        margin: 0;
    }

    #hero-services .cs-item:last-of-type {
        margin-bottom: 0;
    }
}




/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    .side-by-side {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .side-by-side .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        order: 2;
    }

    .side-by-side .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        /* moved section padding to cs-content so the cs-background can be full width */
        padding: var(--sectionPadding);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    .side-by-side .cs-text {
        margin-bottom: 1rem;
    }

    .side-by-side .cs-text:last-of-type {
        margin-bottom: 2rem;
    }

    .side-by-side .cs-background {
        display: block;
        position: relative;
        width: 100%;
        height: 16rem;
        z-index: 1;
        order: 1;
    }

    .side-by-side .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .side-by-side .cs-content div.cs-text {
        margin-bottom: 0;
    }

    .side-by-side .cs-text b {
        font-weight: normal;
        background-color: #e8fbe6;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    .side-by-side {
        /* 90px - 150px */
        /* returned section padding to the section container, this Stitch has 1.5X padding top and bottom than the normal Stitch */
        padding: 4rem 1rem;
        flex-direction: row;
    }

    .side-by-side .cs-container {
        flex-direction: row;
        justify-content: flex-end;
    }

    .side-by-side .cs-background {
        width: 50%;
        height: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 50%;
    }

    .side-by-side .cs-content {
        width: 45%;
        padding: 0;
    }

    .side-by-side.right-image .cs-container {
        justify-content: flex-start;
    }

    .side-by-side.right-image .cs-background {
        right: 0;
        left: 50%;
    }

    .page-antreprenori .side-by-side .cs-background img {
        border-top-left-radius: 2rem;
        border-bottom-left-radius: 2rem;
    }
}




/*-- -------------------------- -->
<---    Pagina: Antreprenori    -->
<--- -------------------------- -*/


/*-- -------------------------- -->
<---        Why Choose Us       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    .benefits-list {
        padding: var(--sectionPadding);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .benefits-list .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 40px - 64px */
        gap: clamp(2.5rem, 3.9vw, 4rem);
    }

    .benefits-list .cs-content {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .benefits-list .cs-title {
        margin: 0;
        max-width: 23ch;
    }

    .benefits-list .cs-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* 16px - 32px */
        gap: clamp(1rem, 3.2vw, 2rem);
    }

    .benefits-list .cs-card-group {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        /* 16px - 32px */
        gap: clamp(1rem, 2vw, 2rem);
    }

    .benefits-list .cs-item {
        list-style: none;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .benefits-list .cs-item-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .benefits-list .cs-item-number {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--primary);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }

    .benefits-list .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
    }

    .benefits-list .cs-item-text {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }

    .benefits-list .cs-floater {
        /* 246px - 582px */
        width: clamp(15.375rem, 50vw, 36.375rem);
        height: auto;
        position: absolute;
        right: -4rem;
        top: -0.5rem;
        z-index: -1;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    .benefits-list .cs-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
}




/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    .gallery-section {
        padding: var(--sectionPadding);
        padding-top: 0;

    }

    .gallery-section .cs-container {
        width: 100%;
        /* changes to 1280px at large desktop */
        max-width: 59rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }

    .gallery-section .cs-gallery {
        width: 100%;
        /* changes to 100% at tablet */
        max-width: 31.25rem;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 1.5vw, 1.25rem);
    }

    .gallery-section .cs-image {
        /* 260px - 360px */
        min-height: clamp(16.25rem, 60vw, 20rem);
        border-radius: 1rem;
        /* clips the image corners */
        overflow: hidden;
        display: block;
        grid-column: span 12;
        grid-row: span 1;
        position: relative;
    }

    .gallery-section .cs-image img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes it act like a background image */
        object-fit: cover;
    }
}

/* Tablet - 700px */
@media only screen and (min-width: 43.75rem) {
    .gallery-section .cs-gallery {
        max-width: 100%;
        grid-template-rows: 1fr;
    }

    .gallery-section .cs-image {
        grid-column: span 4;
    }

    .gallery-section .cs-image:nth-of-type(4),
    .gallery-section .cs-image:nth-of-type(5),
    .gallery-section .cs-image:nth-of-type(9),
    .gallery-section .cs-image:nth-of-type(10) {
        grid-column: span 6;
    }

    #hero-galerie.gallery-section .cs-image:nth-of-type(1) {
        grid-column: span 8;
    }

    #hero-galerie.gallery-section .cs-image:nth-of-type(2) {
        grid-column: span 4;
    }
}

/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    .gallery-section .cs-container {
        max-width: 80rem;
    }

    .gallery-section .cs-gallery {
        grid-template-columns: repeat(5, 1fr);
    }

    .gallery-section .cs-image {
        grid-column: span 1;
    }

    .gallery-section .cs-image:nth-of-type(4),
    .gallery-section .cs-image:nth-of-type(5),
    .gallery-section .cs-image:nth-of-type(9),
    .gallery-section .cs-image:nth-of-type(10) {
        grid-column: span 1;
    }

    #hero-galerie.gallery-section .cs-image:nth-of-type(1) {
        grid-column: span 3;
    }

    #hero-galerie.gallery-section .cs-image:nth-of-type(2) {
        grid-column: span 2;
    }

    #hero-galerie.gallery-section .cs-image {
        min-height: clamp(16.25rem, 60vw, 45rem);
    }
}





/*-- -------------------------- -->
<---       Pagina: Contact      -->
<--- -------------------------- -*/


/*-- -------------------------- -->
<---            Form            -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    #contact-form .cs-container {
        align-items: start;
    }

    #contact-form .cs-container .form-wrapper {
        flex-shrink: 0;
        flex-grow: 1;
        width: 100%;
    }

    #contact-form .cs-topper,
    #contact-form .cs-title,
    #contact-form .cs-text {
        text-align: start;
    }

    #contact-form .social-wrapper h3 {
        font-size: clamp(1.5rem, 3.9vw, 2rem);
        margin-top: 2rem;
    }

    .cs-form {
        background-color: #F7F7F7;
        padding: 2rem;
        border-radius: 1rem;
        border: 2px solid #e4e4e4;
    }

    .cs-form .cs-label {
        display: block;
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: var(--headerColor);
        margin-bottom: 0.25rem;
        font-weight: 500;
        text-align: start;
    }

    .cs-form .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3rem;
        padding: 0;
        padding-left: 1.5rem;
        color: var(--headerColor);
        background-color: #fff;
        border: none;
        border-radius: 0.5rem;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
        margin-bottom: 0.5rem;
        font-family: var(--bodyFont);
    }

    .cs-form .cs-input::placeholder {
        color: var(--bodyTextColor);
        opacity: 0.6;
    }

    .cs-form textarea.cs-input {
        height: 6rem;
        border-radius: 0.5rem;
        padding: 1rem 1.5rem;
        max-width: 100%;
        font-family: var(--bodyFont);
    }

    .cs-form .cs-button-solid {
        display: block;
        width: 100%;
    }

    .cs-text a {
        color: var(--primary);
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .cs-text a:hover {
        color: var(--secondary);
        text-decoration: underline;
        text-decoration-style: dotted;

    }

    .cs-form .error {
        color: red;
        font-size: 0.8em;
        display: block;
        margin-bottom: 1.5rem;
        text-align: start;
    }

    #nfhp {
        position: absolute;
        height: 0;
        width: 0;
        border: 0;
        background: transparent;
        left: -9999px;
    }

    .cs-error,
    .cs-success {
        font-size: 1.2rem;
        display: block;
        padding: 1rem 2rem;
        max-width: 80rem;
        margin-left: auto;
        margin-right: auto;
        margin-top: clamp(3.75rem, 7.82vw, 6.25rem);
    }

    .cs-error {
        color: red;
        border-left: 4px solid red;
        background-color: rgb(251, 235, 235);
    }

    .cs-success {
        color: green;
        border-left: 4px solid green;
        background-color: rgb(234, 255, 234);
    }
}

@media only screen and (min-width: 64rem) {
    #contact-form .cs-container {
        max-width: 80rem;
        flex-direction: row;
    }

    #contact-form .cs-container .form-wrapper {
        width: 40%;
    }
}


/*-- -------------------------- -->
<---            Map             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #map {
        min-height: 33.75rem;
        padding: var(--sectionPadding);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    #map .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    #map .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
}