/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #initial-banner {
    /* 175px - 200px top */
    padding: 3.125rem 1rem;
    position: relative;
    z-index: 1;
  }
  #initial-banner .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  #initial-banner .cs-title {
    /* 39px - 61px */
    font-size: clamp(1.913rem, 8.4vw, 3.688rem);
    line-height: 1.2em;
    text-align: center;
    margin: 0;
    color: var(--headerColor);
    position: relative;
    font-family: "Great Vibes", Arial, sans-serif;
  }
}
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-section {
    /* 150px - 350px */
    padding: clamp(9rem, 25.95vw, 21.875rem) 1rem;
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
    z-index: 1;
    /* prevents overflow from the arrow graphic */
    overflow: hidden;
  }
  #hero-section .cs-container {
    width: 100%;
    margin: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 80rem;
    /* 48px - 64px */
    gap: 1rem;
  }
  #hero-section .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
  }
  #hero-section .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.2375rem, 5.4vw, 3.4125rem);
    line-height: 1.4em;
    font-weight: 400;
    width: 100%;
    max-width: 17ch;
    margin: 0 0 1rem;
    color: var(--headerColor);
    text-align: center;
    opacity: 0.9;
    position: relative;
    font-family: "Catchy Mager", Arial, sans-serif;
  }
  #hero-section .cs-text {
    font-size: 1.25rem;
    line-height: 1.5em;
    width: 100%;
    max-width: 43.75rem;
    /* 28px - 40px */
    margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
    color: var(--bodyTextColor);
  }
  #hero-section .cs-picture.one,
  #hero-section .cs-picture.two {
    position: relative;
    width: auto;
    /* changes to 866px at desktop */
    max-width: 34.0625rem;
    height: 100%;
  }
  #hero-section .cs-picture.one img,
  #hero-section .cs-picture.two img {
    width: 100%;
    height: 100%;
  }
  #hero-section .hero-logo {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
  }
  #hero-section .hero-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-section {
    padding: clamp(9rem, 25.95vw, 21.875rem) 1rem;
    padding-top: 0;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-section {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  #hero-section .cs-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
  #hero-section .cs-picture.one,
  #hero-section .cs-picture.two {
    max-width: 24.75rem;
    height: 100%;
    width: 100%;
    height: 34.375rem;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-section {
    padding-bottom: 0;
    padding-top: 0;
  }
  #hero-section .cs-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* remove the positioning so the cs-picture is now absolutely positioned to the next parent with a declared position - the #hero section container. Now we can position it off the bottom edge of the parent container */
  }
  #hero-section .cs-content {
    text-align: left;
  }
}
/*-- -------------------------- -->
<---          Text Section      -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #text-section {
    padding: var(--sectionPadding);
    padding-bottom: 2rem;
  }
  #text-section .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #text-section .cs-topper {
    font-size: 1.125rem;
    margin: 0 0 0.8125rem 0;
    color: var(--headerColor);
    font-family: "Catchy Mager", Arial, sans-serif;
  }
  #text-section .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #text-section .cs-title {
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: "Catchy Mager", Arial, sans-serif;
  }
  #text-section .cs-title,
  #text-section .cs-text {
    max-width: 100%;
  }
  #text-section .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 0.875rem 0;
    text-align: justify;
    color: var(--headerColor);
  }
  #text-section .special-text {
    opacity: 0.75;
  }
}
@media only screen and (min-width: 48rem) {
  #text-section {
    padding-top: 2rem;
  }
}
/*-- -------------------------- -->
<---           Quote            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .quote {
    position: relative;
    background-color: #fbf5f1;
    padding: var(--sectionPadding);
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .quote .cs-author {
    margin-top: 1rem;
    margin-right: 1rem;
    -ms-flex-item-align: end;
        align-self: flex-end;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: 2%;
    font-family: "New Icon Script", Arial, sans-serif;
    font-size: 1.0625rem;
  }
  .quote .cs-author.center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .quote .cs-author.lastauthor {
    font-family: "Great Vibes", Arial, sans-serif;
    font-size: 0.9375rem;
  }
  .quote .cs-author img {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.125rem;
  }
  .quote .cs-text {
    font-weight: 400;
    text-align: center;
    font-size: clamp(1rem, 2.042rem, 1.875rem);
    margin: 0;
    color: var(--headerColor);
    position: relative;
    font-family: "New Icon Script", Arial, sans-serif;
    max-width: 80rem;
  }
}
@media only screen and (min-width: 48rem) {
  .quote {
    position: relative;
  }
  .quote .cs-author {
    margin-right: 1rem;
    -ms-flex-item-align: end;
        align-self: flex-end;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: 2%;
    font-family: "New Icon Script", Arial, sans-serif;
    font-size: 1.5rem;
  }
  .quote .cs-author.center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .quote .cs-author.lastauthor {
    font-family: "Great Vibes", Arial, sans-serif;
  }
  .quote .cs-author img {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.125rem;
  }
  .quote .cs-text {
    font-weight: 400;
    text-align: center;
    font-size: clamp(1rem, 2.042rem, 1.875rem);
    margin: 0;
    color: var(--headerColor);
    position: relative;
    font-family: "New Icon Script", Arial, sans-serif;
    max-width: 80rem;
  }
}
/*-- -------------------------- -->
<---         Sobre Mim          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sobre-mim {
    position: relative;
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  #sobre-mim .cs-title {
    text-align: center;
    font-family: "Catchy Mager", Arial, sans-serif;
    -ms-flex-item-align: center;
        align-self: center;
  }
  #sobre-mim .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sobre-mim .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 76.375rem;
    /* moved section padding to cs-content so the cs-background can be full width */
    padding: var(--sectionPadding);
    padding-top: 0;
    /* prevents padding and border from affecting height and width */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #sobre-mim .cs-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 0.875rem 0;
    color: var(--headerColor);
    text-align: justify;
  }
  #sobre-mim .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sobre-mim .cs-background {
    display: block;
    position: relative;
    width: 100%;
    height: 35rem;
    z-index: 1;
  }
  #sobre-mim .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sobre-mim {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    /* 90px - 150px */
    /* returned section padding to the section container, this Stitch has 1.5X padding top and bottom than the normal Stitch */
    padding: clamp(5.625rem, 9vw, 9.375rem) 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  #sobre-mim .cs-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #sobre-mim .cs-background {
    max-width: 28.25rem;
    min-height: 28.125rem;
  }
  #sobre-mim .cs-content {
    width: 55%;
    padding: 0;
  }
}
/*-- -------------------------- -->
<---      Consultas Section     -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #consultas-section {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
  }
  #consultas-section .cs-title {
    font-family: "Catchy Mager", Arial, sans-serif;
    -ms-flex-item-align: center;
        align-self: center;
  }
  #consultas-section .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #consultas-section .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 32.625rem;
    /* moved section padding to cs-content so the cs-background can be full width */
    padding: var(--sectionPadding);
    /* prevents padding and border from affecting height and width */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* centers content horizontally, set to flex-start to left align */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
  #consultas-section .cs-text {
    margin-bottom: 1rem;
  }
  #consultas-section .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #consultas-section .cs-ul {
    margin: 0 0 2rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
  }
  #consultas-section .cs-li {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  #consultas-section .conteudo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #consultas-section .cs-h3 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2em;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    font-family: "Quicksand", Arial, sans-serif;
  }
  #consultas-section .cs-li-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0 0 1rem;
    color: var(--bodyTextColor);
  }
  #consultas-section .cs-icon {
    width: 1.75rem;
    height: auto;
    display: block;
  }
  #consultas-section .cs-picture {
    display: block;
    position: relative;
    width: 100%;
    height: 35rem;
    z-index: 1;
  }
  #consultas-section .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #consultas-section {
    /* 90px - 150px */
    /* returned section padding to the section container, this Stitch has 1.5X padding top and bottom than the normal Stitch */
    padding-bottom: 3rem;
  }
  #consultas-section .cs-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1;
  }
  #consultas-section .cs-content {
    width: 48%;
    max-width: 35.1875rem;
    /* 32px - 90px */
    padding: clamp(2rem, 5vw, 5.625rem) 0;
    padding-top: 0;
    padding-bottom: 0;
    gap: 3rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
  }
  #consultas-section .cs-picture {
    max-width: 28.25rem;
    min-height: 28.125rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #consultas-section .cs-ul {
    gap: 2.625rem;
  }
  #consultas-section .cs-li {
    gap: 1.625rem;
  }
}
/*-- -------------------------- -->
<---         Testemunhos        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #testemunhos {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #testemunhos .cs-container {
    width: 100%;
    /* changes to 1280px at small desktop */
    max-width: 36.5rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 3.9vw, 4rem);
  }
  #testemunhos .cs-picture {
    display: block;
    position: relative;
    width: 100%;
    height: 35rem;
    z-index: 1;
  }
  #testemunhos .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #testemunhos .cs-content {
    padding: var(--sectionPadding);
    padding-top: 0;
    text-align: left;
    width: 100%;
    max-width: 40.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #testemunhos .cs-title {
    /* 25 characters wide including spaces */
    max-width: 25ch;
    font-family: "Catchy Mager", Arial, sans-serif;
    text-align: center;
    -ms-flex-item-align: center;
        align-self: center;
  }
  #testemunhos .cs-text {
    margin-bottom: 1rem;
    color: var(--headerColor);
  }
  #testemunhos .cs-author {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--bodyTextColor);
    font-family: "Catchy Mager", Arial, sans-serif;
  }
  #testemunhos .cs-card-group {
    width: 100%;
    max-width: 44rem;
    /* 28px - 40px */
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #testemunhos .cs-item {
    list-style: none;
    padding: 1rem;
    /* prevents padding from affecting height and width */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #testemunhos .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    margin: 0;
    color: var(--headerColor);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #testemunhos .cs-container {
    max-width: 80rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #testemunhos .cs-content {
    width: 55%;
    padding: 3rem 0;
    -ms-flex-item-align: center;
        align-self: center;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  #testemunhos .cs-picture {
    max-width: 28.25rem;
    min-height: 28.125rem;
  }
  #testemunhos .cs-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-718 {
    position: relative;
    z-index: 1;
  }
  #contact-718 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 34.375rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.25rem;
  }
  #contact-718 .cs-title {
    font-family: "Catchy Mager", Arial, sans-serif;
    text-align: center;
    -ms-flex-item-align: center;
        align-self: center;
  }
  #contact-718 .cs-picture {
    display: block;
    position: relative;
    width: 100%;
    height: 35rem;
    z-index: 1;
  }
  #contact-718 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #contact-718 .cs-content {
    padding: var(--sectionPadding);
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    /* centers content horizontally, set to flex-start to left align */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #contact-718 .cs-text {
    margin: 0 0 2rem 0;
  }
  #contact-718 .cs-form {
    /* 24px - 48px top and bottom */
    /* 20px - 32px left and right */
    padding: clamp(1.25rem, 4.18vw, 3rem) clamp(1.25rem, 4.18vw, 2rem);
    background-color: #f7f8f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.75rem;
  }
  #contact-718 .cs-label {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    width: 100%;
    color: var(--headerColor);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.25rem;
  }
  #contact-718 .cs-input {
    font-size: 1rem;
    width: 100%;
    height: 3.5rem;
    padding: 0;
    padding-left: 1.5rem;
    color: var(--headerColor);
    background-color: #fff;
    border: none;
    /* prevents padding from adding to height and width */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #contact-718 .cs-input::-webkit-input-placeholder {
    color: #7d799c;
    opacity: 0.6;
  }
  #contact-718 .cs-input:-ms-input-placeholder {
    color: #7d799c;
    opacity: 0.6;
  }
  #contact-718 .cs-input::-ms-input-placeholder {
    color: #7d799c;
    opacity: 0.6;
  }
  #contact-718 .cs-input::placeholder {
    color: #7d799c;
    opacity: 0.6;
  }
  #contact-718 .cs-textarea {
    min-height: 7.5rem;
    padding-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: inherit;
  }
  #contact-718 .cs-submit {
    min-width: 17.6875rem;
    border-radius: 0;
  }
  #contact-718 .social-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    margin-left: 1rem;
  }
  #contact-718 .cs-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    border-radius: 50%;
    border: 2px solid #000;
    padding: 1rem;
    position: relative;
  }
  #contact-718 .cs-icon img {
    width: 70%;
    height: 70%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -o-object-fit: cover;
       object-fit: cover;
  }
  #contact-718 .cs-link {
    font-size: 1.5625rem;
    color: #000;
    font-family: "Quicksand", Arial, sans-serif;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
  }
  #contact-718 .cs-link:hover {
    text-decoration: underline;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-718 {
    padding: var(--sectionPadding);
    padding-top: 0;
  }
  #contact-718 .cs-container {
    max-width: 80rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #contact-718 .cs-content {
    padding: 0;
  }
  #contact-718 .cs-picture {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 28.25rem;
    min-height: 28.125rem;
  }
}
