/*
0 - 600px: Phone
600-900px: Tablet portrait
900-1200px: Tablet landscape
(1200 - 1800) is were the normal styles apply
1800px + :  Big desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + Typography > general layout + grid > page layout > components
*/
@keyframes moveInLeft {
  /* Animation starts at 0% and finishes at 100%. You can put watever inside, f.ex. at 80% */
  0% {
    opacity: 0;
    transform: translateX(-110rem);
    /* X for the movement in horizontal axe.*/ }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0);
    /* It looks as it is now. */ } }

@keyframes moveInRight {
  /* Animation starts at 0% and finishes at 100%. You can put watever inside, f.ex. at 80% */
  0% {
    opacity: 0;
    transform: translateX(10rem);
    /* X for the movement in horizontal axe.*/ }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0);
    /* It looks as it is now. */ } }

@keyframes moveInBottom {
  /* Animation starts at 0% and finishes at 100%. You can put watever inside, f.ex. at 80% */
  0% {
    opacity: 0;
    transform: translateY(3rem);
    /* y for the movement in a vertical axe.*/ }
  100% {
    opacity: 1;
    transform: translate(0);
    /* It looks as it is now. */ } }

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-6rem) translate(-50%, -50%); }
  20% {
    opacity: 1;
    transform: translate(0) translate(-50%, -50%); }
  50% {
    transform: translateY(-3rem) translate(-50%, -50%); }
  70% {
    opacity: 1;
    transform: translate(0) translate(-50%, -50%); }
  100% {
    opacity: 0;
    transform: translateY(-6rem) translate(-50%, -50%); } }

@-webkit-keyframes sdbtn {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-2rem, 2rem);
    opacity: 0; } }

@keyframes sdbtn {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: rotate(-45deg) translate(-2rem, 2rem);
    opacity: 0; } }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 4deg);
    transform: rotate3d(0, 0, 1, 4deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -3deg);
    transform: rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 2deg);
    transform: rotate3d(0, 0, 1, 2deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -1deg);
    transform: rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 4deg);
    transform: rotate3d(0, 0, 1, 4deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -3deg);
    transform: rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 2deg);
    transform: rotate3d(0, 0, 1, 2deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -1deg);
    transform: rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes swing1 {
  35% {
    -webkit-transform: rotate3d(0, 0, 1, 4deg);
    transform: rotate3d(0, 0, 1, 4deg); }
  70% {
    -webkit-transform: rotate3d(0, 0, 1, -3deg);
    transform: rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing1 {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-0.7rem, 0, 0);
    transform: translate3d(-0.7rem, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0.7rem, 0, 0);
    transform: translate3d(0.7rem, 0, 0); } }

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-0.7rem, 0, 0);
    transform: translate3d(-0.7rem, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0.7rem, 0, 0);
    transform: translate3d(0.7rem, 0, 0); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.07);
    transform: scale(1.07); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.07);
    transform: scale(1.07); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out; }

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@viewport {
  zoom: 1.0;
  width: extend-to-zoom; }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  /*By default the browsers apply some margin or padding on some elements.*/
  box-sizing: inherit;
  /* It is written in body and gives more flexibility to use in universal settings the inherit property.*/ }

html {
  font-size: 62.5%;
  /* 10/16=0.625 - it gives flexibility if person looking our page has set bigger font size in their default computer font size (initially it is 16 px) */
  /* font-size: 10px; 1 rem = exactly the font size. So in this case 1 rem = 10 px;  10px / 16px = 62.5% */
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  padding: 0;
  margin: 0; }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  /* It changes the box model so that the borders and the paddings are no longer added to total width or height when we specify it.   */
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  padding: 0;
  margin: 0; }

/*
#container {
    min-height: 100%;
    position: relative;
}

#body {
    padding-bottom: 10rem;  // height of the footer
}
*/
a:-webkit-any-link {
  text-decoration: none; }

li ul, li ol {
  margin: 0 1.5em; }

ul, ol {
  margin: 0 1em; }

ul {
  list-style-type: disc; }

ol {
  list-style-type: decimal; }

ol ol {
  list-style: upper-alpha; }

ol ol ol {
  list-style: lower-roman; }

ol ol ol ol {
  list-style: lower-alpha; }

/**
NORMALIZE
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
  * Show the overflow in IE.
  * 1. Show the overflow in Edge.
  */
button,
input {
  /* 1 */
  overflow: visible; }

/**
  * Remove the inheritance of text transform in Edge, Firefox, and IE.
  * 1. Remove the inheritance of text transform in Firefox.
  */
button,
select {
  /* 1 */
  text-transform: none; }

/**
  * Correct the inability to style clickable types in iOS and Safari.
  */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

.content {
  padding-bottom: 8rem; }

/*
font-family: 'Crimson Text', serif;
font-family: 'Amiri', serif;
font-family: 'Cormorant', serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Montserrat', sans-serif;
*/
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  /*font-size: 16px;*/
  line-height: 1.5;
  color: #0e5a5a; }

.nowrap {
  white-space: nowrap; }

.heading-primary {
  font-family: 'Cormorant', serif;
  z-index: 9;
  color: #0e5a5a;
  backface-visibility: hidden; }
  .heading-primary--main {
    display: block;
    font-size: 8rem;
    margin-top: 5rem;
    line-height: 6rem;
    text-transform: uppercase; }
  .heading-primary--sub {
    font-family: 'Cormorant', serif;
    display: block;
    font-size: 3.3rem;
    font-weight: 500;
    font-style: italic; }
  .heading-primary--sub-1 {
    font-family: 'Cormorant', serif;
    display: block;
    font-size: 2.2rem;
    font-weight: 500;
    font-style: italic;
    text-align: right; }

@media (max-width: 43.75em) {
  .heading-primary--main {
    font-size: 7rem;
    font-weight: 500;
    line-height: 7rem; }
  .heading-primary--sub {
    text-align: left;
    font-size: 4.2rem;
    line-height: 4rem; }
  .heading-primary--sub-1 {
    font-size: 3rem; } }

@media (max-width: 37.5em) {
  .heading-primary--main {
    font-size: 6.2rem;
    font-weight: 500;
    line-height: 5rem; }
  .heading-primary--sub {
    text-align: center;
    font-size: 4.2rem;
    line-height: 4rem; }
  .heading-primary--sub-1 {
    font-size: 3rem;
    text-align: center; } }

@media (max-width: 30em) {
  .heading-primary--main {
    font-size: 5.8rem;
    font-weight: 600;
    line-height: 8rem; }
  .heading-primary--sub {
    text-align: left;
    font-size: 3.6rem;
    line-height: 4rem;
    text-align: center; }
  .heading-primary--sub-1 {
    font-size: 2.9rem;
    text-align: center; } }

.heading-secondary {
  backface-visibility: hidden;
  font-family: 'Cormorant', serif;
  text-transform: uppercase;
  font-size: 3.3rem;
  font-weight: 600;
  margin: 0 3rem;
  display: inline-block;
  color: #0e5a5a;
  letter-spacing: .1rem;
  transition: all .2s; }
  .heading-secondary:hover {
    -ms-animation: swing1 .7s;
    -webkit-animation: swing1 .7s;
    animation: swing1 .7s; }

.heading-tertiary {
  font-family: 'Cormorant', serif;
  font-style: italic;
  backface-visibility: hidden;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  display: inline-block;
  color: #0e5a5a;
  transition: all .2s; }
  .heading-tertiary:hover {
    -ms-animation: swing1 .7s;
    -webkit-animation: swing1 .7s;
    animation: swing1 .7s; }

.heading-quaternary {
  font-family: 'Cormorant', serif;
  font-style: italic;
  backface-visibility: hidden;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #0e5a5a;
  margin: 0 3rem; }

.heading-5 {
  font-family: 'Cormorant', serif;
  font-style: italic;
  backface-visibility: hidden;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  display: inline-block;
  color: #0e5a5a;
  margin: 0; }

.teksts {
  font-size: 1.8rem;
  color: #3c3731;
  margin: 0 10rem;
  text-align: justify; }
  .teksts--bold {
    font-weight: 400; }
  .teksts--paraksts {
    font-size: 1rem;
    margin: 0 10rem;
    text-align: justify;
    font-style: italic; }
  .teksts--sans {
    font-size: 1rem;
    margin: 0 auto;
    text-align: justify;
    font-style: italic; }
  .teksts--raksts {
    font-size: 1.8rem;
    text-align: justify;
    margin: 0 3rem; }
  .teksts--vidu {
    font-size: 1.8rem;
    text-align: justify;
    margin: 0 10rem; }
  @media (max-width: 56.25em) {
    .teksts {
      margin: 0 4rem; }
      .teksts--sans {
        margin: 0 2rem;
        text-align: center; }
      .teksts--raksts {
        margin: 0; }
      .teksts--vidu {
        margin: 0 3rem; } }
  @media (max-width: 37.5em) {
    .teksts {
      margin: 0 auto; }
      .teksts--sans {
        margin: 0 4rem;
        text-align: center; }
      .teksts--raksts {
        margin: 0 4rem; }
      .teksts--vidu {
        margin: 0 4rem; }
      .teksts--paraksts {
        margin: 0 auto; } }

.list--letters {
  line-height: 2rem;
  margin: 0 20rem; }

.list--unordered {
  margin: 0 20rem; }

a.link {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  color: #0e5a5a;
  transition: all .2s;
  text-align: justify; }
  a.link:hover {
    -ms-transform: scale(1.1, 1.2);
    -webkit-transform: scale(1.1, 1.2);
    transform: scale(1.1, 1.2);
    opacity: 0.6; }
  a.link:active {
    color: #fc9ca9; }
  a.link:visited {
    opacity: 0.4; }

a.menu-box-link {
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  color: #0e5a5a;
  transition: all .2s; }
  a.menu-box-link:hover {
    text-decoration: none;
    color: #e10723;
    -ms-transform: scale(1.1, 1.2);
    /* IE 9 */
    -webkit-transform: scale(1.1, 1.2);
    /* Safari */
    transform: scale(1.1, 1.2); }
  a.menu-box-link:active {
    color: #f8233e; }

.unlisted {
  line-height: 4rem;
  text-transform: uppercase; }

.footer {
  text-align: center;
  color: #0e5a5a; }
  .footer .copyright {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 1rem; }

.u-center-text {
  text-align: center; }

.u-right-text {
  text-align: right; }

.u-left-text {
  text-align: left; }

.u-justify-text {
  text-align: justify; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem; }

.u-margin-bottom-medium {
  margin-bottom: 4rem; }

.u-margin-bottom-big {
  margin-bottom: 8rem; }

.u-margin-bottom-none {
  margin-bottom: 0; }

.u-margin-top-small {
  margin-top: 1.5rem; }

.u-margin-top-medium {
  margin-top: 3rem; }

.u-margin-top-big {
  margin-top: 7rem; }

.u-margin-top-huge {
  margin-top: 10rem; }

.u-margin-sides-xsmall {
  margin: 0 4rem; }

.u-margin-sides-6 {
  margin: 0 6rem; }

.u-margin-sides-small {
  margin: 0 10rem; }

.u-margin-sides-medium {
  margin: 0 25rem; }

.u-margin-sides-big {
  margin: 0 35rem; }

.u-margin-left {
  margin: 0 0 0 6rem; }

.u-margin-right {
  margin: 0 6rem 0 0; }

.u-vertical-align-0 {
  vertical-align: 0; }

.u-float-left {
  float: left;
  padding-right: 1rem; }

.u-float-right {
  float: right;
  padding-left: 1rem; }

.u-padding-right-small {
  padding-right: 1rem; }

.u-padding-bottom-small {
  margin-bottom: 1.5rem; }

.u-padding-bottom-medium {
  margin-bottom: 4rem; }

.u-padding-bottom-big {
  margin-bottom: 8rem; }

.u-padding-bottom-none {
  margin-bottom: 0; }

.u-bg-color-tert-1 {
  background-color: #FCFDFC; }

.u-bg-color-tert-3 {
  background-color: #fff7f8; }

button {
  text-align: center;
  cursor: pointer;
  color: #fc9ca9;
  background-color: transparent;
  font-size: 2.3rem;
  font-weight: 500;
  font-family: 'Cormorant', serif;
  font-style: italic;
  color: #fc9ca9;
  display: inline;
  text-decoration: none;
  border-bottom: 2px solid #fc9ca9;
  padding: 3px;
  transition: all .2s;
  border-style: solid;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 2px;
  border-left-width: 0; }

.btn, .btn:link, .btn:visited {
  text-decoration: none;
  padding: 1.2rem 3.5rem;
  display: inline-block;
  font-size: 3.5rem;
  border: none;
  box-shadow: 0 1rem 3rem rgba(14, 90, 90, 0.1);
  cursor: pointer;
  transition: all .2s; }

.btn:hover {
  transform: translateY(-0.2rem) translate(-50%, -50%);
  box-shadow: 0 1rem 2rem rgba(14, 90, 90, 0.2); }

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-0.1rem) translate(-50%, -50%);
  box-shadow: 0 0.5rem 1rem rgba(14, 90, 90, 0.2); }

.btn--animated {
  animation: slideInDown 3.6s infinite .5s;
  animation-fill-mode: backwards; }

.btn--home {
  position: absolute;
  z-index: 100;
  font-size: 4rem;
  left: 50%;
  top: 95%;
  transform: translate(-50%, -50%);
  color: #0e5a5a;
  transition: all .2s; }

.btn--white {
  background-color: #fff;
  color: #3c3731; }

.btn--green {
  background-color: #0e5a5a;
  color: #fff; }

.btn-text:link, .btn-text:visited {
  font-size: 2.3rem;
  font-weight: 500;
  font-family: 'Cormorant', serif;
  font-style: italic;
  color: #fc9ca9;
  display: inline;
  text-decoration: none;
  border-bottom: 2px solid #fc9ca9;
  padding: 3px;
  transition: all .2s;
  cursor: pointer; }

.btn-text:hover {
  background-color: #fc9ca9;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  border-radius: 4px; }

.btn-text:active {
  transform: translateY(0);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); }

#scroll-down-btn a {
  padding-top: 5rem; }

#scroll-down-btn a span {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  border-left: 1px solid #0e5a5a;
  border-bottom: 1px solid #0e5a5a;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdbtn 2s infinite;
  animation: sdbtn 2s infinite; }

.scroll-down a {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #0e5a5a;
  transition: opacity .2s; }
  .scroll-down a a:hover {
    opacity: .5; }

.box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  padding: 0;
  text-align: center;
  display: inline-block;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0.5rem 3rem rgba(14, 90, 90, 0.1);
  transition: all .3s;
  color: #0e5a5a;
  overflow: hidden; }
  .box:hover {
    -ms-animation: swing1 .7s;
    -webkit-animation: swing1 .7s;
    animation: swing1 .7s; }

.canvas-one {
  position: absolute;
  z-index: -200;
  border: none; }

button.collapsible {
  background-color: #eee;
  color: #0e5a5a;
  cursor: pointer;
  padding: 1.8rem;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 1.5rem; }

.active, .collapsible:hover {
  background-color: #feced4; }

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px; }

.active:after {
  content: "\2212"; }

.panel {
  padding: 0 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #FCFDFC; }

.contact-form {
  width: 100%;
  padding: 0; }

.form__group:not(:last-child) {
  margin-bottom: 2rem; }

.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all .3s; }
  .form__input:focus {
    outline: none;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #fee6e9; }
  .form__input:focus:invalid {
    border-bottom: 3px solid #fc9ca9; }
  .form__input::-webkit-input-placeholder {
    color: #999; }

.form__input-1 {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(254, 230, 233, 0.2);
  border: none;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all .3s; }
  .form__input-1:focus {
    outline: none;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #fee6e9; }
  .form__input-1:focus:invalid {
    border-bottom: 3px solid #fc9ca9; }
  .form__input-1::-webkit-input-placeholder {
    color: #999; }

.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: .7rem;
  display: block;
  transition: all .3s; }

.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem); }

.form__input-1:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem); }

.centered-and-cropped {
  object-fit: cover; }

.pagination a {
  color: #0e5a5a;
  font-size: 1.6rem;
  display: inline-block;
  height: 3.5rem;
  width: 3.5rem;
  padding: .22rem 1.4rem;
  text-decoration: none;
  transition: background-color .3s;
  border-radius: 50%; }

.pagination a.active {
  background-color: #e10723;
  color: white; }

.pagination a:hover:not(.active) {
  background-color: #fc9ca9; }

.profile-photo {
  margin: 0 auto;
  width: 25rem; }

.photo-poster {
  margin: 0 auto;
  width: 40vw; }

.small-photo {
  margin: 0;
  width: 22rem; }

.photo-about {
  width: 50rem;
  -webkit-box-shadow: 0 0.2rem 0.7rem rgba(14, 90, 90, 0.2);
  -ms-box-shadow: 0 0.2rem 0.7rem rgba(14, 90, 90, 0.2);
  box-shadow: 0rem 0.9rem 2rem rgba(60, 55, 49, 0.1);
  position: relative;
  border-radius: .5rem; }
  .photo-about:hover {
    transform: translateY(0.1rem);
    box-shadow: 0 1.2rem 2rem rgba(60, 55, 49, 0.2); }
  .photo-about:active, .photo-about:focus {
    transform: translateY(-0.1rem);
    box-shadow: 0 0.9rem 1rem rgba(60, 55, 49, 0.2); }
  .photo-about::after {
    content: "";
    -webkit-box-shadow: 10rem 0 1rem rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 10rem 0 1rem rgba(0, 0, 0, 0.2);
    box-shadow: 10rem 0 1rem rgba(0, 0, 0, 0.2);
    position: absolute;
    width: 50%;
    height: 9rem; }

.photo-box {
  max-width: 100%; }

@media (max-width: 43.75em) {
  .photo-about {
    width: 80vw; }
  .photo-poster {
    width: 70vw;
    margin: 0; } }

/*
  .panel-quote {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 40rem;
    margin: auto;
    //background-color: #fff;
  }
  
  .social-share {
    text-align: center;
  }
  
  .social-share i {
    color: $color-primary-light;
  }
  
  .quote-progress {
    width: 0;
    height: 2px;
    background-color: $color-primary-light;
  }
  
  blockquote {
    padding: 3rem;
    font-size: inherit;
  }
    
  .author {
    font-size: 1.1rem;
    font-weight: lighter;
    text-align: right;
  }
  
  /* Quote Navigation */
/*.quote-nav {
    display: flex;
    align-items: stretch;
    width: 100%;
    padding-bottom: 3rem;
  }
  
  .previous {
    margin: auto;
  }
  
  .next {
    margin: auto;
  }
  
  /* Media Queries */
/*@media screen and (max-width: 460px) {
    .panel-quote {
      min-width: 100%;
    }
    
    blockquote {
      font-size: 1.1em;
    }
  }
*/
/* Slider container */
.slider-container {
  position: relative; }

.mySlides {
  display: none;
  padding-top: 3rem;
  text-align: center; }

.prev, .next {
  cursor: pointer;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #0e5a5a;
  font-size: 1.8rem;
  border-radius: 0 3px 3px 0;
  user-select: none; }

.next {
  right: 0;
  border-radius: 3px 0 0 3px; }

.prev:hover, .next:hover {
  color: #fc9ca9; }

.quote {
  font-style: italic; }

.author {
  color: #fc9ca9; }

img.svitra {
  width: 36rem; }
  @media (max-width: 43.75em) {
    img.svitra {
      width: 21rem; } }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 3rem;
  height: 0;
  overflow: hidden; }

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.footer {
  bottom: 0;
  width: 100%;
  height: 15rem;
  background-color: #fff7f8;
  padding: 3rem 5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-around; }
  @media only screen and (max-width: 43.75em) {
    .footer {
      height: 20rem;
      flex-direction: column;
      align-content: space-between; } }
  .footer__social {
    display: flex;
    flex-direction: row; }
    @media only screen and (max-width: 43.75em) {
      .footer__social {
        align-self: center; } }
  .footer__link:not(:first-child) {
    margin-left: 3rem; }
  .footer__icon {
    height: 4.5rem;
    width: 4.5rem;
    fill: #0e5a5a;
    transition: all .2s; }
    .footer__icon:hover {
      transform: translateY(-2px);
      fill: #189a9a; }

.row {
  width: 90%;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 4rem; }
    @media (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 3rem; } }
  @media (max-width: 56.25em) {
    .row {
      max-width: 70rem; } }
  @media (max-width: 37.5em) {
    .row {
      max-width: 50rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 3rem; } }
    @media (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem)/2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem)/3); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem)/4); }
  .row .col-1-of-5 {
    width: calc((100% - 4 * 6rem)/5); }
  .row .col-2-of-3 {
    width: calc(6rem + 2 *((100% - 2 * 6rem)/3 )); }
  .row .col-2-of-4 {
    width: calc(6rem + 2 * ((100% - 3 * 6rem)/4 )); }
  .row .col-3-of-4 {
    width: calc(2 * 6rem + 3 * ((100% - 3 * 6rem)/4 )); }

.cenas {
  display: grid;
  align-content: center;
  justify-content: center;
  justify-items: center;
  grid-row-gap: 2rem; }
  @media only screen and (max-width: 50em) {
    .cenas {
      grid-column: 1 / -1; } }
  .cenas__list {
    display: grid;
    grid-template-columns: max-content max-content;
    grid-row-gap: 5vh;
    grid-column-gap: 2rem;
    align-items: top;
    justify-items: left; }

.header {
  height: 100vh;
  width: 100%;
  position: relative; }
  .header__logo-box {
    float: left; }
  .header__logo {
    position: absolute;
    width: 22rem;
    top: 4rem;
    left: 4rem;
    -webkit-filter: drop-shadow(0 0.6rem 0.7rem #d8d9dd);
    filter: drop-shadow(0 0.6rem 0.7rem #d8d9dd); }
    .header__logo:hover {
      -webkit-animation: heartBeat 1.5s;
      animation: heartBeat 1.5s; }
  .header__text-box {
    position: absolute;
    height: fit-content;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }

@media (max-width: 75em) {
  .header {
    height: 95vh;
    width: 100%;
    display: block;
    position: relative; }
    .header__text-box {
      position: absolute;
      top: 45%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center; }
    .header__logo {
      width: 21rem; } }

@media (max-width: 56.25em) {
  .header {
    height: 100vh;
    width: 100%;
    position: relative;
    display: block; }
    .header__text-box {
      position: absolute;
      top: 45%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center; }
    .header__logo {
      position: absolute;
      width: 21rem;
      top: 2rem;
      left: 1.5rem; } }

@media (max-width: 43.75em) {
  .header {
    display: block; }
    .header__logo {
      width: 19rem;
      top: 2rem;
      left: 1.2rem; } }

.header1 {
  height: 20rem;
  width: 100%;
  position: relative; }
  .header1__logo-box {
    float: left; }
  .header1__logo {
    position: absolute;
    width: 20rem;
    top: 3rem;
    left: 3rem;
    -webkit-filter: drop-shadow(0 0.5rem 0.5rem #b3b3b3);
    filter: drop-shadow(0 0.5rem 0.5rem #b3b3b3); }
    .header1__logo:hover {
      -webkit-animation: heartBeat 1.5s;
      animation: heartBeat 1.5s; }

@media (max-width: 37.5em) {
  .header1 {
    position: relative;
    display: block; }
    .header1__logo {
      width: 19rem;
      top: 1.8rem;
      left: 1.2rem; } }

.masonry {
  column-count: 3;
  column-gap: 5rem;
  margin: 1rem auto;
  max-width: 90rem; }

@media (max-width: 75em) {
  .masonry {
    column-count: 3; } }

@media (max-width: 43.75em) {
  .masonry {
    column-count: 2;
    column-gap: 1rem; } }

.item {
  display: block;
  width: 100%;
  padding: .2rem;
  margin: 0 0 1.5rem; }

.item-video {
  display: block;
  width: 100%;
  padding: .2rem;
  margin: 0 0 1.5rem; }

ul, ol {
  margin: 0; }

.navigation__checkbox {
  display: none; }

.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(14, 90, 90, 0.1);
  text-align: center;
  cursor: pointer; }

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#fc9ca9, #0e5a5a);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }

.navigation__nav {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  left: -110vw;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%; }

.navigation__item {
  margin: 1rem; }

.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .4s; }
  .navigation__link:link span, .navigation__link:visited span {
    margin-right: 1.5rem;
    display: inline-block; }

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #0e5a5a;
  transform: translateX(0.8rem); }

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(160); }

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
  left: 0; }

.navigation__icon {
  position: relative;
  margin-top: 3.5rem; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: 2px;
    background-color: #333;
    display: inline-block; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all .2s; }
  .navigation__icon::before {
    top: -.8rem; }
  .navigation__icon::after {
    top: .8rem; }

.navigation__button:hover .navigation__icon::before {
  top: -1rem; }

.navigation__button:hover .navigation__icon::after {
  top: 1rem; }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  transform: rotate(135deg);
  top: 0; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  transform: rotate(-135deg);
  top: 0; }

@media (max-width: 43.75em) {
  .navigation__button {
    top: 4rem;
    right: 4rem; }
  .navigation__background {
    top: 4.5rem;
    right: 4.5rem; } }

@media (max-width: 37.5em) {
  .navigation__button {
    top: 4rem;
    right: 3rem; }
  .navigation__background {
    top: 4.5rem;
    right: 3.5rem; } }

div.leftcolumn {
  float: left;
  width: 75%;
  display: inline-block; }

div.rightcolumn {
  float: right;
  width: 25%;
  display: inline-block; }

.videocontainer::after .col-3-of-3::after {
  content: "";
  display: table;
  clear: both; }

div.center {
  margin: 0 10rem; }
  @media (max-width: 37.5em) {
    div.center {
      margin: 0 3rem; } }

tr.spaceUnder > td {
  padding-bottom: 1rem; }

section {
  padding: 4% 10%;
  display: table;
  margin: 0;
  height: 90vh;
  width: 100%;
  max-width: none;
  position: relative; }

@media (max-width: 43.75em) {
  section {
    padding: 10% 5%; } }

.section-news {
  background-color: #fff7f8; }

.section-about {
  background-color: #FCFDFC; }

.section-about-1 {
  background-color: #FCFDFC;
  padding: 0 10%; }

.section-services {
  background-image: radial-gradient(ellipse, white, rgba(247, 247, 247, 0.8)), url(../../img/red-flowers.jpg);
  text-align: justify;
  min-height: 40rem;
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover; }

.section-services-1 {
  text-align: justify;
  min-height: 40rem;
  background-color: #FCFDFC;
  padding: 0 10%; }

.section-testimonies {
  background-color: #FCFDFC; }
  .section-testimonies__item--1, .section-testimonies__item--2, .section-testimonies__item--3, .section-testimonies__item--4, .section-testimonies__item--5, .section-testimonies__item--6, .section-testimonies__item--7, .section-testimonies__item--8, .section-testimonies__item--9, .section-testimonies__item--10, .section-testimonies__item--11 {
    position: absolute;
    display: block;
    top: 30%;
    width: 50%;
    font-size: 2rem;
    animation-duration: 150s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite; }
  .section-testimonies__item--1 {
    animation-name: anim-1; }
  .section-testimonies__item--2 {
    animation-name: anim-2; }
  .section-testimonies__item--3 {
    animation-name: anim-3; }
  .section-testimonies__item--4 {
    animation-name: anim-4; }
  .section-testimonies__item--5 {
    animation-name: anim-5; }
  .section-testimonies__item--6 {
    animation-name: anim-6; }
  .section-testimonies__item--7 {
    animation-name: anim-7; }
  .section-testimonies__item--8 {
    animation-name: anim-8; }
  .section-testimonies__item--9 {
    animation-name: anim-9; }
  .section-testimonies__item--10 {
    animation-name: anim-10; }
  .section-testimonies__item--11 {
    animation-name: anim-11; }

@keyframes anim-1 {
  0%, 2% {
    left: -100%;
    opacity: 0; }
  3%, 9% {
    left: 25%;
    opacity: 1; }
  10%, 100% {
    left: 110%;
    opacity: 0; } }

@keyframes anim-2 {
  0%, 10% {
    left: -100%;
    opacity: 0; }
  11%, 17% {
    left: 25%;
    opacity: 1; }
  18%, 100% {
    left: 110%;
    opacity: 0; } }

@keyframes anim-3 {
  0%, 18% {
    left: -100%;
    opacity: 0; }
  19%, 25% {
    left: 25%;
    opacity: 1; }
  26%, 100% {
    left: 110%;
    opacity: 0; } }

@keyframes anim-4 {
  0%, 26% {
    left: -100%;
    opacity: 0; }
  27%, 33% {
    left: 25%;
    opacity: 1; }
  34%, 100% {
    left: 110%;
    opacity: 0; } }

@keyframes anim-5 {
  0%, 34% {
    left: -100%;
    opacity: 0; }
  35%, 41% {
    left: 25%;
    opacity: 1; }
  42%, 100% {
    left: 110%;
    opacity: 0; } }

@keyframes anim-6 {
  0%, 42% {
    left: -100%;
    opacity: 0; }
  43%, 49% {
    left: 25%;
    opacity: 1; }
  50%, 100% {
    left: 110%;
    opacity: 0; } }

@keyframes anim-7 {
  0%, 50% {
    left: -100%;
    opacity: 0; }
  51%, 57% {
    left: 25%;
    opacity: 1; }
  58%, 100% {
    left: 110%;
    opacity: 0; } }

@keyframes anim-8 {
  0%, 58% {
    left: -100%;
    opacity: 0; }
  59%, 65% {
    left: 25%;
    opacity: 1; }
  66%, 100% {
    left: 110%;
    opacity: 0; } }

@keyframes anim-9 {
  0%, 66% {
    left: -100%;
    opacity: 0; }
  67%, 73% {
    left: 25%;
    opacity: 1; }
  74%, 100% {
    left: 110%;
    opacity: 0; } }

@keyframes anim-10 {
  0%, 74% {
    left: -100%;
    opacity: 0; }
  75%, 81% {
    left: 25%;
    opacity: 1; }
  82%, 100% {
    left: 110%;
    opacity: 0; } }

@keyframes anim-11 {
  0%, 82% {
    left: -100%;
    opacity: 0; }
  83%, 89% {
    left: 25%;
    opacity: 1; }
  100% {
    left: 110%;
    opacity: 0; } }

.section-testimonies-1 {
  background-color: #FCFDFC;
  padding: 0 10%; }

.section-contacts {
  background-image: radial-gradient(ellipse, white, rgba(247, 247, 247, 0.8)), url(../../img/red-flowers.jpg);
  min-height: 40rem;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: justify; }

.section-contacts-1 {
  min-height: 40rem;
  text-align: justify;
  background-color: #FCFDFC;
  padding: 0 15%; }

.section-partners {
  background-color: #FCFDFC; }

.content {
  display: table-cell; }
