* {
  box-sizing: border-box;
}

:focus {
  outline: none;
}
html {
    scroll-behavior: smooth;
    user-select: none;
}
body.user-is-tabbing :focus {
    outline-width: 2px;
    outline-style: dashed;
    outline-color: rgb(104,35,151);
}

html, body {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 100%;
    color: rgb(76,99,110);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    background-image: url(silkyStones.jpg);
    background-size: 100vw auto;
    background-repeat: no-repeat;
    background-position: center 80vw;
    overscroll-behavior-x: none;
}
article {
    padding:0;
    /*margin:0 1rem 0 1rem;*/
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    background: rgba(255, 255, 255, 0.8);
    /*max-width: 968.8px; temp*/
    position: relative;
}
article > header, article > main {
    margin-left: 1rem;
    margin-right: 1rem;
}
button, textarea, noscript {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 100%;
    color: rgb(76,99,110);
}
#navIcon {
    top: 0;
    position: fixed;
    right: 0.5rem;
    z-index: 30;
    background-image: radial-gradient(circle closest-side,rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 50%,rgba(255,255,255,0) 100%);
    display: inline-flex;
    padding: 0.5rem;
}
#navIcon.active {
    background-image: none;
}
#navIcon svg {
    filter: drop-shadow( 1px 1px 1px rgba(0,0,0,0.5) );
}
header, main, footer {
    padding:0;
    margin:0;
}
main {
    font-size: 1.25rem;
    margin-bottom: 0;
}
footer{
    /*margin-bottom: 1rem; temp */
    min-height: 12rem;
    padding-bottom: 2rem;
    padding-top: 1rem;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.2));
}
footer > .bg {
    position: fixed;
    left: -12rem;
    right: -12rem;
    bottom: -12rem;
    z-index: -1;
    height: 12rem;
    width: auto;
    background: rgba(0,0,0,0.2);
}
hr {
    border: none;
    color: #cccccc;
    background-color: #cccccc;
    height: 1px;
    margin-bottom: 1rem;
}
h1 {
    line-height: 0;
    margin-bottom: 0;
}
h2 {
    /*font-weight: 400;
    color: rgb(104,35,151);
    margin-top: 0; temp */
    font-weight: 700;
    color: white;
    font-size: 18vw;
    line-height: 1;
    margin-top: 0;
    margin-bottom: -19vw;
    transform: translate3d(0,-22vw,0);
}
h3 {
    font-weight: 400;
    color: rgb(27,172,191);
}
a, a:hover, a:active, a:visited {
    color: rgb(76,99,110);
    text-decoration: none;
}
a:hover, a:active {
    text-decoration: underline;
}
.mailto {
    text-decoration: underline;
}

.navigation {
    background-color: rgb(104,35,151);
    position: fixed;
    display: block;
    top: 0;
    left: 100%;
    z-index: 10;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    overflow-y: auto;
    transition: left 0.35s;
}
.navigation.active {
    left: 0;
    transition: left 0.35s;
}
#language {
    text-align: center;
    margin: 0;
    padding: 1rem;
    padding-top: 0.75rem;
    font-weight: 400;
    font-size: 1.25rem;
    height: 3rem;
    background: rgb(62,25,89);
    width: 100vw;
}
#language li {
    list-style: none;
    display: inline;
}
#language li:not(:last-child)::after {
    content: "|";
    padding: 0 0.5rem;
}
#language a {
    color: white;
}
#language a.active {
    text-decoration: underline;
    color: rgb(27,172,191);
}

#sideNav {
    display: block;
    font-weight: 400;
    font-size: 1.25rem;
    margin: 0;
    position: absolute;
    top: 3rem;
    left: 0;
    background: rgba(0,0,0,0.2);
    width: 100%;
}
#sideNav .nav-title {
    font-size: 1.25rem;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: .1em;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    transition: all .15s cubic-bezier(.23,1,.32,1);
    color: white;
}
#sideNav a:hover .nav-title {
    text-decoration: underline;
    color: white;
}
#sideNav a {
    display: block;
    margin: 0;
    padding: 1rem;
    cursor: pointer;
    outline: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.sectionImage {
    margin-left: -1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 100vw;
    display: block;
}

.mobile {
    display: inline;
    text-transform: uppercase;
}
.desktop {
    display: none;
}

@media only screen and (min-width: 481px) {
    body {
        background-position: center 384px;
        background-size: 480px auto;
    }
    article {
        /*margin-left: calc(1rem + 8vw - 38.4px);
        margin-right: calc(1rem + 8vw - 38.4px); temp */
        width: 100%;
        margin: 0;
    }
    article > header, article > main {
        margin-left: calc(1rem + 8vw - 38.4px);
        margin-right: calc(1rem + 8vw - 38.4px);
    }
    main {
        padding-top: 0;
    }
    .sectionImage {
        /*width: calc(480px - 2rem);*/
        width: 100%;
        margin-left: 0;
    }
    footer > hr, footer > div{
        margin-left: calc(1rem + 8vw - 38.4px);
        margin-right: calc(1rem + 8vw - 38.4px);
    }
}

@media only screen and (min-width: 921px) {
    body {
        background-position: calc(100vw - 480px - 8vw + 5rem) top;
    }
    article {
        background: transparent;
    }
    #navIcon {
        display: none;
    }
    #navMenu {
        position: absolute;
        right: calc(1rem + 8vw - 38.4px);
        top: 0.75rem;
    }
    #language {
        display: flex;
        justify-content: space-between;
        text-align: center;
        position: static;
        width: auto;
        margin: 0;
        padding: 0;
        font-weight: 300;
        font-size: 1rem;
        background: none;
    }
    #language li {
        display: list-item;
    }
    #language a {
        color: rgb(76,99,110);
    }
    #language a.active {
        color: rgb(104,35,151);
    }
    .navigation {
        height: 0;
        position: static;
    }
    .mobile {
        display: none;
    }
    .desktop {
        display: inline;
    }
    #sideNav {
        display: block;
        left: calc(4vw - 2rem);
        position: fixed;
        z-index: 50;
        top: 50%;
        right: auto;
        transition: opacity .3s 0s linear;
        transform: translate3d(0,-50%,0);
        background: transparent;
        width: auto;
    }
    #sideNav a {
        display: block;
        margin: 0;
        padding: 1rem;
        cursor: pointer;
        outline: 0;
        border-bottom: 1px solid transparent;
    }
    #sideNav .nav-title.outline {
        outline: rgb(104,35,151) dashed 2px;
    }
    
    #sideNav .dot {
        position: relative;
        background-color: rgb(76,99,110);
        width: 10px;
        height: 10px;
        display: block;
        text-decoration: none;
        border-radius: 50%;
        z-index: 60;
    }
    #sideNav .active .dot {
        background-color: transparent;
        border: solid 2px rgb(76,99,110);
        width: 12px;
        height: 12px;
        margin-left: -1px;
    }
    #sideNav .nav-title {
        position: absolute;
        left: 1rem;
        opacity: 0;
        font-size: 13px;
        text-transform: uppercase;
        white-space: nowrap;
        letter-spacing: .1em;
        font-weight: 500;
        font-style: normal;
        text-decoration: none;
        margin-top: -22px;
        padding: 2px;
        padding-left: 2rem;
        padding-right: 2rem;
        transition: all .15s cubic-bezier(.23,1,.32,1);
        line-height: 32px;
        visibility: hidden;
        text-shadow: 1px 1px 3px rgba(76,99,110,0.5);
        z-index: 40;
        background-image: radial-gradient(ellipse closest-side,rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 50%,rgba(255,255,255,0) 100%);
    }
    #sideNav a:hover .nav-title, #sideNav a:focus .nav-title {
        opacity: 1;
        visibility: visible;
        color: rgb(76,99,110);
        text-decoration: none;
    }
    #sideNav .active .nav-title {
        margin-top: -23px;
    }

}
@media only screen and (min-width: 1101px) {
    body {
        background-position: calc(524px + 8vw) top;
    }
}

footer > div {
    text-align: center;
}

.silkyMassage {
    font-family: 'Clicker Script', cursive;
    font-size: 1.5rem;
    font-weight: normal;
    width: 100%;
    filter: drop-shadow( 1px 1px 2px rgba(0,0,0,0.5) );
}
.silky {
    fill: rgb(104,35,151);
}
.massage {
    fill: rgb(27,172,191);
}
#original-icon {
    fill: rgb(76,99,110);
}
.active #original-icon {
    fill: white;
}
#silkyMassageTitle {
    position: relative;
    top: -7vw;
    filter: drop-shadow( 1px 1px 2px rgba(0,0,0,0.5) );
}
#letTheMassage {
    font-weight: 100;
    font-size: 0.92rem;
    width: 100%;
    fill: rgb(76,99,110);
    position: relative;
    top: -7vw;
    filter: drop-shadow( 1px 1px 2px rgba(0,0,0,0.5) );
}
#letTheMassage.pt {
    font-size: 0.88rem;
}
#letTheMassage.es {
    font-size: 0.82rem;
}
@media only screen and (min-width: 481px) {
    #letTheMassage, .silkyMassage {
        width: calc(480px - 2rem);
    }
    #silkyMassageTitle, #letTheMassage {
        top: -33.6px;
    }
}

.socialIcon {
    fill: #25D366;
    width: 32px;
}

.inp {
  position: relative;
  width: 100%;
  max-width: 968.8px;
  margin-top: 2rem;
}
.inp .label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  color: #25D366;
  font-weight: 400;
  transform-origin: 0 0;
  transition: all 0.2s ease;
  cursor: text;
}
.inp textarea {
  -webkit-appearance: none;
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 8px 4px;
  height: 60px;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid #25D366;
  background: none;
  border-radius: 0;
  color: #25D366;
  transition: all 0.15s ease;
  cursor: text;
}
.inp textarea:hover {
  background: rgba(34,50,84,0.03);
}
.inp textarea + label {
  color: #25D366;
  transform: translateY(0) scale(1);
}
.inp textarea:focus {
  background: none;
  color: rgb(76,99,110);
  border-bottom: 1px solid rgb(76,99,110);
  background: rgba(34,50,84,0.03);
}
.inp textarea:focus + label {
  color: rgb(76,99,110);
  transform: translateY(-26px) scale(0.75);
}
.inp textarea:not(:placeholder-shown) + label {
  transform: translateY(-26px) scale(0.75);
}
.inp button {
    font-weight: 400;
    padding: 4px;
    border-radius: 3px;
    margin-top: 4px;
    font-size: 1rem;
    color: #25D366;
    border: 1px solid #25D366;
    background-color: #eafff2;
    cursor: pointer;
}
.inp button:disabled {
    color: #aaaaaa;
    border: 1px solid #aaaaaa;
    background-color: #eeeeee;
    cursor: default;
}
noscript {
    font-size: 1rem;
}
