/*

*/


/* To be changed */
#reviews {
	display: none;
}

.page {
  margin: 0 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px black inset !important;
    opacity: 0.5;
    -webkit-text-fill-color: #FFFCF5;
}

#custom_validation,
#network_error {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.failed-request {
  border-color: transparent !important;
  margin: 10px auto !important;
  text-align: center;
  color: #BA0C2F !important;
  font-weight: 600;
}

.wpcf7-response-output {
  border: none !important;
  text-align: center;
  color: #ffd573;
  font-weight: 600;
  margin: 20px 10px 20px !important;
}

.entry-footer {
  display: none;
}

h1{color:red!important;}

ul {
  list-style: disc !important;
  margin: 0 !important;
  padding-left: 1.25em !important;
}

.site-footer ul,
#menuList ul {
  list-style: none !important;
  padding: 0 !important;

}

a {
  text-decoration: none;
}

html {
  font-family: 'Museo Sans';
  font-weight: 400;
}

#mobile_contact_info {
  display: none;
  text-align: center;
  font-weight: 600;
  width: 100%;
}

#mobile_contact_info .columns {
  display: flex;
  max-width: 330px;
  justify-content: space-between;
  margin: 20px auto;
}

#contact_info .col {
    min-width: unset !important;
    margin: auto 10px;
}

.bold-text {
  font-weight: 500;
}

.opaque {
  opacity: 0.5;
}

.main-title,
.about-title,
.menu-blob a {
  text-align: center;
  font-family: 'Titillium Web';
}

a, a:active, a:focus {
  outline : none !important;
  border: none;
}

p {
  font-size: 18px;
}

/* Menu */
#scroll_button {
  position: fixed;
  z-index: 2;
  display: none;
  right: 80px;
  height: 92px;
  width: 100px;
  bottom: 10%;
  animation: fadeIn 1s linear, grow 1s linear;
  transition: 0.4s;
}

#scroll_button:hover svg path:first-child {
  fill: #FFFCF5;
  stroke: #000000;
  transition: 0.4s;
}

#scroll_button:hover svg path:last-child {
  fill: #000000;
}

#floating_menu {
  position: fixed;
  display: none;
  right: 80px;
  top: 30px;
  height: 85px;
  width: 100px;
  background-image: url('./assets/menu_shape.svg');
  background-repeat: no-repeat;
  animation: fadeIn 1s linear;
}

#menuToggle {
  display: block;
  position: relative;
  margin: auto;
  z-index: 4;
  height: 0;
  padding-top: 25px;
}

#menuToggle a {
  text-decoration: none;
  width: fit-content;
  margin: auto;
  color: #FFFCF5;
  font-size: 32px;
  line-height: 56px;
}

#menuToggle input:checked ~ #menuList ul {
  animation: shiftRight 0.8s;
}

#menuToggle input:checked ~ #menuList {
  animation: growRight 0.4s;
}

@keyframes shiftRight {
  0% {
    opacity: 0%;
    transform: translateX(50px);
  }
  50% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}

@keyframes growRight {
  0% {
    opacity: 0%;
    transform: scale(0.3) translate(670px, -440px);
  }
  70% {
    opacity: 20%;
  }
  100% {
    opacity: 100%;
  }
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  margin-left: calc(100% - 70px);
  top: 20px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 2px;
  margin-bottom: 7px;
  position: relative;
  margin-left: calc(100% - 70px);
  background: #FFFCF5 !important;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
  background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
  opacity 0.55s ease;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-1px, 1px);
  background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(-1px, 1px);
}

#menuList {
  position: absolute;
  width: 537px;
  height: 630px;
  top: -90px;
  right: -80px;
  visibility: hidden;
  text-align: right;
  background-image: url('./assets/menu_list.svg');
  background-repeat: no-repeat;
}

#menuList .closing-shape {
  position: absolute;
  right: 80px;
  top: 86px;
  height: 85px;
  width: 100px;
  background-image: url('./assets/menu_shape_stroke.svg');
  background-repeat: no-repeat;
}

#menuList .menu-container {
  padding-top: 200px;
  padding-right: 80px;
}

#menuList .footer {
  height: 16px;
  color: #686868;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  margin-top: 4vh;
}

#menuToggle input:checked ~ div {
  visibility: visible;
  transition: opacity 0.5s;
  opacity: 100%;
}

#menuToggle input ~ div {
  opacity: 50%;
}

#menuList .custom-logo-link {
  display: none;
  position: absolute;
  left: -20px;
  top: 15px;
  filter: invert(100%) sepia(12%) saturate(4745%) hue-rotate(294deg) brightness(109%) contrast(102%);
}

#menuList .facebook-logo {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -80px;
  height: 70px;
  width: 70px;
  background-image: url('./assets/facebook_white_red_logo.svg');
  background-repeat: no-repeat;
}

#menuList ul {
  font-family: 'Titillium Web';
}

#menuList .menu a:hover {
  color: #000000;
  transition: 0.4s;
  font-weight: 600;
}

/* Header */
#masthead {
  position: absolute;
  width: 100%;
  height: 200px;
  top: 0;
  z-index: 3;
  box-shadow: inset 0px 131px 63px -24px #fffcf5;
}

#contact_info {
  font-weight: 600;
  color: black;
  font-size: 16px;
  width: 64%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#mobile_contact_info .red-link,
#contact_info .red-link {
  color: black;
}

#mobile_contact_info .red-link:hover,
#contact_info .red-link:hover {
  color: #BA0C2F;
}

#masthead .site-branding {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: auto;
}

.menu-blob {
  position: absolute;
  background-repeat: no-repeat;
  height: 320px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 100%;
  z-index: 2;
  cursor: pointer;
  background-position-y: center;
  transition: 0.3s;
}


.menu-blob a:visited {
  color: #000000;
}

.menu-blob:hover a,
.menu-blob a:hover {
  color: #FFFCF5;
}

.menu-blob a {
  font-weight: 400;
  font-size: 32px;
  color: #000000;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-blob {
  top: 230px;
  right: 3%;
}

.contact-blob {
  bottom: 150px;
  right: 0;
}

.patient-blob {
  top: 230px;
  left: 3%;
}

.patient-blob .animated,
.contact-blob .animated {
  transform: scale(1.8) !important;
}


.reviews-blob {
  bottom: 150px;
  left: 0;
}

.providers-blob {
  bottom: 420px;
  right: 5%;
  left: 5%;
  margin: auto;
}

.menu-group {
  margin: 0 auto -1327px auto;
  position: relative;
  min-height: 1270px;
  padding-top: 117px;
  overflow: hidden;
}

.wide-header {
  z-index: -1;
  height: 1420px;
  box-shadow: inset 0px 50px 46px 50px #FFFCF5;
  /* position: unset !important;
  margin-bottom: -80px; */
}

.wide-header .wp-block-cover__background {
  box-shadow: inset 0px 0px 27px 50px #FFFCF5;
}


/* Provider Section */
.providers-section .main-title {
  top: -180px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  z-index: 1;
}

.providers-section { 
  box-shadow: 0px -50px 88px 112px #fffcf5;
  position: relative;
  border-bottom: 1px solid #00000033;
}

.providers-section .wp-block-columns {
  padding-top: 100px;
  height: 570px;
}

.providers-section .wp-block-column:first-child {
	margin-left: 40px;
}

.providers-section .wp-block-column:last-child {
	margin-right: 40px;
}

.mobile-provider-description {
  display: none;
}

.provider-tab {
/* 	height: 500px; */
}

.provider-blob {
	position: relative;
	height: 380px;
}

.provider-blob img {
	position: absolute;
	left: calc(50% - 116px);
}

.wp-block-column .provider-blob img {
	top: 18px;
}

.wp-block-column:nth-child(2) .provider-blob img {
	top: 29px;
}

.provider-blob svg {
	position: absolute;
	left: calc(50% - 143px);
	opacity: 0;
	transition: 0.5s;
}

.provider-tab .provider-blob {
	transform: scale(1.4);	
	transition: 0.5s;
}


#tooltip {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 60px;
  width: 60px;
  position: absolute;
  background-image: url(./assets/menu_shape.svg);
  background-size: 80px 45px;
  background-position: -10px 10px;
  background-repeat: no-repeat;
  font-size: 8px;
  color: white;
  top: 0;
  left: 0;
  transform: scale(1);
}

.provider-tab:hover #tooltip {
  opacity: 0.8;
}


.provider-tab:hover .provider-blob {
	transform: scale(1.4);	
	transition: 0.5s;
}

.provider-tab:hover .provider-blob svg {
	opacity: 1;
}

.provider-tab p {
	width: 100%;
	transition: 0.5s;
}

.provider-tab:hover .provider-blob img{
  filter: none;
}

.provider-tab-active p  {
	color: #BA0C2F;
	/* font-size: 40px !important; */
	font-size: 34px !important;
}

.provider-tab-active {
  cursor: pointer;
}

.provider-tab-background .provider-blob img,
.provider-tab-inactive .provider-blob img {
	position: absolute;filter: gray; /* IE6-9 */
	-webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
	filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
}

.provider-tab-background .provider-blob,
.provider-tab-inactive .provider-blob {
	transform: scale(1);
	transition: 0.5s;
}

.provider-description {
  opacity: 0;
  transition: 0.5s;
  text-align: center;
  margin: auto;
  height: 0px;
  width: 60%;
  max-width: 900px;
  overflow: hidden;
}

/* .provider-tab-inactive p {
	opacity: 0;
	transform: scale(0.2);
} */

.provider-tab-clicked p {
  color: #BA0C2F;
	font-size: 34px !important;
}

.provider-tab-clicked .provider-blob svg {
  opacity: 1 !important;
}

.provider-tab-clicked:first-child p {
	transform: translateX(calc(50vw - 50% - 40px));
}

.provider-tab-clicked:last-child p {
	transform: translateX(calc(-50vw + 50% + 40px));
}

.provider-tab-background p {
  opacity: 0;
  transform: scale(0.5);
  transition: 0.5s;
}

/* .provider-description p {
	margin: 20px auto !important;
	text-align: center;
	font-size: 20px;
}

.provider-description {
	max-height: 0px;
	margin: 0 25%;
	overflow: hidden;
}

.provider-description-active {
	max-height: 400px;
	transition: 0.5s;
} */


.providers-section .wp-block-columns p {
  text-align: center;
}

.providers-section p {
  margin: 40px auto;
}

#contact_info button {
  width: 220px;
  height: 60px;
  margin-bottom: 0 !important;
  cursor: pointer;
  border: none;
}

.providers-section .wp-block-button__link:hover,
.about-btn .wp-block-button__link:hover,
#contact_info button:hover {
  background: #BA0C2F !important;
  color: #FFFCF5 !important;
}

/* #contact_info button a {
  width: 220px;
  height: 100%;
} */

.about-btn .wp-block-button__link,
.providers-section .wp-block-button__link,
#contact_info button {
  display: flex;
  align-items: center;
  margin: 0 auto 120px;
  justify-content: center;
  text-transform: uppercase !important;
  background: #000000 !important;
  border-radius: 10px !important;
  color: #FFFCF5 !important;
  font-weight: 700;
  transition: 0.2;
  min-width: 220px;
  max-width: 360px;
  height: 60px;
  font-size: 24px;
  line-height: 28px;
  font-family: 'Titillium Web';
  transition: 0.4s;
}

/* .providers-section .wp-block-button__link:hover {
  background: #BA0C2F !important;
  color: #FFFCF5 !important;
} */

.providers-section .wp-block-column:first-child img {
  -webkit-mask-image: url('./assets/provider_shape1.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 456px 415px;
  -webkit-mask-position-y: -75px;
  -webkit-mask-position-x: -100px;
  width: 232px;
}

.providers-section .wp-block-column:nth-child(2) img {
  -webkit-mask-image: url('./assets/provider_shape2.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 390px 435px;
  -webkit-mask-position-y: -75px;
  -webkit-mask-position-x: -93px;
  width: 232px;
}

.providers-section .wp-block-column:last-child img {
  -webkit-mask-image: url('./assets/provider_shape3.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 355px 460px;
  -webkit-mask-position-y: -75px;
  -webkit-mask-position-x: -78px;
  width: 232px;
}

.provider-blob {
	transform: scale(1.4);
}

/* About Section */

.next-section  {
  margin-top: -35px;
  padding-bottom: 120px;
}

.about-section .title {
	font-family: 'Titillium Web';
	font-weight: 400;
	font-size: 48px;
	margin: 120px 0 27px 0;
	max-width: 697px;
	line-height: 52px;
	position: relative;
}

.about-section > image-column {
	position: absolute;
	right: 0;
}

.light-paragraph {
  font-weight: 300;
}

.about-section .title + p {
  border-top: 1px solid #BA0C2F33;
  padding-top: 27px;
}

.about-section p,
.about-section ul {
  font-size: 24px;
  line-height: 40px;
}

.about-section ul {
  font-weight: 400;
}

.about-section li::marker {
  /* content: "\25CF\00a0"; */
  color: #BA0C2F;
}

.about-section .wp-block-group {
  max-width: 770px;
  margin: auto;
}

.about-title {
  height: 380px;
  width: 363px;
  background-image: url('./assets/about_blob.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  color:  #FFFCF5;
  font-size: 72px;
  position: absolute;
  left: 30px;
  top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section {
  overflow: hidden;
}

.about-section .image-column {
  position: relative;
  right: -10px;
}

.about-section.next-section .image-column {
  left: -10px;
}

.about-section .first-shape img {
  -webkit-mask-image: url(./assets/about_shape1.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position-y: -70px;
    -webkit-mask-position-x: -29px;
    -webkit-mask-size: 564px 656px;
    position: absolute;
    right: 51px;
    top: 232px;
    transform: scale(1.4);
}

.about-section .second-shape img {
  -webkit-mask-image: url('./assets/about_shape2.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position-y: -70px;
  -webkit-mask-position-x: -282px;
  -webkit-mask-size: 800px 766px;
  position: absolute;
  left: 84px;
  top: 232px;
  transform: scale(1.6);
}


/* Contact section */
.contact-section {
  height: 690px;
}
.contact-section h2 {
  font-size: 32px;
  font-weight: 400;
  padding-top: 80px;
  padding-bottom: 40px;
  margin: 0;
  font-family: 'Titillium Web';
}

.contact-section p {
  color: #FFFCF5;
  margin-bottom: 40px;
}
.contact-section .fields-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.contact-form {
  width: 80%;
  max-width: 1330px;
  margin: auto;
}

.contact-form .wpcf7-form-control-wrap {
  width: 32%;
}

.contact-form .wpcf7-not-valid-tip {
  color: #BA0C2F;
}

.contact-form input {
  max-width: 430px;
  width: 100%;
  height: 50px;
  border: 1px solid #777777 !important;
  border-radius: 10px !important;
  background: #000000;
  padding: 14px 30px !important;
  color: #FFFCF580 !important;
}

.contact-form textarea {
  border: 1px solid #777777 !important;
  border-radius: 10px !important;
  background: #000000;
  max-width: 100%;
  min-width: 100%;
  min-height: 150px;
  max-height: 170px;
  padding: 14px 30px !important;
  color: #FFFCF580 !important;
}

.contact-form .wpcf7-spinner {
  display: none;
}

.submit-wrapper {
  display: flex;
  justify-content: center;
}

.submit-wrapper input {
  background: #FFFCF5 !important;
  border: none !important;
  border-radius: 10px !important;
  text-transform: uppercase !important;
  font-family: 'Titillium Web';
  transition: 0.2s;
  cursor: pointer;
  color: #000000 !important;
  font-weight: 700;
  width: 220px;
  transition: 0.4s;
}

.submit-wrapper input:hover {
  background: #BA0C2F !important;
  color: #FFFCF5 !important;
}

/* Footer */

.site-footer {
  background: #000000;
}

.site-footer .ga-logo {
  width: 117.31px;
  height: 50px;
  background-image: url('./assets/ga_kidz_logo.svg');
  background-position-y: center;
  background-repeat: no-repeat;
}

.site-footer a:hover {
  color: #BA0C2F !important;
}

.site-footer a {
  font-weight: 300;
}

.menu-list {
  width: 100%;
  padding-bottom: 50px;
  padding-top: 50px;
  border-bottom: 1px solid #FFFFFF66;
  display: flex;
  justify-content: space-around;
}

.menu-list .menu a {
  color: #FFFCF5;
  font-size: 18px;
}

.copyright {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #FFFCF5;
  cursor: default;
}

.copyright a {
  color: #FFFCF5 !important;
}

.copyright .sst-logo {
  height: 40px;
  width: 20px;
  background-image: url('./assets/sst_logo.svg');
  background-repeat: no-repeat;
  background-position-y: center;
  margin: 0 8px 0 15px;
  transition: 0.4s;

}

.copyright a {
  transition: 0.4s;
}

.copyright a:hover .sst-logo {
  background-image: url('./assets/sst_logo_red.svg');
}


.site-footer .facebook-logo {
  background-image: url('./assets/facebook_white_logo.svg');
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  transition: 0.4s;
}

.site-footer .facebook-logo:hover {
  background-image: url('./assets/facebook_red_logo.svg');

}


.site-header .custom-logo {
  width: 398px;
  height: 140px;
  left: 150px;
  top: 69px;
}


.powered-section,
.powered-section a  {
  display: flex;
  align-items: center;
}

.site-footer .first-column {
  width: 35%;
}

.site-footer .second-column {
  width: 65%;
}
.site-footer .first-column,
.site-footer .second-column {
  display: flex;
  margin: auto;
  justify-content: space-around;
}

/* Images */
.images-section {
	padding: 0;
  margin-bottom: 0 !important;
}
.alignright figure {
	float: right;
}
.images-section .wp-block-column:nth-child(2) {
	display: flex;
    align-items: center;
    justify-content: center;
}

/* Reviews Slider */
.providers-section {
	overflow-x: hidden;
}
.reviews-section, .providers-section,
.about-section {
  background-color: #FFFCF5;
}

.entry-content .about-section {
	flex-wrap: nowrap !important;
	margin: 0;
	padding: 0;
}

.reviews-section {
  height: 777px;
  border: 1px solid #00000033;
}

.reviews-section .main-title {
  font-size: 72px;
  padding-top: 120px;
  padding-bottom: 40px;
  margin: 0;
}

.reviews-slider .slick-list {
  width: 80%;
  margin: auto;
}

.reviews-section .slick-slide {
  height: 440px;
  display: flex !important;
  justify-content: center;
  min-width: 390px;
}

.reviews-slider .wp-block-group {
  display: flex;
  align-items: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 390px;
  transition: 0.3s;
}

.reviews-slider .paragraph-group .wp-block-group__inner-container {
  width: 70%;
  margin: auto;
}

.reviews-slider .wp-block-cb-slide:nth-child(odd) .wp-block-group {
  background-image: url('./assets/blob_down.svg');
}

.reviews-slider .wp-block-cb-slide:nth-child(even) .wp-block-group {
  background-image: url('./assets/blob_up.svg');
}

.reviews-slider .wp-block-cb-slide:nth-child(odd):hover .wp-block-group {
  background-image: url('./assets/blob_down_full.svg');
  color: #FFFCF5;
}

.reviews-slider .wp-block-cb-slide:nth-child(even):hover .wp-block-group {
  background-image: url('./assets/blob_up_full.svg');
  color: #FFFCF5;
 
}


.reviews-slider .slick-prev,
.reviews-slider .slick-next {
  width: 19px;
  height: 30px;
}

.reviews-slider .slick-prev {
  left: 50px;
}

.reviews-slider .slick-next {
  right: 50px;
}

.reviews-slider .slick-prev::before,
.reviews-slider .slick-next::before {
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent !important;
  opacity: 1 !important;
}

.reviews-slider .slick-prev:hover:before,
.reviews-slider .slick-next:hover::before {
  filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(4275%) hue-rotate(339deg) brightness(72%) contrast(104%);
}

.reviews-slider .slick-prev::before {
  background-image: url('./assets/arrow-prev.svg');
}

.reviews-slider .slick-next::before {
  background-image: url('./assets/arrow-next.svg');
}

/* Animation */
.header-blob a {
  position: relative;
}

.header-blob .animated {
  visibility: hidden;
  transition: visibility 0.2s, transform 1s,  opacity 0.3s linear;
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: scale(1.6);
  animation: fadeOut 0.7s linear;
}

.header-blob .shape {
  visibility: visible;
  position: absolute;
  transition: visibility 0s, transform 0.6s, opacity 0.5s linear;
  height: 100%;
  width: 100%;
  animation: fadeIn 2s linear;
}

.header-blob a:hover .shape {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transform: scale(0.4);
}

.header-blob a:hover .animated {
  visibility: visible;
  opacity: 1;
  transform: scale(1.4);
  animation: fadeIn 2s linear;
}

@keyframes grow {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% { opacity: 0}
  50% { opacity: .5 }
  100% { opacity: 1}
}

@keyframes fadeOut {
  0% { opacity: 1}
  25% { opacity: .5 }
  50% { opacity: 0;
  }
}

@keyframes disappear {
  0% { 
      opacity: 0;
      transform: scale(0.5);
    }
  100% { 
      opacity: 1;
      transform: scale(1);
    }
}

@media (min-width: 1600px) {
  .menu-blob {
    height: 320px;
    width: 418px;
  }

  .contact-blob {
    height: 234px;
    width: 542px;
  }

  .contact-blob .animated {
    height: 350px !important;
  }

  .menu-group {
    max-width: 1630px;
  }
}

@media (max-width: 1600px) {
  .about-title {
    height: 320px;
    width: 285px;
  }

  .about-section .first-shape img {
    right: 0;
    transform: translateX(-7px) scale(1.2);
  }

  .about-section .second-shape img {
    left: 40px;
    transform: scale(1.4);
  }

  #masthead .site-branding {
    width: 95%;
    margin: auto;
  }
  .info-group {
    margin: auto 20px !important;
  }
  .about-btn .wp-block-button__link,
  .providers-section .wp-block-button__link,
	#contact_info button {
		font-size: 18px;
	}
}

@media (max-width: 1300px) {
	.about-title {
		height: 203px;
		width: 189px;
		font-size: 50px;	
	}

  .reviews-slider .slick-track {
    display: flex;
  }

  .reviews-section .slick-slide {
    min-width: 390px !important;
  }

  .about-section .first-shape img {
    -webkit-mask-position-x: 15px;
    -webkit-mask-size: 436px 557px;
  }

  .about-section .second-shape img {
    left: -40px;
    transform: none;
    -webkit-mask-size: 749px 665px
  }

  .provider-blob {
    transform: scale(1.2) !important;
  }
	
	.provider-tab-inactive .provider-blob {
		transform: scale(0.8) !important;
	}

  .provider-tab p {
    font-size: 25px !important;
    max-width: 230px;
  }

  .providers-section .wp-block-columns {
    padding-top: 100px;
    height: 600px;
	overflow: hidden;
  }

  .provider-tab-clicked:first-child p,
  .provider-tab-clicked:last-child p {
    transform: none;
    position: absolute;
    left: 0;
    right: 0;
  }

  #contact_info {
    width: 72%;
  }

  #contact_info button {
    width: 180px;
  }

  #masthead .site-branding {
    width: 98%;
  }

  .contact-section .subtitle {
    width: 80%;
    margin: 40px auto;
  }

  .contact-section {
    height: 870px;
  }
}

@media (max-width: 900px) {
  #tooltip {
    display: none;
  }
  
  .tab-close {
    height: 65px;
    width: 65px;
    position: fixed;
    right: 13px;
    top: 29px;
    background-image: url('./assets/tab_close.svg');
    background-repeat: no-repeat;
  }
  .tab-close .content {
    margin-left: 17px;
    margin-top: 30px;
  }
  .tab-close .bar {
    width: 30px;
    height: 2px;
    background: #FFFCF5 !important;
  }
  .tab-close .bar:first-child {
    transform: rotate(45deg) translate(-1px, 1px);
  }
  .tab-close .bar:last-child {
    transform: rotate(-45deg) translate(0px, -2px);
  }


  .provider-blob {
    margin-top: 20px;
    height: 320px;
    transform: scale(1) !important;
  }

  .provider-description {
    display: none;
  }

  .mobile-provider-description {
    display: block;
    height: 0px;
    opacity: 0;
    transition: 0.5s;
  }
  
  .mobile-provider-description p {
    font-size: 18px !important;
    max-width: unset;
    animation: shiftRight 0.8s;
  }

  .providers-section .wp-block-columns {
    height: auto;
  }

  .provider-tab-expanded {
    background-color: #BA0C2F;
    transition: 0.5s;
  }
  .provider-tab-expanded p {
    color: #ffffff;
  }

  .expanded-description {
    opacity: 1;
    height: auto;
    animation: shiftRight 0.8s;
  }

	.providers-section .wp-block-column:first-child {
		margin-left: 0;
	}

	.providers-section .wp-block-column:last-child {
		margin-right: 0;
	}

  .header-blob .animated {
    display: none;
  }

  .header-blob:hover a {
    color: #000000;
  }

  .header-blob a:hover .shape {
    visibility: visible;
    opacity: 1;
    transform: unset;
  }

  .header-blob .animated {
    display: none;
  }

  .main-title {
    font-size: 36px !important;
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: 100% !important;
  }

  .providers-section .wp-block-columns {
    flex-direction: column;
    padding-top: 0;
  }

  .providers-section .wp-block-columns p {
    margin-top: 40px !important;
  }

  .providers-section p {
    width: 80%;
  }

  /* Header */
  .menu-group {
    margin: 0 auto -1370px auto;
  }
  
  #floating_menu {
    display: block !important;
    right: 15px;
    top: 30px;
    height: 60px;
    width: 65px;
    background-size: contain;
  }

  #scroll_button {
    right: 15px;
    height: 75px;
    width: 75px;
    background-size: contain;
    background-position-x: 10px;
    bottom: 14%;
  }

  #scroll_button svg {
    height: 100%;
  }

  #scroll_button:hover svg path:first-child {
    fill: #BA0C2F;
    stroke: #BA0C2F;
    transition: 0.4s;
  }
  
  #scroll_button:hover svg path:last-child {
    fill: #FFFCF5;
  }
  

  #menuList {
    text-align: center;
    background-image: none !important;
    background: #BA0C2F;
    right: 6px;
    top: -30px;
    width: 100vw;
    height: 100vh;
    touch-action: none;
  }

  #menuList .custom-logo-link,
  #menuList .facebook-logo {
    display: block;
  }

  #menuList .menu-container {
    padding-right: 0;
    padding-top: 22vh;
    position: relative;
  }

  #menuToggle input:checked ~ #menuList {
    animation: none;
  }

  #menuList .closing-shape {
    right: 17px;
    top: 32px;
    height: 60px;
    width: 65px;
    background-size: contain;
  }

  #menuToggle {
    padding-left: 85px;
    padding-top: 20px;
  }

  #menuToggle a {
    font-size: 28px;
  }

  .menu-blob {
    height: 232px;
    width: 205px;
  }

  .menu-blob a {
    font-size: 22px;
    overflow: hidden;
  }

  .about-blob, .patient-blob {
    top: 250px;
  }

  .providers-blob {
    bottom: 30%;
    top: unset;
  }

  .site-header .custom-logo-link {
    transform: scale(0.6);
    position: absolute;
    left: -20px;
    top: 15px;
  }

  #masthead .site-branding {
    height: 275px;
  }

  .site-header .custom-logo {
    width: unset;
    height: unset;
  }

  /* About Section*/
  .about-section .title {
    font-size: 32px;
  }

  .about-section .title {
    margin: 90px 0 27px 0;
  }

  .about-section p,
  .about-section ul {
    font-size: 18px;
    line-height: 28px;
  }

  .about-section .first-shape img {
    top: 33px;
    transform: translateX(38px) scale(1);
    -webkit-mask-position-x: 10px;
  }
  .about-title {
    width: 170px;
    height: 180px;
    font-size: 36px;
    left: unset;
    right: 44%;
  }

  .role-group {
    flex-direction: column-reverse;
  }

  .practice-group {
    flex-direction: column;
  }

  .next-section {
    padding-bottom: 60px;
  }

  /* Contact */

  .contact-section .fields-wrapper {
    flex-direction: column;
  }
  .contact-form .wpcf7-form-control-wrap {
    width: 100%;
  }

  .contact-form span:not(:last-child) {
    margin-bottom: 20px;
  }

  .contact-section h2 {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .contact-form input {
    max-width: unset;
  }

  .contact-section .subtitle {
    max-width: 350px;
    margin: 40px auto;
  }

  /* Reviews Slider */
  .reviews-section .main-title {
    padding-top: 70px;
  }

  .reviews-section .slick-slide {
    min-width: unset !important;
  }

  .reviews-slider .slick-prev {
    left: 10%;
  }
  
  .reviews-slider .slick-next {
    right: 10%;
  }
  /* Footer */
  .menu-list .menu a {
    font-size: 16px;
  }

  .menu-list {
    padding-bottom: 40px;
    position: relative;
  }

  .site-footer .first-column {
    flex-direction: column;
    align-items: flex-start;
    width: 30%;
  }

  .site-footer .second-column {
    flex-direction: column-reverse;
    align-items: flex-end;
    text-align: right;
    width: 30%;
  }

  .copyright {
    flex-direction: column;
    font-size: 14px;
  }

  .copyright .rights {
    text-align: center;
  }

  .site-footer .ga-logo,
  .site-footer .facebook-logo {
    margin-bottom: 50px;
  }

  .site-footer #menu-footer-chunk2-1 li:last-child {
    position: absolute;
    left: 10%;
    bottom: 30px;
  }

  .site-branding #contact_info {
    display: none;
  }

  #mobile_contact_info {
    display: block;
    margin-top: 116px;

  }

  #masthead .site-branding {
    flex-direction: column;
  }
}

@media (max-width: 500px) {

  /* Header */
  .menu-blob {
    height: 170px;
    width: 142px;
  }

  .about-blob {
    top: 390px
  }
  
  .patient-blob {
    top: 290px
  }

  .reviews-blob {
    bottom: 180px;
  }

  .contact-blob {
    bottom: 75px;
  }
  .menu-group {
    min-height: 1000px;
  }

  .wide-header img {
    height: 1020px !important;
    top: 384px !important;
    width: 116vw;
  }

  /* About Section */

  .practice-group .title {
    margin: 20px 0 27px 0;
  }
  
  /* Reviews slider */
  .reviews-slider .slick-slide {
    padding: 0 !important;
  }
  .reviews-slider .slick-prev {
    left: 10px;
  }
  
  .reviews-slider .slick-next {
    right: 10px;
  }

  .reviews-section {
    height: 600px;
  }
  /* Footer */
  .site-footer .first-column {
    width: 45%;
    margin-left: 11px;
  }
  .site-footer .second-column {
    width: 45%;
    margin-right: 11px;
  }

  .site-footer #menu-footer-chunk2-1 li:last-child {
    left: 11px;
  }

  /* Contact */
  .contact-section .subtitle {
    width: 80%;
  }
}

@media (max-width: 320px) {
  /* ABout section*/
	.about-title {
		width: 110px;
		height: 120px;
		font-size: 24px;
		right: 40%;
	}

  .practice-group .title {
    margin: 60px 0 27px 0;
  }

  .reviews-section {
    height: 490px;
  }

  .provider-blob {
    transform: none !important;
  }

  .contact-section {
    height: 940px;
  }
}

@media (max-width: 280px) {
  /* Reviews Slider */
  .reviews-section p {
    font-size: 10px;
    margin: 0;
  }
  /* Footer */
  .powered-section {
    flex-direction: column;
  }
}

