/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body {
    position: relative;
    z-index: 1;
  }
  body:before {
    content: "";
    width: 100%;
    height: 0;
    background: #fff;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    transition: height 0.3s;
  }
  body.scroll #cs-navigation {
    width: 100%;
    max-width: 100%;
    top: 0;
  }
  body.scroll #cs-navigation:before {
    border-radius: 0;
  }
  body.scroll #cs-navigation .cs-ul-wrapper {
    top: 100%;
  }
  body.cs-open {
    overflow: hidden;
  }
  body.cs-open:before {
    height: 100%;
  }
  #cs-navigation {
    width: 94%;
    max-width: 80rem;
    /* 12px - 24px */
    padding: clamp(0.75rem, 2vw, 1.5rem);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    position: fixed;
    top: 2rem;
    left: 50%;
    z-index: 100;
    transform: translateX(-50%);
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
  }
  #cs-navigation:before {
    /* background color */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--secondaryLight);
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    outline: 2px solid var(--primary);
    outline-offset: -4px;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.2s, border-radius 0.3s ease-in-out;
  }
  #cs-navigation.cs-active:before {
    transform: translateX(-50%) scale(1.03);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation.cs-active .cs-toggle {
    transform: rotate(180deg);
  }
  #cs-navigation.cs-active .cs-li {
    transform: translateY(0);
    opacity: 1;
  }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-logo {
    width: auto;
    max-width: 12.5rem;
    height: 100%;
    margin: 0 auto 0 0;
    padding: 0;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    width: 75%;
    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 {
    width: 3rem;
    height: 3rem;
    margin: 0 0 0 auto;
    border-radius: 0.25rem;
    background-color: var(--headerColor);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.6s;
  }
  #cs-navigation .cs-nav {
    /* sends it to the right in the 3rd position */
    order: 3;
  }
  #cs-navigation .cs-contact-group {
    position: relative;
    z-index: 1;
  }
  #cs-navigation .cs-phone {
    display: none;
  }
  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-phone-icon-m {
    text-decoration: none;
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--headerColor);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-navigation .cs-phone-icon-m .cs-phone-icon {
    width: 1.375rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-social {
    display: none;
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
  }
  #cs-navigation .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #cs-navigation .cs-box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 1rem;
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #FAFBFC;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transform-origin: center;
    transition: transform 0.5s, top 0.3S, left 0.3S;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #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-fill-mode: forwards;
    animation-direction: normal;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: 100vh;
    padding-bottom: 3rem;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s, opacity 0.3s;
    background-color: var(--secondary);
  }
  #cs-navigation .cs-ul {
    margin: 0;
    padding: 3rem 0 0 0;
    width: 100%;
    height: auto;
    max-height: 65vh;
    overflow: scroll;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  #cs-navigation .cs-li {
    list-style: none;
    margin-right: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    opacity: 0;
    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-link {
    font-size: 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;
    position: absolute;
    display: none;
    bottom: -0.125rem;
    left: 0;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
}
/* Tablet - 504px */
@media only screen and (min-width: 31.5rem) {
  #cs-navigation .cs-phone {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }
  #cs-navigation .cs-phone-icon-m {
    display: none;
  }
}
/* Tablet - 560px */
@media only screen and (min-width: 35rem) {
  #cs-navigation .cs-phone {
    font-size: 1rem;
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  body.scroll #cs-navigation {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    top: 0;
  }
  #cs-navigation {
    width: 94%;
    max-width: 90rem;
    height: 6rem;
    /* 12px - 24px */
    padding: clamp(0.75rem, 2vw, 1.5rem) 0;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: var(--secondaryLight);
    box-shadow: rgba(149, 157, 165, 0.3) 0 8px 24px;
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    outline: 2px solid var(--primary);
    outline-offset: -4px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 2rem;
    left: 50%;
    z-index: 100;
    transform: translateX(-50%);
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    padding: 0 1.5rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    width: 18.4%;
    max-width: 21.875rem;
    height: 3rem;
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    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-contact-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-social {
    height: 2rem;
    visibility: visible;
    opacity: 1;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
  }
  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: 2rem;
    height: 2rem;
    background-color: var(--headerColor);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
  }
  #cs-navigation .cs-social-link:hover {
    background-color: var(--primary);
  }
  #cs-navigation .cs-social-link:hover .cs-social-icon {
    filter: grayscale(1) brightness(10000%);
    opacity: 1;
  }
  #cs-navigation .cs-social-icon {
    width: 1.5rem;
    height: auto;
    opacity: 1;
    display: block;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    /* absolutely positioned to be dead center */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: 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;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color 0.3s;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }
  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 2rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color 0.3s;
  }
  #cs-navigation .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0;
    background: #fff;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid:hover {
    color: #1a1a1a;
  }
  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #cs-navigation .cs-social {
    display: flex;
  }
}
/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #footer-1527 {
    padding: clamp(4rem, 7.82vw, 6.25rem) 1rem clamp(1rem, 7.82vw, 2rem) 1rem;
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(--secondary);
    position: relative;
    z-index: 1;
  }
  #footer-1527 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    /* 40px - 64px */
    gap: clamp(2.5rem, 6vw, 3rem);
  }
  #footer-1527 .cs-top {
    width: 100%;
    /* makes the children behave like the parent doesnt exist. They now act as children of the next parent up, in this case the cs-container. That way we can use felxbox to arrange them with the rest of the footer elements */
    display: contents;
  }
  #footer-1527 .cs-logo-group {
    text-align: left;
    max-width: 27.125rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 20px - 24px */
    gap: clamp(1.25rem, 3vw, 1.5rem);
  }
  #footer-1527 .cs-logo {
    width: 12.5rem;
    height: auto;
  }
  #footer-1527 .cs-logo img {
    width: 100%;
    height: auto;
  }
  #footer-1527 .cs-logo-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #footer-1527 .cs-social {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0.5rem;
  }
  #footer-1527 .cs-social-link {
    width: 2rem;
    height: 2rem;
    padding: 0.625rem;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #484848;
  }
  #footer-1527 .cs-social-link:hover {
    background-color: var(--primary);
  }
  #footer-1527 .cs-social-link svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
  }
  #footer-1527 .cs-social-link svg path {
    transition: fill 0.3s;
  }
  #footer-1527 .cs-contact-group,
  #footer-1527 .cs-gallery-group {
    text-align: left;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  #footer-1527 .cs-header {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    text-align: inherit;
    color: var(--headerColor);
  }
  #footer-1527 .cs-contact-info {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 8px - 12px */
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
  }
  #footer-1527 .cs-contact-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    opacity: 0.8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  #footer-1527 .cs-contact-link:hover {
    color: var(--primary);
  }
  #footer-1527 .cs-icon {
    color: var(--bodyTextColor);
  }
  #footer-1527 .cs-gallery {
    width: 100%;
    max-width: 21.875rem;
    display: grid;
    align-items: center;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(4.75rem, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(4.75rem, 1fr));
  }
  #footer-1527 .cs-picture {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    display: block;
    grid-column: span 1;
    position: relative;
  }
  #footer-1527 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 1rem;
  }
  #footer-1527 .cs-bottom {
    width: 100%;
  }
  #footer-1527 .cs-ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #footer-1527 .cs-ul-1 {
    width: 100%;
    max-width: 21.875rem;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 2rem;
  }
  #footer-1527 .cs-ul-1 .cs-li {
    width: 44%;
  }
  #footer-1527 .cs-li {
    list-style: none;
  }
  #footer-1527 .cs-link {
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5em;
    text-align: left;
    color: var(--bodyTextColor);
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  #footer-1527 .cs-link:hover {
    color: var(--primary);
  }
  #footer-1527 .cs-credit {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: center;
    margin: 0;
    /* 16px - 40px */
    padding-top: clamp(1rem, 4vw, 1.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--headerColor);
    opacity: 0.8;
    display: block;
  }
  #footer-1527 .cs-credit-link {
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
  }
  #footer-1527 .cs-credit-link:hover {
    color: var(--primary);
  }
  #footer-1527 .cs-background {
    --backgroundBG: var(--primaryLight);
    width: 100%;
    min-width: 120rem;
    height: auto;
    position: absolute;
    left: 0;
    z-index: 3;
  }
  #footer-1527 .cs-background-top {
    top: -4px;
  }
  #footer-1527 .cs-background-border {
    --backgroundBG: var(--primary);
    width: 100%;
    min-width: 120rem;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }
  .footer-bottom {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
  }
  .footer-bottom .footer-bottom-text {
    font-size: 0.75rem;
    padding: 0;
    margin: 0;
    line-height: 1;
  }
  .footer-bottom .footer-bottom-link {
    font-size: 0.75rem;
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: var(--bodyTextColor);
    transition: color 0.3s;
  }
  .footer-bottom .footer-bottom-link:hover {
    color: var(--primary);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #footer-1527 .cs-logo-group {
    width: 33.5%;
  }
  #footer-1527 .cs-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
  }
  #footer-1527 .cs-gallery-group {
    width: 35%;
    flex: none;
  }
  #footer-1527 .cs-gallery {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
  }
  #footer-1527 .cs-picture {
    grid-column: span 3;
  }
}
/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-342 {
    padding: clamp(3.75rem, 7.82vw, 5rem) 0 0 0;
    background-color: var(--secondaryLight);
  }
  #services-342 .cs-container {
    position: relative;
    width: 100%;
    max-width: 90rem;
    margin: auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-342 .cs-content {
    position: relative;
    /* 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;
  }
  #services-342 .cs-content .cs-title {
    max-width: 100%;
  }
  #services-342 .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 1.6vw, 1.25rem);
    z-index: 2;
  }
  #services-342 .cs-item {
    list-style: none;
    width: 100%;
    max-width: 31.25rem;
    border-radius: 1rem;
    border: 2px solid var(--headerColor);
    padding: clamp(1rem, 2vw, 1.5rem);
    position: relative;
    z-index: 1;
    background-color: var(--secondaryLight);
    transition: border 0.3s, background-color 0.3s, transform 0.3s;
  }
  #services-342 .cs-item:hover {
    border: 2px solid var(--primary);
    background-color: var(--primaryLight);
  }
  #services-342 .cs-item:hover .cs-picture img {
    transform: scale(1.1);
  }
  #services-342 .cs-link {
    text-decoration: none;
    display: block;
  }
  #services-342 .cs-picture {
    width: 100%;
    height: 15rem;
    /* 16px - 24px */
    margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
    border-radius: 1rem;
    background-color: transparent;
    /* clips the img tag corners */
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 10;
  }
  #services-342 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  #services-342 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 400;
    color: var(--headerColor);
    margin: 0 0 0.75rem 0;
    /* 16px - 24px */
    padding: 0;
    transition: color 0.3s;
  }
  #services-342 .cs-h3:hover {
    color: var(--primary);
  }
  #services-342 .cs-item-text {
    /* 14px - 16px  */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    margin: 0 0 clamp(2rem, 3vw, 3rem) 0;
    /* 16px - 24px */
    padding: 0;
  }
  #services-342 .cs-button-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  #services-342 .cs-button-group .cs-item-price {
    font-family: "Bakbak One", Arial, Helvetica, sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    margin-bottom: 1rem;
    line-height: 1.5em;
    color: var(--primary);
  }
  #services-342 .divider-section {
    width: 100%;
    height: 70px;
    margin-top: clamp(3.75rem, 7.82vw, 6rem);
    mask-image: url("../img/waves-mask.svg");
    mask-size: cover;
    mask-position: bottom center;
    background-color: var(--secondary);
  }
  #services-342 .gandras-skrenda {
    position: absolute;
    top: -19%;
    left: 0;
    width: 5em;
    height: auto;
    z-index: 1;
  }
  #services-342 .cs-rainbow-img {
    position: absolute;
    bottom: -26%;
    right: 4%;
    width: 8em;
    height: auto;
    z-index: 1;
    transform: rotate(20deg);
  }
  #services-342 .cs-arrow-img {
    position: absolute;
    bottom: -3.6%;
    left: 5%;
    width: 9em;
    height: auto;
    z-index: 1;
    transform: scaleX(-1) rotate(60deg);
  }
  #services-342 .cs-flower-yellow-img {
    display: none;
  }
  #services-342 .cs-flower-green-img {
    display: none;
  }
  #services-342 .cs-saule-img {
    position: absolute;
    top: -40%;
    left: 2%;
    width: 6.25em;
    height: auto;
    z-index: 1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-342 .cs-content .cs-title {
    max-width: 90%;
  }
  #services-342 .cs-card-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #services-342 .cs-item {
    width: clamp(31.85%, 30.5vw, 32.28%);
  }
  #services-342 .cs-saule-img {
    position: absolute;
    top: -55%;
    left: 2%;
    width: 6.875em;
    height: auto;
    z-index: 1;
  }
  #services-342 .gandras-skrenda {
    position: absolute;
    top: -31%;
    left: 0;
    width: 6em;
    height: auto;
    z-index: 1;
  }
  #services-342 .cs-rainbow-img {
    position: absolute;
    bottom: -40%;
    right: 2%;
    width: 9em;
    height: auto;
    z-index: 1;
    transform: rotate(20deg);
  }
  #services-342 .cs-arrow-img {
    position: absolute;
    bottom: 0;
    left: -2%;
    width: 11em;
    height: auto;
    z-index: 1;
    transform: scaleX(-1) rotate(10deg);
  }
  #services-342 .cs-flower-yellow-img {
    display: none;
  }
  #services-342 .cs-flower-green-img {
    display: none;
  }
}
@media only screen and (min-width: 64rem) {
  #services-342 .cs-button-group {
    flex-direction: row;
  }
  #services-342 .cs-button-group .cs-item-price {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 0;
  }
  #services-342 .gandras-skrenda {
    position: absolute;
    top: -33%;
    left: 0;
    width: 9em;
    height: auto;
    z-index: 1;
  }
  #services-342 .cs-rainbow-img {
    position: absolute;
    bottom: -40%;
    right: 3%;
    width: 10em;
    height: auto;
    z-index: 1;
    transform: rotate(20deg);
  }
  #services-342 .cs-flower-yellow-img {
    display: none;
  }
  #services-342 .cs-flower-green-img {
    display: none;
  }
  #services-342 .cs-arrow-img {
    position: absolute;
    bottom: -2%;
    left: -6%;
    width: 15em;
    height: auto;
    z-index: 1;
    transform: scaleX(-1) rotate(10deg);
  }
}
@media only screen and (min-width: 100rem) {
  #services-342 .cs-flower-green-img {
    display: block;
    position: absolute;
    bottom: 37%;
    right: -4%;
    width: 3em;
    height: auto;
    z-index: 1;
    transform-origin: center;
    animation: cs-rotate-clockwise 8s linear infinite;
    will-change: transform;
  }
  #services-342 .cs-rainbow-img {
    position: absolute;
    bottom: -40%;
    right: 3%;
    width: 10em;
    height: auto;
    z-index: 1;
    transform: rotate(20deg);
  }
  #services-342 .gandras-skrenda {
    position: absolute;
    top: -39%;
    left: -9%;
    width: 9em;
    height: auto;
    z-index: 1;
  }
}
@media only screen and (min-width: 119rem) {
  #services-342 .cs-flower-yellow-img {
    display: block;
    position: absolute;
    top: 23%;
    left: -15%;
    width: 2.25em;
    height: auto;
    z-index: 1;
    transform-origin: center;
    animation: cs-rotate-clockwise 6s linear infinite;
    will-change: transform;
  }
}
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews-245 {
    padding: var(--sectionPadding);
    background-color: var(--primaryLight);
  }
  #reviews-245 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #reviews-245 .cs-content {
    position: relative;
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 32.625rem;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    z-index: 2;
  }
  #reviews-245 .cs-card-group {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 2rem;
    z-index: 2;
  }
  #reviews-245 .cs-item {
    z-index: 2;
    text-align: left;
    list-style: none;
    width: 100%;
    /* max-width set at tablet */
    /* pushes up by the same amount the cs-item-img overlaps the card */
    margin: 1rem 0 0 0;
    /* 16px - 36px left and right */
    /* 24px - 36px on the bottom */
    padding: 3.75rem clamp(1rem, 2.7vw, 2.25rem) clamp(1.25rem, 2.7vw, 2.25rem);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    box-shadow: 0 20px 39px 0 rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    border: 2px solid var(--headerColor);
    background: #fff;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  #reviews-245 .cs-item:nth-child(odd) {
    background-color: var(--hoverPrimary);
  }
  #reviews-245 .cs-item:nth-child(even) {
    background-color: var(--primary);
  }
  #reviews-245 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0 0 1.5rem;
    color: var(--bodyTextColorWhite);
  }
  #reviews-245 .cs-flex-group {
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bodyTextColorWhite);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
  }
  #reviews-245 .cs-reviewer {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    line-height: 1.5em;
    font-weight: 700;
    width: 40%;
    margin: 0 auto 0 0;
    display: block;
    color: var(--bodyTextColorWhite);
  }
  #reviews-245 .cs-item-stars {
    list-style: none;
    display: inline-flex;
    color: var(--headerColor);
  }
  #reviews-245 .cs-magic-stars {
    position: absolute;
    top: -36%;
    right: 33%;
    width: 3em;
    height: auto;
    z-index: 1;
  }
  #reviews-245 .cs-filler-img {
    position: absolute;
    top: 0;
    right: -3.4%;
    width: 9em;
    height: auto;
    z-index: 1;
  }
  #reviews-245 .gandras-skaito {
    position: absolute;
    bottom: -56%;
    right: 0;
    width: 7rem;
    height: auto;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews-245 .cs-container {
    max-width: 80rem;
  }
  #reviews-245 .cs-card-group {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    /* 16px - 20px */
    column-gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #reviews-245 .cs-item {
    /* we do this so it's stackable. You can add new any number of reviews you want and they will stack and center in the middle. We dont use grid because if you have an odd number of reviews, they don't stay centered.  They align with their grid lines. If you want 4 reviews in a row, lower the width under 22.5vw to get the desired sizes fit 4 in a row and then stack when you add more*/
    width: clamp(31.5%, 30vw, 32.3%);
    max-width: 25.8125rem;
    align-content: space-between;
  }
  #reviews-245 .cs-flex-group {
    /* push contents to the left */
    justify-content: flex-start;
  }
  #reviews-245 .cs-reviewer {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  #reviews-245 .cs-magic-stars {
    position: absolute;
    top: -48%;
    right: 40%;
    width: 4.5em;
    height: auto;
    z-index: 1;
  }
  #reviews-245 .cs-filler-img {
    position: absolute;
    top: 0;
    right: -1.4%;
    width: 12em;
    height: auto;
    z-index: 1;
  }
  #reviews-245 .gandras-skaito {
    position: absolute;
    bottom: -24%;
    right: -40%;
    width: 8rem;
    height: auto;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #reviews-245 .cs-flex-group {
    flex-wrap: nowrap;
  }
  #reviews-245 .cs-reviewer {
    margin: 0;
  }
  #reviews-245 .cs-magic-stars {
    position: absolute;
    top: -24%;
    right: 0;
    width: 5em;
    height: auto;
    z-index: 1;
  }
  #reviews-245 .cs-filler-img {
    position: absolute;
    top: 0;
    right: -2.5%;
    width: 12em;
    height: auto;
    z-index: 1;
  }
  #reviews-245 .gandras-skaito {
    position: absolute;
    bottom: -23%;
    right: -78%;
    width: 8rem;
    height: auto;
  }
}
/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  @keyframes floatAnimation {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes floatAnimation2 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-3rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  #content-page {
    padding: clamp(9.25rem, 7.423rem + 7.308vw, 14rem) 1rem clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    background-color: var(--primaryLight);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #content-page .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 40px - 64px */
    gap: clamp(2.5rem, 4vw, 4rem);
    position: relative;
  }
  #content-page .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 46.125rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #content-page .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #content-page .cs-content-small {
    padding-bottom: 1rem;
  }
  #content-page h2, #content-page h3, #content-page h4, #content-page h5, #content-page h6 {
    font-weight: 700;
    text-align: inherit;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }
  #content-page h2 {
    font-size: 2rem;
    margin-top: 2rem;
  }
  #content-page h3 {
    font-size: 1.5rem;
    color: var(--primary);
  }
  #content-page h4, #content-page h5, #content-page h6 {
    font-size: 1.25rem;
  }
  #content-page .cs-button-solid {
    margin-bottom: 2rem;
  }
  #content-page .cs-no-margin {
    margin: 0;
  }
  #content-page .cs-color {
    color: var(--primary);
  }
  #content-page p {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColor);
  }
  #content-page p:last-of-type {
    margin-bottom: 2rem;
  }
  #content-page p a {
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    color: var(--primary);
    filter: brightness(120%);
  }
  #content-page ol, #content-page ul {
    padding-left: 1.5rem;
    margin: 0 0 2rem 0;
    color: var(--bodyTextColor);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #content-page ul {
    padding: 0;
    list-style: none;
  }
  #content-page ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
  }
  #content-page ul li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    background-color: var(--primary);
    display: block;
    mask-image: url(../icons/list-item-icon.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../icons/list-item-icon.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
  }
  #content-page img {
    width: 100%;
    height: auto;
    display: block;
  }
  #content-page .cs-image-group {
    width: 32.625em;
    height: 33.75em;
    display: none;
    position: relative;
    z-index: 1;
  }
  #content-page .cs-background {
    width: 100%;
    height: 100%;
    border-radius: 2.5em;
    /* clips the corners of the children around the border radius */
    overflow: hidden;
    /* makes it cover the parent dimensions */
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #content-page .cs-background img {
    width: 100%;
    height: 100%;
    /* makes it cover the parent like a backgorund image */
    object-fit: cover;
    display: block;
  }
  #content-page .cs-flower {
    width: 9.5625em;
    height: auto;
    position: absolute;
    right: -2em;
    top: -2.25em;
    z-index: 10;
  }
  #content-page .cs-floater {
    width: 35em;
    height: auto;
    position: absolute;
    left: 9.375em;
    top: 25em;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #content-page .cs-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  #content-page .cs-content {
    width: 60%;
    max-width: 43.375rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #content-page .cs-image-group {
    font-size: min(1.3vw, 1em);
    display: block;
    /* sends it to the right in the 2nd position */
    order: 2;
  }
}
/* Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #content-page .cs-content {
    width: 53%;
  }
}
/*-- -------------------------- -->
<---           Popup            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #popup-2064 {
    max-width: 30rem;
    /* 16px - 48px*/
    padding: clamp(1rem, 7vw, 2rem) 1rem;
    background-color: var(--primaryLight);
    box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
    opacity: 0;
    border-radius: 0.5rem;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 0;
    outline: 1px solid var(--headerColor);
    outline-offset: -6px;
    z-index: 1400;
    transform: translateY(10rem);
    transition: transform 0.3s, opacity 0.3s;
  }
  #popup-2064.cs-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  #popup-2064 .cs-container {
    display: flex;
    flex-direction: column;
  }
  #popup-2064 .cs-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #popup-2064 .cs-close {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: auto;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transition: transform 0.3s;
  }
  #popup-2064 .cs-close:hover {
    cursor: pointer;
    transform: rotate(90deg);
  }
  #popup-2064 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 4vw, 1.4rem);
    line-height: 1.2em;
    margin: 0 0 0.5rem;
    color: var(--headerColor);
  }
  #popup-2064 .cs-text {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2em;
    margin-top: 0.25rem;
    color: var(--bodyTextColor);
  }
  #popup-2064 .cs-link {
    color: var(--primary);
  }
  #popup-2064 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    background-color: var(--secondary);
    overflow: hidden;
    color: var(--bodyTextColorWhite);
    border: none;
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #popup-2064 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #popup-2064 .cs-button-solid:hover:before {
    width: 100%;
  }
  #popup-2064 .cs-accept {
    background-color: var(--headerColor);
    box-shadow: 3px 3px 0px 0px var(--primary);
  }
  #popup-2064 .cs-accept:hover {
    box-shadow: 0 0 0 0 var(--primary);
    background-color: var(--hoverPrimary);
    color: var(--headerColor);
    cursor: pointer;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #popup-2064 {
    right: 0.5rem;
    bottom: 0.5rem;
  }
  #popup-2064 .cs-content {
    align-items: center;
    gap: 1.5rem;
  }
  #popup-2064 .cs-text {
    margin: 0;
  }
  #popup-2064 .cs-link {
    display: inline;
  }
}
.vanilla-calendar.vanilla-calendar_to-input {
  z-index: 500;
  border: none;
  background-color: var(--primaryLight) !important;
  outline: 2px solid var(--headerColor) !important;
  box-shadow: 6px 6px 0 0 var(--blue) !important;
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-arrow {
  background-color: var(--headerColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-month,
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-year {
  font-size: 0.9rem;
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-week__day,
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-week__day_weekend {
  color: var(--hoverPrimary);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day_selected-intermediate .vanilla-calendar-day__btn_selected:hover {
  background-color: #df6435;
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day_selected-first .vanilla-calendar-day__btn_selected:hover {
  background-color: #df6435;
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day_selected-last .vanilla-calendar-day__btn_selected:hover {
  background-color: #df6435;
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_selected:hover {
  background-color: #df6435;
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day_selected-intermediate .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_selected:hover {
  background-color: #df6435;
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day_selected-intermediate .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_selected {
  background-color: var(--red);
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day__btn.vanilla-calendar-day__btn_disabled {
  background-color: var(--red);
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day__btn.vanilla-calendar-day__btn_disabled.vanilla-calendar-day__btn_today {
  background-color: var(--red);
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day__btn.vanilla-calendar-day__btn_disabled.vanilla-calendar-day__btn_weekend {
  background-color: var(--red);
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day__btn {
  background: transparent;
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day__btn.vanilla-calendar-day__btn_weekend {
  background: transparent;
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day__btn.vanilla-calendar-day__btn_today {
  background-color: var(--secondary);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day__btn:hover {
  color: var(--headerColor);
  background-color: var(--hoverPrimary);
  cursor: pointer;
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day__btn.vanilla-calendar-day__btn_prev, .vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day__btn.vanilla-calendar-day__btn_next {
  color: color-mix(in srgb, var(--bodyTextColor), transparent 50%);
}
.vanilla-calendar.vanilla-calendar_to-input .vanilla-calendar-day__btn.vanilla-calendar-day__btn_selected {
  background-color: var(--red);
  color: var(--bodyTextColor);
}
.vanilla-calendar.vanilla-calendar_to-input .reservation-calendar-actions {
  display: flex;
  justify-content: center;
}
.vanilla-calendar.vanilla-calendar_to-input .calendar-confirm-btn {
  text-align: center;
  font-size: 0.875rem;
  line-height: 2.75rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-weight: 400;
  width: 90%;
  min-width: 6.25rem;
  margin: 0.75rem 0 0 0;
  color: var(--bodyTextColorWhite);
  padding: 0 1.5rem;
  box-sizing: border-box;
  background-color: var(--headerColor);
  border-radius: 2rem;
  border: none;
  box-shadow: 3px 3px 0px 0px var(--primary);
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s, color 0.3s, background-color 0.3s;
}
.vanilla-calendar.vanilla-calendar_to-input .calendar-confirm-btn:hover {
  box-shadow: 0 0 0 0 var(--primary);
  background-color: var(--hoverPrimary);
  color: var(--headerColor);
  cursor: pointer;
}
.vanilla-calendar.vanilla-calendar_to-input .calendar-confirm-btn.is-hidden {
  display: none;
}

/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1116 {
    /* 200px - 300px top */
    padding: clamp(11.5rem, 16.82vw, 13.75rem) 0 0 0;
    background-color: var(--primaryLight);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-1116:before {
    /* textured pattern */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    /* changes to a desktop image at tablet */
    background: url("../img/hero-bg-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    /* prevents the mouse from interacting with itand also in dev tool mode */
    pointer-events: none;
  }
  #hero-1116 .cs-container {
    padding: 0 1rem;
    width: 100%;
    max-width: 90rem;
    margin: auto;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5rem;
  }
  #hero-1116 .cs-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #hero-1116 .cs-image-group {
    flex: 1 1 auto;
    max-width: 100%;
    display: flex;
    gap: 1rem;
    margin: 0;
  }
  #hero-1116 .cs-picture {
    overflow: hidden;
    filter: drop-shadow(6px 6px 0px var(--headerColor));
  }
  #hero-1116 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  #hero-1116 .cs-picture1 {
    flex: 1 1 calc(50% - 0.5rem);
  }
  #hero-1116 .cs-image-group-2 {
    flex: 1 1 calc(50% - 0.5rem);
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
  }
  #hero-1116 .cs-image-group-2 .cs-picture3 {
    border-radius: 50%;
    overflow: hidden;
  }
  #hero-1116 .cs-hero-title, #hero-1116 .cs-text {
    text-align: center;
  }
  #hero-1116 .divider-section {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 150px;
    mask-image: url("../img/cloud-mask-img.png");
    mask-size: cover;
    mask-position: bottom center;
    background-color: var(--secondaryLight);
  }
  #hero-1116 .divider-section-2 {
    position: absolute;
    bottom: 0.6rem;
    z-index: 1;
    width: 100%;
    height: 150px;
    mask-image: url("../img/cloud-mask-img.png");
    mask-size: cover;
    mask-position: bottom center;
    background-color: var(--secondary);
  }
  #hero-1116 .gandras-svencia-img {
    position: absolute;
    top: -5rem;
    left: 80%;
    width: 4em;
    height: auto;
    z-index: 1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-1116 {
    padding: clamp(13.5rem, 16.82vw, 13.75rem) 0 0 0;
  }
  #hero-1116 .cs-image-group {
    flex: 1 1 auto;
    max-width: 43.75rem;
    display: flex;
    gap: 2rem;
    margin: 0;
    max-height: 35rem;
  }
  #hero-1116 .cs-image-group .cs-picture1 {
    flex: 1 1 calc(50% - 1rem);
  }
  #hero-1116 .cs-image-group .cs-image-group-2 {
    flex: 1 1 calc(50% - 1rem);
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
  }
  #hero-1116 .cs-image-group .cs-image-group-2 .cs-picture3 {
    border-radius: 50%;
    overflow: hidden;
  }
  #hero-1116 .cs-hero-title, #hero-1116 .cs-text {
    text-align: center;
  }
  #hero-1116 .gandras-svencia-img {
    position: absolute;
    top: -5rem;
    left: 100%;
    width: 7em;
    height: auto;
    z-index: 1;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-1116 {
    padding: clamp(11.5rem, 16.82vw, 13.75rem) 0 0 0;
    text-align: left;
  }
  #hero-1116 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #hero-1116 .cs-content {
    flex: 1 1 calc(50% - 2.5rem);
    align-items: flex-start;
    order: 2;
  }
  #hero-1116 .cs-image-group {
    flex: 1 1 calc(50% - 2.5rem);
    display: flex;
    gap: 2rem;
    margin: 0;
    max-height: 35rem;
  }
  #hero-1116 .cs-image-group .cs-picture1 {
    flex: 1 1 calc(50% - 1rem);
  }
  #hero-1116 .cs-image-group .cs-image-group-2 {
    flex: 1 1 calc(50% - 1rem);
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
  }
  #hero-1116 .cs-hero-title, #hero-1116 .cs-text {
    text-align: left;
  }
  #hero-1116 .gandras-svencia-img {
    position: absolute;
    top: -10rem;
    left: 5%;
    width: 7em;
    height: auto;
    z-index: 1;
  }
}
/* Large Desktop - 1400px */
@media only screen and (min-width: 87.5rem) {
  #hero-1116 .gandras-svencia-img {
    position: absolute;
    top: -10rem;
    left: 77%;
    width: 11em;
    height: auto;
    z-index: 1;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-2129 {
    padding: clamp(3.75rem, 7.82vw, 4rem) 0 0 0;
    background-color: var(--primaryLight);
    position: relative;
  }
  #services-2129 .cs-container {
    position: relative;
    z-index: 2;
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 44rem;
    margin: auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-2129 .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;
  }
  #services-2129 .cs-title {
    margin: 0;
  }
  #services-2129 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    column-gap: clamp(1rem, 2.5vw, 1.25rem);
    row-gap: 1.5rem;
  }
  #services-2129 .cs-item {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-column: span 12;
  }
  #services-2129 .cs-item:hover .cs-picture img {
    transform: scale(1.1);
  }
  #services-2129 .cs-item:hover .cs-h3 {
    color: var(--primary);
  }
  #services-2129 .cs-item:nth-child(3n+1) .cs-picture {
    border: 2px solid var(--hoverPrimary);
    border-radius: 1.25rem;
  }
  #services-2129 .cs-item:nth-child(3n+2) .cs-picture {
    border: 2px solid var(--primary);
    border-radius: 1.25rem;
  }
  #services-2129 .cs-item:nth-child(3n+3) .cs-picture {
    border: 2px solid var(--green);
    border-radius: 1.25rem;
  }
  #services-2129 .cs-link {
    text-align: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #services-2129 .cs-picture {
    width: 100%;
    height: 15rem;
    margin-bottom: 0.75rem;
    border-radius: 1rem;
    overflow: hidden;
    display: block;
    position: relative;
  }
  #services-2129 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s;
  }
  #services-2129 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #services-2129 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #services-2129 .divider-section {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 600px;
    mask-image: url("../img/bg-divider-mask.png");
    mask-size: cover;
    mask-position: center center;
    background-color: var(--blue);
    margin-top: -25rem;
  }
  #services-2129 .divider-section .cs-cloud-1-img {
    display: block;
    position: absolute;
    top: 25%;
    left: 1%;
    width: 12em;
    height: auto;
    z-index: 1;
    transform-origin: 50% 60%;
    animation: cs-cloud-sway 5.5s ease-in-out infinite;
    will-change: transform;
  }
  #services-2129 .divider-section .cs-cloud-2-img {
    display: block;
    position: absolute;
    top: 15%;
    right: 1%;
    width: 12em;
    height: auto;
    z-index: 1;
    transform-origin: 50% 60%;
    animation: cs-cloud-sway 4.5s ease-in-out infinite;
    will-change: transform;
  }
  #services-2129 .divider-section .cs-cloud-3-img {
    display: block;
    position: absolute;
    top: 65%;
    right: 5%;
    width: 8.75em;
    height: auto;
    z-index: 1;
    transform-origin: 50% 60%;
    animation: cs-cloud-sway 5.5s ease-in-out infinite;
    will-change: transform;
  }
  #services-2129 .divider-section .cs-cloud-4-img {
    display: block;
    position: absolute;
    top: 59%;
    left: 14%;
    width: 5.75em;
    height: auto;
    z-index: 1;
    animation: cs-cloud-sway 4.5s ease-in-out infinite;
    will-change: transform;
  }
  #services-2129 .divider-section .cs-cloud-5-img {
    display: none;
  }
  #services-2129 .divider-section .cs-cloud-6-img {
    display: block;
    position: absolute;
    top: 80%;
    right: 50%;
    width: 12em;
    height: auto;
    z-index: 1;
    animation: cs-cloud-sway 4.5s ease-in-out infinite;
    will-change: transform;
  }
  #services-2129 .divider-section .gandras-img {
    display: block;
    position: absolute;
    top: 60%;
    right: 0;
    width: 10em;
    height: auto;
    z-index: 1;
    animation: cs-cloud-sway 3s ease-in-out infinite;
    will-change: transform;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-2129 .cs-container {
    max-width: 74rem;
  }
  #services-2129 .cs-item {
    grid-column: span 3;
  }
  #services-2129 .cs-picture {
    /* 180px - 340px */
    height: clamp(11.25rem, 22.5vw, 21.25rem);
    margin-bottom: 1.5rem;
  }
  #services-2129 .divider-section .cs-cloud-1-img {
    display: block;
    position: absolute;
    top: 25%;
    left: 1%;
    width: 12em;
    height: auto;
    z-index: 1;
    transform-origin: 50% 60%;
    animation: cs-cloud-sway 5.5s ease-in-out infinite;
    will-change: transform;
  }
  #services-2129 .divider-section .cs-cloud-2-img {
    display: block;
    position: absolute;
    top: 15%;
    right: 1%;
    width: 12em;
    height: auto;
    z-index: 1;
    transform-origin: 50% 60%;
    animation: cs-cloud-sway 4.5s ease-in-out infinite;
    will-change: transform;
  }
  #services-2129 .divider-section .cs-cloud-3-img {
    display: block;
    position: absolute;
    top: 59%;
    right: 22%;
    width: 10em;
    height: auto;
    z-index: 1;
    transform-origin: 50% 60%;
    animation: cs-cloud-sway 5.5s ease-in-out infinite;
    will-change: transform;
  }
  #services-2129 .divider-section .cs-cloud-4-img {
    display: block;
    position: absolute;
    top: 40%;
    left: 45%;
    width: 8.75em;
    height: auto;
    z-index: 1;
    animation: cs-cloud-sway 4.5s ease-in-out infinite;
    will-change: transform;
  }
  #services-2129 .divider-section .cs-cloud-5-img {
    display: block;
    position: absolute;
    top: 70%;
    left: 25%;
    width: 10em;
    height: auto;
    z-index: 1;
    animation: cs-cloud-sway 5.5s ease-in-out infinite;
    will-change: transform;
  }
  #services-2129 .divider-section .cs-cloud-6-img {
    display: block;
    position: absolute;
    top: 80%;
    right: 30%;
    width: 12em;
    height: auto;
    z-index: 1;
    animation: cs-cloud-sway 4.5s ease-in-out infinite;
    will-change: transform;
  }
  #services-2129 .divider-section .gandras-img {
    display: block;
    position: absolute;
    top: 60%;
    right: 0;
    width: 10em;
    height: auto;
    z-index: 1;
    animation: cs-cloud-sway 3s ease-in-out infinite;
    will-change: transform;
  }
}
@media only screen and (min-width: 89rem) {
  #services-2129 .divider-section .gandras-img {
    display: block;
    position: absolute;
    top: 30%;
    right: 0;
    width: 12em;
    height: auto;
    z-index: 1;
    animation: cs-cloud-sway 3s ease-in-out infinite;
    will-change: transform;
  }
}
@media only screen and (min-width: 111rem) {
  #services-2129 .divider-section .gandras-img {
    display: block;
    position: absolute;
    top: 30%;
    right: 10%;
    width: 12em;
    height: auto;
    z-index: 1;
    animation: cs-cloud-sway 3s ease-in-out infinite;
    will-change: transform;
  }
}
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1487 {
    padding: clamp(4.75rem, 7.82vw, 7rem) 0 10rem 0;
    background-color: var(--primaryLight);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-1487 .cs-container {
    position: relative;
    width: 100%;
    padding: 0 1rem;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    z-index: 2;
  }
  #sbs-1487 .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;
  }
  #sbs-1487 .cs-title {
    max-width: 20ch;
  }
  #sbs-1487 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-1487 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-1487 .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(2.24vw, 0.9em);
    width: 40.6875em;
    height: 42.4375em;
    display: block;
    position: relative;
    z-index: 1;
  }
  #sbs-1487 .cs-picture {
    box-sizing: border-box;
    overflow: hidden;
    position: absolute;
  }
  #sbs-1487 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbs-1487 .cs-picture1 {
    width: 40.4375em;
    height: 37.5em;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #sbs-1487 .cs-picture2 {
    width: 20em;
    height: 20em;
    background-color: #fff;
    border: 0.625em solid #ffffff;
    border-radius: 50%;
    right: 0;
    bottom: 0;
    z-index: 10;
  }
  #sbs-1487 .cs-flower {
    width: 9.5625em;
    height: auto;
    position: absolute;
    top: 2.6875em;
    right: 0.75em;
    z-index: 1;
  }
  #sbs-1487 .cs-squiggle {
    width: 13.4375em;
    height: auto;
    position: absolute;
    bottom: 9.0625em;
    left: 3.125em;
  }
  #sbs-1487 .cs-mask {
    width: 40.5625em;
    height: 37.625em;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: -1;
  }
  #sbs-1487 .cs-top {
    width: 100%;
    min-width: 120rem;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbs-1487 .cs-bottom {
    width: 100%;
    min-width: 120rem;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #sbs-1487 .cs-green-snowflake {
    position: absolute;
    top: -6%;
    right: 9%;
    width: 2.5em;
    height: auto;
    z-index: 1;
    transform-origin: center;
    animation: cs-rotate-clockwise 8s linear infinite;
    will-change: transform;
  }
  #sbs-1487 .cs-arrow-img {
    position: absolute;
    bottom: -7%;
    right: 16%;
    width: 7em;
    height: auto;
    z-index: 1;
    transform: rotate(45deg);
  }
  #sbs-1487 .gandras-bega {
    transform: scaleX(-1);
    display: block;
    position: absolute;
    bottom: -12%;
    left: 10%;
    width: 7rem;
    height: auto;
    z-index: 1;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-1487 {
    padding: clamp(4.75rem, 7.82vw, 7rem) 0 clamp(3.75rem, 7.82vw, 6rem) 0;
  }
  #sbs-1487 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #sbs-1487 .cs-image-group {
    font-size: min(1.2vw, 1em);
    flex: none;
  }
  #sbs-1487 .cs-green-snowflake {
    position: absolute;
    top: 0;
    right: 1%;
    width: 3em;
    height: auto;
    z-index: 1;
    transform-origin: center;
    animation: cs-rotate-clockwise 8s linear infinite;
    will-change: transform;
  }
  #sbs-1487 .cs-arrow-img {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 15em;
    height: auto;
    z-index: 1;
    transform: rotate(60deg);
  }
  #sbs-1487 .gandras-bega {
    transform: scaleX(-1);
    display: block;
    position: absolute;
    bottom: -10%;
    left: -4%;
    width: 12rem;
    height: auto;
    z-index: 1;
  }
}
/*-- -------------------------- -->
<---       Why Choose Us        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #why-choose-12 {
    padding: var(--sectionPadding);
    background-color: var(--secondary);
    position: relative;
  }
  #why-choose-12 .cs-container {
    position: relative;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    margin-bottom: clamp(2.75rem, 7.82vw, 4.25rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #why-choose-12 .cs-content {
    position: relative;
    /* 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;
    z-index: 2;
  }
  #why-choose-12 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
  }
  #why-choose-12 .cs-item {
    position: relative;
    text-align: center;
    list-style: none;
    width: 100%;
    max-width: 22.5rem;
    margin: 0;
    padding: 0;
  }
  #why-choose-12 .cs-item:last-of-type:after {
    display: none;
  }
  #why-choose-12 .cs-item:nth-of-type(even):after {
    transform: translateX(-50%) rotate(-135deg) scaleX(-1);
  }
  #why-choose-12 .cs-item:after {
    content: "";
    position: relative;
    right: -50%;
    display: block;
    /* 54px - 84px */
    width: clamp(3.375rem, 6vw, 5.25rem);
    height: clamp(3.375rem, 6vw, 5.25rem);
    margin-top: 2.625rem;
    background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Icons/curved-arrow.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transform: translateX(-50%) rotate(135deg);
  }
  #why-choose-12 .cs-picture {
    /* 68px - 88px */
    width: clamp(8rem, 7vw, 11rem);
    height: clamp(8rem, 7vw, 11rem);
    margin: auto;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    background-color: transparent;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #why-choose-12 .cs-picture .icon-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
  }
  #why-choose-12 .cs-h3 {
    font-size: 1.5rem;
    line-height: 1.2em;
    text-align: inherit;
    font-weight: 400;
    margin: 0;
    margin-bottom: 1rem;
    color: var(--headerColor);
  }
  #why-choose-12 .cs-item-text {
    font-size: 1rem;
    text-align: inherit;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #why-choose-12 .custom-shape-divider-bottom-1771322929 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
  }
  #why-choose-12 .custom-shape-divider-bottom-1771322929 svg {
    position: relative;
    display: block;
    width: calc(120% + 1.3px);
    height: 80px;
  }
  #why-choose-12 .custom-shape-divider-bottom-1771322929 .shape-fill {
    fill: var(--primaryLight);
  }
  #why-choose-12 .cs-yellow-star-img {
    position: absolute;
    top: -60%;
    right: 0;
    width: 3em;
    height: auto;
    z-index: 1;
  }
  #why-choose-12 .gandras-moko {
    position: absolute;
    bottom: -7%;
    left: 10%;
    width: 6em;
    height: auto;
    z-index: 1;
    transform: rotate(-15deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #why-choose-12 .cs-card-group {
    flex-direction: row;
    justify-content: space-between;
  }
  #why-choose-12 .cs-item {
    position: relative;
  }
  #why-choose-12 .cs-item:nth-of-type(1):after {
    transform: rotate(45deg);
  }
  #why-choose-12 .cs-item:nth-of-type(2):after {
    transform: rotate(135deg) scaleX(-1);
  }
  #why-choose-12 .cs-item:after {
    content: "";
    position: absolute;
    right: -4rem;
    top: 0;
    transform: rotate(45deg);
    margin-top: 1.5rem;
  }
  #why-choose-12 .cs-picture {
    margin-bottom: 2rem;
  }
  #why-choose-12 .cs-yellow-star-img {
    position: absolute;
    top: -40%;
    right: 0;
    width: 3em;
    height: auto;
    z-index: 1;
  }
  #why-choose-12 .gandras-moko {
    position: absolute;
    bottom: -19%;
    left: 18%;
    width: 8.125em;
    height: auto;
    z-index: 1;
    transform: rotate(-15deg);
  }
}
@media only screen and (min-width: 64rem) {
  #why-choose-12 .cs-item:after {
    right: -6rem;
  }
  #why-choose-12 .cs-yellow-star-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 3em;
    height: auto;
    z-index: 1;
  }
  #why-choose-12 .gandras-moko {
    position: absolute;
    bottom: -19%;
    left: 23%;
    width: 10em;
    height: auto;
    z-index: 1;
    transform: rotate(-15deg);
  }
}
/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-1508 {
    padding: var(--sectionPadding);
    background-color: var(--primaryLight);
    overflow: hidden;
  }
  #gallery-1508 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: grid;
    grid-auto-flow: row;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
    position: relative;
  }
  #gallery-1508 .cs-button-container {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: clamp(3rem, 6vw, 4rem);
  }
  #gallery-1508 .cs-content {
    position: relative;
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    /* 48px - 64px */
    margin-bottom: clamp(3rem, 6vw, 4rem);
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    z-index: 2;
  }
  #gallery-1508 .cs-picture-group {
    position: relative;
    /* stops the name and text being overflown during the transition */
    overflow: hidden;
  }
  #gallery-1508 .cs-picture-group:nth-child(3n+1) {
    border: 2px solid var(--primary);
    border-radius: 1.25rem;
  }
  #gallery-1508 .cs-picture-group:nth-child(3n+2) {
    border: 2px solid var(--hoverPrimary);
    border-radius: 1.25rem;
  }
  #gallery-1508 .cs-picture-group:nth-child(3n+3) {
    border: 2px solid var(--green);
    border-radius: 1.25rem;
  }
  #gallery-1508 .cs-image {
    width: 100%;
    height: 17.5rem;
    border-radius: 1.25rem;
    display: block;
    position: relative;
    /* clips the image corners */
    overflow: hidden;
  }
  #gallery-1508 .cs-image img {
    width: 100%;
    height: 100%;
    /* makes it act like a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #gallery-1508 .cs-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
  }
  #gallery-1508 .cs-h3,
  #gallery-1508 .cs-item-text {
    width: fit-content;
    margin: 0;
    padding: 0.75rem 1rem;
    color: #fff;
    background-color: #1a1a1a;
    border-radius: 0.5rem;
    transition: transform 0.3s, opacity 0.3s;
  }
  #gallery-1508 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1rem, 1vw, 1.1rem);
    font-weight: 300;
    line-height: 1.2em;
    transition-delay: 0.05s;
  }
  #gallery-1508 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    padding: 0.75rem 1rem;
  }
  #gallery-1508 .cs-graphic {
    display: none;
    position: absolute;
  }
  #gallery-1508 .cs-graphic-one {
    width: 8.625rem;
    height: 11.9375rem;
    top: 13rem;
    right: -6.8125rem;
    transform: rotate(104deg);
  }
  #gallery-1508 .cs-graphic-two {
    width: 12.3125rem;
    height: 8.375rem;
    bottom: -4.5625rem;
    left: -5.5625rem;
  }
  #gallery-1508 .cs-decoration-img {
    position: absolute;
    top: -20%;
    right: 1%;
    width: 2em;
    height: auto;
    z-index: 1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-1508 .cs-container {
    max-width: 80rem;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
  #gallery-1508 .cs-content {
    grid-column: span 12;
  }
  #gallery-1508 .cs-picture-group:nth-child(2) {
    display: block;
    grid-column: span 6;
    grid-row: span 2;
  }
  #gallery-1508 .cs-picture-group:nth-child(3) {
    grid-column: span 6;
    grid-row: span 1;
  }
  #gallery-1508 .cs-picture-group:nth-child(4) {
    grid-column: span 6;
    grid-row: span 2;
  }
  #gallery-1508 .cs-picture-group:nth-child(5) {
    grid-column: span 6;
    grid-row: span 1;
  }
  #gallery-1508 .cs-picture-group:nth-child(6) {
    grid-column: span 12;
    grid-row: span 1;
  }
  #gallery-1508 .cs-picture-group:nth-child(7) {
    grid-column: span 6;
    grid-row: span 1;
  }
  #gallery-1508 .cs-picture-group:nth-child(8) {
    grid-column: span 6;
    grid-row: span 1;
  }
  #gallery-1508 .cs-image {
    height: 100%;
  }
  #gallery-1508 .cs-decoration-img {
    position: absolute;
    top: -31%;
    right: 31%;
    width: 2.75em;
    height: auto;
    z-index: 1;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #gallery-1508 .cs-container {
    grid-template-rows: repeat(4, 1fr);
  }
  #gallery-1508 .cs-content {
    text-align: left;
    margin-top: -3.3125rem;
    align-items: flex-start;
    grid-column: span 8;
  }
  #gallery-1508 .cs-picture-group:nth-child(2) {
    grid-column: span 4;
    grid-row: span 1;
  }
  #gallery-1508 .cs-picture-group:nth-child(3) {
    grid-column: span 4;
    grid-row: span 2;
  }
  #gallery-1508 .cs-picture-group:nth-child(4) {
    grid-column: span 4;
    grid-row: span 1;
  }
  #gallery-1508 .cs-picture-group:nth-child(5) {
    grid-column: span 4;
    grid-row: span 2;
  }
  #gallery-1508 .cs-picture-group:nth-child(6) {
    grid-column: span 4;
    grid-row: span 2;
  }
  #gallery-1508 .cs-picture-group:nth-child(7) {
    grid-column: span 4;
    grid-row: span 1;
  }
  #gallery-1508 .cs-picture-group:nth-child(8) {
    grid-column: span 4;
    grid-row: span 1;
  }
  #gallery-1508 .cs-h3,
  #gallery-1508 .cs-item-text {
    opacity: 0;
    transform: translateY(2rem);
  }
  #gallery-1508 .cs-picture-group:hover .cs-h3,
  #gallery-1508 .cs-picture-group:hover .cs-item-text {
    opacity: 1;
    transform: translateY(0);
  }
  #gallery-1508 .cs-decoration-img {
    position: absolute;
    top: -12%;
    right: 56%;
    width: 2em;
    height: auto;
    z-index: 1;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #gallery-1508 .cs-content {
    margin-top: 0;
  }
  #gallery-1508 .cs-graphic {
    display: block;
  }
  #gallery-1508 .cs-decoration-img {
    position: absolute;
    top: -30%;
    right: 62%;
    width: 3em;
    height: auto;
    z-index: 1;
  }
}
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-342.category-catalog {
    padding: clamp(9.25rem, 7.423rem + 7.308vw, 14rem) 0 0 0;
  }
  #services-342.category-catalog .cs-container {
    gap: clamp(2rem, 6vw, 3rem);
  }
  #services-342.category-catalog .cs-filter-button-group {
    margin: 0;
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    column-gap: 2rem;
    background-color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    outline: 1px solid var(--hoverPrimary);
    outline-offset: -2px;
    z-index: 2;
  }
  #services-342.category-catalog .cs-filter-button-group .cs-button {
    display: block;
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    background-color: transparent;
    border: none;
    border-radius: 0.5rem;
    transition: color 0.3s;
  }
  #services-342.category-catalog .cs-filter-button-group .cs-button:hover {
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    cursor: pointer;
  }
  #services-342.category-catalog .cs-filter-button-group .cs-button.cs-active {
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
  }
  #services-342.category-catalog .date-filter-container {
    position: relative;
    display: flex;
    align-items: center;
  }
  #services-342.category-catalog .date-filter-container #calendar-input {
    cursor: pointer;
    width: auto;
    min-width: 140px;
    text-align: center;
    border: 1px solid var(--primary);
  }
  #services-342.category-catalog .date-filter-container #calendar-input::placeholder {
    color: var(--bodyTextColor);
  }
  #services-342.category-catalog {
    /* The library creates a div with this class for the popup */
  }
  #services-342.category-catalog .vanilla-calendar {
    position: absolute;
    z-index: 100 !important;
    /* Center the popup relative to the input */
    left: 50% !important;
    transform: translateX(-50%);
    top: 100% !important;
    margin-top: 0.5rem;
  }
  #services-342.category-catalog .cs-rainbow-img {
    position: absolute;
    bottom: -26%;
    right: 4%;
    width: 6.25em;
    height: auto;
    z-index: 1;
    transform: rotate(20deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-342 .cs-card-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #services-342 .cs-item {
    width: clamp(31.85%, 30.5vw, 32.28%);
  }
  #services-342 .cs-rainbow-img {
    position: absolute;
    bottom: -40%;
    right: 2%;
    width: 9em;
    height: auto;
    z-index: 1;
    transform: rotate(20deg);
  }
  #services-342 .cs-arrow-img {
    position: absolute;
    bottom: 0;
    left: -2%;
    width: 11em;
    height: auto;
    z-index: 1;
    transform: scaleX(-1) rotate(10deg);
  }
  #services-342 .cs-flower-yellow-img {
    display: none;
  }
  #services-342 .cs-flower-green-img {
    display: none;
  }
  #services-342.category-catalog .cs-rainbow-img {
    position: absolute;
    bottom: -80%;
    right: 3%;
    width: 9em;
    height: auto;
    z-index: 1;
    transform: rotate(20deg);
  }
}
@media only screen and (min-width: 64rem) {
  #services-342.category-catalog .cs-filter-button-group {
    padding: 0.75rem 1rem;
  }
}
@media only screen and (min-width: 100rem) {
  #services-342.category-catalog .cs-rainbow-img {
    position: absolute;
    bottom: -94%;
    right: 3%;
    width: 10em;
    height: auto;
    z-index: 1;
    transform: rotate(20deg);
  }
}
/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #website-gallery {
    padding: clamp(9.25rem, 7.423rem + 7.308vw, 14rem) 1rem 0 1rem;
    background-color: var(--primaryLight);
    overflow: hidden;
    position: relative;
  }
  #website-gallery .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: grid;
    grid-auto-flow: row;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
    position: relative;
  }
  #website-gallery .cs-button-container {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: clamp(3rem, 6vw, 4rem);
  }
  #website-gallery .cs-button-container .cs-arrow-img {
    position: absolute;
    top: 20%;
    right: 10%;
    transform: rotate(70deg);
    width: 10rem;
    height: auto;
    z-index: 2;
  }
  #website-gallery .cs-content {
    position: relative;
    /* changes to 1280px at tablet */
    max-width: 44rem;
    margin: auto;
    padding: 0 1rem;
    /* 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;
  }
  #website-gallery .cs-title {
    margin: 0 0 1.25rem 0;
  }
  #website-gallery .cs-picture-group {
    position: relative;
    /* stops the name and text being overflown during the transition */
    overflow: hidden;
  }
  #website-gallery .cs-picture-group:nth-child(3n+1) {
    border: 2px solid var(--primary);
    border-radius: 1.25rem;
  }
  #website-gallery .cs-picture-group:nth-child(3n+2) {
    border: 2px solid var(--hoverPrimary);
    border-radius: 1.25rem;
  }
  #website-gallery .cs-picture-group:nth-child(3n+3) {
    border: 2px solid var(--green);
    border-radius: 1.25rem;
  }
  #website-gallery .cs-image {
    width: 100%;
    height: 17.5rem;
    border-radius: 1.25rem;
    display: block;
    position: relative;
    /* clips the image corners */
    overflow: hidden;
  }
  #website-gallery .cs-image img {
    width: 100%;
    height: 100%;
    /* makes it act like a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #website-gallery .cs-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
  }
  #website-gallery .cs-h3,
  #website-gallery .cs-item-text {
    width: fit-content;
    margin: 0;
    padding: 0.75rem 1rem;
    color: #fff;
    background-color: #1a1a1a;
    border-radius: 0.5rem;
    transition: transform 0.3s, opacity 0.3s;
  }
  #website-gallery .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1rem, 1vw, 1.1rem);
    font-weight: 300;
    line-height: 1.2em;
    transition-delay: 0.05s;
  }
  #website-gallery .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    padding: 0.75rem 1rem;
  }
  #website-gallery .cs-graphic {
    display: none;
    position: absolute;
  }
  #website-gallery .cs-graphic-one {
    width: 8.625rem;
    height: 11.9375rem;
    top: 13rem;
    right: -6.8125rem;
    transform: rotate(104deg);
  }
  #website-gallery .cs-graphic-two {
    width: 12.3125rem;
    height: 8.375rem;
    bottom: -4.5625rem;
    left: -5.5625rem;
  }
  #website-gallery .cs-decoration-img {
    position: absolute;
    top: -20%;
    right: 1%;
    width: 2em;
    height: auto;
    z-index: 1;
  }
  #website-gallery .divider-section {
    width: 100%;
    height: 70px;
    margin-top: clamp(3.75rem, 7.82vw, 6rem);
    mask-image: url("../img/waves-mask.svg");
    mask-size: cover;
    mask-position: bottom center;
    background-color: var(--secondary);
  }
  #website-gallery .butterfly-img {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #website-gallery .cs-content {
    max-width: 80rem;
  }
  #website-gallery .cs-container {
    max-width: 80rem;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(10, 17.5rem);
  }
  #website-gallery .cs-picture-group:nth-child(1), #website-gallery .cs-picture-group:nth-child(7) {
    display: block;
    grid-column: span 6;
    grid-row: span 2;
  }
  #website-gallery .cs-picture-group:nth-child(2), #website-gallery .cs-picture-group:nth-child(8) {
    grid-column: span 6;
    grid-row: span 1;
  }
  #website-gallery .cs-picture-group:nth-child(3), #website-gallery .cs-picture-group:nth-child(9) {
    grid-column: span 6;
    grid-row: span 2;
  }
  #website-gallery .cs-picture-group:nth-child(4), #website-gallery .cs-picture-group:nth-child(10) {
    grid-column: span 6;
    grid-row: span 1;
  }
  #website-gallery .cs-picture-group:nth-child(5), #website-gallery .cs-picture-group:nth-child(11) {
    grid-column: span 6;
    grid-row: span 2;
  }
  #website-gallery .cs-picture-group:nth-child(6), #website-gallery .cs-picture-group:nth-child(12) {
    grid-column: span 6;
    grid-row: span 2;
  }
  #website-gallery .cs-image {
    height: 100%;
  }
  #website-gallery .cs-decoration-img {
    position: absolute;
    top: -31%;
    right: 31%;
    width: 2.75em;
    height: auto;
    z-index: 1;
  }
  #website-gallery .cs-button-container .cs-arrow-img {
    position: absolute;
    top: -50%;
    right: 10%;
    transform: rotate(60deg);
    width: 16rem;
    height: auto;
    z-index: 2;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #website-gallery .cs-container {
    grid-template-rows: repeat(6, 17.5rem);
    grid-template-columns: repeat(12, 1fr);
  }
  #website-gallery .cs-picture-group:nth-child(1), #website-gallery .cs-picture-group:nth-child(7) {
    grid-column: span 4;
    grid-row: span 2;
  }
  #website-gallery .cs-picture-group:nth-child(2), #website-gallery .cs-picture-group:nth-child(8) {
    grid-column: span 4;
    grid-row: span 1;
  }
  #website-gallery .cs-picture-group:nth-child(3), #website-gallery .cs-picture-group:nth-child(9) {
    grid-column: span 4;
    grid-row: span 2;
  }
  #website-gallery .cs-picture-group:nth-child(4), #website-gallery .cs-picture-group:nth-child(10) {
    grid-column: span 4;
    grid-row: span 2;
  }
  #website-gallery .cs-picture-group:nth-child(5), #website-gallery .cs-picture-group:nth-child(11) {
    grid-column: span 4;
    grid-row: span 1;
  }
  #website-gallery .cs-picture-group:nth-child(6), #website-gallery .cs-picture-group:nth-child(12) {
    grid-column: span 4;
    grid-row: span 1;
  }
  #website-gallery .cs-h3,
  #website-gallery .cs-item-text {
    opacity: 0;
    transform: translateY(2rem);
  }
  #website-gallery .cs-picture-group:hover .cs-h3,
  #website-gallery .cs-picture-group:hover .cs-item-text {
    opacity: 1;
    transform: translateY(0);
  }
  #website-gallery .cs-decoration-img {
    position: absolute;
    top: -12%;
    right: 56%;
    width: 2em;
    height: auto;
    z-index: 1;
  }
  #website-gallery .cs-button-container .cs-arrow-img {
    position: absolute;
    top: -50%;
    right: 10%;
    transform: rotate(60deg);
    width: 16rem;
    height: auto;
    z-index: 2;
  }
  #website-gallery .butterfly-img {
    display: block;
    position: absolute;
    top: 6rem;
    left: 0;
    width: 7em;
    height: auto;
    z-index: 1;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #website-gallery .cs-content {
    margin-top: 0;
  }
  #website-gallery .cs-graphic {
    display: block;
  }
  #website-gallery .cs-decoration-img {
    position: absolute;
    top: -30%;
    right: 62%;
    width: 3em;
    height: auto;
    z-index: 1;
  }
}
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-1150 {
    padding: clamp(9.25rem, 7.423rem + 7.308vw, 14rem) 1rem clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    background-color: var(--primaryLight);
    position: relative;
    z-index: 1;
  }
  #contact-1150 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 44rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    /* 48px - 80px */
    row-gap: clamp(3rem, 6vw, 5rem);
    position: relative;
  }
  #contact-1150 .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;
  }
  #contact-1150 .cs-topper {
    color: var(--primary);
  }
  #contact-1150 .cs-title {
    max-width: 23ch;
    margin: 0;
  }
  #contact-1150 .cs-picture {
    width: 100%;
    /* 240px - 300px */
    height: clamp(15rem, 35vw, 18.75rem);
    margin: 0 0 1.5rem;
    border-radius: 1.5rem;
    /* clips image corners */
    overflow: hidden;
    display: block;
    position: relative;
    border: 2px solid var(--blue);
  }
  #contact-1150 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #contact-1150 .cs-contact-group {
    position: relative;
  }
  #contact-1150 .cs-contact-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0 0 1.5rem;
    color: var(--bodyTextColor);
  }
  #contact-1150 .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
  }
  #contact-1150 .cs-li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
  }
  #contact-1150 .cs-li:hover .cs-icon-wrapper {
    transform: scale(1.1);
  }
  #contact-1150 .cs-header {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 0.75rem;
    color: var(--headerColor);
    display: block;
  }
  #contact-1150 .cs-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    color: var(--bodyTextColor);
    display: block;
    position: relative;
  }
  #contact-1150 .cs-link:hover {
    text-decoration: underline;
  }
  #contact-1150 .cs-icon-wrapper {
    width: 3.75rem;
    height: 3.75rem;
    margin: 0;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents flexbox from squishing it */
    flex: none;
    transition: transform 0.3s;
  }
  #contact-1150 .cs-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #contact-1150 .cs-form {
    position: relative;
    width: 100%;
    /* 24px - 48px top and bottom */
    /* 16px - 32px left and right */
    padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 2rem);
    /* prevents flexbox from affecting height and width */
    box-sizing: border-box;
    background-color: color-mix(in srgb, var(--blue), transparent 30%);
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }
  #contact-1150 .cs-form::before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: url("../img/kids-bg-img.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    top: 0;
    left: 0;
  }
  #contact-1150 .cs-label {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    width: 100%;
    color: var(--headerColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
  }
  #contact-1150 .cs-input {
    font-size: 1rem;
    width: 100%;
    height: 3.5rem;
    padding: 0;
    padding-left: 1.5rem;
    color: var(--headerColor);
    background-color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    border: none;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
    z-index: 1;
  }
  #contact-1150 .cs-input::placeholder {
    color: #7d799c;
    opacity: 0.6;
  }
  #contact-1150 .cs-textarea {
    min-height: 7.5rem;
    padding-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: inherit;
  }
  #contact-1150 .cs-button-solid {
    margin: 0 auto;
  }
  #contact-1150 .cs-graphic {
    display: none;
  }
  #contact-1150 .cs-graphic1 {
    width: 13rem;
    height: auto;
    position: absolute;
    left: -7.5rem;
    top: 8.625rem;
  }
  #contact-1150 .cs-graphic2 {
    width: 12.8125rem;
    height: auto;
    position: absolute;
    right: -9.75rem;
    top: 0.5rem;
  }
  #contact-1150 .gandras-ofise {
    position: absolute;
    bottom: -6%;
    right: 0;
    width: 7rem;
    height: auto;
  }
  #contact-1150 #message-container {
    width: 100%;
    font-size: 0.9rem;
  }
  #contact-1150 #message-container .message-box {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-1150 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #contact-1150 .cs-contact-group {
    width: 50%;
    max-width: 39.375rem;
  }
  #contact-1150 .cs-form {
    width: 46%;
    max-width: 36.125rem;
  }
  #contact-1150 .gandras-ofise {
    position: absolute;
    bottom: -8%;
    right: 27%;
    width: 8rem;
    height: auto;
  }
  #contact-1150 #message-container {
    font-size: 0.95rem;
  }
}
/* Large Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
  #contact-1150 .cs-graphic {
    display: block;
  }
}
/*-- -------------------------- -->
<---          Product           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #product-2471 {
    position: relative;
    padding: clamp(9.25rem, 7.423rem + 7.308vw, 14rem) 1rem clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    overflow: hidden;
    background-color: var(--primaryLight);
  }
  #product-2471 .cs-container {
    position: relative;
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 46.875rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 28px - 64px */
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  #product-2471 .left-container {
    flex: 2 1 320px;
    width: 100%;
  }
  #product-2471 .cs-picture-group {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1vw, 1.25rem);
  }
  #product-2471 .cs-product-info {
    flex: 1 1 320px;
  }
  #product-2471 .cs-large-images {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  #product-2471 .cs-large-image {
    width: 100%;
    /* 320px - 520px */
    height: clamp(20rem, 68vw, 32.5rem);
    /* makes it cover the parent dimensions */
    object-fit: cover;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
  }
  #product-2471 .cs-large-image:first-of-type {
    position: relative;
  }
  #product-2471 .cs-large-image img {
    width: 100%;
    height: 100%;
    /* makes it cover the parent like a background image */
    object-fit: cover;
    display: block;
    border-radius: 1rem;
  }
  #product-2471 .cs-small-images {
    overflow-x: scroll;
    display: flex;
    /* 16px - 20px */
    gap: clamp(1rem, 1vw, 1.25rem);
    padding: 0.25rem;
    position: relative;
    z-index: 10;
  }
  #product-2471 .cs-small-images img {
    border-radius: 0.5rem;
  }
  #product-2471 .cs-thumbnail {
    /* 100px - 120px */
    height: clamp(6.25rem, 8vw, 7.5rem);
    object-fit: cover;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: border-color 0.3s;
  }
  #product-2471 .cs-thumbnail.cs-active {
    outline: 2px dashed var(--primary);
    outline-offset: 2px;
  }
  #product-2471 .cs-thumbnail:hover {
    outline: 2px dashed var(--primary);
    outline-offset: 2px;
  }
  #product-2471 .cs-h3 {
    font-size: clamp(1.625rem, 3.9vw, 2.6rem);
    line-height: 1.2em;
    margin: 0 0 1.5rem;
    color: var(--headerColor);
  }
  #product-2471 .cs-price {
    /* 39px - 49px */
    font-family: "Bakbak One", Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.2em;
    letter-spacing: -1.17px;
    color: var(--primary);
    display: block;
  }
  #product-2471 .cs-price .price-small-text {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    font-weight: bolder;
  }
  #product-2471 .cs-info-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    margin: 1rem 0 1.5rem;
    color: var(--bodyTextColor);
  }
  #product-2471 .cs-button-group {
    display: flex;
    padding-bottom: 2rem;
    border-bottom: 2px dashed var(--headerColor);
  }
  #product-2471 .cs-button-solid-card {
    font-size: 1rem;
    line-height: 3.5rem;
    flex-grow: 1;
  }
  #product-2471 .additional-info {
    padding: clamp(1.5rem, 5.82vw, 4.25rem) 0 clamp(4.5rem, 5.82vw, 4.25rem) 0;
  }
  #product-2471 .additional-info.mobile-only {
    display: block;
  }
  #product-2471 .additional-info.desktop-only {
    display: none;
  }
  #product-2471 .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
  }
  #product-2471 .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  #product-2471 .left-box {
    position: relative;
    flex: 2 1 320px;
    background-color: var(--secondary);
    border-radius: 1rem;
    padding: clamp(1rem, 2vw, 2rem);
  }
  #product-2471 .right-box {
    position: relative;
    flex: 1 1 0;
    background-color: var(--secondary);
  }
  #product-2471 .rainbow-img {
    position: absolute;
    bottom: 3rem;
    left: -1rem;
    width: 9rem;
  }
  #product-2471 .smiling-sun-img {
    position: absolute;
    top: -2.4rem;
    left: 0;
    width: 4rem;
    animation: sun-rocking 5s ease-in-out infinite;
  }
  #product-2471 .divider-section {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 70px;
    margin-top: clamp(3.75rem, 7.82vw, 6rem);
    mask-image: url("../img/waves-mask.svg");
    mask-size: cover;
    mask-position: bottom center;
    background-color: var(--secondary);
  }
  #product-2471 .divider-section-2 {
    position: absolute;
    bottom: 4px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 70px;
    mask-image: url("../img/waves-mask.svg");
    mask-size: cover;
    mask-position: bottom center;
    background-color: var(--primary);
  }
  #product-2471 .stars-img {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #product-2471 .cs-picture-group {
    flex-direction: row-reverse;
  }
  #product-2471 .additional-info {
    padding: clamp(1.5rem, 5.82vw, 4.25rem) 0 8rem 0;
  }
  #product-2471 .cs-small-images {
    overflow: initial;
    flex-direction: column;
    justify-content: center;
  }
  #product-2471 .cs-button-group {
    flex-direction: row;
  }
  #product-2471 .rainbow-img {
    width: 13rem;
  }
  #product-2471 .smiling-sun-img {
    position: absolute;
    top: -3.2rem;
    left: 1rem;
    width: 4.8rem;
  }
}
/* 1024px - 1232px */
@media only screen and (min-width: 64rem) and (max-width: 77rem) {
  #product-2471 .cs-container {
    align-items: flex-start;
  }
  #product-2471 .left-container {
    padding-top: 5rem;
  }
  #product-2471 .cs-picture-group {
    flex-direction: column;
  }
  #product-2471 .cs-picture-group .cs-small-images {
    flex-direction: row;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #product-2471 {
    overflow: visible;
  }
  #product-2471 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    align-items: flex-start;
  }
  #product-2471 .additional-info {
    padding: clamp(1.5rem, 5.82vw, 4.25rem) 0 clamp(4.5rem, 5.82vw, 4.25rem) 0;
  }
  #product-2471 .additional-info.mobile-only {
    display: none;
  }
  #product-2471 .additional-info.desktop-only {
    display: block;
  }
  #product-2471 .right-box {
    flex: 1 1 320px;
  }
  #product-2471 .cs-large-images {
    min-width: 26.25rem;
  }
  #product-2471 .cs-large-image {
    /* 480px - 620px */
    height: clamp(30rem, 43vw, 38.75rem);
  }
  #product-2471 .cs-product-info {
    padding: 0;
    position: sticky;
    top: 9rem;
    align-self: flex-start;
  }
  #product-2471 .smiling-sun-img {
    position: absolute;
    top: -3rem;
    left: 4rem;
    width: 6rem;
  }
}
/*-- -------------------------- -->
<---        Collection          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #collection-1595 {
    padding: clamp(1rem, 3vw, 3.25rem) 1rem clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    background-color: var(--secondary);
    position: relative;
  }
  #collection-1595 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #collection-1595 .cs-content {
    position: relative;
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 31.25rem;
    /* pushes it to the left */
    margin-right: auto;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #collection-1595 .cs-content .gandras-skrenda {
    position: absolute;
    top: -80%;
    left: 16%;
    width: 8rem;
    height: auto;
    z-index: 1;
  }
  #collection-1595 .cs-title {
    font-size: clamp(1.625rem, 3.9vw, 2.6rem);
  }
  #collection-1595 .cs-text {
    margin-bottom: 1rem;
  }
  #collection-1595 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #collection-1595 .cs-card-group {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    column-gap: clamp(1.25rem, 3vw, 2.25rem);
    /* 16px - 40px */
    row-gap: clamp(1rem, 3vw, 2.5rem);
  }
  #collection-1595 .cs-item {
    list-style: none;
    width: 100%;
    margin: 0 0 2rem 0;
    padding: 0;
  }
  #collection-1595 .cs-item:hover .cs-picture img {
    transform: scale(1.05);
  }
  #collection-1595 .cs-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #collection-1595 .cs-picture {
    width: 100%;
    height: 100vw;
    min-height: 15rem;
    max-height: 25rem;
    /* 12px - 20px */
    margin: 0 0 clamp(0.75rem, 2vw, 1.25rem);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s;
    filter: drop-shadow(6px 6px 0px var(--headerColor));
  }
  #collection-1595 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }
  #collection-1595 .cs-product-name {
    /* 20px - 25px */
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    line-height: 1.2em;
    margin: 0 0 0.25rem 0;
    color: var(--headerColor);
  }
  #collection-1595 .cs-price {
    font-size: 1.125rem;
    font-family: "Bakbak One", Arial, Helvetica, sans-serif;
    line-height: 1.2em;
    margin: 0;
    color: var(--primary);
    display: block;
  }
  #collection-1595 .custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
  }
  #collection-1595 .custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(120% + 1.3px);
    height: 80px;
  }
  #collection-1595 .custom-shape-divider-bottom .shape-fill {
    fill: var(--primaryLight);
  }
  .cat-img {
    position: absolute;
    top: 11rem;
    right: 2rem;
    width: 4.5rem;
    animation: sun-rocking 6s ease-in-out infinite;
  }
  .cs-yellow-star-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3rem;
    height: auto;
    z-index: 1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #collection-1595 .cs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #collection-1595 .cs-content .gandras-skrenda {
    position: absolute;
    top: -50%;
    left: 0;
    width: 8rem;
    height: auto;
    z-index: 1;
  }
  #collection-1595 .cs-card-group {
    width: 56%;
    flex-direction: row;
    align-items: stretch;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #collection-1595 .cs-item {
    margin: 0;
  }
  #collection-1595 .cs-item:last-of-type .cs-picture {
    /* 160px - 320px */
    height: clamp(10rem, 26vw, 20rem);
    min-height: 10rem;
  }
  #collection-1595 .cs-link {
    height: 100%;
    justify-content: center;
  }
  #collection-1595 .cs-picture {
    /* 400px - 520px */
    height: clamp(25rem, 50vw, 32.5rem);
    min-height: auto;
    max-height: 100%;
  }
  #collection-1595 .cat-img {
    position: absolute;
    top: 0;
    right: 5rem;
    width: 6rem;
  }
  #collection-1595 .cs-yellow-star-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3rem;
    height: auto;
    z-index: 1;
  }
}
.calendar-container {
  padding: 2rem 0;
}
.calendar-container #calendar {
  pointer-events: none;
  width: 100%;
  border: none;
  background-color: var(--primaryLight);
  outline: 2px solid var(--headerColor);
  box-shadow: 6px 6px 0 0 var(--blue);
}
.calendar-container #calendar .vanilla-calendar-arrow {
  background-color: var(--headerColor);
}
.calendar-container #calendar .vanilla-calendar-month,
.calendar-container #calendar .vanilla-calendar-year {
  font-size: 0.9rem;
  color: var(--bodyTextColor);
}
.calendar-container #calendar .vanilla-calendar-week__day,
.calendar-container #calendar .vanilla-calendar-week__day_weekend {
  color: var(--hoverPrimary);
}
.calendar-container #calendar .vanilla-calendar-day__btn {
  background: transparent;
  color: var(--bodyTextColor);
}
.calendar-container #calendar .vanilla-calendar-day__btn.vanilla-calendar-day__btn_today {
  background-color: var(--secondary);
}
.calendar-container #calendar .vanilla-calendar-day__btn.vanilla-calendar-day__btn_prev, .calendar-container #calendar .vanilla-calendar-day__btn.vanilla-calendar-day__btn_next {
  color: color-mix(in srgb, var(--bodyTextColor), transparent 50%);
}
.calendar-container #calendar .vanilla-calendar-day__btn.vanilla-calendar-day__btn_selected {
  background-color: var(--red);
  color: var(--bodyTextColor);
}
.calendar-container .calendar_info {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-start;
}
.calendar-container .calendar_info .legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.calendar-container .calendar_info .legend-item .legend-indicator {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
}
.calendar-container .calendar_info .legend-item .legend-indicator.legend-free {
  background-color: transparent;
  border: 2px solid var(--bodyTextColor);
}
.calendar-container .calendar_info .legend-item .legend-indicator.legend-reserved {
  background-color: var(--red);
  border: 2px solid var(--bodyTextColor);
}
.calendar-container .calendar_info .legend-item .legend-text {
  font-size: 0.875rem;
  color: var(--bodyTextColor);
  font-weight: 500;
  line-height: 1.4em;
}

.modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  visibility: visible;
  opacity: 1;
  cursor: pointer;
  z-index: 200;
  transition: all 0.3s ease-in;
}
.modal-overlay.hide {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.modal-overlay .modal-wrapper {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background-color: var(--primaryLight);
  border: none;
  border-radius: 2rem;
  overflow: auto;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  cursor: default;
}
.modal-overlay .modal-content {
  position: relative;
  padding: 2.5rem 2rem;
}
.modal-overlay .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.modal-overlay .modal-content .modal-header h3 {
  font-size: clamp(1.325rem, 2.9vw, 1.8125rem);
  margin: 0;
  color: var(--headerColor);
  position: relative;
}
.modal-overlay .modal-content .modal-header h3 .gandras-img {
  display: none;
}
.modal-overlay .modal-content .modal-header .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: Arial, sans-serif;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 2.5rem;
  line-height: 1;
  padding: 0;
  background-color: var(--headerColor);
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--bodyTextColorWhite);
}
.modal-overlay .modal-content .modal-header .close-btn:hover {
  color: var(--primary);
}
.modal-overlay .modal-content .modal-product {
  display: flex;
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 1.5rem;
}
.modal-overlay .modal-content .modal-product h4 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--headerColor);
}
.modal-overlay .modal-content .modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.modal-overlay .modal-content .modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-overlay .modal-content .modal-form .form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--headerColor);
}
.modal-overlay .modal-content .modal-form .form-group input, .modal-overlay .modal-content .modal-form .form-group textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  font-family: inherit;
}
.modal-overlay .modal-content .modal-form .form-group input:focus, .modal-overlay .modal-content .modal-form .form-group textarea:focus {
  outline: 2px solid var(--primary);
  border-color: transparent;
}
.modal-overlay .modal-content .modal-form .form-group textarea {
  font-size: 0.85rem;
  min-height: 5rem;
}
.modal-overlay .modal-content .modal-form .form-group #selected-dates-input:hover {
  cursor: pointer;
}
.modal-overlay .modal-content .modal-form .cs-button-solid {
  width: 100%;
  margin-top: 1rem;
}
.modal-overlay .modal-content .modal-form .errorlist {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--red);
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}
.modal-overlay .modal-content .modal-form .errorlist.nonfield {
  font-weight: 600;
  color: var(--red);
  padding: 0;
  list-style: none;
}
.modal-overlay .modal-content.is-success-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.modal-overlay .modal-content.is-success-modal .modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.modal-overlay .modal-content.is-success-modal .modal-header p {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0;
}
.modal-overlay .modal-content.is-success-modal .order-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
.modal-overlay .modal-content.is-success-modal .order-description h4 {
  margin: 0;
}
.modal-overlay .modal-content.is-success-modal .order-description p {
  font-size: 0.9rem;
  margin: 0;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .modal-overlay .modal-content .modal-header h3 .gandras-img {
    display: block;
    position: absolute;
    top: -1.5rem;
    right: -7.5rem;
    width: 6rem;
    height: 6rem;
  }
  .modal-overlay .modal-content .modal-product {
    display: flex;
    flex-direction: column;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }
  .modal-overlay .modal-content .modal-product h4 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--headerColor);
  }
  .modal-overlay .modal-content .modal-form .form-group input, .modal-overlay .modal-content .modal-form .form-group textarea {
    padding: 1rem 0.8rem;
  }
  .modal-overlay .modal-content .modal-form .form-group textarea {
    min-height: 6.25rem;
  }
  .modal-overlay .modal-content.is-success-modal .modal-header p {
    font-size: 1rem;
  }
  .modal-overlay .modal-content.is-success-modal .order-description p {
    font-size: 1rem;
  }
}
:root {
  --primary: #fc800a;
  --primaryLight: #FBF1E3;
  --secondary: #feecd1;
  --secondaryLight: #fcf7ee;
  --headerColor: #1a1a1a;
  --bodyTextColor: #2e2e2e;
  --bodyTextColorWhite: #fafbfc;
  --borderColor: #a9a9a9;
  --red: #e96b3b;
  --green: #88b520;
  --yellow: #f4a21a;
  --hoverPrimary: #71b0a8;
  --blue: #A5DBEA;
  /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1.125rem);
  --heroHeaderFontSize: clamp(1.875rem, 3.9vw, 3.75rem);
  /* 31px - 49px */
  --headerFontSize: clamp(1.625rem, 3.9vw, 2.8125rem);
  --bodyFontSize: 1rem;
  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

@font-face {
  font-display: swap;
  font-family: "Bakbak One";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/bakbak-one-v11-latin-ext-regular.woff2") format("woff2"), url("../fonts/bakbak-one-v11-latin-ext-regular.ttf") format("truetype");
}
/* inter-300 - latin-ext */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/inter-v20-latin-ext-300.woff2") format("woff2"), url("../fonts/inter-v20-latin-ext-300.ttf") format("truetype");
}
/* inter-regular - latin-ext */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-ext-regular.woff2") format("woff2"), url("../fonts/inter-v20-latin-ext-regular.ttf") format("truetype");
}
/* inter-600 - latin-ext */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v20-latin-ext-600.woff2") format("woff2"), url("../fonts/inter-v20-latin-ext-600.ttf") format("truetype");
}
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bakbak One", Arial, Helvetica, sans-serif;
}

h1 > p, h2 > p, h3 > p, h4 > p, h5 > p, h6 > p {
  margin: 0;
  padding: 0;
  text-align: inherit;
  color: var(--headerColor);
}

*, *:before, *:after {
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
}

.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.cs-hero-title {
  font-size: var(--heroHeaderFontSize);
  font-weight: 400;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1.25rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 400;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 90%;
  margin: 0 0 1.25rem 0;
  color: var(--headerColor);
  position: relative;
  z-index: 2;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0 0 clamp(1.75rem, 3.92vw, 2.5rem) 0;
  color: var(--bodyTextColor);
}

.cs-button-solid {
  text-align: center;
  font-size: 1.125rem;
  font-family: "Bakbak One", Arial, Helvetica, sans-serif;
  line-height: clamp(2.875rem, 8vw, 3.5rem);
  letter-spacing: 0.2px;
  text-decoration: none;
  font-weight: 300;
  min-width: 13.125rem;
  margin: 0;
  color: var(--bodyTextColorWhite);
  padding: 0 1.5rem;
  /* prevents padding and border from affecting height and width */
  box-sizing: border-box;
  background-color: var(--primary);
  border: none;
  border-radius: 2rem;
  box-shadow: 4px 4px 0 0 var(--headerColor);
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s, color 0.3s, background-color 0.3s;
}
.cs-button-solid:hover {
  box-shadow: 0px 0px 0px 0px var(--primary);
  background-color: var(--hoverPrimary);
  color: var(--headerColor);
  cursor: pointer;
}

.cs-button-solid-card {
  text-align: center;
  font-size: 0.875rem;
  font-family: "Bakbak One", Arial, Helvetica, sans-serif;
  line-height: clamp(2.875rem, 8vw, 3rem);
  letter-spacing: 0.2px;
  text-decoration: none;
  font-weight: 300;
  min-width: 9.375rem;
  margin: 0;
  color: var(--bodyTextColorWhite);
  padding: 0 1.5rem;
  /* prevents padding and border from affecting height and width */
  box-sizing: border-box;
  background-color: var(--primary);
  border-radius: 2rem;
  border: none;
  box-shadow: 3px 3px 0px 0px var(--headerColor);
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s, color 0.3s, background-color 0.3s;
}
.cs-button-solid-card:hover {
  box-shadow: 0 0 0 0 var(--headerColor);
  background-color: var(--hoverPrimary);
  color: var(--headerColor);
  cursor: pointer;
}

@keyframes cs-rotate-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes cs-cloud-sway {
  0%, 100% {
    transform: translateX(0) rotate(-1.2deg);
  }
  50% {
    transform: translateX(6px) rotate(1.2deg);
  }
}
@keyframes sun-rocking {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
/* HTMX Spinner Animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.htmx-indicator {
  display: none; /* Hidden by default */
}

.htmx-request .htmx-indicator {
  display: inline-block;
}

.loading-btn .btn-text {
  margin-right: -30px;
}

/* Alternatively, if you apply hx-indicator to the button itself, you can just change its state */
.htmx-request.loading-btn {
  opacity: 0.7;
  pointer-events: none; /* Prevent double clicks */
}
.htmx-request.loading-btn .btn-text {
  margin-right: 0;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px;
  vertical-align: middle;
}

/*# sourceMappingURL=main.css.map */
