body {
	padding: 0;
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	color: #1F2A37;
	background: #F8F6EF;
}

.navList, .navList li{
	display: block;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

p {
	padding: 0;
	margin: 0;
}

button {
	border: none;
	background: none;
	cursor: pointer;
}

a:active, a:focus, button:active, button:focus {
	outline: none;
}

.hx-head {
  background: linear-gradient(rgba(31, 42, 55, 0.55), rgba(31, 42, 55, 0.55)), url(../img/hx-head.webp) no-repeat center center;
  background-size: 120%;
  padding: 40px 0 80px;
  color: #F8F6EF;
}

.hx-head .hx-brand {
	color: #F8F6EF;
  font-size: 20px;
  font-weight: 700;
}

.hx-head .navList {
    display: flex;
  justify-content: end;
  margin-top: 5px;
}

.hx-head .navItem {
	margin-left: 30px;
}

.hx-head .navItem a {
	position: relative;
	color: #F8F6EF;
	font-size: 20px;
  	font-weight: 500;
	transition: 0.5s;
}

.hx-head h1 {
	font-weight: 900;
	font-size: 80px;
	margin-top: 100px;
	margin-bottom: 20px;
  	text-align: center;
}

.hx-head p {
	font-weight: 600;
	font-size: 25px;
  	text-align: center;
	margin-bottom: 80px;
}

.btn-cta { 
	background: #1F2A37;
    border-radius: 100px;
	font-weight: 600;
    font-size: 25px;
    color: #F8F6EF;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
	width: 300px;
    height: 65px;
    transition: 1s;
}

.btn-cta:hover {
	background: #CFAE4E;
    color: #1F2A37;
    transition: 1s;
}

section {
	padding: 60px 0;
}

h2 {
	text-align: center;
	font-weight: 900;
	font-size: 60px;
	margin-bottom: 40px;
}

.media-box {
	position: relative;
	width: 100%;
	height: 454px;
	overflow: hidden;
	border-radius: 20px;
}

.media-box img {
  width: 170%;
	position: absolute;
	top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.sect-about p {
	text-align: center;
}

.kpi-card h3 {
	font-weight: 600;
	font-size: 40px;
	text-align: center;
}

.kpi-card p {
	text-align: center;
}


.scope-card {
	position: relative;
	text-align: center;
	background: #CFAE4E;
    color: #F8F6EF;
	border-radius: 15px;
	padding-bottom: 30px;
	box-shadow: 10px 5px 5px rgba(44, 36, 24, 0.25);
}

.scope-card .media-box {
	width: 100%;
	height: 200px;
	margin: 0 auto;
	margin-bottom: 20px;
	border-radius: 0;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.scope-card img {
	object-fit: cover;
    display: block;
	width: 120%;
	height: auto;
}

/* .scope-card.one img {
	width: 120%;
	height: auto;
}

.scope-card.two .media-box img, .scope-card.three .media-box img  {
	height: 130%;
} */

.scope-card p:first-of-type {
	font-weight: 600;
	font-size: 30px;
	margin-bottom: 10px;
}

.scope-card p {
	padding: 0 20px;
}

.sect-pitch {
	width: 100%;
	background: #CFAE4E;
    color: #F8F6EF;
    margin: 60px 0; 
}

.sect-pitch p {
	font-weight: 900;
	font-size: 30px;
	text-align: center;
	margin-bottom: 40px;
}

.sect-faq .sect-faq-card {
    border: 2px solid #1F2A37;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
}

.sect-faq .sect-faq-card p:first-child {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}







.sect-reviews .media-box img {
	width: 120%;
}

.review-quote {
	margin-bottom: 20px;
}

.review-quote b {
	font-size: 25px;
}



.sect-contact {
	padding-bottom: 40px;
}

.sect-contact h3 {
	font-weight: 700;
	font-size: 30px;
	margin-bottom: 30px;
}

.sect-contact .contact-line {
	align-items: center;
	margin-bottom: 10px;
}

.sect-contact .contact-line p {
	margin-left: 10px;
}

.form-card {
	padding: 20px;
    background: #F8F6EF;
	border-radius: 20px;
	box-shadow: 10px 5px 5px rgba(44, 36, 24, 0.25);
}

.form-shell {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.duo {
    gap: 20px;
}

.form-shell input,
.form-shell textarea {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #1F2A37;
    padding: 0 25px;
    border: 1px solid #1F2A37;
    border-radius: 100px;
    background: #F8F6EF;
    transition: 0.5s;
    margin-bottom: 0;
}

.form-shell input {
    height: 50px;
}

.form-shell textarea {
    height: 120px;
    padding: 15px 25px;
    border-radius: 25px;
    resize: vertical;
}

.form-shell input:focus,
.form-shell textarea:focus {
    outline: none;
    border: 1px solid #CFAE4E;
}

.form-shell input.error,
.form-shell textarea.error,
.form-shell input.error:focus,
.form-shell textarea.error:focus {
    border: 1px solid #E57373;
}

#privacyConsent.error {
    box-shadow: inset 0 0 0 1px #E57373;
    outline: none;
}

.form-shell input::placeholder,
.form-shell textarea::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: rgba(47, 47, 47, 0.75);
}

.form-shell .btn-cta {
    width: 100%;
    height: 50px;
    border-radius: 100px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: 1s;
}

.form-shell .btn-cta:hover {
    transition: 1s;
    background: #CFAE4E;
}

.form-confirm {
    align-items: center;
    gap: 10px;
}

.form-confirm input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    border: 1px solid #1F2A37;
}

.form-confirm.error {
    border: 1px solid #E57373;
}

.form-confirm.error input[type="checkbox"] {
    border: 1px solid #E57373;
}

.form-confirm label {
    font-size: 16px;
	margin-bottom: 0;
    color: #1F2A37;
}

.form-confirm label a {
    color: #E57373;
    text-decoration: underline;
}

.form-confirm label a:hover {
    color: rgba(255, 69, 0, 0.5);
}

.app-foot {
  background: #1F2A37;
  color: #F8F6EF;
  padding: 40px 0;
  font-size: 15px;
}

.app-foot .hx-brand {
  font-size: 20px;
  font-weight: 700;
  color: #F8F6EF;
  text-decoration: none;
}

.app-foot .navLink {
  color: #F8F6EF;
  display: block;
  margin: 5px 0;
}

.app-foot .contact-line {
  margin-bottom: 10px;
  align-items: center;
}

.app-foot i {
  margin-right: 10px;
  color: #F8F6EF;
}

.app-foot p {
  color: #F8F6EF;
}



#app-loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 247, 229, 0.85);
    overflow: hidden;
    display: none;
}

#app-loader img {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    top: 50%;
    margin-top: -25px;
    z-index: 10001;
}

#overlay {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(31, 42, 55, 0.8);
	left: 0px;
	top: 0px;
	cursor: pointer;
	z-index: 10000;
}

#overlay .all {
	position: absolute;
	width: 290px;
	background: #F8F6EF;
	border-radius: 5px;
	padding: 35px 55px;
	left: 50%;
	top: 50%;
	margin-left: -145px;
}

#overlay.overlay__reviews .all {
	margin-top: -95.5px;
}

#overlay.overlay__question .all, #overlay.overlay__doctor .all {
	margin-top: -118.5px;
}

#overlay.overlay__sale .all {
	margin-top: -130px;
}


#overlay .all .box-modal_close {
	margin-left: 240px;
}

#overlay .all .fa-check-circle {
	display: block;
	color: #CFAE4E;
	font-size: 55px;
	margin: 0 auto;
}

#overlay .all .title {
	font-weight: 600;
	font-size: 20px;
	margin-top: 20px;
	text-align: center;
}

#overlay .all .text {
	font-size: 16px;
	margin-top: 10px;
	text-align: center;
}

label.error {
	position: absolute;
	font-size: 12px;
	color: #E57373;
}


.info h3 {
	font-weight: 600;
	font-size: 25px;
	margin-top: 20px;
}



.cookies {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: min(92vw, 380px);
  background: #F8F6EF;
  border: 1px solid rgba(31, 42, 55, 0.08);
  box-shadow: 0 8px 24px rgba(31, 42, 55, 0.12);
  border-radius: 14px;
  z-index: 1000;
  display: none;         
  padding: 16px;
}

.cookies-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.cookies-body { text-align: left; }

.cookies-body h3 {
  font-size: 16px;
  line-height: 1.25;
  color: #1F2A37;
  margin: 0 0 6px 0;
}

.cookies-body p {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(47, 47, 47, 0.85);
  margin: 0;
}

.cookies-body a {
  color: #CFAE4E;
  text-decoration: underline;
}
.cookies-body a:hover { color: #CFAE4E; }

.cookies-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.cookies-actions .btn-cta {
  width: auto;           
  height: auto;            
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.cookies-actions .btn-cta.button-black {
  background: #1F2A37;
  color: #F8F6EF;
}

.cookies-actions .btn-cta:not(.button-black) {
  background: transparent;
  color: #1F2A37;
  border-color: rgba(31, 42, 55, 0.25);
}

.cookies-actions .btn-cta:hover {
  background: #CFAE4E;
  color: #1F2A37;
  border-color: #CFAE4E;
}
.cookies-actions .btn-cta.button-black:hover {
  background: #CFAE4E;
  color: #1F2A37;
}

.cookies-actions .btn-cta:focus-visible {
  outline: 2px solid #CFAE4E;
  outline-offset: 2px;
}

@media (max-width: 420px) {
  .cookies { left: 12px; bottom: 12px; padding: 14px; }
  .cookies-actions { gap: 8px; }
  .cookies-actions .btn-cta { padding: 9px 12px; font-size: 13px; }
}



.navToggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.navToggle span {
    width: 100%;
    height: 3px;
    background: #F8F6EF;
    transition: all 0.3s;
}

.navToggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
}

.navToggle.active span:nth-child(2) {
    opacity: 0;
}

.navToggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}





.sect-about.policy p {
    text-align: left;
}

.sect-about.policy h2 {
    font-size: 30px;
    font-weight: 600;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 10px;
}

.sect-about.policy p {
    margin: 0;
}