@media only screen and (min-width: 0rem) {
  .gallery-section {
    padding: var(--sectionPadding);
  }
  .gallery-section .destination-swiper::before,
  .gallery-section .destination-swiper::after {
    top: 0;
    z-index: 10;
    pointer-events: none;
    width: 5%;
    height: 100%;
    content: "";
    position: absolute;
  }
  .gallery-section .destination-swiper::before {
    left: 0;
    background: #fff;
    background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
  }
  .gallery-section .destination-swiper::after {
    right: 0;
    background: #fff;
    background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
  }
  .gallery-section .cs-title {
    text-align: center;
    width: 100%;
    max-width: unset;
    margin-bottom: clamp(1.225rem, 2.6vw, 2rem);
  }
  .gallery-section .swiper {
    width: 100%;
    height: 100%;
  }
  .gallery-section .swiper-left,
  .gallery-section .swiper-right {
    width: 2rem;
    height: 2rem;
    position: relative;
    bottom: 0;
    background-color: var(--primary);
    z-index: 10;
    padding: 0.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--quaternary, var(--swiper-theme-color));
  }
  .gallery-section .nav-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  .gallery-section .nav.next,
  .gallery-section .nav.prev {
    border-radius: 50%;
    position: relative;
    padding: 2rem;
    border: none;
    background-color: var(--tertiary);
  }
  .gallery-section .nav.next img,
  .gallery-section .nav.prev img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .gallery-section .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
  .gallery-section .swiper-slide .servico {
    opacity: 0;
    transition: all 0.5s;
  }
  .gallery-section .servico {
    color: var(--smooth);
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: clamp(1.3375rem, 2.5vw, 1.9625rem);
  }
  .gallery-section .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-section .swiper {
    width: 100%;
    height: clamp(30rem, 90vw, 35.75rem);
    margin-left: auto;
    margin-right: auto;
    perspective: 1200px;
  }
  .gallery-section .slide-inner {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.5s;
    transform: scaleY(0.8) translateZ(-30px);
  }
  .gallery-section .swiper-slide {
    background-size: cover;
    background-position: center;
  }
  .gallery-section .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 1 !important;
  }
  .gallery-section .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
  }
  .gallery-section .swiper-slide-prev .slide-inner {
    transform: scaleY(0.9) translateZ(-15px);
  }
  .gallery-section .swiper-slide-next .slide-inner {
    transform: scaleY(0.9) translateZ(-15px);
  }
  .gallery-section .swiper-slide-active .slide-inner {
    transform: scaleY(1) translateZ(0px);
  }
  .gallery-section .swiper-slide-active .servico {
    opacity: 1;
  }
  .gallery-section .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 48rem) {
  .gallery-section .destination-swiper::before,
  .gallery-section .destination-swiper::after {
    top: 0;
    z-index: 10;
    pointer-events: none;
    width: 30%;
    height: 100%;
    content: "";
    position: absolute;
  }
  .gallery-section .destination-swiper::before {
    left: 0;
    background: #fff;
    background: linear-gradient(90deg, var(--white) 20%, transparent 100%);
  }
  .gallery-section .destination-swiper::after {
    right: 0;
    background: #fff;
    background: linear-gradient(270deg, var(--white) 20%, transparent 100%);
  }
  .gallery-section .swiper-slide {
    display: flex;
    flex-direction: column;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-884 {
    padding: var(--sectionPadding);
    /* clips floating arrow from overflowing */
    overflow: hidden;
  }
  #services-884 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-884 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 32.625rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #services-884 .cs-card-group {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #services-884 .cs-item {
    list-style: none;
    text-align: left;
    margin: 0;
    /* 24px - 32px left & right */
    padding: 2rem clamp(1.5rem, 2vw, 2rem);
    border-radius: 1rem;
    background-color: rgba(244, 250, 251, 0.2);
    display: flex;
    box-shadow: 0px 0px 6px 2px rgba(36, 36, 35, 0.2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    grid-column: span 4;
  }
  #services-884 .big-number {
    font-weight: 800;
    font-size: clamp(3.1375rem, 8.9vw, 3.5625rem);
    line-height: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--tertiary);
  }
  #services-884 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: var(--tertiary);
  }
  #services-884 .cs-h3.preview {
    display: none;
  }
  #services-884 .cs-item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0 0 1.25rem 0;
    color: var(--smooth);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-884 .cs-container {
    max-width: 80rem;
  }
  #services-884 .cs-item {
    grid-column: span 2;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-884 .cs-card-group {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2vw, 1.25rem);
    width: 80%;
  }
  #services-884 .cs-item {
    position: relative;
    min-height: 25rem;
    width: 20%;
    list-style: none;
    text-align: left;
    margin: 0;
    /* 24px - 32px left & right */
    padding: 2rem clamp(1.5rem, 2vw, 2rem);
    border-radius: 1rem;
    background-color: var(--tertiary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    transition: width 0.5s;
    box-shadow: unset;
  }
  #services-884 .cs-item::before {
    box-shadow: 0px 0px 6px 2px rgba(36, 36, 35, 0.2);
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 1rem;
    opacity: 0;
    position: absolute;
    background-color: rgba(244, 250, 251, 0.2);
    top: 0;
    left: 0;
    z-index: 0;
  }
  #services-884 .cs-item:hover {
    width: 35%;
    background-color: rgba(244, 250, 251, 0.2);
  }
  #services-884 .cs-item:hover::before {
    transition-delay: 0;
    opacity: 1;
    transform: scaleY(1.2);
  }
  #services-884 .cs-item:hover .big-number {
    color: var(--tertiary);
    transform: translateY(-50%);
  }
  #services-884 .cs-item:hover .cs-h3 {
    opacity: 1;
    color: var(--tertiary);
  }
  #services-884 .cs-item:hover .cs-h3.preview {
    opacity: 0;
    transition: unset;
  }
  #services-884 .cs-item:hover .cs-item-p {
    transition: 0;
    opacity: 1;
  }
  #services-884 .cs-h3 {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    font-size: 1.4375rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--white);
    max-width: 70%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s;
  }
  #services-884 .cs-h3.preview {
    opacity: 1;
    font-size: 1.25rem;
    display: block;
    position: relative;
    font-weight: 600;
    top: unset;
    margin-bottom: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    transition: unset;
    max-width: none;
  }
  #services-884 .cs-item-p {
    position: absolute;
    top: 68%;
    transform: translateY(-50%);
    font-size: clamp(0.675rem, 1.2vw, 0.8rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0 0 1.25rem 0;
    opacity: 0;
    color: var(--smooth);
    max-width: 15rem;
    transition: opacity 0.4s;
    z-index: 2;
  }
  #services-884 .big-number {
    transition: all 0.5s;
    color: var(--white);
  }
}
/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1666 {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #services-1666 .cs-container {
    width: 100%;
    /* changes to 1280px at small desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 40px - 64px */
    gap: clamp(2.5rem, 3.9vw, 4rem);
  }
  #services-1666 .cs-image-group {
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
  }
  #services-1666 .cs-picture {
    border-radius: 2rem;
    width: 100%;
    min-height: 20.5rem;
    display: block;
    position: relative;
  }
  #services-1666 .cs-picture img {
    border-radius: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #services-1666 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 40.625rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: none;
  }
  #services-1666 .cs-title {
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 1.96vw, 1.5rem) 0;
  }
  #services-1666 .cs-text {
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 1.96vw, 1.5rem) 0;
  }
  #services-1666 .cs-faq-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2.4vw, 1.25rem);
  }
  #services-1666 .cs-faq-item {
    display: flex;
    align-items: flex-start;
    list-style: none;
    width: 100%;
    background-color: transparent;
    padding: 0;
    box-sizing: border-box;
    transition: border-bottom 0.3s;
  }
  #services-1666 .cs-button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    width: 100%;
    padding: 0;
    padding-left: 1rem;
    padding-top: 0.375rem;
    border: none;
    background: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* 16px - 24px */
    gap: clamp(0.5rem, 1.5vw, 0.85rem);
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #services-1666 .cs-button-text {
    color: var(--primary);
    font-weight: 500;
    width: 90%;
    padding: 0;
    display: block;
  }
  #services-1666 .cs-item-p {
    font-weight: 300;
    font-size: 0.875rem;
    height: auto;
    padding-top: 0;
    opacity: 1;
    transform: scaleY(1);
    line-height: 1.5em;
    width: 100%;
    max-width: none;
    margin: 0;
    /* 16px - 24px */
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    color: var(--smooth);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s, padding-bottom 0.3s, padding-top 0.3s;
  }
  #services-1666 .cs-icon {
    width: 2rem;
    height: 2rem;
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1666 .cs-picture {
    height: 100%;
    min-width: 36.5rem;
    width: 48vw;
    right: 0;
    top: 0;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-1666 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #services-1666 .cs-button {
    align-items: flex-start;
  }
  #services-1666 .cs-content {
    width: 55%;
  }
  #services-1666 .cs-image-group {
    width: 100%;
    max-width: 33.875rem;
  }
  #services-1666 .cs-picture {
    width: 100%;
    min-width: 100%;
  }
}
/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #pricing-357 {
    padding: var(--sectionPadding);
  }
  #pricing-357 .cs-container {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #pricing-357 .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;
  }
  #pricing-357 .swiper-pagination {
    top: unset;
    bottom: unset;
    position: relative;
    left: unset;
    right: unset;
    width: fit-content;
  }
  #pricing-357 .swiper-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    color: #d9d9d9;
    background-color: #d9d9d9;
  }
  #pricing-357 .swiper-pagination .swiper-pagination-bullet-active {
    color: var(--tertiary);
    background-color: var(--tertiary);
  }
  #pricing-357 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #pricing-357 .cs-item {
    list-style: none;
    /* 20px - 32px top & bottom */
    /* 16px - 32px left & right */
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.4vw, 2rem);
    width: 100%;
    max-width: 25.8125rem;
    border-radius: 1rem;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
  }
  #pricing-357 .cs-item:nth-of-type(2) .cs-option2-text,
  #pricing-357 .cs-item:nth-of-type(2) .cs-option1-text {
    transition-delay: 0.1s;
  }
  #pricing-357 .cs-item:nth-of-type(3) .cs-option2-text,
  #pricing-357 .cs-item:nth-of-type(3) .cs-option1-text {
    transition-delay: 0.2s;
  }
  #pricing-357 .cs-item.popular {
    border: none;
    background-color: rgba(1, 69, 82, 0.6);
  }
  #pricing-357 .cs-item.popular .cs-h3 {
    color: var(--white);
  }
  #pricing-357 .cs-item.popular .cs-item-text {
    color: rgba(179, 244, 255, 0.7);
  }
  #pricing-357 .cs-item.popular .cs-li {
    color: var(--white);
  }
  #pricing-357 .cs-item.popular .cs-button-solid {
    background-color: var(--white);
    color: var(--primary);
  }
  #pricing-357 .cs-item.normal {
    border: 2px solid var(--primary);
  }
  #pricing-357 .cs-item.normal .cs-h3 {
    color: rgba(1, 69, 82, 0.7);
  }
  #pricing-357 .cs-item.normal .cs-item-text {
    color: rgba(1, 69, 82, 0.7);
  }
  #pricing-357 .cs-item.normal .cs-li {
    color: rgba(1, 69, 82, 0.7);
  }
  #pricing-357 .cs-item.normal .cs-button-solid {
    background-color: var(--primary);
    color: var(--white);
  }
  #pricing-357 .cs-popular {
    background: var(--primary);
    position: relative;
    /* clips the popular tag */
    overflow: hidden;
    /* send to the top */
    order: -1;
  }
  #pricing-357 .cs-popular:before {
    /* Most Popular Tag */
    content: "Popular";
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.75rem;
    font-weight: 700;
    width: 10.625rem;
    padding: 0 0.75rem;
    color: var(--bodyTextColorWhite);
    background-color: var(--secondary);
    position: absolute;
    display: block;
    top: 1.25rem;
    right: -3.75rem;
    transform: rotate(42deg);
  }
  #pricing-357 .cs-popular .cs-button-solid {
    background-color: #fff;
    color: var(--primary);
    transition: color 0.3s;
  }
  #pricing-357 .cs-popular .cs-button-solid:before {
    background-color: var(--secondary);
  }
  #pricing-357 .cs-popular .cs-button-solid:hover {
    color: #fff;
  }
  #pricing-357 .cs-popular .cs-li-img {
    /* turns the check mark white */
    filter: brightness(900%);
  }
  #pricing-357 .cs-h3 {
    width: 100%;
    font-size: clamp(1.7375rem, 2.3vw, 2.7625rem);
    line-height: 1.2em;
    font-weight: 600;
    margin: 0 0 0.25rem;
    padding: 0;
    color: var(--headerColor);
  }
  #pricing-357 .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    padding: 0;
    color: var(--bodyTextColor);
  }
  #pricing-357 .cs-option-group {
    position: relative;
  }
  #pricing-357 .cs-option-group:after {
    /* top right box */
    content: "";
    width: 100%;
    height: 1px;
    /* 32px - 40px */
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    background: linear-gradient(90deg, rgba(232, 232, 232, 0.2) 0%, #e8e8e8 53.78%, rgba(232, 232, 232, 0.2) 100%);
    opacity: 1;
    position: relative;
    display: block;
  }
  #pricing-357 .cs-price {
    font-size: 3.0625rem;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--headerColor);
    /* spans are inline, need to add block for margin to work */
    display: block;
  }
  #pricing-357 .cs-small {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4e4b66;
  }
  #pricing-357 .cs-ul {
    padding: 0;
    margin: 0;
    /* 32px - 40px */
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
  }
  #pricing-357 .cs-li {
    /* 14px - 16px */
    font-size: clamp(0.675rem, 1.2vw, 0.9rem);
    line-height: 1.5em;
    list-style: none;
    font-weight: 300;
    padding: 0;
    margin: 0 0 1rem;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #pricing-357 .cs-li:last-of-type {
    margin-bottom: 0;
  }
  #pricing-357 .cs-disabled {
    /* fades out list items that are disabled from the price tier */
    filter: grayscale(1);
    opacity: 0.3;
  }
  #pricing-357 .cs-li-img {
    width: 1.25rem;
    height: auto;
    margin-top: 0.1875rem;
    margin-right: 0.5rem;
  }
  #pricing-357 .cs-button-solid {
    /* cs-button-solid override */
    width: 100%;
    margin: 0 0 1rem 0;
  }
  #pricing-357 .disclaimer {
    color: var(--smooth);
  }
}
/* Tablet 768px */
@media only screen and (min-width: 48rem) {
  #pricing-357 .cs-card-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    flex-wrap: nowrap;
  }
  #pricing-357 .cs-item {
    width: 100%;
    /* ensures they stay the same height if you add more content */
    min-height: 32rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #pricing-357 .cs-item.popular {
    padding-top: 1rem;
    gap: 0.5rem;
    justify-content: center;
    display: flex;
    flex-direction: column;
    min-height: 36rem;
  }
  #pricing-357 .cs-item.second {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #pricing-357 .swiper-slide.secondpage .cs-card-group {
    display: flex;
    gap: 3.5rem;
  }
  #pricing-357 .swiper-pagination {
    transform: translateX(-50%);
  }
  #pricing-357 .cs-popular {
    /* send back to its original order */
    order: unset;
  }
  #pricing-357 #cs-option2-357:before {
    top: -0.625rem;
  }
  #pricing-357 #cs-option2-357:after {
    top: -2.1875rem;
    right: -6.25rem;
  }
  #pricing-357 .disclaimer {
    width: 100%;
    text-align: right;
    max-width: 80rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
}
