/* ======================= -------- Contents -------- ==========================
1.0 - GENERAL STYLES
2.0 - HERO
3.0 - IMAGE LEFT - CONTENT RIGHT
4.0 - CONTENT WITH CIRCLE IMAGES
	4.1 - GENERAL CIRCLE IMAGE STYLES
	4.2 - CIRCLE IMAGES LEFT - CONTENT RIGHT
	4.2 - CIRCLE IMAGES RIGHT - CONTENT LEFT
5.0 - SECTION SPLIT WITH DOUBLE CONTENT BLOCKS
6.0 - SLIDER - MODELS
7.0 - SLIDER - ACCESSORIES
8.0 - SLIDER - PRODUCTS
9.0 - STYLES FROM Page - HOME
	9.1 - SECTION CTA
	9.2 - ENQUIRY FORM
*/

/* ======================= 1.0 - General Styles  ========================== */
select,
option {
  color: #fff;
}

/* ======================= 2.0 - Hero  ==================================== */
.innerpage-hero {
  height: calc(85vh - 110px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #e9e9e9;
  position: relative;
  margin-bottom: 170px;
}
.innerpage-hero-content {
  max-width: 1200px;
  width: calc(100% - 120px);
  margin: 0 auto;
  text-align: center;
  z-index: 3;
  color: #ffffff;
}
.innerpage-hero-content .content-hero {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-hero hgroup {
  width: 55%;
  padding-right: 40px;
  text-align: left;
}
.content-hero h1 {
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
  line-height: 1rem;
}
.content-hero p {
  width: 100%;
  margin: 40px auto 20px;
  font-size: 2rem;
  font-weight: 600;
}
.hero-image {
  width: 41%;
}

.hero-image-md {
  width: 45%;
}
.hero-image img {
  width: 100%;
  height: auto;
}
.hero-innerpage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 30%);
  display: block;
  z-index: 1;
}
.img-hero-innerpage {
  position: absolute;
  width: 100%;
  height: calc(85vh - 110px);
  pointer-events: none;
  overflow: hidden;
  top: 0;
  left: 0;
}
.img-hero-innerpage img {
  width: 100%;
  height: auto;
  position: absolute;
  object-fit: cover;
}
.img-hero-innerpage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================= 3.0 - MEDIA BLOCK ========================== */
/* ======================= Image Left - Content Right  ========================== */
section.media-block {
  position: relative;
  padding: 50px 0 170px;
}
section.media-block .inner-wide {
  display: flex;
  justify-content: flex-end;
  max-width: 1700px;
}
.media-block-img {
  position: absolute;
  width: 100%;
  max-width: 1282px;
  height: 930px;
  background-color: #f2f2f2;
  border-radius: 0 20px 20px 0;
}
.media-block-img picture {
  width: 100%;
  max-width: 1000px;
  height: 930px;
  position: relative;
  left: 0px;
  top: 0px;
  opacity: 1;
}
.media-block-img picture * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 20px 20px 0;
}
.media-block-content {
  max-width: 550px;
  width: 100%;
  padding: 50px 50px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 0px 50px -2px rgba(2, 2, 2, 0.2);
  margin-top: 100px;
  margin-right: 100px;
}
.media-block-content h2 {
  font-weight: 600;
  line-height: 34px;
}

/* ======================= 4.0 - Content with Circle Images ========================== */
/* ======================= 4.1 - General Circle Image styles  ========================== */
.content-circles {
  width: 100%;
  padding: 100px 0 100px;
}
.inner-circle {
  width: 100%;
  display: flex;
}
.circle-block-img {
  width: 50%;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 0;
}
.inner-circle .content-holder .content {
  width: 100%;
  max-width: 600px;
  padding: 0px 50px 50px;
}
.inner-circle .content-holder h2 {
  font-weight: 600;
  line-height: 34px;
}

.circle-block-img picture * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 10px solid #fff;
}
ul.useful-links {
  margin: 35px 0;
}
ul.useful-links li {
  color: var(--text);
  border-bottom: var(--text) 1px solid;
  margin: 2px 0;
}
ul.useful-links li a {
  padding: 15px 0;
  position: relative;
  display: block;
  color: var(--text);
}
ul.useful-links li a:after {
  content: "";
  background: url("http://sxau.boostbery-dev.com/wp-content/uploads/2024/07/arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 21px;
  height: 21px;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  position: absolute;
}
/* ======================= 4.2 - Circle Images Left - Content Right  ========================== */
.circles-left .circle-block-img {
  order: 1;
}
.circles-left .inner-circle .content-holder {
  width: 50%;
  justify-content: flex-start;
  display: flex;
  position: relative;
  z-index: 4;
  align-items: center;
  order: 2;
}
.circles-left .circle-block-img picture:first-child {
  width: 110%;
  aspect-ratio: 1/1;
  position: relative;
  left: -7vw;
  top: 0px;
  opacity: 1;
  display: block;
}
.circles-left .circle-block-img picture:last-child {
  width: 20vw;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 2vw;
  bottom: 2vw;
  opacity: 1;
  display: block;
}
/* ======================= 4.3 - Circle Images Right - Content Left  ========================== */
.circles-right .circle-block-img {
  order: 2;
}
.circles-right .inner-circle .content-holder {
  width: 50%;
  justify-content: flex-end;
  display: flex;
  position: relative;
  z-index: 4;
  align-items: center;
  order: 1;
}
.circles-right .circle-block-img picture:first-child {
  width: 110%;
  aspect-ratio: 1/1;
  position: relative;
  right: -7vw;
  top: 0px;
  opacity: 1;
  display: block;
}
.circles-right .circle-block-img picture:last-child {
  width: 20vw;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 2vw;
  bottom: 2vw;
  opacity: 1;
  display: block;
}

/* ======================= 5.0 - Section Split with Double Content blocks  ========================== */
section.media-block-03 {
  padding: 150px 0;
}

section.media-block-03 .inner-wide {
  display: flex;
  justify-content: center;
  position: relative;
}
section.media-block-03 .ear-right {
  width: 400px;
  height: auto;
  position: absolute;
  z-index: 0;
  right: 76px;
  top: 125px;
}
section.cf.block-enquiry h2 {
  font-size: 38px;
}
.media-block-03-img {
  position: absolute;
  width: 50%;
  height: 1000px;
  background-color: #f2f2f2;
  border-radius: 0 20px 20px 0;
}
.media-block-03-img picture {
  width: 50%;
  height: 760px;
  left: 0px;
  top: 0px;
  opacity: 1;
}

.media-block-03-img picture * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 20px 20px 0;
}

.media-block-03-content {
  max-width: 580px;
  width: 100%;
  padding: 50px 50px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 0px 50px -2px rgba(2, 2, 2, 0.2);
  margin-top: 100px;
  z-index: 2;
  position: relative;
}

.media-block-03-content h2 {
  font-weight: 600;
}
.further-content-block {
  margin-left: 20%;
}
.media-block-03-content ul,
.media-block-bullets ul {
  list-style: none;
  margin-bottom: 20px;
}
.media-block-03-content ul li,
.media-block-bullets ul li {
  position: relative;
  padding-left: 30px;
  line-height: 1.3em;
  margin: 18px 0;
}
.media-block-03-content ul li:before,
.media-block-bullets ul li:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 11px;
  translate: 0 -50%;
  background: url(http://sxau.boostbery-dev.com/wp-content/uploads/2024/07/background-ear-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

/* ======================= 6.0 - Slider - Models  ========================== */
section.models {
  padding: 50px 0 150px;
}

section.models .section-title {
  text-align: center;
  /* margin-bottom: 80px; */
}

section.models .section-title h2 {
  font-size: 38px;
  font-weight: 600;
  margin: 0;
}

.slider-models .slick-list {
  padding: 40px 0px !important;
}

/* the slides */
.slider-models .slick-slide {
  margin: 0 20px;
}

/* the parent */
.slider-models .slick-slider .slick-list {
  margin: 0 -20px;
}

ul.models-block li {
  display: flex;
  flex-direction: column;
  background-color: #e9e9e9;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0px 0 29px -2px rgba(2, 2, 2, 0.04);
}

.models-media {
  margin-bottom: 30px;
}

ul.models-block li picture {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  padding: 50%;
}
ul.models-block li picture * {
  display: block;
  height: 101%;
  width: 101%;
  position: absolute;
  object-fit: cover;
  left: 50%;
  top: 50%;
  object-position: center center;
  transform: translateX(-50%) translateY(-50%);
}

ul.models-block li h3 {
  font-weight: 600;
}

ul.models-block li p {
  margin-bottom: 0;
}

ul.models-block li a.teal-button {
  margin: 40px 0 0;
  display: inline-flex;
  max-width: 190px;
  width: 100%;
}

.slider-models button.slick-prev.slick-arrow {
  display: flex;
  justify-content: center;
  left: -50px;
}

.slider-models button.slick-next.slick-arrow {
  display: flex;
  justify-content: center;
  right: -100px;
}

.slider-models .slick-prev:before {
  padding: 10px;
  background-color: #dfdfdf;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.slider-models .slick-next:before {
  padding: 10px;
  background-color: #dfdfdf;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* ======================= 7.0 - Slider - Accessories  ========================== */
section.accessories {
  padding: 50px 0 50px;
}

section.accessories .section-title {
  text-align: center;
  /* margin-bottom: 80px; */
}

section.accessories .section-title h2 {
  font-size: 38px;
  font-weight: 600;
  margin: 0;
}

.slider-accessories .slick-list {
  padding: 40px 0px !important;
}

/* the slides */
.slider-accessories .slick-slide {
  margin: 0 20px;
}

/* the parent */
.slider-accessories .slick-slider .slick-list {
  margin: 0 -20px;
}

ul.accessories-block li {
  display: flex;
  flex-direction: column;
  background-color: #e9e9e9;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0px 0 29px -2px rgba(2, 2, 2, 0.04);
}

.accessories-media {
  margin-bottom: 30px;
}

ul.accessories-block li picture {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  padding: 50%;
}

ul.accessories-block li picture * {
  display: block;
  height: 101%;
  width: 101%;
  position: absolute;
  object-fit: cover;
  left: 50%;
  top: 50%;
  object-position: center center;
  transform: translateX(-50%) translateY(-50%);
}

ul.accessories-block li h3 {
  font-weight: 600;
  margin-bottom: 0;
}

ul.accessories-block li a.teal-button {
  margin: 30px 0 0;
  display: inline-flex;
  max-width: 190px;
  width: 100%;
}

.slider-accessories button.slick-prev.slick-arrow {
  display: flex;
  justify-content: center;
  left: -50px;
}

.slider-accessories button.slick-next.slick-arrow {
  display: flex;
  justify-content: center;
  right: -100px;
}

.slider-accessories .slick-prev:before {
  padding: 10px;
  background-color: #dfdfdf;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.slider-accessories .slick-next:before {
  padding: 10px;
  background-color: #dfdfdf;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* ======================= 8.0 - Slider - Products  ========================== */
section.products {
  padding: 150px 0;
  background-color: whitesmoke;
}

section.products .section-title {
  text-align: center;
  /* margin-bottom: 80px; */
}

section.products .section-title h2 {
  font-size: 38px;
  font-weight: 600;
  margin: 0;
}

.slider-products .slick-list {
  padding: 40px 0px !important;
}

/* the slides */
.slider-products .slick-slide {
  margin: 0 20px;
}

/* the parent */
.slider-products .slick-slider .slick-list {
  margin: 0 -20px;
}

ul.products-block li {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0px 0 29px -2px rgba(2, 2, 2, 0.04);
}

.products-media {
  margin-bottom: 30px;
}

ul.products-block li picture {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  padding: 50%;
}
ul.products-block li picture * {
  display: block;
  height: 101%;
  width: 101%;
  position: absolute;
  object-fit: cover;
  left: 50%;
  top: 50%;
  object-position: center center;
  transform: translateX(-50%) translateY(-50%);
}

ul.products-block li h3 {
  font-weight: 600;
}

ul.products-block li p {
  margin-bottom: 0;
}

ul.products-block li a.teal-button {
  margin: 40px 0 0;
  display: inline-flex;
  max-width: 190px;
  width: 100%;
}

.slider-products button.slick-prev.slick-arrow {
  display: flex;
  justify-content: center;
  left: -50px;
}

.slider-products button.slick-next.slick-arrow {
  display: flex;
  justify-content: center;
  right: -100px;
}

.slider-products .slick-prev:before {
  padding: 10px;
  background-color: #dfdfdf;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.slider-products .slick-next:before {
  padding: 10px;
  background-color: #dfdfdf;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
/* ======================= 9.0 - Styles from Page - Home ========================== */
/* ======================= 9.1 - Section - CTA ========================== */

section.cta {
  padding: 80px 0;
  background: var(--teal);
  color: var(--white) !important;
  text-align: center;
}

section.cta hgroup {
  margin-bottom: 20px !important;
}

section.cta hgroup h2 {
  font-size: 38px;
  font-weight: 600;
}

section.cta .white-button {
  padding: 15px 40px;
  margin: 5px auto;
  border: 1px solid var(--white);
  color: var(--teal) !important;
  background-color: var(--white);
}

/* ======================= 9.2 - Enquiry Form  ========================== */
.block-enquiry {
  padding: 150px 0;
}

.block-enquiry .section-intro {
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.block-enquiry hgroup h2 {
  font-weight: 600;
}

.enquiry-form {
  background: var(--teal);
  padding: 60px 50px;
  border-radius: 20px;
  margin-top: 60px;
}

ul.enquiry-form-fields li {
  margin-bottom: 30px;
}

li.form-half {
  display: inline-block;
  width: calc(50% - 25px);
  margin-right: 20px;
}

li.form-full {
  width: 100%;
}

li.form-full textarea {
  padding: 10px 0;
  width: 100%;
  height: 200px;
  resize: none;
  outline: none;
  border: none;
}

ul.enquiry-form-fields li input,
ul.enquiry-form-fields li select,
ul.enquiry-form-fields li textarea {
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 1px solid #ffffff;
  padding: 0;
}

ul.enquiry-form-fields li label,
.option {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
}

input.btn-submit {
  display: block;
  padding: 14px 30px 14px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 800;
  text-align: center;
  border: none;
  border-radius: 30px !important;
  background-color: #ffffff;
  color: var(--teal);
  z-index: 1;
  position: relative;
  cursor: pointer;
}

:root :where(a:where(:not(.wp-element-button))) {
  text-decoration: none;
}

.hero-innerpage-overlay.new-inner-page-overlay {
  background: rgb(0 0 0 / 29%);
}

.contact-sticky {
  border-radius: 20px 0 0 20px;
}

select#clinic,
select#customer {
  color: #fff !important;
}

.slider-accessories li.slick-slide {
  text-align: center;
}

.teal-button {
  padding: 12px 60px 11px 40px;
}
ul.useful-links li:hover a {
  padding-left: 10px;
  color: var(--teal);
}

ul.useful-links li a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h2 {
  font-size: 30px !important;
}
