:root {
  --theme-display-font-family: "Source Sans 3", sans-serif;
  --theme-text-font-family: "Open Sans", sans-serif;

  --theme-color-background: #fdfdf6;
  --theme-color-surface-0: #fdfdf6;
  --theme-color-surface-variant: #dfe4d6;
  --theme-color-surface-1: #f0f3e8b8;
  --theme-color-on-background: #1a1c18;
  --theme-color-on-surface: #1a1c18;
  --theme-color-on-surface-variant: #43493e;
  --theme-color-on-surface-variant-2: #e6e6e6;
  --theme-color-primary: #386a20;
  --theme-color-primary-80: #9cd67d;
  --theme-color-primary-30: #205107;
  --theme-color-primary-20: #0c3900;
  --theme-color-on-primary: #fff;
  --theme-color-primary-container: #b8f397;
  --theme-color-on-primary-container: #042100;
  --theme-color-secondary: #55624c;
  --theme-color-on-secondary: #fff;
  --theme-color-secondary-container: #d9e7cb;
  --theme-color-on-secondary-container: #131f0d;
  --theme-color-tertiary-container: #bbebeb;
  --theme-color-on-tertiary-container: #002021;
  --theme-color-utility-error: #ba1b1b;
  --theme-color-utility-on-error: #fff;
  --theme-color-utility-outline: #74796e;

  --theme-display-xl-font-family: var(--theme-display-font-family);
  --theme-display-xl-font-size: 90px;
  --theme-display-xl-line-height: 96px;
  --theme-display-xl-font-weight: 500;
  --theme-display-xl-letter-spacing: 0;

  --theme-display-l-font-family: var(--theme-display-font-family);
  --theme-display-l-font-size: 59px;
  --theme-display-l-line-height: 64px;
  --theme-display-l-font-weight: 500;
  --theme-display-l-letter-spacing: 0;

  --theme-display-m-font-family: var(--theme-display-font-family);
  --theme-display-m-font-size: 50px;
  --theme-display-m-line-height: 55px;
  --theme-display-m-font-weight: 500;
  --theme-display-m-letter-spacing: 0;

  --theme-display-s-font-family: var(--theme-display-font-family);
  --theme-display-s-font-size: 38px;
  --theme-display-s-line-height: 43px;
  --theme-display-s-font-weight: 500;
  --theme-display-s-letter-spacing: 0;

  --theme-headline-l-font-family: var(--theme-display-font-family);
  --theme-headline-l-font-size: 34px;
  --theme-headline-l-line-height: 40px;
  --theme-headline-l-font-weight: 500;
  --theme-headline-l-letter-spacing: 0;

  --theme-headline-m-font-family: var(--theme-display-font-family);
  --theme-headline-m-font-size: 30px;
  --theme-headline-m-line-height: 36px;
  --theme-headline-m-font-weight: 500;
  --theme-headline-m-letter-spacing: 0;

  --theme-headline-s-font-family: var(--theme-display-font-family);
  --theme-headline-s-font-size: 23px;
  --theme-headline-s-line-height: 32px;
  --theme-headline-s-font-weight: 500;
  --theme-headline-s-letter-spacing: 0;

  --theme-title-l-font-family: var(--theme-text-font-family);
  --theme-title-l-font-size: 22px;
  --theme-title-l-line-height: 30px;
  --theme-title-l-font-weight: 400;
  --theme-title-l-letter-spacing: 0;

  --theme-title-m-font-family: var(--theme-text-font-family);
  --theme-title-m-font-size: 16px;
  --theme-title-m-line-height: 24px;
  --theme-title-m-font-weight: 400;
  --theme-title-m-letter-spacing: 0;

  --theme-title-s-font-family: var(--theme-text-font-family);
  --theme-title-s-font-size: 14px;
  --theme-title-s-line-height: 20px;
  --theme-title-s-font-weight: 400;
  --theme-title-s-letter-spacing: 0;

  --theme-body-l-font-family: var(--theme-text-font-family);
  --theme-body-l-font-size: 16px;
  --theme-body-l-line-height: 24px;
  --theme-body-l-font-weight: 400;
  --theme-body-l-letter-spacing: 0;

  --theme-body-m-font-family: var(--theme-text-font-family);
  --theme-body-m-font-size: 14px;
  --theme-body-m-line-height: 20px;
  --theme-body-m-font-weight: 400;
  --theme-body-m-letter-spacing: 0;

  --theme-body-s-font-family: var(--theme-text-font-family);
  --theme-body-s-font-size: 12px;
  --theme-body-s-line-height: 16px;
  --theme-body-s-font-weight: 400;
  --theme-body-s-letter-spacing: 0.1px;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  text-align: center;
}

html,
body {
  height: 100%;
  margin: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1;
}

body {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.2, 0, 0, 1);
  background: var(--theme-color-background);
  font-family: var(--theme-body-l-font-family);
  font-size: var(--theme-body-l-font-size);
  font-weight: var(--theme-body-l-font-weight);
  letter-spacing: var(--theme-body-l-letter-spacing);
  line-height: var(--theme-body-l-line-height);
  color: var(--ladvi-theme-color-on-surface);
}

body.hide {
  opacity: 0;
}

@media screen and (max-width: 600px) {
  body {
    font-family: var(--theme-body-m-font-family);
    font-size: var(--theme-body-m-font-size);
    font-weight: var(--theme-body-m-font-weight);
    letter-spacing: var(--theme-body-m-letter-spacing);
    line-height: var(--theme-body-m-line-height);
  }
}

.root-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 48px 24px;
}

@media screen and (max-width: 820px) {
  .root-container {
    padding: 42px 24px;
  }
}

/* header */

header {
  width: 100%;
  max-width: 1760px;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
}
header .content-container {
  display: flex;
  margin: 0;
  padding: 56px;
  border-radius: 50%;
  background-repeat: no-repeat;
  /* background-position: 0 50%; */
  /* background-size: cover; */
  min-height: 544px;
  grid-column: span 2;
  /* background-color: #e8f5db; */
  background-position: right;
  background-size: contain;
  background-color: #d2e4c5a2;
}

header .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0;
  color: #4b3c4f;
}
header .title h2 {
  font-size: 80px;
  letter-spacing: -0.5px;
}
header .title .description {
  font-size: 25px;
  margin-top: 54px;
  margin-bottom: 97px;
  font-weight: 500; 
}
@media screen and (max-width: 1294px) {
  header .content-container {
    min-height: unset;
  }
}
@media screen and (max-width: 960px) {
  header .title h2 {
    font-size: 60px;
  }
  header .title .description {
    font-size: 55px;
    margin-top: 34px;
    margin-bottom: 77px;
  }
  header .content-container {
    padding: 38px;
    background-position: 160%;
  }
  header .title h2 {
    font-size: 50px;
  }
  header .title .description {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  header .title {
    text-align: center;
  }
  header .title h2 {
    font-size: 55px;
    line-height: 40px;
    margin-bottom: 16px;
    margin-top: 16px;
  }
  header .content-container {
    padding: 38px 12px;
    /* padding: 24px 12px;
    background-position: center;
    background-size: cover; */
  }
  header .title .description {
    font-size: 17px;
    margin-top: 16px;
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 390px) {
  header .title h2 {
    font-size: 55px;
    line-height: 37px;
    margin-bottom: 28px;
  }
  header .title .description {
    font-size: 16px;
  }
}

.cta-button {
  font-family: var(--theme-headline-m-font-family);
  font-size: var(--theme-headline-m-font-size);
  font-weight: var(--theme-headline-m-font-weight);
  letter-spacing: var(--theme-headline-m-letter-spacing);
  line-height: var(--theme-headline-m-line-height);
  position: relative;
  width: 292px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 48px;
  background-color: #3b8a38;
  color: white;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  transform: scale(0.95);
  transform-origin: left;
}

.cta-button:hover {
  background-color: #499046;
}
@media screen and (max-width: 960px) {
  .cta-button {
    width: 252px;
    height: 66px;
    font-family: var(--theme-headline-s-font-family);
    font-size: var(--theme-headline-s-font-size);
    font-weight: var(--theme-headline-s-font-weight);
    letter-spacing: var(--theme-headline-s-letter-spacing);
    line-height: var(--theme-headline-s-line-height);
  }
}

@media screen and (max-width: 600px) {
  .cta-button {
    width: 232px;
    height: 54px;
  }
  header a {
    text-align: center;
  }
}

footer .cta-button {
  width: 252px;
  height: 52px;
  font-size: 20px;
}

/* navigation */

nav {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  transition-duration: 0.3s;
  transition-property: max-width, margin;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  z-index: 2;
}

.navigation-container {
  display: flex;
  justify-content: center;
  height: 88px;
  padding: 9px 0;
  gap: 8px;
  /* background: var(--theme-color-background); */
  opacity: 1;
}

.tabbed-navigation {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: var(--theme-color-surface-1);
  text-align: center;
  white-space: nowrap;
  overflow: auto;
}
.tab {
  display: inline-flex;
  position: relative;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: none;
  border-radius: 40px;
  background: var(--theme-color-surface-1);
  color: var(--theme-color-on-surface-variant);
  line-height: 44px;
  text-decoration: none;
  text-decoration: initial;
  cursor: pointer;
  vertical-align: middle;
}
.tab .tab-label {
  font-family: var(--theme-title-m-font-family);
  font-size: var(--theme-title-m-font-size);
  font-weight: 500;
  letter-spacing: var(--theme-title-m-letter-spacing);
  line-height: var(--theme-title-m-line-height);
  z-index: 1;
}
.tab:hover {
  background: rgb(0 0 0 / 4%);
  color: var(--theme-color-on-surface);
}
.tab.active {
  background: #d9e7cb;
  color: var(--ladvi-theme-color-on-surface);
}
.tab.active .tab-label {
  color: #131f0d;
}

@media screen and (max-width: 1294px) {
  .navigation-container {
    height: 76px;
  }
}
@media screen and (max-width: 720px) {
  nav {
    position: static;
  }
  .navigation-container {
    height: unset;
    padding-top: 1px;
  }
  .tabbed-navigation {
    flex-direction: column;
    border-radius: 0 0 24px 24px;
  }
  .tab {
    height: 48px;
    border-radius: 0;
    background: var(--theme-color-surface-1) !important;
    color: var(--theme-color-on-surface) !important;
  }
  .tab-label {
    color: var(--theme-color-on-surface-variant) !important;
  }
  .tab:first-child {
    background: #d9e7cb !important;
    color: var(--ladvi-theme-color-on-surface) !important;
  }
  .tab:first-child .tab-label {
    color: #131f0d !important;
    font-weight: 500 !important;
  }
}

/* footer */

footer {
  margin: 0 auto 32px;
  width: 100%;
  max-width: 1200px;
  padding: 64px 40px;
}

footer .squiggle {
  position: relative;
  width: 100%;
  height: 8px;
}
footer .squiggle svg {
  position: absolute;
  top: 0;
}
footer .section-header {
  margin-bottom: 50px;
  margin-top: 120px;
}
@media screen and (max-width: 960px) {
  footer {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 820px) {
  footer .card:last-child {
    grid-row: 1;
  }
  footer {
    padding-top: 0px;
    margin-bottom: 0;
  }
}

/* main */

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
main .content-container {
  width: 100%;
  max-width: 1200px;
}

main .squiggle {
  width: 170px !important;
  align-self: center;
  margin: 168px auto 138px !important;
}
/* section */

.section {
  margin: 96px 0;
}

@media screen and (max-width: 1294px) {
  .section {
    margin: 80px 0;
  }
}

@media screen and (max-width: 960px) {
  .section {
    margin: 64px 0;
  }
}

@media screen and (max-width: 820px) {
  .section {
    margin: 48px 0 0;
  }
  #welcome {
    margin-top: 48px;
  }
}

.section-header {
  margin: 24px;
  margin-bottom: 36px;
  opacity: 0;
}
.section-header h2 {
  font-family: var(--theme-display-m-font-family);
  font-size: var(--theme-display-m-font-size);
  font-weight: var(--theme-display-m-font-weight);
  letter-spacing: var(--theme-display-m-letter-spacing);
  line-height: var(--theme-display-m-line-height);
  margin: 0 0 8px;
  color: var(--theme-color-on-surface);
}
@media screen and (max-width: 820px) {
  .section-header {
    display: none;
  }
}

.section-header-description p {
  margin: 0;
  color: var(--theme-color-on-surface-variant);
  font-family: var(--theme-title-l-font-family);
  font-size: var(--theme-title-l-font-size);
  font-weight: var(--theme-title-l-font-weight);
  letter-spacing: var(--theme-title-l-letter-spacing);
  line-height: var(--theme-title-l-line-height);
}
@media screen and (max-width: 600px) {
  .section-header-description p {
    font-family: var(--theme-body-l-font-family);
    font-size: var(--theme-body-l-font-size);
    font-weight: var(--theme-body-l-font-weight);
    letter-spacing: var(--theme-body-l-letter-spacing);
    line-height: var(--theme-body-l-line-height);
  }
}

.section-header.section-header--center h2,
.section-header.section-header--center p {
  text-align: center;
  width: 100%;
}

/* ladvi-card-set */

.card-set {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: row;
  grid-auto-rows: minmax(250px, auto);
}
@media screen and (max-width: 820px) {
  .card-set {
    grid-gap: 48px;
    gap: 48px;
  }
}

/* card */

.card {
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: border-radius 0.3s cubic-bezier(0.2, 0, 0, 1),
    background-color 0.3s cubic-bezier(0.2, 0, 0, 1);
  border-radius: 50%;
  background: var(--theme-color-surface-1);
  background-size: cover;
  background-position: center;
  color: var(--theme-color-on-surface);
  text-decoration: none;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  grid-column: span 6;
  border: 3px solid #9883a4;
}
.card .content-container {
  display: flex;
  flex-direction: column;
  padding: 84px;
}
.card .content-container p:last-child {
  margin-bottom: 0.25em;
}

.card .title,
.card .description {
  color: var(--theme-color-on-surface);
}

.card .title {
  font-family: var(--theme-headline-s-font-family);
  font-size: var(--theme-headline-s-font-size);
  font-weight: var(--theme-headline-s-font-weight);
  letter-spacing: var(--theme-headline-s-letter-spacing);
  line-height: var(--theme-headline-s-line-height);
}

.card .description {
  font-family: var(--theme-body-l-font-family);
  font-size: var(--theme-body-l-font-size);
  font-weight: var(--theme-body-l-font-weight);
  letter-spacing: var(--theme-body-l-letter-spacing);
  line-height: var(--theme-body-l-line-height);
}
@media screen and (max-width: 600px) {
  .card .description {
    font-family: var(--theme-body-m-font-family);
    font-size: var(--theme-body-m-font-size);
    font-weight: var(--theme-body-m-font-weight);
    letter-spacing: var(--theme-body-m-letter-spacing);
    line-height: var(--theme-body-m-line-height);
  }
}

.card--small {
  grid-column: span 2;
}
.card--medium {
  grid-column: span 3;
}
.card--large {
  grid-column: span 6;
}

@media screen and (max-width: 1148px) {
  .card--small {
    grid-column: span 3;
  }
}
@media screen and (max-width: 820px) {
  .card--medium {
    grid-column: span 6;
  }
}
@media screen and (max-width: 600px) {
  .card--small {
    grid-column: span 6;
  }
}

.card--medium .content-container,
.card--large .content-container {
  padding: 82px;
}

@media screen and (max-width: 600px) {
  .card .description {
    font-family: var(--theme-body-m-font-family);
    font-size: var(--theme-body-m-font-size);
    font-weight: var(--theme-body-m-font-weight);
    letter-spacing: var(--theme-body-m-letter-spacing);
    line-height: var(--theme-body-m-line-height);
  }

  .card--medium .content-container,
  .card--large .content-container {
    padding: 84px;
  }
}

.card--vertical .thumb-container {
  width: 100%;
  height: 180px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  background: rgba(227, 242, 211, 0.65);
  border-radius: 24px 24px 0 0;
}

.card--vertical .thumb-container .icon-container {
  width: 102px;
  height: 102px;
  background: #e9f6dd;
  border-radius: 50%;
  padding: 25px;
  border: 1px solid #cacaca;
}
.card--vertical .thumb-container .icon-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.7;
}

@media screen and (max-width: 600px) {
  .card--vertical .thumb-container {
    height: 133px;
  }
  .card--vertical .thumb-container .icon-container {
    width: 96px;
    height: 96px;
  }
}

.card--horizontal {
  display: flex;
}
.card--horizontal.card--reversed {
  flex-direction: row-reverse;
}

.card--horizontal .content-container {
  flex: 1;
}
.card--horizontal .thumb-container {
  flex: 0.8;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  min-height: 250px;
}
@media screen and (max-width: 820px) {
  .card--horizontal .thumb-container {
    min-height: 200px;
  }
}
@media screen and (max-width: 600px) {
  .card--horizontal,
  .card--horizontal.card--reversed {
    flex-direction: column-reverse;
  }
}

.card--contact .thumb-container {
  flex: 0.6;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(123, 157, 191, 0.55);
}

.card--contact .thumb-container .icon-container {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #8f8d8d;
}
.card--contact .thumb-container .icon-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 820px) {
  .card--horizontal .thumb-container .icon-container {
    width: 140px;
    height: 140px;
  }
}

.card--address {
  text-align: center;
}
.card--address .content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.card--address a {
  display: block;
  color: #468a44;
  text-decoration: none;
  font-weight: bold;
  /* font-family: var(--theme-headline-s-font-family);
  font-size: var(--theme-headline-s-font-size);
  font-weight: var(--theme-headline-s-font-weight);
  letter-spacing: var(--theme-headline-s-letter-spacing);
  line-height: var(--theme-headline-s-line-height); */
}

/* squiggle */
.squiggle {
  opacity: 0;
}
@media screen and (max-width: 820px) {
  .squiggle {
    display: none;
  }
}
.squiggle svg path {
  stroke: #a9b19d !important;
}

/* p */
p.quote > *:last-child {
  float: right;
}


#srdce {
	position: absolute;
  margin-left: 50px;
  margin-top: 50px;
	animation:pulse 1s infinite;
}


#pulsingheart { 
  position: relative; 
  width: 100px; 
  height: 90px;
} 

#pulsingheart:before, #pulsingheart:after { 
  position: absolute; 
  content: ""; 
  left: 50px; 
  top: 0; 
  width: 50px; 
  height: 80px; 
  background: #aa0000; 
  border-radius: 50px 50px 0 0; 
  transform: rotate(-45deg);  
  transform-origin: 0 100%;
  animation:pulsecolor 1s infinite;
} 

#pulsingheart:after { 
  left: 0; 
  transform: rotate(45deg); 
  transform-origin :100% 100%;
  animation:pulsecolor 1s infinite;
}

@keyframes pulse {
	10% {transform: scale(1.1)}
}

@keyframes pulsecolor {
  10% {background: #dd0000}
}

iframe {
  transform: scale(1.6);
}