/*-- -------------------------- -->
<---          Content           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content-1450 {
    padding: var(--sectionPadding);
  }
  #content-1450 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #content-1450 .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;
  }
  #content-1450 .cs-title,
  #content-1450 .cs-text {
    max-width: 100%;
  }
  #content-1450 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 2rem 0;
  }
}
/*-- -------------------------- -->
<---       Meet The Team        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #meet-team-1332 {
    padding: var(--sectionPadding);
    overflow: hidden;
  }
  #meet-team-1332 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #meet-team-1332 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 40.625rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #meet-team-1332 .cs-color {
    color: var(--primary);
  }
  #meet-team-1332 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
    position: relative;
  }
  #meet-team-1332 .cs-item {
    list-style: none;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    border-radius: 0.9375rem;
  }
  #meet-team-1332 .cs-item:hover .cs-picture:before {
    opacity: 1;
  }
  #meet-team-1332 .cs-item:hover .cs-picture img {
    transform: scale(1.1);
  }
  #meet-team-1332 .cs-picture {
    width: 100%;
    /* 320px - 412px */
    height: clamp(20rem, 90vw, 25.75rem);
    /* clips img tag from overflowing it on hover */
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
  }
  #meet-team-1332 .cs-picture:before {
    /* defualt gradient */
    content: "";
    width: 100%;
    height: 50%;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.94) 65%, rgba(26, 26, 26, 0.94) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.94) 65%, rgba(26, 26, 26, 0.94) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.94) 65%, rgba(26, 26, 26, 0.94) 100%);
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    transition: opacity 0.3s;
  }
  #meet-team-1332 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* makes sure the top of the image is at the top of the parent, heads won't get cut off this way */
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: transform 0.7s;
  }
  #meet-team-1332 .cs-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    z-index: 10;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  #meet-team-1332 .nome-servico {
    text-align: center;
    /* 20px - 25px */
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--white);
    display: block;
    transition: color 0.3s;
  }
}
/* In-between - 550px */
@media only screen and (min-width: 34.375rem) {
  #meet-team-1332 .cs-card-group {
    align-items: stretch;
  }
  #meet-team-1332 .cs-item {
    width: 48.3%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #meet-team-1332 .cs-item {
    width: 31.7%;
  }
}
/* Large Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #meet-team-1332 .cs-card-group {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  #meet-team-1332 .cs-picture:before {
    /* defualt gradient */
    content: "";
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    background: unset;
  }
  #meet-team-1332 .cs-item {
    width: 100%;
  }
  #meet-team-1332 .cs-item:hover .cs-picture:before {
    opacity: 1;
  }
  #meet-team-1332 .cs-item:hover .cs-info {
    opacity: 1;
    bottom: 50%;
  }
  #meet-team-1332 .cs-item:hover .nome-servico {
    transform: translateY(0);
  }
  #meet-team-1332 .cs-picture:before {
    opacity: 0;
  }
  #meet-team-1332 .cs-info {
    opacity: 0;
    bottom: -3.125rem;
    transition: opacity 0.3s, bottom 0.6s;
  }
  #meet-team-1332 .nome-servico {
    text-align: center;
    transform: translateY(1rem);
    transition: color 0.3s, transform 0.3s;
  }
  #meet-team-1332 .cs-job {
    transition: transform 0.9s;
  }
}
/*-- -------------------------- -->
<---         Why Choose         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #why-choose-892 {
    /* Centers Button */
    background-color: rgba(198, 186, 136, 0.2);
    text-align: center;
    padding: var(--sectionPadding);
    /* prevents the arrow from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #why-choose-892 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #why-choose-892 .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;
  }
  #why-choose-892 .cs-text {
    max-width: 62.5rem;
  }
  #why-choose-892 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #why-choose-892 .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    /* 20px - 32px */
    padding: clamp(1.25rem, 2.3vw, 2rem);
    border-radius: 1rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    grid-column: span 6;
    position: relative;
    z-index: 1;
  }
  #why-choose-892 .cs-icon {
    width: 4rem;
    height: auto;
    margin: 0 0 1.25rem 0;
    display: block;
  }
  #why-choose-892 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
    transition: color 0.3s;
    text-align: center;
  }
  #why-choose-892 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    transition: color 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #why-choose-892 .cs-container {
    max-width: 80rem;
  }
  #why-choose-892 .cs-item {
    grid-column: span 2;
  }
}
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews {
    padding: var(--sectionPadding);
    padding-bottom: 0;
    text-align: center;
  }
  #reviews .cs-container {
    margin: auto;
    max-width: 69rem;
    width: 100%;
  }
  #reviews .cs-topper {
    margin-bottom: 1rem;
    text-align: center;
  }
  #reviews .cs-title {
    max-width: 43.75rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  #reviews .cs-card-group {
    /* 48px - 64px */
    margin: 0 auto clamp(3rem, 5vw, 4rem);
    padding: 0;
  }
  #reviews .cs-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 0.9375rem;
    margin: 0 auto 4rem;
    background: rgba(217, 217, 217, 0.03);
    max-width: 33.875rem;
    width: 100%;
    box-sizing: border-box;
    padding: 3.75rem clamp(1rem, 3.2vw, 2rem) 0;
    padding-bottom: clamp(2rem, 5.4vw, 2.5rem);
    list-style: none;
    text-align: left;
    box-shadow: 0px 0px 4px 4px rgba(185, 185, 185, 0.15);
  }
  #reviews .cs-item:last-of-type {
    margin-bottom: 0;
  }
  #reviews .review {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #reviews .cs-item-img {
    border-radius: 50%;
    height: 3.75rem;
    width: 3.75rem;
  }
  #reviews .cs-item-p {
    margin: 0 0 1.25rem;
    padding-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
  }
  #reviews .cs-reviewer {
    display: block;
    margin: 0 auto 0 0;
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 700;
    color: var(--headerColor);
  }
  #reviews .cs-desc {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(#353535);
  }
  #reviews .cs-item-stars {
    height: 1rem;
    width: 6rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews .cs-card-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  #reviews .cs-item {
    display: flex;
    flex-wrap: nowrap;
    align-self: stretch;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    /* reset margin so it won't interfere with flexbox */
    margin: 0;
  }
  #reviews .cs-item-img {
    transform: translateY(-25%);
  }
  #reviews .review {
    gap: 0.5rem;
  }
}
