@import url('https://fonts.googleapis.com/css2?family=Economica:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --lightGrey: #FAFAFA;
  --grey: #EFEFEF;
  --darkSlate: #354F52;
  --darkSlateHover: #3e595c;
  --lightSlate: #788D90;
  --lightSlateHover: #83979a;
  --primaryGreen: #36A681;
  --primaryGreenHover: #45b38e;
  --brightGreen: #37b56c;
  --lightGreen: #96CAB1;
  --danger: #E14848;
}

::-moz-selection { /* Code for Firefox */

  background: var(--brightGreen);
}

a::-moz-selection{
  color: var(--lightGrey);
}

::selection {
  background: var(--brightGreen);
}

a::selection{
  color: var(--lightGrey);
}

button, input[type='submit'], select{
  -webkit-appearance: none;
  -moz-appearance: none;
}

select{
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: .6em;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
}

body{
  font-family: 'Montserrat', sans-serif;
  background-color: white;
  color: var(--darkSlate);
  margin: 0;
}

body.parallaxPage{
  overflow: hidden;
}

main{
  background-color: var(--lightGrey);
}

a{
  color: var(--brightGreen);
}

.button{
  font-family: 'Montserrat', sans-serif;
  background-color: var(--darkSlate);
  border-radius: 5px;
  border: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  padding: 10px;
  margin: auto;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 600;
}
.button:hover{
  background-color: var(--darkSlateHover);
}

.button.primary{
  background-color: var(--primaryGreen);
}
.button.primary:hover{
  background-color: var(--primaryGreenHover);
}

.button.lightSlate{
  background-color: var(--lightSlate);
}
.button.lightSlate:hover{
  background-color: var(--lightSlateHover);
}

.button.xLrg{
  font-size: 18px;
  padding: 20px;
}
.button.lrg{
  font-size: 18px;
  padding: 15px 20px 15px 20px;
}

.button .fa-chevron-right{
  transform: translateX(10px);
}
.button .fa-chevron-left{
  transform: translateX(-10px);
}

form{
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  grid-column-gap: 20px;
  max-width: 600px;
  margin: auto;
}

form .formTitle{
  grid-column: 1 / span 2;
  text-align: center;
}

form .formInstructions{
  grid-column: 1 / span 2;
  font-size: 0.85rem;
}

form .input{
  grid-column: 1 / span 2;
  margin-bottom: 15px;
}
form .input.half{
  grid-column: unset;
}

form .submit{
  grid-column: 1 / span 2;
  text-align: center;
}
form .submit .button{
  margin-top: 10px;
  font-size: 1rem;
}

form .formError{
  width: 100%;
  padding: 10px;
  background-color: var(--danger);
  border-radius: 5px;
  grid-column: 1 / span 2;
  display: none;
  box-sizing: border-box;
}
form .formError p{
  padding: 0;
  margin: 0;
  color: #ffd6d6;
  text-align: center;
  font-weight: 600;
}
form .formError.error{
  display: block
}

.input{
  padding-top: 15px;
}

.input input, .input select, .input textarea{
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  border: none;
  border-bottom: solid 2px var(--darkSlate);
  color: var(--darkSlate);
  outline: none;
  font-size: 1rem;
  box-sizing: border-box;
  transition: 0.2s;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0);
}

.input textarea:hover, .input textarea:focus{
  resize: vertical;
  background-color: var(--grey)
}

.input input[type='date']{
  background-color: rgba(255, 255, 255, 0);
}

.input select{
  margin-top: 2px;
}

.input label{
  position: absolute;
  transition: 0.2s;
  pointer-events: none;
  cursor: text;
}
.input label.up{
  transform: translateY(-1.05rem);
  cursor: default;
}

.input input:focus,
.input select:focus,
.input textarea:focus{
  border-bottom: solid 2px var(--primaryGreen);
}

.input.invalid input,
.input.invalid select,
.input.invalid textarea{
  border-bottom: solid 2px var(--danger);
}

.input.invalid input:focus,
.input.invalid select:focus,
.input.invalid textarea:focus{
  border-bottom: solid 2px var(--danger);
}

.center{
  text-align: center;
}

/* Nav Bar */

nav{
  position: fixed;
  z-index: 10;
}

nav .logoContact{
  background-color: white;
  position: fixed;
  height: 60px;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.logo{
  font-family: 'Economica', sans-serif;
  font-weight: 400;
  font-size: 32px;
  margin: auto;
  margin: 12px 0 0 20px;
  width: 305px;
  float: left;
}
.logo a{
  text-decoration: none;
  color: var(--lightGreen);
}
.logo span{
  color: var(--darkSlate);
}

.logoContact .skipToMain{
  position: absolute;
  left: 350px;
  top: 10px;
  transform: translateY(-100px);
  transition: 0s;
}

.logoContact .rightSide{
  float: right;
  height: 100%;
  display: flex;
}
.rightSide > *{
  margin: auto auto auto 15px;
}
.rightSide .contactMail{
  margin-right: 20px;
}

.rightSide .contactMail span{
  text-transform: uppercase;
}

.rightSide a{
  text-decoration: none;
  color: var(--darkSlate);
}
.rightSide a .fas{
  margin-right: 5px;
}

/* menu Button */

.menuButton{
  width: 40px;
  margin: auto 20px auto auto;
  display: none;
  padding: 0;
  grid-row-gap: 10px;
  grid-template-rows: auto auto auto;
  cursor: pointer;
}

.menuButton span{
  height: 2px;
  background-color: var(--darkSlate);
  width: 100%;
  transition: 0.3s;
}

/* Menu System */

.menuContent{
  position: fixed;
  height: 40px;
  left: 0;
  top: 60px;
  width: 100%;
  transition: 0.4s;
}

.menuItems{
  list-style: none;
  margin: 14px 0 0 20px;
  padding: 0;
}
.menuItems li{
  display: inline-block;
}

.menuItems li a{
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  margin-right: 10px;
  font-weight: 400;
  /* transition: 0.4s; */
  position: relative;
}
.menuItems li a:after{
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 1.5px;
  left: 50%;
  position: absolute;
  background: white;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.menuItems li a:hover:after{
  width: 100%;
  left: 0;
}

.menuItems li a.active{
  font-weight: 600;
}

.menuItems .rightAligned{
  float: right;
  margin-right: 10px;
}

/* Dropdowns */

.menuItems .dropdown i{
  display: none;
}

.menuItems .dropdown ul{
  position: absolute;
  min-width: 120px;
  max-width: 310px;
  max-height: 0;
  transition: 0.4s;
  overflow: hidden;
  padding: 0;
  border-radius: 5px;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.15);
}

.menuItems .dropdown ul li{
  background-color: white;
  width: 100%;
  cursor: pointer;
  transition: 0.2s;
  box-sizing: border-box;
}
.menuItems .dropdown ul li a{
  color: var(--darkSlate);
  width: 100%;
  display: inline-block;
  padding: 10px 0 10px 10px;
}
.menuItems .dropdown ul li a:after{
  background: unset;
}
.menuItems .dropdown ul li:hover{
  background-color: #cfe5e8;
}
.menuItems .dropdown ul li.hover{
  background-color: #cfe5e8;
}

.menuItems .dropdown ul li:nth-child(1){
  margin-top: 5px;
}

.menuItems .dropdown:hover ul{
  visibility: visible;
  opacity: 1;
  max-height: 450px;
}
.menuItems .dropdown ul.hover{
  visibility: visible;
  opacity: 1;
  max-height: 450px;
}

/* overflow Menu */

.menuItems .overflow ul{
  position: absolute;
  min-width: 120px;
  max-width: 310px;
  max-height: 0;
  transition: 0.4s;
  overflow: hidden;
  padding: 0;
  border-radius: 5px;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.15);
}

.menuItems .overflow ul li{
  background-color: white;
  width: 100%;
  padding: 10px 0 10px 10px;
  cursor: pointer;
  transition: 0.2s;
}
.menuItems .overflow ul li a{
  color: var(--darkSlate);
  width: auto;
}
.menuItems .overflow ul li a:after{
  background: unset;
}
.menuItems .overflow ul li:hover{
  background-color: #cfe5e8;
}
.menuItems .overflow ul li.hover{
  background-color: #cfe5e8;
}

.menuItems .overflow ul li:nth-child(1){
  margin-top: 5px;
}

.menuItems .overflow:hover ul{
  visibility: visible;
  opacity: 1;
  max-height: 400px;
}

.menuItems .overflow ul.hover{
  visibility: visible;
  opacity: 1;
  max-height: 400px;
}

/* overflow menu dropdowns */

.overflow .dropdown ul{
  position: fixed;
  transition: 0s;
  height: auto;
  border-radius: 5px;
  padding: 0;
  margin: 0;
  display: none;
  opacity: 0;
}

/* Hide mobile Tings */

.mobileMenuTitle{
  display: none;
  text-align: center;
  margin-top: 20px;
}

.mobileMenuBackBtn{
  display: none;
}

/* opaque styles */

.menuContent.opaque{
  background-color: white;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
}
.menuContent.opaque li a{
  color: var(--darkSlate);
}
.menuContent.opaque li a:after{
  background: var(--darkSlate);
}

/* mobile menu overlay */

.overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 5;
  transition: 0.4s;
  opacity: 0;
  visibility: collapse;
}

.overlay.profilePopupOverlay{
  z-index: 1
}

/* Banner */

.parallaxWrapper {
  height: 500px; /* fallback for older browsers */
  height: 100vh;
   min-height: -webkit-fill-available;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-perspective: 300px;
  perspective: 300px;
  background-color: var(--lightGrey);
}

.parallaxGroup {
  position: relative;
  height: 500px; /* fallback for older browsers */
  height: 100vh;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.parallaxLayer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.bannerForeground {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 4;
}

.banner{
  height: 80vh;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.8s;
}

.banner.hideImg{
  background-color: var(--darkSlate);
}

.bannerBackground{
  z-index: 3;
  opacity: 1;
  background: url("../assets/TLGLogoLandscape.jpg");
  transform: translateZ(-300px) scale(2.1) translatey(-38px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: 0.8s;
}
.banner.hideImg .bannerBackground{
  transform: translateZ(-300px) scale(2.2) translatey(-38px);
}

.content{
  background-color: var(--lightGrey);
}

.imgGradient{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 10% 80%, rgba(0,0,0,0) 20%, rgba(53,79,82,0.65) 60%);
}

.bannerContent{
  max-width: 500px;
  height: 200px;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.bannerContent.bannerContentPreload .bannerContentText,
.bannerContent.bannerContentPreload button{
  transform: translateY(20px);
  opacity: 0;
}

.bannerContent .bannerContentText{
  color: white;
  font-weight: 400;
  transition: 0.8s;
}

.bannerContent button{
  font-size: 18px;
  padding: 20px;
  transition: 0.6s;
  transition-delay: 0.2s;
}

.wrapper{
  padding-top: 20px;
  box-sizing: border-box;
  padding-bottom: 100px;
}

.pageTitle{
  margin-top: 100px;
  height: 200px;
  background-color: var(--darkSlate);
  width: 100%;
  color: white;
  text-align: center;
  position: relative;
}

.titleContent{
  padding: 0 40px 0 40px;
  box-sizing: border-box;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
}

.pageTitle .titleContent h1{
  text-transform: uppercase;
  font-weight: 600;
  font-size: 3rem;
  margin: 0;
}

.pageTitle .titleContent span{
  height: 5px;
  width: 80px;
  background-color: var(--brightGreen);
  border-radius: 3px;
  margin: 5px auto 10px auto;
  display: block;
}

.pageTitle .titleContent h2{
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
}

.noticeBanner{
  width: 100%;
  min-height: 80px;
  height: auto;
  padding: 10px 10px;
  background-color: var(--primaryGreen);
  margin: 0;
  color: white;
  display: grid;
  grid-template-columns: 250px auto 70px;
  position: relative;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}
.noticeBanner h2{
  margin: 0;
  line-height: 100%;
  margin-left: 20px;
}

.noticeBanner p{
  margin: ;
  max-width: 800px;
  text-align: left;
}

.noticeBanner i{
  font-size: 1.5rem;
  margin-right: 20px;
  cursor: pointer;
}

.contentWrapper{
  /* background-color: blue; */
  min-height: 200px;
}

section{
  width: 900px;
  margin: auto;
  padding: 20px 0 20px 0;
}

section.fullWidth{
  width: 100%;
  margin: 0;
  padding: 20px 0 20px 0;
}

section.thin{
  width: 700px;
  margin: auto;
  padding: 20px 0 20px 0;
}

section.center{
  text-align: center;
}

section .sectionTitle{
  text-transform: uppercase;
  text-align: center;
  color: var(--darkSlate);
  font-size: 50px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

/* Quill Content Classes */

/* .ql-align-center{
  text-align: center;
}
.ql-align-right{
  text-align: right;
}
.ql-align-justify{
  text-align: justify;
}

.ql-indent-1{
  text-indent: 3rem;
}
.ql-indent-2{
  text-indent: 6rem;
} */

.quillContents h2{
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--darkSlate);
  font-weight: 600;
  margin: 0 0 10px 0;
}

.quillContents h3{
  font-size: 1.4rem;
  margin: 20px 0 10px 0;
  font-weight: 600;
}

.quillContents h4{
  font-size: 1.3rem;
  margin: 20px 0 5px 0;
  font-weight: 600;
}

.quillContents h5{
  font-size: 1.2rem;
  margin: 20px 0 5px 0;
  font-weight: 600;
}

.quillContents h5{
  font-size: 1.1rem;
  margin: 20px 0 10px 0;
  font-weight: 600;
}

.quillContents p{
  margin: 0;
}

.paragraph{
  margin: 0;
  font-size: 1.1rem;
}

.quillContents .ql-video{
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 600px;
  border-radius: 5px;
}

.quillContents img{
  max-height: 200px;
}
.quillContents img.il{
  margin: auto;
}
.quillContents img.fl{
  float: left;
  padding-right: 10px;
  display: block;
}
.quillContents img.fr{
  float: right;
  padding-left: 10px;
}

.ytEmbed{
  text-align: center;
  width: 100%;
  margin: 20px 0 20px 0;
}

.ytEmbed iframe{
  width: 600px;
  height: 338px;
  border-radius: 5px;
}

.photoTextLayout{
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 30px;
  grid-row-gap: 20px;
}
.photoTextLayout img{
  width: 280px;
  border-radius: 5px;
}

.photoTextLayout p{
  margin: 0;
  font-size: 1.3rem;
}

.treatmentAreas{
  display: grid;
  grid-template-columns: 260px 260px 260px;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  justify-content: center;
}

.area{
  height: 100%;
  width: 260px;
  height: 450px;
}

.area{
  text-align: center;
}

.area h2{
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.area img{
  width: 200px;
}
.area .button{
  width: 170px;
}

.teamGrid{
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: auto auto;
}

.teamMember{
  width: 100%;
  padding-top: 100%;
  position: relative;
  background-color: var(--darkSlate);
}

.teamMember img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: 0.4s;
}

.teamMemberText{
  position: absolute;
  bottom: 15px;
  width: 100%;
  transition: 0.4s;
  text-align: center;
}

.teamMemberText h2{
  margin: 0;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.teamMemberText h4{
  margin: 0;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
}

.teamMemberText span{
  height: 3px;
  width: 60px;
  background-color: var(--brightGreen);
  border-radius: 2px;
  margin: 5px auto 1px auto;
  display: block;
}

.teamMember .bookButton{
  margin-top: 5px;
  height: 0;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.teamMember:nth-child(8n+1),
.teamMember:nth-child(8n+3),
.teamMember:nth-child(8n+6),
.teamMember:nth-child(8n) {
    background-color: var(--darkSlate);
}
.teamMember:nth-child(8n+2),
.teamMember:nth-child(8n+4),
.teamMember:nth-child(8n+5),
.teamMember:nth-child(8n+7) {
    background-color: var(--darkSlateHover);
}

.teamMember:hover{
  cursor: pointer;
}

.teamMember:hover img{
  opacity: 0.9;
}

.teamMember:hover .teamMemberText{
  opacity: 0.7;
}

.teamMember:hover .teamMemberText:hover{
  opacity: 1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.teamMember:focus .bookButton{
  height: 40px;
}

.teamMember .bookButton.hover{
  height: 40px;
}

.teamMember:hover .teamMemberText:hover .bookButton{
  height: 40px;
}

/* link grid */

.linkGrid{
  display: grid;
  grid-template-columns: 220px 220px 220px;
  grid-column-gap: 20px;
  grid-row-gap: 15px;
  justify-content: center;
}

.linkBox{
  height: 100px;
  width: 220px;
  background-color: #89A6A9;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 7px;
  color: white;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
.linkBox:hover{
  transform: scale(1.007);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.linkBox h3{
  margin: 0;
  font-weight: 600;
}

.linkBox a{
  text-decoration: underline;
  color: white;
  font-weight: 500;
  position: absolute;
  left: 10px;
  bottom: 10px;
  transition: 0.2s;
}
.linkBox a:hover{
  opacity: 0.9;
}

/* Section Button */

.sectionBtn{
  min-width: 300px;
}

footer{
  width: 100%;
  height: auto;
  background-color: var(--darkSlate);
  margin: 0;
  padding: 20px 20px 10px 20px;
  box-sizing: border-box;
  color: white;
  font-size: 0.9rem;
}

.parallaxGroup footer{
  margin-top: 100px;
}

footer a{
  color: white;
}

footer .siteRevamp{
  text-align: center;
  font-weight: 500;
  padding-bottom: 10px;
}

footer .footerBlocks{
  display: grid;
  grid-template-columns: 200px auto auto auto;
  grid-template-rows: auto;
  grid-column-gap: 40px;
  grid-row-gap: 20px;
}

footer .footerBlocks .doubleBlock{
  display: grid;
  grid-row-gap: 20px;
  grid-column-gap: 40px;
}

footer .footerBlocks .footerSection.quickLinks{
  max-width: 200px;
}
footer .footerBlocks .footerSection.treatmentAreas{
  max-width: 200px;
}

footer .footerBlocks .footerSection.akCountry{
  max-width: 380px;
  width: auto;
  margin: 0 auto 0 auto;
}

footer .footerBlocks .footerSection.contact{
  min-width: 273px;
}

footer .footerBlocks .footerSection.resources{
  width: 440px;
}

footer .footerBlocks .footerSection{
  display: block;
}

footer .footerBlocks .footerSection h3{
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}
footer .footerBlocks .footerSection ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footerBlocks .footerSection li{
  padding: 2px 0 2px 0;
}
footer .footerBlocks .footerSection ul a{
  color: white;
}
footer .footerBlocks .footerSection ul a:hover{
  color: var(--grey);
}

footer .footerBlocks .footerSection p{
  margin: 2px 0 0 0;
}

footer .footerBlocks .footerSection .flags{
  display: grid;
  grid-template-columns: 120px 120px;
  grid-column-gap: calc(100% - 240px);
  margin-top: 15px;
}

footer .footerBlocks .footerSection .flags img{
  height: 80px;
}

footer .footerBlocks .footerSection .logos{
  margin-top: 8px;
}

footer .footerBlocks .footerSection .logos img{
  height: 50px;
  cursor: pointer;
}

footer .footerBlocks .footerSection .logos .ted{
  height: 40px;
}
footer .footerBlocks .footerSection .logos .KHL{
  height: 50px;
  margin-left: 25px;
}
footer .footerBlocks .footerSection .logos .SPA{
  height: 100px;
  margin-top: 20px;
}
footer .footerBlocks .footerSection .logos .RN{
  height: 60px;
  margin: 20px 0 20px 15px;
}
footer .footerBlocks .footerSection .logos .LL{
  height: 40px;
  margin: 20px 0 30px 15px;
}

footer .logoSocials{
  margin: auto;
  text-align: center;
  margin-top: 20px;
}

footer .footerLogo{
  font-family: 'Economica', sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  margin: 0 0 10px 0;
  width: 305px;
  color: white;
  width: 100%;
}

footer .footerLogo span{
  color: var(--lightGreen);
}

footer .logoSocials a{
  color: white;
  text-decoration: none;
  font-size: 32px;
  margin: 0 10px 0 10px;
}
footer .logoSocials a:hover{
  color: var(--grey);
}

footer .logoSocials .copywrite{
  color: var(--grey);
  margin: 40px auto 0 auto;
}

/* Panel Selector */

.panelSelector{
  display: flex;
  justify-content: center;
}

.panelSelector button{
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  height: 60px;
  width: 200px;
  border-radius: 10px;
  border: solid 3px var(--primaryGreen);
  background-color: rgb(0, 0, 0, 0);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 600;
  transition: 0.2s;
  color: black;
}

.panelSelector button:nth-child(1){
  border-radius: 10px 0 0 10px;
  border-right: 0;
}
.panelSelector button:nth-child(2){
  border-radius: 0 10px 10px 0;
  border-left: 0;
}

.panelSelector button.active{
  background-color: var(--primaryGreen);
  color: white;
}

.panelSelector button:not(.panelSelector button.active){
  cursor: pointer;
}
.panelSelector button:not(.panelSelector button.active):hover{
  background-color: rgba(54, 166, 129, 0.2);
}

.panel{
  display: none;
}

.panel.active{
  display: unset;
}

.existingClientInfo{
  background-color: var(--grey);
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  margin: 20px auto 0 auto;
  max-width: 600px;
}

.existingClientInfo p {
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 500;
}

.existingClientInfo .button{
  width: 100%;
  height: 50px;
  font-size: 1rem;
}

form.hidden{
  display: none;
}

.sentMsg{
  text-align: center;
  background-color: var(--grey);
  margin: auto;
  border-radius: 10px;
  padding: 40px 20px 40px 20px;
  margin-top: 40px;
}
.sentMsg i{
  font-size: 8rem;
  color: var(--primaryGreen);
  margin-bottom: 20px;
}

.sentMsg p{
  font-size: 0.85rem;
  text-align: center;
}
/* Profile Popup */

.profilePopup{
  position: fixed;
  z-index: 2;
  top: calc(50% + 50px);
  left: 50%;
  transform: translate(-50%, calc(-50% + 100px));
  width: 700px;
  height: 500px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  visibility: collapse;
  opacity: 0;
  transition: 0.3s;
}

.profilePopup.open{
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.profilePopup .close{
  color: var(--darkSlate);
  margin: 0;
  padding: 0;
  position: fixed;
  top: 15px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
}

.profilePopup .pfpGrid{
  display: grid;
  grid-template-rows: repeat(20, 25px);
  grid-template-columns: 200px 1fr;
  grid-column-gap: 20px;
}

.profilePopup .profileImg{
  grid-column: 1;
  grid-row: 1 / span 9;
}
.profilePopup .profileImg img{
  border-radius: 5px;
  object-fit: cover;
  height: 225px;
  width: 200px;
}

.profilePopup .focusAreas{
  grid-column: 1;
  grid-row: 10 / span 9;
  margin-top: 10px;
}
.profilePopup .focusAreas h3{
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}
.profilePopup .focusAreas .faTags{
  margin-top: 5px;
}
.profilePopup .focusAreas .faTags span{
  background-color: var(--darkSlate);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 5px 5px 0 0;
  border-radius: 3px;
  padding: 0px 7px 0px 7px;
  line-height: 1.85rem;
  cursor: pointer;
  transition: 0.1s;
  display: inline-block;
}
.profilePopup .focusAreas .faTags span:hover{
  background-color: var(--darkSlateHover);
}

.profilePopup .bookButton{
  grid-column: 1;
  grid-row: 19 / span 2;
}
.profilePopup .bookButton .button{
  width: 100%;
  height: 100%;
}

.profilePopup .nameTitle{
  grid-column: 2;
  grid-row: 1 / span 4;
}
.profilePopup .nameTitle h1{
  margin: 0;
  font-weight: 600;
}
.profilePopup .nameTitle h2{
  margin: 0;
  font-weight: 600;
}

.profilePopup .description{
  grid-column: 2;
  grid-row: 5 / span 16;
  overflow: auto;
  position: relative;
  padding-bottom: 2.5rem;
}
.profilePopup .description h3{
  margin: 0 0 5px 0;
  font-weight: 600;
  font-size: 1.1rem;
}
.profilePopup .description:after {
  content: "";
  position: fixed;
  bottom: 0;
  right: 0;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255, 1) 50%);
  width: calc(100% - 230px);
  height: 2.5rem;
  border-radius: 0 0 10px 0;
}

/* Loading Circle */

#loading{
  margin: auto;
  text-align: center;
  display: grid;
  height: 100%;
}

.lds-dual-ring {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin: auto;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 50px;
  height: 50px;
  margin: 8px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: var(--darkSlate) transparent var(--darkSlate) transparent;
  animation: lds-dual-ring 0.45s linear infinite;
}

/* Loading Alt */

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
}
.loader {
  color: #ffffff;
  font-size: 11px;
  text-indent: -99999em;
  margin: 55px auto;
  position: relative;
  width: 10em;
  height: 10em;
  box-shadow: inset 0 0 0 1em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader:before,
.loader:after {
  position: absolute;
  content: '';
}
.loader:before {
  width: 5.2em;
  height: 10.2em;
  background: var(--primaryGreen);
  border-radius: 10.2em 0 0 10.2em;
  top: -0.1em;
  left: -0.1em;
  -webkit-transform-origin: 5.1em 5.1em;
  transform-origin: 5.1em 5.1em;
  -webkit-animation: load2 1s infinite ease 0.75s;
  animation: load2 1s infinite ease 0.75s;
  transition: background 0.2s;
}
.loader:after {
  width: 5.2em;
  height: 10.2em;
  background: var(--primaryGreen);
  border-radius: 0 10.2em 10.2em 0;
  top: -0.1em;
  left: 4.9em;
  -webkit-transform-origin: 0.1em 5.1em;
  transform-origin: 0.1em 5.1em;
  -webkit-animation: load2 1s infinite ease;
  animation: load2 1s infinite ease;
  transition: background 0.2s;
}
@-webkit-keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Meet the team Page */

.staffSearch{
  margin: 0 0 40px 0;
  width: 100%;
}

.searchBar{
  width: 100%;
  max-width: unset;
  position: relative;
  margin: 0;
  height: 64px;
  border-radius: 7px;
  background-color: var(--grey);
  padding: 7px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 120px;
  transition: 0.4s;
  grid-column-gap: 0;
}
.searchBar.focus{
  transform: scale(1.01);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.searchBar .searchBarInput{
  font-family: 'Montserrat', sans-serif;
  padding-left: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--darkSlate);
  margin: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  outline: none;
  box-sizing: border-box;
}
.searchBar .button{
  margin: 0;
  border-radius: 5px;
  font-size: 1rem;
  position: relative;
  box-sizing: border-box;
}

.searchBar .loader{
  transform: scale(0.25);
  position: absolute;
  top: -30px;
  right: 5px;
  margin: 0;
  display: none;
}

.searchBar.loading .button{
  color: var(--primaryGreen)
}
.searchBar.loading .loader{
  display: unset;
}

.searchBar.loading .button:hover{
  color: var(--primaryGreenHover)
}
.searchBar.loading .button:hover .loader:before{
  background: var(--primaryGreenHover);
}
.searchBar.loading .button:hover .loader:after{
  background: var(--primaryGreenHover);
}

.staffMembers{
  text-align: center;
}

.staffMemberProfile{
  width: 100%;
  height: 362px;
  background-color: var(--grey);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: repeat(19, 18px);
  grid-template-columns: auto 250px;
  grid-column-gap: 10px;
  color: var(--darkSlate);
  text-align: left;
  overflow: hidden;
}

.staffMemberProfile .nameRole{
  /* background-color: red; */
  grid-column: 1;
  grid-row: 1 / span 4;
}
.staffMemberProfile .nameRole h2{
  margin: 0;
  font-weight: 600;
  font-size: 1.8rem;
  cursor: pointer
}
.staffMemberProfile .nameRole h2:hover{
  text-decoration: underline;
}
.staffMemberProfile .nameRole h2 i{
  font-size: 1.5rem;
  padding-left: 10px;
  transform: translateY(-2px);
}
.staffMemberProfile .nameRole h3{
  margin: 0;
  font-weight: 600;
}

.staffMemberProfile .description{
  /* background-color: blue; */
  grid-column: 1;
  grid-row: 5 / span 6;
  overflow: hidden;
}
.staffMemberProfile .description img{
  display: none;
}
.staffMemberProfile .description p{
  margin: 0;
  line-height: 18px;
  display: -webkit-box;
   -webkit-line-clamp: 5;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
}
.staffMemberProfile .description span{
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}


.staffMemberProfile .focusAreas{
  grid-column: 1;
  grid-row: 11 / span 7;
}
.staffMemberProfile .focusAreas h3{
  margin: 10px 0 0 0;
  font-weight: 600;
}
.staffMemberProfile .focusAreas .faTags{
  overflow: hidden;
  max-height: 100px;
}
.staffMemberProfile .focusAreas .faTags span{
  background-color: var(--darkSlate);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  height: 28px;
  margin: 5px 5px 0 0;
  border-radius: 3px;
  padding: 0px 7px 0px 7px;
  line-height: 28px;
  cursor: pointer;
  transition: 0.1s;
  display: inline-block;
}
.staffMemberProfile .focusAreas .faTags span:hover{
  background-color: var(--darkSlateHover);
}

.staffMemberProfile .bookBtn{
  /* background-color: green; */
  grid-column: 1;
  grid-row: 17 / span 3;
}
.staffMemberProfile .bookBtn .button{
  height: 100%;
  width: 100%;
  font-size: 0.9rem;
}

.staffMemberProfile .profileImg{
  /* background-color: yellow; */
  grid-column: 2;
  grid-row: 1 / span 19;
}
.staffMemberProfile .profileImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
}

/* small size */

.staffMemberProfile.small{
  height: 272px;
  grid-template-rows: repeat(14, 18px);
  grid-template-columns: auto 200px;
}

.staffMemberProfile.small .profileImg{
  /* background-color: yellow; */
  grid-column: 2;
  grid-row: 1 / span 11;
}

.staffMemberProfile.small .focusAreas .faTags{
  max-height: 35px;
  overflow: hidden;
}


.staffMemberProfile.small .bookBtn{
  /* background-color: green; */
  grid-column: 2;
  grid-row: 12 / span 3;
}
.staffMemberProfile .bookBtn .button{
  height: calc(100% - 10px);
  width: 100%;
  font-size: 0.8rem;
  margin-top: 10px;
}

.ourPsychsTitle{
  font-size: 1.4rem;
  margin: 10px 0 20px 0;
  font-weight: 600;
}

/* Info Box */

.infoBox{
  text-align: center;
  background-color: var(--grey);
  margin: auto;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}
.infoBox i{
  font-size: 8rem;
  color: var(--primaryGreen);
  margin-bottom: 20px;
}

.infoBox h3{
  font-size: 1.5rem;
}

.infoBox p{
  font-size: 1.1rem;
}

.infoBox .button{
  width: 100%;
  font-size: 1rem;
  height: 60px;
}


@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 1322px){
  footer .footerBlocks{
    grid-template-columns: 273px auto auto;
    grid-template-rows: auto auto;
  }

  footer .footerBlocks .footerSection.contact{
    grid-row: 2;
    grid-column: 1;
  }
  footer .footerBlocks .footerSection.resources{
    grid-row: 1;
    grid-column: 3;
  }

}

@media only screen and (max-width: 1100px){
  .teamMemberText{
    position: absolute;
    bottom: 15px;
    width: 100%;
    transition: 0.4s;
    text-align: center;
  }

  .teamMemberText h2{
    margin: 0;
    width: 100%;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
  }

  .teamMemberText h4{
    margin: 0;
    width: 100%;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
  }

  .teamMemberText span{
    height: 3px;
    width: 60px;
    background-color: var(--brightGreen);
    border-radius: 2px;
    margin: 3px auto 0px auto;
    display: block;
  }
}

@media only screen and (max-width: 1088px){
  footer .footerBlocks{
    grid-template-columns: 273px 440px;
    grid-template-rows: auto auto;
    grid-column-gap: calc(100% - 713px)
  }

  footer .footerBlocks .footerSection.contact{
    grid-row: 2;
    grid-column: 1;
  }
  footer .footerBlocks .footerSection.resources{
    grid-row: 2;
    grid-column: 2;
    margin-top: -100px;
  }

  footer .footerBlocks .footerSection.akCountry{
    margin: 0;
  }

}

@media only screen and (max-width: 940px){
  section{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  section .sectionTitle{
    font-size: 5.2vw;
  }

  .treatmentAreas{
    grid-template-columns: 260px 260px;
  }

  .teamGrid{
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto auto;
  }
}

@media only screen and (max-width: 820px){

  .rightSide a span{
    display: none;
  }

  .menuButton{
    display: grid;
  }
  .menuButton span{
    display: unset;
  }

  .menuContent{
    width: 0px;
    height: calc(100% - 60px);
    left: unset;
    right: 0;
    top: 60px;
    z-index: 1000;
    transition: 0s;
    background-color: white;
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.4s;
  }

  .menuItems{
    margin: 60px 20px 0 30px;
    display: grid;
    grid-row-gap: 20px;
    transition: 0.4s;
    width: 310px;
  }
  .menuItems li{
    text-align: left;
    transition: 0.3s;
  }

  .menuItems li a{
    color: var(--darkSlate);
    font-weight: 400;
    font-size: 1.2rem;
  }

  .menuItems li a:after{
    display: none;
  }

  .menuItems .rightAligned{
    text-align: center;
    margin-top: 20px;
  }

  .menuItems .overflow{
    display: none;
  }

  /* Dropdowns */

  .menuItems .dropdown{
    position: unset;
  }

  .menuItems .dropdown i{
    display: unset;
  }

  .menuItems .dropdown ul{
    position: absolute;
    min-width: unset;
    max-width: unset;
    max-height: unset;
    width: 100%;
    height: auto;
    transition: 0.4s;
    overflow: visible;
    padding: 0;
    border-radius: unset;
    box-shadow: unset;
    transform: translateX(350px); /*Mobile dropdown submenu position*/
    top: 0;
    display: grid;
    visibility: collapse;
    grid-row-gap: 20px;
  }

  .menuItems .dropdown ul li{
    background-color: unset;
    width: unset;
    padding: unset;
    cursor: pointer;
    transition: 0.2s;
  }

  .menuItems .dropdown ul li a{
    display: unset;
    padding: 0;
  }

  .menuItems .dropdown ul li a:after{
    background: unset;
  }
  .menuItems .dropdown ul li:hover{
    background-color: unset;
  }

  .menuItems .dropdown ul li:nth-child(1){
    margin-top: 5px;
  }

  .menuItems .dropdown:hover ul{
    visibility: visible;
    opacity: 1;
    max-height: 450px;
  }

  .mobileMenuBackBtn{
    display: unset;
  }
  .mobileMenuBackBtn i{
    padding-right: 10px;
  }
  .mobileMenuBackBtn a{
    font-weight: 600 !important;
  }

  .menuItems .dropdown ul .mobileMenuTitle{
    display: unset;
    text-align: center;
    width: 100%;
  }

  .menuItems .dropdown ul .mobileMenuTitle a{
    font-weight: 600;
  }

  .mobileMenuTitle i{
    transform: translateY(4px);
    position: absolute;
  }

  .imgGradient{
    background: none;
    background-color: var(--darkSlate);
    opacity: 0.5;
  }

  .bannerContent{
    right: 50%;
    transform: translate(50%, -50%);
    text-align: center;
    width: calc(100% - 20px);
  }
  .bannerContent .bannerContentText{
    font-size: 1.8rem;
  }

  .noticeBanner{
    grid-template-columns: auto;
    grid-template-rows: 50px auto;
    padding: 10px 20px 10px 20px;
    box-sizing: border-box;
  }

  .noticeBanner i{
    position: absolute;
    top: 20px;
    right: 0;
  }

  .photoTextLayout{
    grid-template-columns: auto;
    grid-template-rows: auto auto;
  }
  .photoTextLayout img{
    margin: auto;
  }

  .photoTextLayout p{
    font-size: 1.1rem;
  }

  .profilePopup{
    top: calc(50% + 40px);
  }

}

@media only screen and (max-width: 790px){
  footer .footerBlocks{
    grid-template-columns: 273px auto;
    grid-template-rows: auto auto auto;
    grid-column-gap: 20px;
  }

  footer .footerBlocks .footerSection.contact{
    grid-row: 2;
    grid-column: 1 / span 2;
  }
  footer .footerBlocks .footerSection.resources{
    grid-row: 3;
    grid-column: 1 / span 2;
    margin: 0;
  }

  footer .footerBlocks .footerSection.akCountry{
    margin: 0;
  }

  footer .logoSocials{
    margin-top: 40px;
  }
}

@media only screen and (max-width: 770px){
  .profilePopup{
    left: 20px;
    transform: translateY(calc(-50% + 100px));
    width: calc(100% - 80px);
  }
  .profilePopup.open{
    transform: translateY(-50%);
  }
}

@media only screen and (max-width: 720px){
  section.thin{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .linkGrid{
    grid-template-columns: 220px 220px;
  }

  .ytEmbed{
    text-align: center;
    width: 100%;
    padding-top: 56.25%;
    margin: 20px 0 20px 0;
    position: relative;
  }

  .ytEmbed iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 680px){
  .logoContact .rightSide .button{
    display: none;
  }
  .logo{
    font-size: 28px;
    margin: 0 0 0 10px;
    width: 263px;
    float: left;
    line-height: 80px;
  }

  .logoContact .rightSide{
    display: grid;
    grid-template-columns: 40px 60px;
    grid-auto-rows: 25px 25px;
    margin-top: 14px;

  }

  .logoContact .rightSide .contactMail{
    margin-right: 10px;
    grid-row: 2;
  }

  .menuButton{
    margin-right: 10px;
    grid-row: 1 / span 2;
  }

  nav .logoContact{
    height: 80px;
  }

  .menuContent{
    height: calc(100% - 80px);
    top: 80px;
  }

  .pageTitle{
    margin-top: 80px;
  }

  .noticeBanner h2{
    text-align: left;
    margin: 0;
  }
  .noticeBanner p{
    margin-top: 0;
  }

  section .sectionTitle{
    font-size: 2.1rem;
    padding: 0 10px 0 10px;
  }

  .treatmentAreas{
    grid-template-columns: 160px 160px;
    grid-column-gap: 20px;
  }

  .area{
    height: 100%;
    width: 160px;
    height: auto;
    text-align: center;
  }

  .area h2{
    font-size: 1.1rem;
  }
  .area p{
    font-size: 0.9rem;
    height: 8.8rem;
  }
  .area img{
    width: 130px;
  }
  .area .button{
    width: 150px;
  }

  .teamMemberText{
    bottom: 5px;
  }

  .teamMemberText h2{
    font-size: 1.1rem;
  }

  .teamMemberText h4{
    font-size: 0.7rem;
  }

  .teamMember .bookButton.hover{
    height: 0;
  }

  .teamMember:hover .teamMemberText:hover .bookButton{
    height: 0;
  }

  .teamMember:hover .teamMemberText{
    opacity: 1;
  }

  .pageTitle .titleContent{
    padding: 0 20px 0 20px;
  }

  .pageTitle .titleContent h1{
    font-size: 1.8rem;
  }

  .pageTitle .titleContent h2{
    font-size: 1.2rem;
  }



}

@media only screen and (max-width: 600px){
  .staffMemberProfile,
  .staffMemberProfile.small{
    height: auto;
    grid-template-rows: 60px 120px 128px 54px;
    grid-template-columns: 130px auto;
  }

  .staffMemberProfile .nameRole,
  .staffMemberProfile.small .nameRole{
    grid-column: 2;
    grid-row: 1;
  }
  .staffMemberProfile .nameRole h2,
  .staffMemberProfile.small .nameRole h2{
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.2rem;
  }
  .staffMemberProfile .nameRole h2 i,
  .staffMemberProfile.small .nameRole h2 i{
    display: none;
  }
  .staffMemberProfile .nameRole h3,
  .staffMemberProfile.small .nameRole h3{
    font-weight: 700;
    font-size: 1rem;
  }

  .staffMemberProfile .description,
  .staffMemberProfile.small .description{
    grid-column: 1 / span 2;
    grid-row: 3;
    margin: 10px 0 10px 0;
  }
  .staffMemberProfile .description p,
  .staffMemberProfile.small .description p{
  }

  .staffMemberProfile .focusAreas,
  .staffMemberProfile.small .focusAreas{
    grid-column: 2;
    grid-row: 2;
  }
  .staffMemberProfile .focusAreas h3,
  .staffMemberProfile.small .focusAreas h3{
    font-size: 1rem;
    margin-top: 0;
  }
  .staffMemberProfile .focusAreas .faTags span,
  .staffMemberProfile.small .focusAreas .faTags span{
    margin: 4px 3px 0 0;
  }
  .staffMemberProfile .focusAreas .faTags span:hover,
  .staffMemberProfile.small .focusAreas .faTags span:hover{
    background-color: var(--darkSlateHover);
  }

  .staffMemberProfile .bookBtn,
  .staffMemberProfile.small .bookBtn{
    grid-column: 1 / span 2;
    grid-row: 4;
  }
  .staffMemberProfile .bookBtn .button,
  .staffMemberProfile.small .bookBtn .button{
    font-size: 0.8rem;
  }

  .staffMemberProfile .profileImg,
  .staffMemberProfile.small .profileImg{
    grid-column: 1;
    grid-row: 1 / span 2;
  }
}


@media only screen and (max-width: 587px){
  footer .footerBlocks{
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto;
    grid-column-gap: 20px;
  }

  footer .footerBlocks .footerSection.contact{
    grid-row: 2;
    grid-column: unset;
    min-width: unset
  }
  footer .footerBlocks .footerSection.quickLinks{
    min-width: unset
  }
  footer .footerBlocks .footerSection.resources{
    grid-row: 4;
    grid-column: unset;
    margin: 0;
    width: auto;
  }

  footer .footerBlocks .footerSection.akCountry{
    margin: 0;
    max-width: unset;
  }

  footer .footerBlocks .footerSection .logos .ted{
    height: 30px;
  }
  footer .footerBlocks .footerSection .logos .KHL{
    height: 45px;
    margin: 0 10px 0 10px;
  }
  footer .footerBlocks .footerSection .logos .SPA{
    height: 80px;
    margin-top: 20px;
  }
  footer .footerBlocks .footerSection .logos .RN{
    height: 45px;
    margin: 20px 0 20px 15px;
  }
  footer .footerBlocks .footerSection .logos .LL{
    height: 30px;
    margin: 20px 0 30px 15px;
  }
  footer .footerBlocks .footerSection .logos br{
    display: none;
  }
}

@media only screen and (max-width: 550px){

  section.thin{
    padding: 20px 10px 20px 10px;
  }

  .profilePopup{
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    border-radius: 0px;
    padding: 10px;
    box-sizing: border-box;
    overflow: auto;
    transform: translateY(100px);
  }

  .profilePopup.open{
    transform: translateY(0px);
  }

  .profilePopup .pfpGrid{
    grid-template-rows: 25px 25px 25px 25px 25px 25px 25px auto auto;
    grid-template-columns: 150px 1fr;
  }

  .profilePopup .profileImg{
    grid-column: 1;
    grid-row: 1 / span 7;
  }
  .profilePopup .profileImg img{
    width: 150px;
    height: 175px;
  }

  .profilePopup .focusAreas{
    grid-column: 1 / span 2;
    grid-row: 8;
  }
  .profilePopup .focusAreas h3{
    font-size: 1.1rem;
    margin-top: 10px;
  }
  .profilePopup .focusAreas .faTags span{
    font-size: 1rem;
  }

  .profilePopup .bookButton{
    grid-column: 2;
    grid-row: 6 / span 2;
  }
  .profilePopup .nameTitle{
    grid-column: 2;
    grid-row: 1 / span 5;
    align-self: center;
  }
  .profilePopup .nameTitle h1{
    font-size: 1.4rem;
  }
  .profilePopup .nameTitle h2{
    font-size: 1.1rem;
  }

  .profilePopup .description{
    grid-column: 1 / span 2;
    grid-row: 9;
  }
  .profilePopup .description h3{
    margin-top: 20px;
  }

  .profilePopup .description:after {
    display: none;
  }

}

@media only screen and (max-width: 500px){
  .linkGrid{
    grid-template-columns: calc(100vw / 2 - 25px) calc(100vw / 2 - 25px);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .linkBox{
    height: 100px;
    width: 100%;
    background-color: #89A6A9;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 7px;
    color: white;
    position: relative;
    cursor: pointer;
    transition: 0.2s;
  }

  .linkBox h3{
    margin: 0;
    font-weight: 600;
  }

  .linkBox a{
    text-decoration: underline;
    color: white;
    font-weight: 500;
    position: absolute;
    left: 10px;
    bottom: 10px;
    transition: 0.2s;
  }
  .linkBox a:hover{
    opacity: 0.9;
  }

  section .sectionTitle.sub{
    font-size: 1.7rem;
  }

  footer .logoSocials .footerLogo{
    font-size: 2rem;
  }

  footer.index .logoSocials{
    padding-bottom: 80px;
  }

  form .input.half{
    grid-column: 1 / span 2;
  }

  .input input[type='date']{
    width: calc(100vw - 40px);
  }

  .panelSelector button{
    height: 50px;
    width: 180px;
    border-radius: 8px;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 400px){
  .photoTextLayout img{
    width: 100%;
    object-fit: cover;
  }
}

@media only screen and (max-width: 375px){
  .logo{
    font-size: 22px;
    width: 207px;
  }
}

@media only screen and (max-width: 350px){
  .treatmentAreas{
    grid-template-columns: 160px;
  }
}

/* Quill Content Styles */

/*!
 * Quill Editor v1.3.6
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */

.quillContents > * {
  cursor: text;
}
.quillContents p,
.quillContents ol,
.quillContents ul,
.quillContents pre,
.quillContents blockquote, {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.quillContents ol,
.quillContents ul {
  padding-left: 1.5em;
}
.quillContents ol > li,
.quillContents ul > li {
  list-style-type: none;
}
.quillContents ul > li::before {
  content: '\2022';
  transform: scale(2) translate(-5px, -1px);
}
.quillContents ul[data-checked=true],
.quillContents ul[data-checked=false] {
  pointer-events: none;
}
.quillContents ul[data-checked=true] > li *,
.quillContents ul[data-checked=false] > li * {
  pointer-events: all;
}
.quillContents ul[data-checked=true] > li::before,
.quillContents ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.quillContents ul[data-checked=true] > li::before {
  content: '\2611';
}
.quillContents ul[data-checked=false] > li::before {
  content: '\2610';
}
.quillContents li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.quillContents li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.quillContents li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.quillContents ol li:not(.ql-direction-rtl),
.quillContents ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.quillContents ol li.ql-direction-rtl,
.quillContents ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.quillContents ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.quillContents ol li:before {
  content: counter(list-0, decimal) '. ';
}
.quillContents ol li.ql-indent-1 {
  counter-increment: list-1;
}
.quillContents ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.quillContents ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.quillContents ol li.ql-indent-2 {
  counter-increment: list-2;
}
.quillContents ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.quillContents ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.quillContents ol li.ql-indent-3 {
  counter-increment: list-3;
}
.quillContents ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.quillContents ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.quillContents ol li.ql-indent-4 {
  counter-increment: list-4;
}
.quillContents ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.quillContents ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.quillContents ol li.ql-indent-5 {
  counter-increment: list-5;
}
.quillContents ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.quillContents ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.quillContents ol li.ql-indent-6 {
  counter-increment: list-6;
}
.quillContents ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.quillContents ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.quillContents ol li.ql-indent-7 {
  counter-increment: list-7;
}
.quillContents ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.quillContents ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.quillContents ol li.ql-indent-8 {
  counter-increment: list-8;
}
.quillContents ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.quillContents ol li.ql-indent-8 {
  counter-reset: list-9;
}
.quillContents ol li.ql-indent-9 {
  counter-increment: list-9;
}
.quillContents ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.quillContents .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.quillContents li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.quillContents .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.quillContents li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.quillContents .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.quillContents li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.quillContents .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.quillContents li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.quillContents .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.quillContents li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.quillContents .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.quillContents li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.quillContents .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.quillContents li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.quillContents .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.quillContents li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.quillContents .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.quillContents li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.quillContents .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.quillContents li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.quillContents .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.quillContents li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.quillContents .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.quillContents li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.quillContents .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.quillContents li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.quillContents .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.quillContents li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.quillContents .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.quillContents li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.quillContents .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.quillContents li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.quillContents .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.quillContents li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.quillContents .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.quillContents li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.quillContents .ql-video {
  display: block;
}
.quillContents .ql-video.ql-align-center {
  margin: 0 auto;
}
.quillContents .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.quillContents .ql-bg-black {
  background-color: #000;
}
.quillContents .ql-bg-red {
  background-color: #e60000;
}
.quillContents .ql-bg-orange {
  background-color: #f90;
}
.quillContents .ql-bg-yellow {
  background-color: #ff0;
}
.quillContents .ql-bg-green {
  background-color: #008a00;
}
.quillContents .ql-bg-blue {
  background-color: #06c;
}
.quillContents .ql-bg-purple {
  background-color: #93f;
}
.quillContents .ql-color-white {
  color: #fff;
}
.quillContents .ql-color-red {
  color: #e60000;
}
.quillContents .ql-color-orange {
  color: #f90;
}
.quillContents .ql-color-yellow {
  color: #ff0;
}
.quillContents .ql-color-green {
  color: #008a00;
}
.quillContents .ql-color-blue {
  color: #06c;
}
.quillContents .ql-color-purple {
  color: #93f;
}
.quillContents .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.quillContents .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.quillContents .ql-size-small {
  font-size: 0.75em;
}
.quillContents .ql-size-large {
  font-size: 1.5em;
}
.quillContents .ql-size-huge {
  font-size: 2.5em;
}
.quillContents .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.quillContents .ql-align-center {
  text-align: center;
}
.quillContents .ql-align-justify {
  text-align: justify;
}
.quillContents .ql-align-right {
  text-align: right;
}
.quillContents.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
