@charset "UTF-8";
/* Resets */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

/* Variables */
:root {
  --primary: #252525;
  --secondary: #ffffff;
  --gap: 2rem;
  --radius-L: 1rem;
  --radius-S:0.5rem;
  --radius-round:10em;
  --header-height: 70px; /* height of site-header */
  --boxed-width: 1140px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", Times, serif;
  --font-text: "Montserrat", sans-serif;
  --color-grey: #7F858F;
  --color-lightgrey: #E1E1E1;
  --color-darkgrey: #505050;
  --color-accent: #FF5000;
}

/* .content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
} */
/* 100% wide */
.wrapper-full {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem;
}

/* max-width wide (1200px) */
.wrapper-boxed {
  max-width: 75rem;
  margin: 0 auto;
}

/* */
.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 1rem 0;
  width: 100%;
}
.section.spacer-sm {
  margin-bottom: 3rem;
}
.section.spacer-md {
  margin-bottom: 5rem;
}

/* .section:first-of-type {
   padding: 0 0 1rem 0 ; 
}
 */
body {
  font-family: var(--font-text);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  min-height: 100vh;
  background-color: #fff;
  overflow-x: hidden;
}

/* === utility:prevent scroll. apply to body or html === */
.noScroll {
  overflow: hidden;
  margin: 0;
  touch-action: none;
  -ms-touch-action: none;
  height: 100vh;
}

svg.definitions {
  display: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.fluid-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 300;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 2.5rem;
}

@media (min-width: 768px) {
  .fluid-text {
    line-height: 1;
    font-size: clamp(4vw, 5.425vw, 5.625rem);
  }
}
/* 



.entry-header {
    min-height:6rem;
    margin: 2rem 0 2rem 0;
}
.entry-header h1 {
    line-height: 1.4rem;
    color:#505050;
    font-weight: 400;
    font-size: 2.7rem;
}

.entry {
    line-height: 150%;
    font-size: 1.3rem;
}


.entry h2 {
    margin: 2rem 0 1.8rem 0;

}
.entry h3 {
    margin: 1.8rem 0 1.5rem 0;

}

.entry  blockquote {
    position: relative;
    margin:2rem 1rem;
    color:#505050;
}

.entry blockquote > p {
    font-style: italic;
    padding-left: 3rem;
}
.entry blockquote:before {
        height: 2rem;
        width: 2rem;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        content: "";
        background-image: url("img/blockquote.svg");
    }


.entry ul {
 margin:1rem 2rem;
list-style-type: disc;

} */
/* ==============  HEADER ==================  */
#site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  /*  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
  z-index: 99;
  background: #fff;
}

#site-header nav {
  width: 100%;
}

/* ============= navbar desktop ================ */
.navbar {
  height: 100%;
  flex-basis: 100%;
  max-width: 75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  margin: 0 auto;
}

.navbar .logo {
  max-width: 120px;
}

.navbar .logo a {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.navbar .nav-links {
  line-height: 70px;
  height: 100%;
}

.navbar .links {
  display: flex;
}

.navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
.navbar .links li.mobile-only {
  display: none;
}

.navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #252525;
  font-variant: small-caps;
  font-size: 1.5rem;
  font-weight: 500;
}
.navbar .links li a:hover {
  text-decoration: underline;
}

.navbar .btn {
  background-color: #ff6347;
  border: none;
  padding: 10px 32px;
  font-size: 1.3rem;
  font-variant: small-caps;
  line-height: 1rem;
}
.navbar .btn:hover {
  background-color: #c24c37;
}

.navbar .buttons {
  position: relative;
}

/* nav-toggler css start */
.nav-toggler {
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.nav-toggler path {
  stroke: currentcolor;
  transition: 0.2s;
}

/* ===== navigation mobile breakpoint start ===== */
@media screen and (max-width: 767px) {
  /* navbar css for mobile start */
  .nav-toggler {
    display: block;
  }
  .navbar {
    min-height: 60px;
  }
  .navbar .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    display: block;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #3e8da8;
    line-height: 40px;
    padding: 20px;
    transition: all 0.5s ease;
    z-index: 1000;
    overflow-y: auto;
    /* allow scrolling */
  }
  /* modal animation */
  #site-header.open .navbar .nav-links {
    left: 0;
  }
  /* hamburger menu animation */
  #site-header.open .nav-toggler .p1 {
    d: path("M2,8 L8,2");
  }
  #site-header.open .nav-toggler .p2 {
    d: path("M5,5 L5,5");
  }
  #site-header.open .nav-toggler .p3 {
    d: path("M2,2 L8,8");
  }
  .navbar .links {
    display: block;
    margin-top: 20px;
  }
  .navbar .links li.mobile-only {
    display: block;
  }
  .navbar .links li {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1.1rem;
  }
  .navbar .links li a {
    display: block;
    padding: 1rem;
    font-size: 2rem;
    color: #ffffff;
    background-color: #529ab2;
  }
  .navbar .links li a:hover {
    background-color: #cbe2a7;
    color: #02235f;
    text-decoration: none;
  }
  /* navbar css for mobile end */
}
@media (max-width: 920px) {
  .navbar {
    max-width: 100%;
    padding: 0 25px;
  }
  .navbar .logo a {
    font-size: 27px;
  }
  .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }
}
@media (max-width: 370px) {
  .navbar .nav-links {
    max-width: 100%;
  }
}
/* navbar regular css end */
/* =========================  FOOTER ============================  */
/* ----------------- footer ------------------- */
#footer {
  background-color: #fff;
  max-height: min-content;
  width: inherit;
  margin-top: 45px;
  padding: 45px 0 20px;
}

#footer h3 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 10px;
}

.footer-wrap {
  display: grid;
  grid-gap: 24px;
  grid-template-areas: "s1" "s2" "s3" "s4";
  grid-template-columns: fit-content;
  justify-items: stretch;
  font-size: 1rem;
  color: #1f1f1f;
  line-height: 150%;
}
.footer-wrap > div {
  padding-top: 0.8rem;
  text-align: center;
}
.footer-wrap a {
  color: #1f1f1f;
}
.footer-wrap a:hover {
  text-decoration: underline;
}
.footer-wrap .section-1 {
  grid-area: s1;
}
.footer-wrap .section-2 {
  grid-area: s2;
}
.footer-wrap .section-3 {
  grid-area: s3;
}
.footer-wrap .bottom-line {
  grid-area: s4;
  border-top: 1px solid white;
  font-size: 0.8rem;
}

@media screen and (min-width: 600px) {
  .footer-wrap {
    grid-template-areas: "s1 s1" "s2 s3" "s4 s4";
  }
  .footer-wrap .section-2,
  .footer-wrap .section-3 {
    border-left: 1px solid #6ABDE1;
    padding-left: 1rem;
    text-align: left;
  }
  .footer-wrap .section-1,
  .footer-wrap .copyright {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .footer-wrap {
    grid-template-areas: "s1 s2 s3" "s4 s4 s4";
  }
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
}

/* ========== BUTTONS ============== */
.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.btn {
  color: white;
  padding: 13px 50px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: var(--radius-S);
  background-color: #6ABDE1;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}
.btn:hover {
  background-color: rgb(42.6536312849, 160.6620111732, 211.8463687151);
}
.btn svg {
  height: 24px;
  display: inline-block;
  overflow: visible;
  margin-left: 1rem;
}
.btn.round {
  border-radius: var(--radius-round);
}

.micro-btn {
  background-color: #5658cc;
  border-radius: var(--radius-round);
  display: inline-block;
  color: #fff !important;
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 13px;
  text-decoration: none;
}

.micro-btn:hover {
  background-color: #232ba1;
}

.micro-btn:active {
  position: relative;
  top: 1px;
}

button {
  border: none;
  cursor: pointer;
}

/* ===================== */
.ctf-wrap {
  display: grid;
  grid-template-columns: 65% 1fr;
  border: 1px dotted grey;
}
.ctf-wrap .col1,
.ctf-wrap .col2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctf-wrap .col1 {
  order: 1;
  padding: 1rem;
  border-right: 1px solid #dee2e6;
}
.ctf-wrap .col2 {
  order: 2;
  flex-direction: column;
}

.col1 .col1-inner {
  width: 100%;
}

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== contact form  #ctform =============  */
.ctf-wrap .row {
  display: flex;
}

.ctf-wrap .control {
  width: 100%;
  padding: 1rem;
}

.ctf-wrap .field {
  border: none;
  border-bottom: 1px solid #d9d9d9;
  outline: none;
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
}

.ctf-wrap textarea.field {
  resize: vertical;
}

.ctf-wrap textarea.field,
.ctf-wrap .field {
  font-family: sans-serif;
}

.ctf-wrap .field::placeholder {
  color: rgb(146, 144, 144);
}

.ctf-wrap .field:focus {
  border: 1px solid #dddddd;
}

/* ============ Submit button with animation ================== */
.spinner {
  display: none;
}

.submitBtn.processing {
  background-color: #38bd6b;
}
.submitBtn.processing .arrow {
  display: none;
}
.submitBtn.processing .spinner {
  display: inline-block;
}

.spinner-animation {
  animation: spinner 0.8s linear infinite;
  animation-delay: -0.8s;
  fill: white;
}

.sp1 {
  animation-delay: -0.65s;
}

.sp2 {
  animation-delay: -0.5s;
}

@keyframes spinner {
  93.75%, 100% {
    opacity: 0.2;
  }
}
/* ========= error display ========= */
.has_error input,
.has_error select,
.has_error textarea {
  border-color: red !important;
}
.has_error span.errmsg {
  display: block;
}

.is_valid input,
.is_valid select,
.is_valid textarea {
  border-color: green !important;
}

/* style all elements with a required attribute */
input:required {
  border-left: 5px solid #ccc;
}

span.errmsg {
  display: none;
  font-size: 0.9rem;
  color: red;
  font-family: monospace;
  margin-left: 12px;
}

/* ---------------- notification ------------ */
div.message {
  position: relative;
  padding: 20px 20px 20px 35px;
  margin: 30px 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  background: #bbb;
  color: #fff;
  transition: all 0.5s ease;
  border-radius: var(--radius-S);
  font-family: sans-serif;
}

div.message h3 {
  color: inherit;
  font-family: inherit;
  font-size: 2rem;
  margin: 0 0 1rem;
}

div.message.information {
  background: #39b;
}

div.message.warning {
  background: #e74;
}

div.message.success {
  background: #5a6;
}

div.message.announcement {
  background: #ea0;
}

div.message.error {
  background: tomato;
}

/* contact panel */
.info-contact {
  margin: 30px 0px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.info-contact a {
  color: inherit;
  font-weight: 600;
}
.info-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ctf-wrap {
    grid-template-columns: auto;
  }
  .ctf-wrap .col1 {
    order: 2;
    padding: 1rem;
  }
  .ctf-wrap .col2 {
    order: 1;
    padding: 1rem;
    margin: 0;
  }
  .ctf-wrap .col2 ul {
    margin-left: 1.5rem;
  }
  .ctf-wrap .row {
    flex-direction: column;
  }
  .ctf-wrap .control {
    padding: 1rem 0;
  }
  .centered {
    align-items: flex-start;
  }
  #ctform {
    padding: 0;
    border: none;
  }
}
section.teaser {
  position: relative;
  /*    background-color: #f9f9f9; */
  text-align: center;
  padding: 3rem 0 6rem 0;
}

section.teaser img.teaser-img2 {
  position: absolute;
  left: 10px;
  bottom: -50px;
  width: 20%;
  min-width: 200px;
  opacity: 30%;
  z-index: 1;
}

section.teaser img.teaser-img1 {
  display: inline-block;
  width: 30%;
  max-width: 200px;
  min-width: 100px;
  position: relative;
}

/* full width quotesz */
.fullw-quote {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: bold;
  color: black;
  line-height: 1.5;
  max-width: 1024px;
  margin: 40px auto;
  padding: 4vw;
  position: relative;
  background: #dfd;
  border-radius: var(--radius-S);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* makes large quotes */
.fullw-quote p::before,
.fullw-quote p::after {
  font-size: clamp(40px, 5vw, 80px);
  color: #a56f29;
  font-weight: bold;
  position: absolute;
}

.fullw-quote p::before {
  content: "“";
  left: -10px;
  top: -30px;
}

.fullw-quote p::after {
  content: "”";
  right: -10px;
  bottom: -30px;
}

.fullw-quote p {
  margin: 0;
  padding: 2vw;
  display: inline-block;
  position: relative;
  font-style: italic;
  font-weight: 400;
  max-width: 90%;
  text-align: center;
}

/* =============== TEAM ================= */
.team-wrapper {
  display: flex;
  min-height: 500px;
  flex-direction: row-reverse;
  gap: 2rem;
}

.team-graphic {
  flex: 2;
  /* could alt. use flex-basis: 60%; */
  min-height: 350px;
  border-radius: var(--radius-L);
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  margin: 1rem 0;
}

.team-text {
  flex: 2;
  column-gap: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-text p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 1rem;
}

@media (max-width: 992px) {
  .team-wrapper {
    flex-direction: column;
  }
  .team-text {
    padding-bottom: 2rem;
  }
  .team-text p {
    font-size: 1.2rem;
  }
}
/* =============== CTA ================= */
#cta {
  background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
}

.cta_card {
  gap: 0rem;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
}
.cta_card .card-content {
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  display: flex;
}
.cta_card .card-img {
  margin: 2rem;
  max-height: 23rem;
  overflow: hidden;
}
.cta_card h2 {
  margin-bottom: 1.5rem;
}
.cta_card .cta_button {
  background-color: #FF6347;
}
.cta_card .cta_button:hover {
  background-color: rgb(249.5, 37.9673913043, 0);
}

@media screen and (max-width: 800px) {
  .cta_card {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }
  .cta_card .card-img {
    margin: 0rem;
  }
}
/* ============ SERVICES  ============ */
.services-grid {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.service {
  --color-psy: #af3766;
  --color-couple: #6abde1;
  --color-superv: #9cbe43;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-L);
  padding: 2rem 2rem 5rem 2rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  transition: all 0.4s ease;
}

.service:hover {
  border-color: #3d3c3c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  height: 400px;
  margin: -1.5rem;
  z-index: 1000;
}
.service:hover .button {
  background-color: white;
  color: #000;
}

.service.psy {
  background-color: var(--color-psy);
}

.service.couple {
  background-color: var(--color-couple);
}

.service.superv {
  background-color: var(--color-superv);
}

.service h3 {
  --font-size-h2-sans: 2rem;
  max-width: 13rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: var(--font-size-h2-sans);
  margin-bottom: 1rem;
}

.btn-arrow .arrow-icon {
  width: 0.8rem;
}
.btn-arrow .arrow-head {
  transform: translateX(0);
  transition: transform 0.4s ease-in-out;
}
.btn-arrow .arrow-body {
  opacity: 0;
  transform: scaleX(1);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.btn-arrow:hover .arrow-head {
  transform: translateX(3px);
}
.btn-arrow:hover .arrow-body {
  opacity: 1;
  transform: scaleX(2);
}

.service .btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: white;
  background-color: transparent;
}
.service .btn:hover {
  background-color: white;
  color: black;
}

@media all and (max-width: 900px) {
  .services-grid {
    display: flex;
    flex-direction: column;
  }
  .service {
    height: auto;
  }
  .service h3 {
    font-size: 1.8rem;
  }
  .service .btn {
    background-color: white;
    color: #000;
  }
  .service:hover {
    height: auto;
  }
}
/* =============== lines section titles ================ */
.section-title {
  padding: 10px 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  font-family: var(--font-text);
  font-size: clamp(1rem, 0.0458rem + 3.0534vw, 1.7rem);
  font-variant: small-caps;
}

.section-title h2::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #6ABDE1;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.section-intro {
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 0.0458rem + 3.0534vw, 2rem);
  margin-bottom: 3rem;
}

.underline_span {
  background-image: url(icons/underline.svg);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 1.6em;
  margin-bottom: -0.5em;
  display: inline-block;
}

/* =============== FAQ ACCORDION ================ */
.faq-wrap {
  grid-column-gap: 1.375rem;
  grid-row-gap: 1.375rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.faq-col {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-radius: var(--radius-L);
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
  background: #fbf9e0;
  color: #1C4E4B;
}
.faq-item svg {
  fill: #5e5e5e;
}

.faq-item.active {
  color: black;
  background: #F3FFE3;
}

.faq-item.active svg {
  transition: all 0.4s ease-out;
  transform: rotate(270deg);
  fill: #FF6347;
}

.faq-item.active .faq-content {
  max-height: 99rem;
}

.faq-header {
  padding: 1.25rem 1rem;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-header h4 {
  font-family: var(--font-text);
  font-weight: 600;
  flex-basis: 95%;
}

.faq-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-out;
}

.faq-content p {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

@media screen and (max-width: 991px) {
  .faq-wrap {
    grid-column-gap: 3rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }
}
/* =============== values ================ */
/*  ------------- bigcontent ------------- */
.big-content,
.big-content * {
  font-size: clamp(1.7rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.big-content p {
  margin-bottom: 2rem;
}

/* ------------- bigcontent variations ----------- */
.big-content em {
  font-weight: bold;
  color: #00838d;
}

.big-content a {
  color: #f89625;
  text-decoration: #adadad underline;
  font-weight: bold;
  padding: 2px 5px;
  transition: all 0.4s ease;
}

.big-content a:hover {
  color: #000;
  background-color: #50e0b8;
}

.ht {
  background-image: url(icons/highlight-peach.svg);
  background-position: 50% 50%;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 5px;
  background-repeat: no-repeat;
  background-size: cover;
}

.pen-stroke {
  position: relative;
  display: inline;
  color: #ff2727;
}
.pen-stroke svg {
  position: absolute;
  top: 1.2em;
  left: 0;
  width: 100%;
  overflow: visible;
}
.pen-stroke svg path {
  fill: none;
  stroke: #ff2727;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.blue-highlight {
  display: inline-block;
  background: linear-gradient(100deg, rgba(175, 215, 255, 0) 1%, #afd7ff 2.5%, rgba(175, 215, 255, 0.5019607843) 5.7%, rgba(175, 215, 255, 0.1019607843) 93%, rgba(175, 215, 255, 0.7058823529) 95%, rgba(175, 215, 255, 0) 98%), linear-gradient(182deg, rgba(175, 215, 255, 0), rgba(175, 215, 255, 0.3019607843) 8%, rgba(175, 215, 255, 0) 15%);
}

.yellow-highlight {
  display: inline-block;
  background: #9b922a;
  background: linear-gradient(to right, rgba(30, 87, 153, 0.04) 0%, rgba(30, 89, 156, 0.04) 2%, rgba(32, 97, 166, 0.88) 10%, rgba(41, 137, 216, 0.56) 50%, rgba(32, 124, 202, 0.44) 65%, rgb(109, 174, 227) 89%, rgba(125, 185, 232, 0.4) 94%, rgba(125, 185, 232, 0.04) 97%);
}

.highlight {
  position: relative;
}

.highlight:after {
  content: "";
  position: absolute;
  background-size: 100% 100%;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  pointer-events: none;
  z-index: -1;
}

.highlight-pink:after {
  background-image: url(icons/highlight-pink.svg);
}

.highlight-peach:after {
  background-image: url(icons/highlight-peach.svg);
}

/* =============== grid ================= */
.grid-wrap {
  --min: 30ch;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min)), 1fr));
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
}

.grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4col {
  --min: 30ch;
  grid-template-columns: repeat(4, 1fr);
}

.grid-wrap > * {
  overflow: hidden;
  background-color: cadetblue;
  min-height: 12rem;
}

@media screen and (max-width: 932px) {
  .grid-wrap > * {
    background-color: rgb(160, 95, 151);
  }
  .grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 620px) {
  .grid-2col {
    grid-template-columns: repeat(1, 1fr);
  }
}
@keyframes fade-in {
  from {
    scale: 0.8;
    opacity: 0;
  }
  to {
    scale: 1;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .anim-scroll-spin {
    animation: fade-in linear;
    animation-timeline: view(250px);
  }
}
.animated {
  opacity: 0;
  transform: translateY(100px);
  scale: 0.7;
  transition: opacity 1s ease, transform 1s ease, scale 1s;
}

.animated.visible {
  opacity: 1;
  scale: 1;
  transform: translateX(0);
}

/* ====== set some styles for articles ======== */
.post {
  font: 400 1.2rem/1.5 var(--font-text);
  color: #505050;
  max-width: 800px;
}
.post h1,
.post h2,
.post h3 {
  color: #655c5c;
  margin: 4.5rem 0 1rem;
}
.post :first-child,
.post h2 + h3 {
  margin-top: 0;
}
.post p {
  margin-bottom: 2rem;
}
.post a.link {
  color: #4f61ca;
  text-decoration: underline;
}
.post a.link:hover {
  color: #273264;
}
.post img {
  max-width: 100%;
}
.post ul,
.post ol {
  margin-bottom: 1.2em;
  padding-left: 2.5em;
  list-style-position: outside;
}
.post ul {
  list-style: disc;
}
.post ol {
  list-style: decimal;
}
.post li {
  margin-bottom: 0.5em;
}
.post blockquote {
  margin: 4rem auto;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  font-size: inherit;
  max-width: 600px;
  line-height: 1.4;
  position: relative;
  padding: 2rem 0.5rem;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}
.post blockquote:before {
  position: absolute;
  color: #f1efe6;
  font-size: 8rem;
  width: 4rem;
  height: 4rem;
  content: "“";
  left: -5rem;
  top: -2rem;
}
.post cite {
  text-align: left;
  font-size: 90%;
  color: #878787;
}

@media (max-width: 768px) {
  .post {
    font-size: 1.1rem;
  }
}
.post-header {
  margin: 2rem 0;
  position: relative;
}

.page-banner {
  position: relative;
  background-image: url(./img/banners/banner-psycho.webp);
  border-radius: var(--radius-L);
  padding: 2rem 1rem 1rem 1.8rem;
  margin-top: 3rem;
}
.page-banner h1 {
  --min: 2em;
  --val: 10vw;
  --max: 7em;
  font-size: clamp(var(--min), var(--val), var(--max));
  color: white;
}
.page-banner img {
  position: absolute;
  right: 10%;
  top: -20%;
  width: 20%;
  max-width: 200px;
}

.container.article {
  max-width: 55rem;
}

/* =========== cta-post =========== */
.cta_post {
  background-color: #166e8b;
  background-image: url(img/doodles/grey.svg);
  background-size: cover;
  padding: 2rem;
  margin: 3rem 0;
  color: white;
  border-radius: var(--radius-L);
}
.cta_post .flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta_post .half {
  flex-basis: 50%;
  flex-grow: 1;
}
.cta_post h3 {
  margin: 0;
  color: white;
}

/* =========== services_post ============ */
.services_post {
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: var(--radius-L);
}/*# sourceMappingURL=main.css.map */