:root {
  box-sizing: border-box;

  /* --fs-xl:  clamp(3.5rem, 12vw + 1rem, 12rem) ; */
  --fs-xl: 1rem;
  --fs-600: 3rem;
  --fs-550: 2rem;
  --fs-500: 1.5rem;
  --fs-400: 1.25rem;
  --fs-350: 0.75rem;
  --fs-300: 1rem;
  --fw-h3: 300;
  --fw-h2: 300;
  --fw-p: 300;
  --fw-ul: 400;
  line-height: 1.3; /* NEED TO CHECK THIS */
}
/* 90em = 1440px */
/* @media (min-width: 90em) {
  :root {
    --fs-xl: 2rem ;
    --fs-600: 6rem ;
    --fs-550: 4.0rem ;
    --fs-500: 2.5rem ;
    --fs-400: 2rem ;
    --fs-350: 1.75rem ;
    --fs-300: 1.50rem ;
    --fw-h2: 200;
    --fw-h3: 200;
    --fw-p: 200;
    --fw-ul: 200;
    line-height: 1.85rem;
    background-size: cover;
  }
} */

*,
::before,
::after {
  box-sizing: inherit;
}

/* .areas li:before {
  content: ''; 
  display: inline-block;
  width: 20px; 
  height: 20px; 
  background-image: url(../img/tick_box_bullet_point_2.svg);
  background-size: cover; 
  margin-right: 10px; 
} */
html {
  scroll-behavior: smooth;
}
.anchor {
  display: block;
  /* height: 60px; */
  /* margin-top: -60px; */
}
/* added to try and stop horizontal scrolling 180224 */
html,
body {
  overflow-x: scroll;
  margin: 0;
  /* height: 100%; */
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  /* font-size: var(--fs-400); */
  max-width: 100%;
  /* position: fixed; */
  /* height: 100%; */
  background-color: #dcf9db;
  background-color: #b4e0de;
  /* background-color: #AFCCBE; */
  /* background-color:rgb(34, 0, 128); */
  font-family: "Lato", sans-serif;
  color: #777;
  /* color: red; */
  scroll-behavior: smooth;
  /* background-color:red; */
}
/* ******************    code for highlighting one item of menu list******************** */
.links[href="#areas"] {
  /* color: red; */
}
h2 {
  /* font-size:var(--fs-500); */
  font-size: clamp(2em, 2vw, 3em);
  /* color: red; */
  font-weight: var(--fw-h2);
  /* outline: 2px solid blue; */
}
h3 {
  /* font-size:var(--fs-400); */
  font-size: clamp(1.25em, 2vw, 2.2em);
  font-weight: var(--fw-h3);
  /* color: red; */
  /* outline: 2px solid yellow; */
}
p {
  font-size: var(--fs-300);
  font-size: clamp(1em, 2vw, 1.5em);
  font-weight: var(--fw-p);
  padding-left: 2em;
  padding-right: 2em;
  padding-bottom: 1%;

  /* color: red; */
}
ul {
  font-size: clamp(1em, 2vw, 4em);
  font-weight: var(--fw-ul);
  padding-right: 2em;
}
hr {
  width: 70%;
  height: 1px;
  background-color: #777;
  /* padding-top: 1em; */
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}
.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  /* padding: .5em .5em; */
  box-shadow: 0px 1px 5px grey;
  position: fixed;
  justify-content: space-between;
  background-color: #dcf9db;
  background-color: #b4e0de;
  /* background-color: peru; */

  z-index: 1;
  /* background-color: rgb(165, 233, 242); */
}
*/ .logo {
  max-width: calc(50% - 100px);
  height: auto;
  /* padding-left: .5em;
  padding-top: .5em */
}

/* Add a black background color to the top navigation */
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

/* Style the links inside the navigation bar */
.nav a {
  color: #7e9491;
  /* color: red; */
  padding-right: 1em;
  text-decoration: none;
  transition: 0.25s;
  /* font-size:var(--fs-300); */
  /* font-size: 1.75rem; */
}

/* Change the color of links on hover */

.nav a:hover {
  background-color: #d2eae7;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}

/* Hide the link that should open and close the topnav on small screens */
.nav .icon {
  display: none;
}

/* When the screen is less than 880 pixels wide, hide all links, except for the first one ("Menu"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 55em) {
  .nav a:not(:first-child) {
    display: none;
  }
  .nav a.icon {
    display: block;
    /* position:absolute; */
    top: 33px;
    padding: 5px;
    width: 90px;
    text-align: center;
    left: calc(50% - 45px);
    z-index: 10;
  }

  /* This stops page jump & menu showing in top bar */
  #mobilemenu {
    display: none;
  }
  #menu-toggle {
    background: none;
    box-shadow: none;
  }
  #mobilemenucontainer {
    text-align: center;
  }

  #mobilemenu.open {
    width: 200px;
    text-align: center;
    background: rgb(180, 224, 222);
    text-align: center;
    margin: auto;
    position: fixed;
    top: 58px;
    left: calc(50% - 100px);
    z-index: 10;
    display: block;
  }

  #mobilemenu.open a {
    text-align: center;
    display: block;
    padding-top: 10px;
    color: #7e9491;
    /* color: red; */
    text-decoration: none;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 55em) {
  .header-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    /* background-color: purple; */
  }
  .logo {
    max-width: calc(89% - 100px);
    height: auto;
    /* padding:1em; */
  }

  .nav.responsive a {
    display: block;
  }
}

.parallax {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 3, 1fr;
  background-color: #799aa7;
  background-image: url(../img/Dads%20Tree%20Telegraph%20Lines%20Removal%20271222.jpg);
  height: 100vh;
  /* max-width: 100%; */
  /* Create the parallax scrolling effect */
  background-attachment: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* filter: brightness(10%); */
}

.logo-white {
  grid-row: 3;
  grid-column: 1 / span 2;
  margin-left: 4rem;
}

.p-text {
  grid-row: 4;
  grid-column: 2 / span 2;
  /* font-size: var(--fs-350); */
  /* font-size: clamp(.55rem, calc(var(--fs-350) * 1vw), 1.75rem); */
  font-size: clamp(0.75rem, 2vw, 2rem);
  /* font-size: 1.75rem; */
  font-weight: 800;
  font-style: italic;
  color: rgb(255, 255, 255);
  /* color: red; */
  text-shadow: 2px 2px 3px rgba(38, 37, 37, 1);
}

span.author {
  font-size: var(--fs-350);
  /* font-size: clamp(.75rem, calc(var(--fs-350) * 1vw), 1.75rem); */
  font-size: clamp(0.75rem, 1vw, 2.5rem);
  font-style: normal;
  font-weight: 900;
  text-shadow: 2px 2px 3px rgba(38, 37, 37, 1);
  /* color: red; */
}

.about-container {
  display: flex;
  flex-direction: column;
  /* display: inline-block; */
  background-color: whitesmoke;
  padding-top: 4em;
  /* background-color: rgb(4, 65, 18); */
}
.center-image {
  /* width: 100%;  */
  /* display: inline-block; */
  text-align: center;
  /* text-align: center; */
  /* background-color: red; */
}

.lucy1 {
  /* max-width: 100%; */
  width: clamp(200px, 1vw * 2, 800px);
  /* width: clamp(200px, 2vw, 1600px); */
  /* height: auto;  */
  padding-top: 3em;
}

#about {
  /* display: flex; */
  text-align: center;
  justify-content: center;
  /* padding: 1em; */
}

.name,
.gender {
  font-size: var(--fs-300);
  font-size: clamp(0.75rem, 2vw, 1rem);
  /* font-weight: bold; */
  text-align: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  /* color: red; */
}
.name {
  margin-top: 16px;
}
.text p {
  display: flex;
  text-align: left;
  /* justify-content: center; */
  /* font-size:var(--fs-300); */
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-align: justify;
  padding-bottom: 1%;
  /* padding-left: 2em; */
  /* margin: 10px 0; */
  /* color: green; */
}
.therapy-container {
  height: 100%;
  /* width: 100%; */
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-auto-rows: 16%; */
  position: relative;
  justify-items: center;
  align-items: center;
  background-color: darkcyan;
  /* padding: 6em; */
  padding-bottom: 5em;
}
#heads {
  max-width: 100%;
  /* height: auto; */
  grid-column: 1 / 4;
  grid-row: 1 /3;
  justify-items: center;
  opacity: 0.2;
  padding-top: 6em;
  /* background-color: blue; */
}
#therapy {
  grid-column: 1 / span 3;
  grid-row: 2 / 3;
  margin: 0;
  color: white;
  /* color: blue; */
  /* background-color: red */
  padding: 0;
}
.therapy_text ul {
  font-weight: 300;
}
.therapy_text ul li {
  padding-bottom: 1em;
  line-height: 1;
}
.therapy_text h3 {
  grid-column: 1 / 3;
  /* color: red; */
}
.therapy_text {
  display: grid;
  grid-column: 1 / span 3;
  justify-items: center;
  text-align: justify;
  color: whitesmoke;
  /* font-size: var(--fs-550); */
  /* color: green; */
  /* background-color:rgb(16, 220, 30); */
  width: 100%;
}

.therapy-container p {
  /* font-size: var(--fs-300); */
  font-weight: 300;
  color: white;
  text-align: justify;
}

.peace-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 100%;
  background-color: white;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  background-image: url("img/1814104_favorite_heart_like_love_icon.svg");
  background-size: cover; /* Cover the entire container */
  background-position: center; /* Center the background image */
  padding-top: 4em;
}

.heart-svg {
  flex-wrap: nowrap;
  position: absolute;
  left: 10;
  width: 75%;
  width: clamp(400px, 75%, 750px);
  opacity: 0.1;
  padding-top: 2em;
}
#peace {
  /* font-size: 3rem; */
  /* font-size: clamp(3rem, 2vw, 4rem); */
  font-weight: 300;
  /* color: red; */
  padding-top: 0.5em;
}

.peace-texts {
  /* line-height: 1.5em; */
  /* font-size: 1em; */
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  margin-left: calc(3em - 1em);
  margin-right: calc(2em - 1em);
  /* color: blue; */
}
.peace-text-1,
.peace-text-2,
.peace-text-3,
.peace-text-4 {
  padding: 0.5em;
}

#bacp {
  /* font-size: var(--fs-550); */
  /* color: red; */
  /* background-color: blue; */
  max-width: 20%;
  /* width: clamp(35%, 2vw, 45%); */
  /* padding-bottom: 2rem; */
  padding-top: 2em;
  /* padding-bottom: 4em; */
}

/* ******************* Qualifications section************************************ */

.qualifications {
  background-color: whitesmoke;
  background-image: url("../img/Blackboard_v2_op5.svg");
  background-size: 65%;
  background-repeat: no-repeat; /* Adjust as needed */
  background-position: 50% 50%; /* 10px from the left, 20px from the top */
}

#qualifications-2 {
  padding-top: 3em;
  text-align: center;
  margin: 0;
}
.flag {
  width: 18%;
  margin: auto;
}
.lgb-flag {
  border-radius: 8px;
}
.theatre-container {
  background-color: white;
  padding-top: 5em;
  /* color: red; */
}

#theatre-2 {
  text-align: center;
  /* margin: 0; */
}
.areas ul {
  column-count: 2;
  column-span: all;
  /* column-rule: solid whitesmoke; */
  list-style-type: none;
}
.benefits-container {
  height: 100%;
  max-width: 100%;
  /* position: relative; */
  /* grid-gap: 10px; */
  /* justify-items: center; */
  /* align-items: center; */
  background-color: darkcyan;
  /* gap: 0px; */
  padding-bottom: 8em;
  font-size: clamp(1.2rem, 2vw, 3rem);
}

.benefits {
  /* display: block; */
  /* position: relative; */
  padding-top: 2em;
  color: white;
}
.benefits-container h2 {
  /* font-size: ; */
  grid-column: 2 / span 4;
  text-align: center;
  /* color: red; */
  padding-top: 4em;
  /* padding-bottom: 4.5em; */
}
.benefits-container h3 {
  text-align: center;
  /* padding-left: 1.5em; */
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  /* grid-column: 2 /span 1; */
  /* grid-row: 2 span 2; */
  /* padding-top: 2em; */
  /* padding-bottom: 3em; */
  /* color: blue; */
}

.benefits ul {
  /* line-height: 2rem; */
  /* padding-bottom: 2em; */
  /* padding-right: 2.5em; */
  margin: 0;
  /* padding-left: 3.75em; */
  /* color: yellow; */
}

::marker {
  font-size: clamp(1.4em, 2vw, 1.75rem);
  color: #b9e0dd;
  color: white;
  /* color: red; */
}
.expectations-container {
  max-width: 100%;
  display: inline-block;
  align-items: center;
  background-color: darkcyan;
  /* background-color: whitesmoke; */
  color: white;
}
.therapies-list h2 {
  text-align: center;
}
.therapies-list h3 {
  text-align: left;
  padding-left: 10%;
  /* outline: 2px solid blue; */
}

.therapies-list ul {
  list-style-type: none;
  /* color: red; */
}
#expectations-2 {
  /* color: red; */
  text-align: center;
  padding-top: 6rem;
}
.expectation-text {
  max-width: 100%;
  text-align: justify;
  font-size: clamp(1rem, 2vw, 1.5rem);
  /* margin: 0 200;   */
  /* padding: 20px; */
  /* background-color: orange; */
  /* color: green; */
  padding-bottom: 12rem;
}
.areas h2 {
  padding-top: 2em;
  text-align: center;
}
.areas h3 {
  text-align: center;
  padding: 0;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2em;
}
.contact-form {
  /* width:200px; */
  /* padding-top: 140px; */
  /* height: 100%; */
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffff;
  padding-top: 4rem;
  padding-bottom: 1em;
  /* background-color: red; */
  /* background-color: #ebebec; */
}
.contact-form h2 {
  display: flex;
  text-align: center;
  justify-content: center;
  /* outline: 2px solid blue; */
  /* color: red; */
}
.contact-form p {
  display: block;
  /* max-width: 50%; */
  /* padding-left: 5%; */
  /* padding-right: 5%; */
  /* color: black; */
  /* max-width: 100ch; */
  /* line-height: 1.3; */
  justify-content: center;
  text-align: justify;
  margin: 0.3em;
  /* color: red; */
  /* outline: 2px solid blue; */
}
.form-group {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  color: #3c82b3;
}
.form-row {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.form-control {
  max-width: 100%;
  /* height: 50px; */
  padding: 0.75em 1.25em;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin: 10px 0px;
  background-color: #f8f8f8;
  /* font-size: 16px; */
  resize: none;
}
.form-control-2 {
  max-width: 100%;
  /* height: 100px; */
  padding: 0.75rem 1.25em;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin: 10px 0px;
  background-color: #f8f8f8;
  /* font-size: 16px; */
  /* resize: none; */
}

.phone {
  font-size: inherit;
  text-decoration: none;
  color: #777;
}
.phone a:hover {
  color: red;
}
.confidential p {
  display: block;
  /* width: 100%; */
  /* color: blue; */
  /* text-align: justify; */
}

.contact-form h2 {
  /* color: blue; */
  /* font-weight: 600; */
  /* padding-top: 20px; */
  /* padding-top: 160px; */

  .confidential {
    /* display: inline-block; */
    display: contents;
    width: 100%;
    /* font-size: var(--fs-550); */
    /* line-height: 1.8; */
    justify-content: center;
    /* color: red; */
    padding-bottom: 0.5em;
    /* background-color: yellow; */
    /* white-space: wrap; */
  }
}

.btn {
  max-width: 100%;
  /* height: 35px; */
  border: solid 1px;
  border-radius: 30px;
  align-content: center;
  color: #3c82b3;
  background-color: rgb(244, 245, 249);
  /* margin-top: 2.50em; */
  /* margin-bottom: 60px; */
}

.btn {
  max-width: 100%;
  /* height: 35px; */
  border: solid 1px;
  border-radius: 30px;
  align-content: center;
  color: #3c82b3;
  background-color: rgb(244, 245, 249);
  /* margin-top: 2.50em; */
  /* margin-bottom: 60px; */
}

.btn {
  max-width: 100%;
  width: 8em;
  height: 3em;
  /* height: 35px; */
  border: solid 1px;
  border-radius: 30px;
  align-content: center;
  color: #3c82b3;
  color: white;
  font-size: 1em;
  font-weight: 100;
  background-color: rgb(244, 245, 249);
  background-color: rgb(0, 128, 127);
  /* padding-bottom: ; */
  /* color: red; */
  /* margin-top: 2.50em; */
  /* margin-bottom: 60px; */
}

.contacts {
  text-align: center;
  padding-top: 2%;
  padding-bottom: 2%;
  background-color: rgb(87, 125, 107);
  /* background-color: #b4e0de; */
  background-color: darkcyan;
  /* color: #f8f3f3; */
  text-decoration: none;
  color: white;
  /* color: red; */
}

.contacts p {
  margin: 0;
}
.contacts a {
  margin: 0 10px;
}

.contacts li:first-child {
  text-decoration: none;
  /* border-right: none; */
  /* border-right: none; */
}
.contacts li:last-child {
  /* border-right: none; */
}

.contacts li {
  display: inline;
  padding-inline: 0.63em;
  margin: 0px;
  /* border-right: 1px solid white; */
  /* color: mediumvioletred; */
}
.contacts .foot-tel {
  text-decoration: none;
  /* color: red; */
}
.contacts .place {
  /* color: red; */
  /* color: yellow; */
}
.work {
  background-color: white;
  padding-bottom: 1em;
}
.work-rosta {
  /* background-color: whitesmoke; */

  margin: auto;
}
.work-rosta h3 {
  padding-left: 8%;
  margin-bottom: 0px;
  /* outline: 2px solid black; */
}
.work-calendar {
  width: clamp(75%, 1vw, 200px);
  display: block;
  margin: 0 auto;
  /* outline: 2px solid black; */
}
.work-rosta p {
  margin-top: 0px;
  padding-bottom: 1em;
  /* outline: 2px solid black; */
}
/* **************This is where large screen stuff starts****************************************** */
@media screen and (min-width: 55em) {
  .areas li:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/tick_box_bullet_point_2.svg);
    background-size: cover;
    margin-right: 20px;
  }

  .header-container {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.5em 0.5em;
    box-shadow: 0px 1px 5px grey;
    position: fixed;
    justify-content: space-between;
    background-color: #dcf9db;
    background-color: #b4e0de;
    /* background-color: peru; */

    z-index: 1;
    /* background-color: rgb(165, 233, 242); */
  }
  #mobilemenucontainer {
    display: none;
  }
  .header-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
  }
  .logo {
    max-width: 16%;
    height: auto;
    /* padding:3em; */
    position: absolute;
    top: 20;
    left: 0;
    padding-left: 1em;
    /* background-color: yellow; */
  }

  .nav.responsive a {
    display: block;
  }
  .p-text {
    grid-row: 4;
    grid-column: 2 / span 2;
    /* font-size: 1.75em; */
    /* font-weight: 800; */
    /* color: rgb(255, 255, 255); */
    /* color: red; */
    text-shadow: 3px 3px 3px rgba(22, 21, 21, 0.501);
  }

  span.author {
    /* font-size: 1em; */
    font-weight: 900;
    text-shadow: 2px 2px 3px rgba(38, 37, 37);
    /* color: red; */
  }

  .about-container {
    max-width: 100%; /* size of container */
    margin: 0 auto; /* top bottom / left& right */
    display: grid;
    /* grid-template-columns: 300px 300px 300px; */
    grid-template-columns: repeat(6, 1fr);
    /* grid-gap: 10px; */
    justify-items: center; /* default is stretch */
    /* align-items: center; default is stretch */
    /* background-color: #ebebec; */
    background-color: #f5f9fa;
    /* background-color: yellow; */
    /* padding-left: 0em; */
    /* padding-top: 3em; */
  }

  .center-image {
    grid-column: 1 / span 2;
    padding-top: 10em;
    /* padding-left: 3.75em; */
    /* color: red; */
    /* background-color:lightgray; */
  }

  .name {
    /* font-size: var(--fs-300); */
    /* color: red; */
    text-align: center;
  }
  .text {
    grid-column: 3 / span 3;
    margin: 0 auto;
    padding-bottom: 10rem;
    /* color: mediumvioletred; */
  }
  #about {
    text-align: left;
    /* font-weight: 300; */
    /* color: red; */
  }
  .text p {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.625rem;
    /* max-width: 90ch; */
    /* font-weight: 300; */
    /* color: mediumvioletred; */
  }
  .therapy-container {
    height: 100%;
    /* width: 100%; */
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 25% 25% 45%;
    /* grid-auto-rows: 16%; */
    position: relative;
    justify-items: center;
    align-items: center;
    background-color: darkcyan;
    /* margin-top: 0px; */
    /* margin-bottom: 0px; */
    /* padding-left: 2em;
    padding-bottom: 12.5rem; */
  }
  #heads {
    max-width: 45%;
    /* height: auto; */
    grid-column: 1 / 4;
    grid-row: 1 /3;
    justify-items: center;
    opacity: 0.2;
    padding: 3em;
    /* background-color: blue; */
  }
  #therapy {
    grid-column: 2 / 3;
    grid-row: 2 / 2;
    /* font-size: 3.5rem; */
    font-weight: 300;
    margin: 0;
    color: white;
    /* color: blue; */
    /* background-color: red */
    padding: 0;
  }
  .therapy_text h3 {
    grid-column: 1 / 3;
    margin: 0;
    /* color: red; */
  }

  .therapy_text {
    grid-column: 1 / 4;
    grid-row: 3 /4;
    justify-items: center;
    text-align: justify;
    /* font-size: 00px; */
    /* color: red; */
    /* background-color:rgb(16, 220, 30); */
    width: 90%;
  }
  .therapy_text p {
    margin-bottom: 1em;
  }
  .therapy-container p {
    /* font-size: var(--fs-300); */
    /* font-size: 1.8rem; */
    /* line-height: 1.4; */
    /* font-weight: 200; */
    color: white;
    /* text-align: justify; */
  }
  .peace-container {
    display: flex;
    flex-direction: column;
    /* max-width: calc(100vw - 2em) ; */
    background-color: white;
    /* background-color: palegreen; */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    background-image: url("img/1814104_favorite_heart_like_love_icon.svg");
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the background image */
    padding-top: 2em;
    /* color: red; */
  }

  .heart-svg {
    position: absolute;
    left: 10;
    /* width: 40%;  */
    /* opacity: 0.1;  */
  }
  #qualifications-2 {
    padding-top: 6em;
  }
  .qualifications {
    background-size: 30%;
    background-position: 50% 50%; /* 10px from the left, 20px from the top */
  }
  .qualification-text {
    margin-bottom: 3em;
  }
  .lgb-flag {
    width: 100%;
    /* padding: 4em; */
    padding-bottom: 3em;
  }
  .benefits-container {
    height: 100%;
    max-width: 100%;
    /* background-color: yellow; */
  }

  .benefits {
    padding-top: 1em;
    /* color: red; */
    /* margin: 0; */
  }
  .benefits-container h2 {
    grid-column: 2 / span 1;
    /* font-size: 3em; */
    font-weight: 300;
    text-align: center;
    /* color: red; */
    padding-top: 1em;
    padding-bottom: 2em;
  }
  .benefits-container h3 {
    /* font-size: 2em; */
    font-weight: 300;
    text-align: left;
    /* padding-top: 5rem; */
    padding-left: 3em;
    /* color: blue; */
  }
  .benefits ul {
    /* font-size: 1.8em; */
    font-weight: 300;
    line-height: 4rem;
    padding-bottom: 3em;
    padding-left: 3.75em;
    margin: 0;
    /* color: red; */
  }
  ::marker {
    /* font-size: 1.2em; */
    color: #b9e0dd;
    color: white;
    /* color: red; */
  }
  .expectations-container {
    padding-top: 2em;
    max-width: 100%;
    display: inline-block;
    align-items: center;
    background-color: darkcyan;
    /* background-color: white; */
  }

  #expectations-2 {
    /* color: red; */
    /* font-size: 3rem; */
    text-align: center;
    padding-top: 4rem;
  }

  .expectation-text {
    /* max-width: 100%; */
    text-align: justify;
    /* margin: 0 200;   */
    padding: 20px;
    /* background-color: orange; */
    /* color: green; */
    padding-bottom: 14rem;
  }
  .areas h3,
  h2 {
    text-align: center;
    font-weight: 400;
  }
  .therapies-offered {
    /* display: flex; */
    /* justify-content: center; */
    align-items: center;
  }
  .therapies-list h2 {
    font-weight: 400;
  }
  .therapies-list h3 {
    text-align: center;
    padding-left: 0;
    font-weight: 400;
    /* outline: 2px solid blue; */
  }
  .therapies-list p {
    font-size: 30px;
    font-weight: 400;
  }
  .therapies-list ul {
    column-count: 2;
    column-span: all;
    padding-left: 4em;
    /* column-rule: solid whitesmoke; */
    list-style-type: none;
    /* outline: 2px solid black; */
    /* color: red; */
  }

  /* Contact section repeat */

  /* Submit Button */
  .btn {
    display: flex;
    justify-content: space-evenly;
    max-width: 65%;
    /* width: 8em; */
    height: 2.5em;
    /* height: 35px; */
    border: solid 1px;
    border-radius: 30px;
    /* align-content: center; */
    color: #3c82b3;
    color: white;
    font-size: 1.2em;
    font-weight: 100;
  }

  /* Footer Section */
  .contacts {
    /* font-size: 1.5em; */
    font-size: 1.5rem;
    /* max-width: 100%; */
    /* padding: 1em; */
    margin: 0;
    /* text-align: right; */
    /* color: #f8f3f3; */
    color: white;
    /* color: yellow; */
    font-weight: 300;
  }

  .contacts li {
    /* display: inline; */
    padding-inline: 0.63em;
    /* padding: 0.63em; */
    margin: 0px;
    border-right: 1px solid white;
    border-right: 1px solid white;
  }
  .contacts li:last-child {
    border-right: none;
  }
  .work-rosta {
    width: 30%;
    /* margin: auto; */
    /* outline: 2px solid red; */
  }
  .work-rosta h3 {
    text-align: center;
    justify-content: center;
    font-weight: 400;
    padding: 0;
  }
  .work-rosta p {
    text-align: center;
    justify-content: center;
    padding: 0;
  }
}
