/*
Theme Name: Gawe
Theme URI: www.min-code.com
Author: MinCode
Author URI: https://www.min-code.com
Version: 1.0
Text Domain: www.min-code.com
*/


:root {
    --gold: #DCB063;
    --green: #29473F;
    --gradient: linear-gradient(106deg, #000 0.02%, #26433C 50%, #000 99.98%);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: black;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: "Readex Pro";
    color: black;
}

body.no-scroll {
    overflow: hidden;
}

h1 {
    font-size: 5.6rem;
    margin: 0;
    padding: 0;
}

h2 {
    color: #29473F;
    font-size: 4.6rem;
    line-height: 58px;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

h3 {
    font-size: 3rem;
    margin: 0;
    padding: 0;
}

h4 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
}

h5 {
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
}

p {
    color: #28453E;
    font-size: 1.8rem;
    line-height: 26px;
    margin: 0;
    padding: 0;
}

dl, ol, ul {
    margin-bottom: 0;
}

ul {
    font-size: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1470px;
    padding: 0 15px;
}

/* Dividers */

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mt-120 {
    margin-top: 100px;
}

.mb-120 {
    margin-bottom: 100px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.text-gold {
    color: var(--gold);
}

.text-gold-gradient {
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-gradient {
    background: linear-gradient(43deg, #332C24 -1.29%, #D5BC99 50.02%, #98846C 76.95%, #D5BC99 106.89%);
}

.block_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.block_title p {
    max-width: 60%;
    margin-top: 15px;
    text-align: center;
}

.block_title span {
    background: linear-gradient(90deg, #C58109 0.24%, #DCB063 48%, #DBA442 95.77%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main_button {
    background: var(--gold);
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    font-size: 1.6rem;
    border-radius: 14px;
    font-style: normal;
    font-weight: 400;
    color: white;
    transition: 0.3s;
    border: 1px solid transparent;
}

.hero_buttons a {
  min-width: 210px;
  justify-content: center;
  text-align: center;
}

.green_button {
    background: var(--green);
}

.main_button:hover {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

.btn_transparent {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn_transparent:hover {
    background: var(--gold);
    color: white;
    border: 1px solid var(--gold) !important;
}

.main_button i {
    display: inline-block;
    margin-left: 8px;
    font-size: 1.8rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.main_button:hover i {
    transform: translateX(4px);
}

/* Header */

.main-logo {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-logo .header_logo {
    max-width: 160px;
    object-fit: contain;
}

.navbar__menu {
    background: #00000033;
    box-shadow: 7px 4px 45.8px 0 rgba(51, 44, 36, 0.16);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    transition: 0.2s;
}

.navbar__menu.active {
  background: linear-gradient(106deg, #000 0.02%, #26433C 50%, #000 99.98%);
}

.bg__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-radius: 17px;
}

.navbar__menu .container {
    margin-top: 20px;
    max-width: 1470px;
    margin: 0 auto;
}

.navbar__menu__items {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar__menu__items ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin-bottom: 0;
}

.navbar__menu__items ul li a {
    font-size: 1.8rem;
    color: var(--gold);
    text-decoration: none;
}

.navbar__menu__items ul li {
    position: relative;
}

.navbar__menu__items ul li > a::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar__menu__items ul li > a:hover {
    color: var(--gold);
}

.navbar__menu__items ul li > a:hover::after,
.navbar__menu__items ul li.current_page_item > a::after {
    transform: scaleX(1);
}

.menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    padding: 15px;
    z-index: 1000;
    min-width: 260px;
}

.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.sub-menu li a {
    color: #ffffff;
    font-size: 1.4rem;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
}

.sub-menu li a:hover {
    color: #D67D12;
    background-color: rgba(255, 255, 255, 0.4);
}

.navbar__menu__items ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 24px;
    padding: 15px 0;
    transition: color 0.3s;
}

.navbar__menu__items ul li ul li.current_page_item > a::before,
.navbar__menu__items ul li ul li.current-menu-item > a::before,
.navbar__menu__items ul li ul li.current-menu-ancestor > a::before {
    content: none !important;
    border-top: none !important;
    top: 0;
}

.navbar__menu__items ul > li.current_page_item > a {
    color: white;
}

.navbar__menu__items ul li a:hover {
    color: white;
}

.navbar__menu__items ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    min-width: 150px;
}

.navbar__menu__items ul li ul li {
    display: block;
}

.navbar__menu__items ul li ul li a {
    padding: 10px 20px;
    font-size: 1.6rem;
    color: #666;
    transition: background-color 0.3s, color 0.3s;
}

.navbar__menu__items ul li ul li a::after {
    display: none;
}

.navbar__menu__items ul li ul li a:hover {
    background: #ececec;
    color: black;
}

.navbar__menu__items ul li:hover > ul {
    display: block;
}

.toogle_menu {
    display: none;
}

.contact_menu a {
    display: flex;
    align-items: center;
    font-weight: 700;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 14px;
    background: #DCB063;
    transition: 0.3s;
}

.contact_menu a span {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: white;
}

.contact_menu a:hover {
    background: #b18c4b;
}

.contact_menu a img {
    width: 20px;
    height: 20px;
}

/* End Header */

.hero_section .main_button:hover,
.hero_home .main_button:hover {
    color: white;
    border-color: white;
}

.hero_section,
.hero_home {
    background: linear-gradient(106deg, #000 0.02%, #26433C 50%, #000 99.98%);
    position: relative;
    display: flex;
    align-items: center;
}

.hero_section img {
    width: 100%;
    height: 100%;
}

.img_overlay {
    position: relative;
    width: 556px;
    height: 570px;
}

.img_overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000033;
}

.hero_right h1 {
    font-family: "Baskervville", sans-serif;
    font-size: 8rem;
    color: var(--gold);
    line-height: 92px;
}

.hero_right p {
    margin-top: 30px;
    color: white;
    font-size: 2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 50px;
}

.health_section .block_title,
.price_list .block_title {
  margin-bottom: 40px;
}

.hero_section .row {
  align-items: center;
}

.hero_section {
  height: 84vh;
  padding-top: 50px;
}

.hero_left p {
    margin-bottom: 78px;
    color: var(--gold);
    font-family: "Baskervville", sans-serif;
}

.hero_left p span {
    font-weight: 700;
}

.hero_home_left h1 {
    color: #FFF;
    font-family: Baskervville;
    font-size: 6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 70px;
    margin-bottom: 30px;
}

.hero_home_left h1 span {
    background: linear-gradient(90deg, #C58109 0.24%, #DCB063 48%, #DBA442 95.77%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Baskervville;
    font-size: 6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 70px;
}

.hero_home_left p {
    margin-bottom: 30px;
    color: var(--gold);
    font-family: "Baskervville", sans-serif;
}

.hero_home_left p span {
    font-weight: 700;
}

.hero_buttons {
  margin-top: 50px;
}

.hero_home_left .description {
    color: #FFF;
    font-family: "Readex Pro";
    font-size: 2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

.hero_home_right {
    display: flex;
    justify-content: flex-end;
    padding-left: 50px;
}

.hero_home_right .hero_content {
    position: absolute;
    background: #627A68;
    padding: 30px;
    bottom: -50px;
    left: 60px;
    color: white;
}

.equipment_left {
  text-align: right;
}

.hero_home_right .hero_content h3 {
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
}

.hero_home_right .hero_content p {
    margin-bottom: 15px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.hero_home_right .hero_content ul li {
    position: relative;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding-left: 30px;
    margin-bottom: 8px;
}

.hero_home_right .hero_content ul li:last-child {
  margin-bottom: 0;
}

.hero_home {
    height: 86vh;
    padding-bottom: 20px;
}

.hero_home_right .hero_content ul li::before {
    background-image: url('/wp-content/uploads/2026/02/charm_circle-tick.svg');
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 200px;
    row-gap: 80px;
}

.why_section .grid-2 {
    position: relative;
}

.why_section .grid-2::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #DCB063;
    transform: translateX(-50%);
}

.why_left {
  background-position: center;
  background-size: cover;
}

.why_number {
    border-radius: 200px;
    border: 2px solid #DCB063;
    display: flex;
    width: 84px;
    height: 84px;
    padding: 21px 0;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.why_number span {
    color: #DCB063;
    font-size: 40px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

.why_item h6 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #29473F;
  line-height: 34px;
}

.why_right {
    padding-left: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.why_section .row {
    margin-top: 50px;
}

.why_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smiles_destination .col-md-5 {
    padding-right: 27px;
}

.smiles_destination .col-md-5 img {
    height: 100%;
    object-fit: cover;
    height: 635px;
}

.more_images img:first-child {
    height: 254px;
    margin-bottom: 24px;
}

.more_images {
    padding-right: 27px;
}

s
.more_images img {
    height: 357px;
    align-self: stretch;
}

.more_images img {
    width: 100%;
    height: 357px;
    object-fit: cover;
    object-position: top;
}

.more_images2 img:first-child {
    margin-bottom: 32px;
}

.more_images2 img {
    width: 100%;
    height: 306px;
    object-fit: cover;
    object-position: center 20%;
}

.more_images2 img:last-child {
    height: 297px;
}

.smiles_presentation {
    margin-bottom: 120px;
}

.smiles_presentation .images_ba {
  padding-left: 50px
}

.ml-83 {
    padding-left: 83px;
}

.mr-83 {
    padding-right: 83px;
}

.smiles_presentation h3 {
    color: #28453E;
    font-family: Baskervville;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px; /* 175% */
    margin-top: 30px
}

.smiles_presentation p {
    margin-top: 6px;
    margin-bottom: 31px;
}

.smiles_before {
    display: flex;
    gap: 20px;
}

.smiles_before .smile_before_img,
.smiles_before .smile_after_img {
    width: 50%;
}

.smiles_before img {
  height: 320px;
  object-fit: cover;
}

.before_span {
    background: #F4F6F5;
}

.span_before span {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: #F4F6F5;;
    text-align: center;
    font-family: Baskervville;
    color: #DCB063;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 42px;
}

.span_after span {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: #F4F6F5;;
    text-align: center;
    font-family: Baskervville;
    color: #DCB063;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 42px;
}

.health_section .row {
    background: #DCB063;
}

/* Contact Section */

.contact_section .row {
    border: 1px solid #DCB063;
    background: #DCB063;
    padding-top: 30px;
    padding-right: 30px;
    align-items: flex-end;
}

.contact_section .col-md-7 {
  padding-bottom: 30px;
}

.contact_section h2 span {
    font-weight: 700;
}

.contact_section h2 {
    color: #28453E;
    font-family: Baskervville;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 57px;
    margin-bottom: 35px;
}
/* Contact Form wrapper */

/* Row */
.contact_form .d-flex {
    display: flex;
    gap: 14px;
    align-items: stretch;
}

/* Make CF7 wrap spans behave like columns */
.contact_form .wpcf7-form-control-wrap {
    flex: 1;
    display: block;
}

/* Inputs */
.contact_form .wpcf7-form-control.wpcf7-text,
.contact_form .wpcf7-form-control.wpcf7-number {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.20);
    color: #0F172A;
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact_form .acceptance {
  text-align: center;
}

.thank-you,
.not_found_page {
  height: 98vh;
  background: linear-gradient(106deg, #000 0.02%, #26433C 50%, #000 99.98%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.thank-you h1 {
  color: #FFF;
  font-family: Baskervville;
  font-size: 8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #C58109 0.24%, #DCB063 48%, #DBA442 95.77%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thank-you p {
  color: white;
  font-size: 2.2rem;
  line-height: 32px;
}

.thank-you a {
  margin-top: 60px;
  padding: 14px 50px;
}

.thank-you a:hover {
  color: white;
  border-color: white;
}

.not_found_page h2 {
  font-size: 10rem;
  font-weight: 700;
  color:#dcb063;
  margin-bottom: 50px;
}

.not_found_page h1 {
  margin-bottom: 30px;
}

.not_found_page p {
  color: white;
  margin-bottom: 50px;
}

.not_found_page a:hover {
  color: white;
  border-color: white;
}

/* Textarea */
.contact_form .wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    min-height: 140px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.20);
    color: #0F172A;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    resize: vertical;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact_form .wpcf7-form-control::placeholder {
    color: #667085;
}

/* Focus */
.contact_form .wpcf7-form-control.wpcf7-text:focus,
.contact_form .wpcf7-form-control.wpcf7-tel:focus,
.contact_form .wpcf7-form-control.wpcf7-textarea:focus {
    border-color: var(--green);
    background: #fff;
}

.contact_form .wpcf7-not-valid {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12) !important;
    background: #fff;
}

.contact_form .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 12px;
    color: #EF4444;
}

/* Consent text */
.contact_form p {
    margin: 14px 2px 14px;
    font-size: 1.4rem;
    line-height: 1.45;
    color: #373737;
}

/* Submit */
.contact_form .submit_btn {
    padding: 16px 20px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    background: var(--green);
    transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}

.contact_form .submit_btn:active {
    transform: translateY(1px);
}

/* Spinner positioning (CF7) */
.contact_form .wpcf7-spinner {
    display: block;
    margin: 10px auto 0;
}

.hero_home .row.gy-0.gx-0 {
  align-items: center;
}

.why_fixed {
    padding: 80px 0;
    background: var(--gradient);
}

.why_fixed h2 {
    color: #FFF;
    text-align: center;
    font-style: normal;
    font-weight: 500;
}

.why_fixed h2 span{
    background: linear-gradient(90deg, #C58109 0.24%, #DCB063 48%, #DBA442 95.77%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
    font-weight: 600;
}

.why_fixed h3 {
    margin-top: 51px;
    color: #DCB063;
    font-family: Baskervville;
    font-size: 3.2rem;
    font-style: italic;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 30px;
}

.why_fixed .row {
  align-items: center;
}

.why_fixed p {
    margin-top: 11px;
    color: white;
    margin-bottom: 67px;
}

.why_fixed .border_bottom {
    width: 100%;
    height: 1px;
    background: #DCB063;
    margin-bottom: 51px;
}

.fixed_right {
    padding-left: 80px;
}

.why_fixed .signature span {
    color: #DCB063;
    font-family: Baskervville;
    font-size: 32px;
    font-style: italic;
    font-weight: 600;
    line-height: 42px;
}

.why_fixed .signature p {
    position: relative;
    color: #FFF;
    font-family: Baskervville;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
    padding-left: 50px;
    margin-bottom: 0;
}

.why_fixed .signature p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: url('/wp-content/uploads/2026/02/Vector-26.svg') no-repeat center center;
    background-size: contain;
}

.prosthesis_section .prosthesis_item img {
    width: 150px;
    height: auto;
    display: flex;
    margin-bottom: 20px;
}

.prosthesis_section .prosthesis_item h2 {
    margin-bottom: 15px;
    color: #29473F;
    font-family: Baskervville;
    font-size: 32px;
    font-style: italic;
    font-weight: 600;
    line-height: 42px;
}

.prosthesis_section .prosthesis_item p {
    color: #29473F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 30px;
}

.prosthesis_section .prosthesis_item ul {
    list-style: none;
    padding-left: 15px;
}

.prosthesis_section .prosthesis_item ul li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 38px;
}

.prosthesis_section .block_title {
  margin-bottom: 40px;
}

.prosthesis_section .prosthesis_item:first-child ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: url('/wp-content/uploads/2026/02/material-symbols_close-rounded-1.svg') no-repeat center center;
    background-size: contain;
}

.prosthesis_section .prosthesis_item:last-child ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: url('/wp-content/uploads/2026/02/si_check-fill-1.svg') no-repeat center center;
    background-size: contain;
}

.prosthesis_section .prosthesis_item ul li p {
    margin-bottom: 0;
}

.steps_number {
    border-radius: 200px;
    border: 2px solid #DCB063;
    display: flex;
    width: 86px;
    height: 84px;
    padding: 21px 0;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.steps_number span {
    color: #DCB063;
    font-size: 49px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

.steps_section .grid-4 {
    gap: 79px;
}

.steps_item h3,
.steps_odd h3 {
    color: #29473F;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
}

.steps_item p,
.steps_odd p {
    color: #29473F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 32px;
}

.steps_item img {
    width: 100%;
    height: 203px;
    object-fit: cover;
}

.steps_odd img {
    width: 100%;
    height: 203px;
    object-fit: cover;
    margin-bottom: 29px;
}

.your_choose h2 {
    color: #29473F;
    text-align: center;
    font-family: Baskervville;
    font-size: 4.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 57px;
    margin-bottom: 22px;
}

.your_choose .row {
    background: rgba(98, 122, 104, 0.60);
}

.your_choose .row .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.your_choose p {
    color: #FFF;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 46px;
}

.your_choose .col-md-6 img {
    width: 69px;
    height: 69px;
    margin-top: 21px;
    margin-bottom: 40px;
}

.your_choose .choose_left {
    padding-left: 75px;
}

.your_choose .choose_left,
.your_choose .choose_right {
    display: flex;
}

.your_choose .choose_right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 25px;
}

.your_choose .choose_left img {
    width: 206px;
    height: 251px;
    flex-shrink: 0;
}

.your_choose .choose_right img {
    width: 250px;
    height: 304px;
}

.price_item img {
    width: 50%;
    object-fit: contain;
    margin-bottom: 15px;
}

.price_list .grid-3 {
    gap: 50px;
}

.price_list .price_item h3 {
    color: #29473F;
    font-family: Baskervville;
    font-size: 3.2rem;
    font-style: italic;
    font-weight: 600;
    line-height: 42px;
}

.your_choose .col-md-6 {
  margin-bottom: 70px;
}

.price_list .price_item h3 span {
    background: linear-gradient(90deg, #C58109 0.24%, #DCB063 48%, #DBA442 95.77%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Baskervville;
    font-size: 3.2rem;
    font-style: italic;
    font-weight: 700;
    line-height: 42px;
}

.price_list .price_item {
    position: relative;
    padding-top: 0px;
}

.price_list .price_item::after {
    content: "";
    position: absolute;
    top: 0;
    right: -24px;
    width: 1px;
    height: 100%;
    background: #DCB063;
}

.price_list .price_item:last-child::after {
    display: none;
}

.price_list .price_item ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.price_list .price_item ul li {
    position: relative;
    color: #29473F;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding-left: 30px;
    margin-bottom: 4px;
}

.price_item a {
  width: 100%;
  justify-content: center;
  background: linear-gradient(90deg, #C58109 0.24%, #DCB063 48%, #DBA442 95.77%);
}

.price_list .price_item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 24px;
    height: 24px;
    background: url('/wp-content/uploads/2026/02/si_check-fill.svg') no-repeat center center;
    background-size: contain;
}

.price_list .price_span {
    color: #29473F;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 30px;
}

.price_list .price_span span {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    color: var(--green)
}


.video-layout {
    display: flex;
    overflow: hidden;
}

.main-video {
    position: relative;
    width: 60%;
}

.main-video iframe {
    width: 100%;
    height: 500px;
}

.related-videos {
    overflow-y: auto;
    max-height: 500px;
    width: 40%;
    padding-left: 40px;
    padding-right: 20px;
}

.related-videos ul {
    list-style: none;
    padding: 0;
}

.related-videos ul li {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    transition: background-color .3s ease, border-color .3s ease;
}

.related-videos ul li.active {
    border: 1px solid #E1E1E1;
    background: #F4F6F5;
}

.related-videos ul li.active h4 {
    color: black;
}

.related-videos ul li img {
    width: 206px;
    height: 139px;
    object-fit: cover;
    margin-right: 20px;
}

.related-videos ul li h4 {
    color: #000000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-videos ul li h4 span {
    font-weight: 400;
}

.related-videos ul li p {
    color: #D2D2D2;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.related-videos::-webkit-scrollbar {
    width: 10px;
}

.related-videos::-webkit-scrollbar-track {
    background: #29473f1f;
    border-radius: 10px;
}

.related-videos::-webkit-scrollbar-thumb {
    background: #29473F;
    border-radius: 10px;
}

.related-videos::-webkit-scrollbar-thumb:hover {
    background: #29473F;
}

.related-videos {
    overflow-y: auto;
}

.before_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    row-gap: 20px;
    padding-top: 35px;
    border-bottom: 1px solid var(--gold);
}

.before_container:first-child {
    padding-top: 0;
}

.before_container:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* test mode */
.after_change {
    position: relative;
}

.after_change img {
    width: 100%;
    height: 543px;
    object-fit: cover;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 230px;
    margin: 0 auto;
    overflow: hidden;
}

.comparison-slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-before, .image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.label-before, .label-after {
    position: absolute;
    bottom: 0;
    padding: 8px 27px;
    background-color: #252846;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.label-before {
    left: 0;
    margin: 0;
}

.label-after {
    right: 0;
    margin: 0;
}

.image-after {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

.slider-handle {
    height: 5.2rem;
    width: 5.2rem;
    background: white;
    border: 0.48rem solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    user-select: none;
}

.slider-handle .arrow-left,
.slider-handle .arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-handle .arrow-left {
    left: 25%;
}

.slider-handle .arrow-right {
    right: 25%;
}

.line-top, .line-bottom {
    position: absolute;
    width: 2px;
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.line-top {
    top: 0;
    height: calc(49% - 2.1rem);
}

.line-bottom {
    bottom: 0;
    height: calc(49% - 2.1rem);
}

.comparison_item .before_title {
    margin-top: 2rem;
}

.before_content h3 {
    color: #DCB063;
    font-family: Baskervville;
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    line-height: 42px;
}

.before_content p {
    color: #28453E;
    font-family: "Readex Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-top: 10px;
}

.cases_left .d-flex img {
    width: 50%;
    height: 337px;
    object-fit: cover;
}

.cases_left {
    position: relative;
}

.cases_left img {
    height: 422px;
    object-fit: cover;
}

.cases_logo_box {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #28453E;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cases_logo_box img {
    width: auto;
    height: auto;
}

.cases_right {
    padding-left: 29px;
}

.list_buttons {
    margin-top: 40px;
}

.team_section h2{
    text-align: center;
    font-style: normal;
    font-weight: 600;
    background: linear-gradient(90deg, #C58109 0.24%, #DCB063 48%, #DBA442 95.77%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team_slider .swiper-slide {
    position: relative;
}

.team_slider .swiper-slide img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.team_slider .swiper-slide .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #D4DAD8;
    padding: 12px;
    color: white;
}

.team_slider .swiper-slide .content h3 {
    color: #29473F;
    text-align: center;
    font-family: Baskervville;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px;
}

.team_slider .swiper-slide .content p {
    color: #29473F;
    text-align: center;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.header_slider {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.header_slider .block_title {
  margin-bottom: 0;
}

.header_slider h2 {
    width: 90%;
}

.dots {
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.swiper-pagination-bullet-active {
  background: var(--green)
}

.header_slider .arrows_slider {
    max-width: 30%;
}

.first_row_image,
.second_row_image {
    width: 50%;
}

.first_row_image img {
    height: 459px;
    object-fit: cover;
}

.second_row_image img {
    height: 310px;
    object-fit: cover;
}

.equipment_section h3 {
    color: #29473F;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 12px;
}

.equipment_section p {
    color: #29473F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.equipment_section .col-md-6 .d-flex {
    gap: 20px;
}

.second_row_image img:first-child {
    margin-bottom: 20px;
}

.equipment_center {
    padding: 0 30px;
}

.equipment_right .col {
    margin-bottom: 130px;
}

.equipment_right .col:last-child {
    margin-bottom: 0;
}

/* Footer */

.footer {
    background: linear-gradient(106deg, #000 0.02%, #26433C 50%, #000 99.98%);
}

.faq_left {
    background-image: url(/wp-content/uploads/2026/02/Frame-2087327698.png);
    height: 55vh;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 34px;
    background-position: center 50%;
}

.faq_left h2 {
    color: #29473F;
    font-family: Baskervville;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 57px;
    margin-bottom: 12px;
}

.faq_left p {
    color: #29473F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 20px;
}

.faq_left .contact_form p {
    color: white;
    font-size: 12px;
    line-height: 18px;
}

.faq_left .contact_form .d-flex {
    flex-direction: column;
}

.faq_left .submit_button input,
.modal-content .submit_button input,
.contact_section .submit_button input,
.contact_page_left .submit_button input {
  width: 100%;
  border: 1px solid;
  transition:0.3s
}

.faq_left .submit_button input,
.contact_section .submit_button input {
  border-color: var(--green);
}

.modal-content .submit_button input:hover,
.faq_left .submit_button input:hover,
.contact_section .submit_button input:hover,
.submit_button input:hover {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.modal-content .acceptance {
  text-align: center;
}

.submit_button {
  position: relative;
}

.submit_button .wpcf7-spinner {
  position: absolute;
  left: 15px;
  top: 5px;
}

.faq_section form {
  margin-top: 40px;
}

.faq_right {
    padding-left: 82px;
}

.faq-accordion .faq-item {
    border-bottom: 1px solid #E5E5E5;
}

.faq-accordion .faq-item:first-child {
    border-top: 1px solid #E5E5E5;
}

.faq-accordion .faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    padding-left: 0px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-accordion .faq-header h3 {
    font-family: Baskervville;
    font-size: 24px;
    font-weight: 600;
    color: #29473F;
    margin: 0;
}

.faq-accordion .faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.faq-accordion .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-accordion .faq-icon svg {
    width: 24px;
    height: 24px;
}

.faq-accordion .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion .faq-content p {
    color: #565656;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 15px;
    padding-right: 40px;
}

.faq-accordion .faq-content p:last-child {
    margin-bottom: 20px;
}

.reviews_section .container {
    max-width: 1710px;
    padding-left: 15px;
    padding-right: 0;
    margin-left: auto;
    margin-right: 0;
}

.reviews_section .reviews_left img {
    width: 100px;
    height: 100px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px
}

.reviews_text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 42px;
}

.reviews_text span {
    font-size: 26px;
    display: inline-block;
}

.reviews_text span:nth-child(6n+1) {
    color: #4285F4;
}

/* albastru */
.reviews_text span:nth-child(6n+2) {
    color: #EA4335;
}

/* roșu */
.reviews_text span:nth-child(6n+3) {
    color: #FBBC05;
}

/* galben */
.reviews_text span:nth-child(6n+4) {
    color: #4285F4;
}

/* albastru */
.reviews_text span:nth-child(6n+5) {
    color: #34A853;
}

/* verde */
.reviews_text span:nth-child(6n) {
    color: #EA4335;
}

/* roșu */

.stars img {
    width: 15px !important;
    height: 15px !important;
}

.fb_text {
    font-size: 1.6rem;
}

.fb_text span {
    color: #587DBD;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
}

.reviews_left {
    position: relative;
    width: 252px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F4F6F5;
    padding: 20px;
}

.reviews_left::before {
    position: absolute;
    content: '';
    background-image: url(/wp-content/uploads/2026/02/Rectangle-1747.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}

.total_reviews {
    margin-top: 11px;
    color: #28453E;
    font-family: Baskervville;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.reviews_right {
    flex: 1;
    padding-left: 20px;
}

.reviews_left h3 {
    color: #28453E;
    font-family: Baskervville;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 37px;
}

.reviews_slider_1,
.reviews_slider_2 {
    margin-top: 20px;
}

.reviews_slider_1 .swiper-slide,
.reviews_slider_2 .swiper-slide {
    background: #F4F6F5;
    padding: 30px;
    height: auto;
}

.reviews_slider_1 .swiper-slide p,
.reviews_slider_2 .swiper-slide p {
    margin-top: 10px;
    color: #28453E;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    padding-right: 10px;
}

.reviews_slider_1 .swiper-slide p,
.reviews_slider_2 .swiper-slide p {
  height: 172px;
  overflow-y: overlay;
}

.comma svg {
  width: 14px;
}

.fb_reviews {
  margin-top: 60px;
}

.reviews_slider_1 .swiper-slide .profile,
.reviews_slider_2 .swiper-slide .profile {
  margin-top: 30px;
}

.reviews_slider_1 .swiper-slide .profile,
.reviews_slider_2 .swiper-slide .profile {
    display: flex;
    gap: 14px;
}

.page_content {
  margin-top: 80px;
  border-bottom: 1px solid var(--green);
  padding-bottom: 80px;
}

.page_content h2 {
  font-size: 34px;
  line-height: 55px;
  margin-bottom: 8px;
  margin-top: 50px;
}

.reviews_slider_1 .swiper-slide .profile_info h3,
.reviews_slider_2 .swiper-slide .profile_info h3 {
    color: #28453E;
    font-family: "Readex Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 5px;
}

.reviews_slider_1 .swiper-slide .profile img,
.reviews_slider_2 .swiper-slide .profile img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 46px;
}

.reviews_slider_1 .swiper-slide p,
.reviews_slider_2 .swiper-slide p {
    margin-bottom: 11px;
}

/* Arrow Slider Buttons */
.arrows_slider {
    max-width: 81%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.faq_section .block_title {
  margin-bottom: 50px;
}

.arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--green);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--green);
    flex-shrink: 0;
}

.arrow-btn:hover {
    background: var(--green);
    color: #fff;
}

.arrow-btn svg {
    width: 24px;
    height: 24px;
}

.footer {
    padding: 155px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .container {
    padding: 46px 68px;
    background: #28453E;
    box-shadow: 0 0 41.3px 0 rgba(0, 0, 0, 0.25);
    width: calc(100% - 30px);
    margin: auto
}

.footer_logo img {
    width: 150px;
    margin-bottom: 20px;
}

.social_item {
    display: flex;
    width: 58px;
    height: 58px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 44px;
    border: 1px solid rgba(220, 176, 99, 0.60);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social_item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(220, 176, 99, 0.8), rgba(220, 176, 99, 0.4));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

.social_item:hover::before {
    width: 150%;
    height: 150%;
}

.social_item svg {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.social_item:hover {
    border-color: #DCB063;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(220, 176, 99, 0.4), 0 0 20px rgba(220, 176, 99, 0.2);
}

.social_item:hover svg {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.social_item:hover svg path {
    fill: #1a1a1a;
}

.social_links {
    margin-top: 30px;
    display: flex;
    gap: 14px;
}

.social_item img {
    width: 22px;
    height: 22px;
}

.footer_menu h3 {
    color: #DCB063;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer_menu ul {
    margin-top: 30px;
}

.footer_menu ul li {
    margin-bottom: 19px;
}

.footer_left p{
    font-size: 1.6rem;
    font-weight: 300;
}

.footer_left{
    padding-right: 60px;
}

.footer_menu ul li a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    margin-bottom: 19px;
    transition: 0.3s;
}

.footer_menu ul li a:hover {
    text-decoration: underline;
}

.footer_menu ul li:last-child {
    margin-bottom: 0;
}

.footer_right {
    padding-left: 80px;
}

.footer_right .d-flex {
    gap: 92px;
}

.copyright {
    margin-top: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.copyright p {
    color: #DCB063;
    font-size: 1.6rem;
}

.terms {
    display: flex;
    gap: 20px;
}

.terms a {
    color: #DCB063;
    transition: 0.3s;
}

.terms a:hover {
    text-decoration: underline;
}

.health_section .health_timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0 40px;
}

.health_section .health_timeline::before {
    content: '';
    position: absolute;
    width: 100%;
    top: 173px;
    left: 0;
    height: 1px;
    border-top: 1px dashed #29473F;
    z-index: 1;
}

.health_section .health_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.health_section .health_image {
    width: 138px;
    height: 138px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e8e8e8;
    background: #fff;
    z-index: 2;
    margin-bottom: 15px;
}

.health_section .health_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.health_section .health_connector {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 40px;
    position: relative;
    z-index: 3;
}

.health_section .x_marker {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px solid #29473F;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.health_section .x_marker svg {
    width: 18px;
    height: 18px;
}

.health_section .health_item p {
    font-size: 1.4rem;
    color: #28453e;
    line-height: 1.6;
    max-width: 180px;
    margin-top: 10px;
}

/* Items 2 and 4 - vertical line extending down */
.health_section .health_item:nth-child(2),
.health_section .health_item:nth-child(4) {
    padding-top: 0;
}

.health_section .health_item:nth-child(2) .health_connector,
.health_section .health_item:nth-child(4) .health_connector {
    flex-direction: column;
    align-items: center;
    height: auto;
}

.health_section .health_item:nth-child(2) .health_connector::after,
.health_section .health_item:nth-child(4) .health_connector::after {
    content: '';
    display: block;
    width: 1px;
    height: 90px;
    background-color: #29473F;
    margin-top: 14px;
}

.health_section .health_item:nth-child(2) p,
.health_section .health_item:nth-child(4) p {
    margin-top: 10px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 151px;
}

.breadcrumbs span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.breadcrumbs span.active {
    color: #DCB063;
    font-family: "Readex Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.changes_slider .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.changes_slider .video-thumb {
    position: relative;
    display: block;
}

.changes_clients .dots {
    margin-top: 30px;
}

.your_choose .btn_transparent {
  padding: 14px 30px;
}

.changes_slider .video-thumb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-image: url('/wp-content/uploads/2026/02/logos_youtube-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    transition: transform 0.3s ease;
}

.changes_slider .video-thumb:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
}

.fixed_right .video-thumb {
    position: relative;
    display: block;
}

.fixed_right .video-thumb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-image: url('/wp-content/uploads/2026/02/logos_youtube-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    transition: transform 0.3s ease;
}

.fixed_right .video-thumb:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
}

.changes_slider .swiper-slide h3 {
    margin-top: 16px;
    color: #28453E;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

.services_list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  margin: 0 -15px;
}

.services_list .explorer_item {
  width: calc(33.3333% - 30px);
  margin: 0 15px;
}

.services_list .explorer_item:nth-child(1),
.services_list .explorer_item:nth-child(2) {
  width: calc(50% - 30px);
  margin: 0 15px;
}

.cta_item {
    margin-bottom: 30px;
}

.cta_item:nth-child(3){
    margin-bottom: 0;
}

.cta_item:last-child{
    margin-bottom: 0;
}

.cta_item p{
    color: #29473F;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.cta_item a{
    color: #29473F;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    transition: 0.3s;
}

.cta_item a:hover{
    text-decoration: underline;
}

.cta_item img {
    width: auto;
    height: 60px;
    margin-bottom: 10px;
}

.footer_contact .grid-2 {
    gap: 82px;
    row-gap: 0px;
}

.footer_menu.col1 {
  width: 50%;
}

.footer_menu ul.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
}

.footer_contact .row.gy-0.gx-0 {
  align-items: center;
}

.footer_left_contact h3 {
  color: var(--green);
  margin-bottom: 50px;
}

.cta_item .button {
    width: 50%;
    border-radius: 14px;
    font-size: 1.5rem;
    border: 1px solid #28453E;
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer_social_buttons {
  margin-top: 20px;
}

/* Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 50px 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 860px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s;
    position: relative;
    overflow: visible;
}

.modal-content h2 {
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 46px;
}

.modal-content .acceptance p {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

.modal-content .close {
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--gold);
    position: absolute;
    right: -19px;
    top: -17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content .close svg {
    stroke: white;
    width: 18px;
    height: 18px;
}

.modal-content .close:hover,
.modal-content .close:focus {
    background: var(--gold);
    text-decoration: none;
    cursor: pointer;
}

.modal-content .contact_form .wpcf7-form-control.wpcf7-text,
.modal-content .contact_form .wpcf7-form-control.wpcf7-tel {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

/* End Modal */

.diplomas .swiper-slide img {
    width: 100%;
    height: 341px;
    object-fit: cover;
}

.intro_clinics .row {
    background-color: #28453E;
}

.intro_clinics h2 {
    color: #DCB063;
    font-family: Baskervville;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
}

.intro_clinics p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.intro_left {
    display: flex;
}

.intro_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro_right img {
    width: 70px;
    height: 70px;
}

.intro_right .btn.main_button.popup:hover {
  color: white;
  border-color: white;
}

.reviews_section .block_title {
  margin-bottom: 50px;
}

.intro_right .main_button {
  min-width: 210px;
  text-align: center;
  justify-content: center;
}

.intro_right {
    padding-top: 20px;
    padding-left: 46px;
    padding-right: 120px;
    padding-bottom: 161px;
}

.intro_right img {
    margin-bottom: 106px;
}

.intro_right h2 {
    margin-bottom: 12px;
}

.intro_right p {
    margin-bottom: 60px;
}

.explorer_services .explorer_item {
    padding: 12px 12px 26px 12px;
    border: 1px solid #E1E1E1;
    background: #FFF;
}

.explorer_services .explorer_item .explorer_image {
    background: #D4DAD8;
    height: 295px;
    display: flex;
    align-items: center;
}

.explorer_services .explorer_item img {
    width: 100%;
    height: 64%;
    object-fit: contain;
}

.explorer_services .grid-2 {
    gap: 26px;
}

.explorer_services .grid-3 {
    margin-top: 26px;
    gap: 26px;
}

.explorer_services .explorer_item h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #DCB063;
    font-family: Baskervville;
    font-size: 32px;
    font-style: italic;
    font-weight: 600;
    line-height: 42px;
}

.explorer_services .explorer_item p {
    color: #29473F;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.service_link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 98;
}

.floating-buttons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    transition: transform .3s ease, box-shadow .3s ease;
    background: linear-gradient(90deg, #C58109 0.24%, #DCB063 48%, #DBA442 95.77%);
}

.floating-buttons a img {
    width: 24px;
    height: 24px;
}

/* Hero Page Header */
.hero_page {
    position: relative;
    min-height: 450px;
    padding: 180px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.hero_page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero_page .container {
    position: relative;
    z-index: 2;
}

.hero_page .breadcrumbs {
    margin-bottom: 20px;
}

.hero_page .breadcrumbs p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero_page .breadcrumbs a {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero_page .breadcrumbs a:hover {
    color: #DCB063;
}

.hero_page .breadcrumbs .separator {
    color: #DCB063;
    font-size: 1.2rem;
    margin: 0 4px;
}

.hero_page .breadcrumbs .last {
    color: #DCB063;
    font-size: 1.4rem;
    font-weight: 600;
}

.hero_page h1 {
    color: #DCB063;
    font-family: Baskervville;
    font-size: 75px;
    font-style: normal;
    font-weight: 500;
    line-height: 90px;
}

.hero_page .main_button:hover {
    background: transparent;
    color: #fff;
    border: 1px solid white;
}

.hero_page .btn_transparent:hover {
    background: #DCB063;
    color: #fff;
    border: 1px solid #DCB063;
}

@media (max-width: 768px) {
    .hero_page {
        min-height: 320px;
        padding: 140px 0 60px;
    }

    .hero_page h1 {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .hero_page {
        padding: 120px 0 40px;
    }

    .hero_page h1 {
        font-size: 4rem;
    }
}


/* Price list */

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar .sidebar_item {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}

.sidebar .sidebar_item:hover,
.sidebar .sidebar_item.active {
    background-color: var(--green);
}

.price_block {
    transition: background-color 0.3s ease;
    color: white;
}

.price_block:hover,
.price_block.active {
    background-color: var(--green);
}

.sidebar_item {
    background: #627A6899;
    margin-bottom: 16px;
    padding: 16px 24px;
}

.sidebar_item:last-child {
    margin-bottom: 0;
}

.sidebar_item span {
    display: none;
}

.sidebar_item h3 {
    font-size: 1.8rem;
    color: white;
}

.price_right {
    padding-left: 40px;
}

.price_block {
    background: #627A6899;
    padding: 40px;
    margin-bottom: 40px;
}

.price_block:last-child {
    margin-bottom: 0;
}

.price_block h3 {
    font-family: Baskervville;
    margin-bottom: 30px;
    font-size: 3.2rem;
    font-weight: 600;
}

.price_block .price_desc {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.price_block ul {
    list-style: none;
    padding-left: 0;
}

.price_block ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 18px;
    border-bottom: 1px solid white;
}

.price_block ul li:last-child {
    margin-bottom: 0;
}

.price_block ul li h4 {
    font-size: 2rem;
    font-weight: 400;
    width: 80%;
}

.price_block ul li span {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 140%;
    background: linear-gradient(90deg, #C58109 0.24%, #DCB063 48%, #DBA442 95.77%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price_right .notification {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 0;
}

/* End Price */

.comparison_layout .before_container {
    padding-top: 0;
    grid-template-columns: repeat(1, 1fr);
    border: none;
}

.comparison_layout .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    row-gap: 50px;
}

.contact_page_right {
    padding-left: 40px;
}

.contact_page_right img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center 30%;
}

.contact_page_left h2 {
    margin-bottom: 20px;
}

.contact_page_left .contact_form {
    margin-top: 50px;
}

.contact_page_left .contact_form .d-flex {
    margin-bottom: 30px;
}

.contact_page_left .contact_form .wpcf7-form-control.wpcf7-text, .contact_form .wpcf7-form-control.wpcf7-number {
    border: 1px solid #E1E1E1;
}

.contact_page_left .contact_form .wpcf7-form-control.wpcf7-textarea {
    border: 1px solid #E1E1E1;
    height: 163px;
}

.contact_page_left .contact_form .acceptance {
  text-align: left;
}

.hero_home_left {
    margin-bottom: 0px;
}

.images_echipament img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.images_echipament {
  background: #f5f7f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.align-center {
  align-items: center;
}

.content_echipament a {
  margin-top: 40px;
}

.pl-62 {
    padding-left: 62px;
}

.pr-62 {
    padding-right: 62px;
}

.content_echipament {
    margin-top: 30px;
    margin-bottom: 30px
}

.echipament_section .row {
    margin-bottom: 80px;
}

.echipament_section .row:last-child {
    margin-bottom: 0;
}

.echipament_section h2 {
    color: #DCB063;
    font-family: Baskervville;
    font-size: 32px;
    font-style: italic;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 20px;
}

.prosthesis_section .grid-2 {
    position: relative;
    gap: 100px;
}

.prosthesis_section .grid-2::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #DCB063;
    transform: translateX(-50%);
}

.footer_contact .grid-2{
    position: relative;
}

.footer_contact .grid-2::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #DCB063;
    transform: translateX(-50%);
}

.cases_description p{
    height: 150px;
    overflow-y: scroll;
}

.footer_right_contact{
    padding-left: 27px;
}
