/*
Theme Name: Dr. Mitachi
Theme URI: https://min-code.com
Author: MinCode Group
Author URI: https://min-code.com
Version: 1.0
Text Domain: #
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 62.5%;
}

:root {
    --blue: #1877F2;
    --dark: #1E1E1E;
    --dark-blue: #0d59bb;
}

body {
    font-size: 1.8rem;
    line-height: 150%;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    width: 100%;
    background: #141414;
    color: white;
}

.sticky_position {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    align-self: flex-start;
}

.d-flex {
    flex-wrap: wrap;
}

.h1,
h1 {
    font-size: 5rem;
    line-height: 140%;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 800;
}

.h2,
h2 {
    font-size: 4.5rem;
    line-height: 140%;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 800;
}

.h3,
h3 {
    font-size: 3.5rem;
    line-height: 140%;
    font-weight: 800;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.h4,
h4 {
    font-size: 2.8rem;
    line-height: 140%;
    font-weight: 800;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.h5,
h5 {
    font-size: 2.2rem;
    line-height: 140%;
    font-weight: 800;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.h6,
h6 {
    font-size: 2rem;
    line-height: 140%;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
    color: white;
}

p {
    font-size: 1.8rem;
    line-height: 150%;
    margin-bottom: 30px;
    color: white;
}

a {
    color: var(--blue);
    font-size: 1.8rem;
    line-height: 150%;
    transition: 0.3s;
    text-decoration: none;
}

a:hover {
    color: #0d59bb;
    transition: 0.3s;
}

ul {
    margin-bottom: 0;
}

b, strong {
    font-weight: 700
}

img {
    width: 100%;
    height: auto;
}

.container {
    max-width: 1600px;
    padding: 0 30px;
    margin: auto;
}

a.main_button {
    font-size: 1.6rem;
    line-height: 150%;
    padding: 20px 40px;
    text-decoration: none;
    display: block;
    width: fit-content;
    transition: 0.3s;
    font-weight: 700;
    border-radius: 15px;
    background: var(--blue);
    color: white;
}

a.main_button:hover {
    background: var(--dark-blue)
}

.mb-35 {
    margin-bottom: 35px;
}

.mt-30{
    margin-top: 30px;
}

.title_block h2 span {
    color: var(--blue)
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.divider-20 {
    height: 2rem;
}

.divider-30 {
    height: 3rem;
}

.divider-40 {
    height: 4rem;
}

.divider-60 {
    height: 6rem;
}

.divider-80 {
    height: 8rem;
}

.divider-90 {
    height: 9rem;
}

.divider-100 {
    height: 10rem;
}

.divider-120 {
    height: 12rem;
}

.header_menu .col-md-8 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding-left: 0;
    gap: 30px;
}

.main_menu ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: white;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.main_menu ul li a:hover {
    color: var(--blue)
}

.main_menu ul li.current_page_item a {
    color: var(--blue)
}

.header_button a {
    padding: 10px 22px;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid white;
    display: block;
    width: fit-content;
}

.header_button a:hover {
    background-color: var(--blue);
    border-color: var(--blue);
}

.align-center {
    align-items: center;
}

.right_menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header.active {
    position: sticky;
    width: 100%;
    top: 0;
    transition: transform 0.2s ease, background 0.2s ease;
    background: #000;
    z-index: 9999;
    padding: 20px 0;
}

/* 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.8);
}

.modal-content {
    background-color: #161616;
    margin: 15% auto;
    padding: 50px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 80%;
    max-width: 760px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s;
}

.modal-content h2{
    font-size: 30px;
}

.modal-content .close {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 40px;
    height: 40px;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    border-radius: 100%;
    background: var(--blue);
    position: absolute;
    right: -19px;
    top: -17px;
}

.modal-content .close:hover,
.modal-content .close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.modal-content input,
.modal-content textarea {
    border-color: #ccc
}

.modal-content textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
}

.modal-content .form_short {
    padding-left: 0;
    margin-top: 10px;
}

.modal-content .wpcf7-list-item label{
    color: white !important;
}

.mobile__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile__nav.active {
    right: 0;
}

.mobile__nav__inner {
    padding: 40px 20px;
    padding-top: 80px;
}

.close__mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 18px;
    color: white;
}

.mobile-menu li.current_page_item a {
  color: var(--blue)
}

@media (min-width: 1221px) and (max-width: 1366px) {
  .main_menu ul {
    gap: 20px;
  }
  .main_menu ul li a {
    font-size: 15px;
  }
  .site_logo img {
    height: 38px!important;
  }
}

@media (min-width: 1221px) {
    .mobile__menu {
        display: none;
    }
}

@media only screen and (max-width: 1220px) {
    .header_menu .col-md-5,
    .header_menu .col-md-8 {
        display: none;
    }
    .right_menu {
      margin-right: 30px;
      width: 50%;
    }
    .mobile__menu {
        position: absolute;
        display: block;
        height: 35px;
        width: 35px;
        background: var(--blue);
        left: auto;
        right: 15px;
        margin: auto;
        border-radius: 4px;
        cursor: pointer;
        z-index: 99;
        opacity: 1;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile__menu span {
        height: 2px;
        width: 20px;
        position: absolute;
        margin-left: 7px;
        margin-bottom: 1px;
        top: 12px;
        border-radius: 0;
        transition: .5s;
        background: white;
    }

    .mobile__menu span:nth-child(2) {
        top: 21px;
    }

    .header_icons {
        position: relative;
        padding-right: 52px;
        margin-top: -8px;
    }

    .menu__primary {
        display: none;
    }

    .header_menu > .d-flex {
        justify-content: space-between;
    }
}

.sticky_widget {
    position: fixed;
    right: 15px;
    bottom: 30px;
    z-index: 9999;
}

.sticky_element {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    padding: 18px;
    position: relative;
    margin-bottom: 12px;
}

.sticky_element a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 15px;
    box-shadow: 0 3px 3px #00000040;
    border-radius: 100%;
}

.phone.sticky_element {
    background: var(--dark);
}

.messenger.sticky_element {
    background: #0084FF;
}

.whatsapp.sticky_element {
    background: #25D366;
}

.site_logo img {
    height: 44px;
    width: auto;
}

.header {
    padding: 30px 0;
    position: relative;
}

footer {
    background: #000;
    padding-top: 150px;
}

.social_icons {
    gap: 20px;
    margin-bottom: 40px;
}

.social_icons img {
    width: 42px;
    height: 42px;
    transition: .3s
}

.social_icons img:hover {
    opacity: 0.6
}

.confidentials {
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.confidentials a {
    color: white;
}

.main_footer h4 {
    font-size: 2rem;
}

.confidentials a:hover {
    color: var(--blue)
}

.footer_logo {
    width: auto;
    height: 76px;
    margin-bottom: 50px
}

.map {
    margin-bottom: -70px;
}

.map iframe {
    border-radius: 10px;
    filter: grayscale(1);
}

.copyrights p,
.copyrights a {
    color: #A2A2A2;
    font-size: 15px;
    margin-bottom: 0;
}

.copyright h2 {
    font-size: 8.2cqw;
    color: #FFFFFF0D
}

.copyright.container {
    container-type: inline-size;
}

.main_footer {
    margin-bottom: 90px;
}

.main_footer ul {
    margin-top: 40px;
    list-style: none;
    padding-left: 0;
}

.main_footer ul li {
    margin-bottom: 12px;
    color: white;
}

.main_footer ul li a {
    color: white;
}

.main_footer ul li a:hover {
    color: var(--blue)
}

.footer_col3 ul li a img,
.footer_col3 ul li img {
  height: 18px;
  margin-top:6px;
  width: 28px;
}

.footer_col3 ul li a img.phone_footer {
  width: 22px;
  margin-right: 3px
}

.footer_col3 ul li a img.email_footer {
  padding: 1px;
}

.footer_col3 ul li a img.address_footer {
  margin-right: 6px;
  margin-top: 10px
}

.footer_col3 ul li img.program_footer {
  margin-top: -5px;
  margin-right: 7px;
}

.main_footer .footer_col3 ul li {
  margin-bottom: 15px;
}

.footer_col3 ul li a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer_col2 {
    transform: translateX(-10%);
}

.ba_img img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.ba_img div {
    margin: 20px 0;
    position: relative;
}

.before_img img,
.b_img img {
  border-radius: 10px 10px 0 0
}

.after_img img,
.a_img img {
    border-radius: 10px 10px 0 0
}

.before_img:after,
.b_img:after {
    content: 'înainte';
    color: white;
    font-size: 1.4rem;
    line-height: 16px;
    width: 100%;
    text-align: center;
    background: var(--blue);
    display: inline-block;
    border-radius: 0px 0px 10px 10px;
    padding: 10px
}

.after_img:after,
.a_img:after {
    content: 'după';
    color: white;
    font-size: 1.4rem;
    line-height: 16px;
    width: 100%;
    text-align: center;
    background: var(--blue);
    display: inline-block;
    border-radius: 0px 0px 10px 10px;
    padding: 10px
}

.single_hero_slide {
    background: #000;
    border-radius: 20px;
    padding: 16px 36px;
    display: flex;
    align-items: center;
    height: 600px;
}

.single_hero_slide#hero-slide-3 {
  padding-right: 0;
  padding-bottom: 0;
  overflow: hidden;
}

#hero-slide-3 .hero_img img.single_hero_img {
    margin-bottom: -70px;
    border-bottom-right-radius: 20px;
}

.hero_img img.single_hero_img {
    height: 532px;
    border-radius: 10px;
    object-fit: cover;
}

.hero_content {
    padding-left: 20px;
    padding-right: 60px;
}

.hero_content p {
    font-size: 22px;
    line-height: 34px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.hero_content img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px
}

.single_why {
    background: #000;
    border-radius: 10px;
}

.single_why h6 {
    font-weight: 700;
    padding: 15px;
    padding-right: 0;
    font-size: 18px;
}

.why_img {
    height: 190px;
    background-position: center;
    background-size: cover;
    border-radius: 10px 0 0px 10px
}

.single_gallery_img img {
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
}

.testimonials_page .single_gallery_img img,
.cases_page .single_gallery_img img {
  height: 460px;
  object-position: top;
}

.width_equal a.main_button {
  min-width: 350px;
  text-align: center;
}

.title_block p {
    text-align: center;
    margin-top: 15px;
}

.cta_style1 .img_right img {
  height: 400px;
  object-fit: cover;
  border-radius: 0 20px 20px 0px
}

.cta_style1 > .container > .d-flex {
  padding-right: 0;
  border-radius: 20px;
  background: #0B0B0B;
  align-items: center;
}

.cta_style1 .form_contact {
  padding-left: 50px;
  padding-right: 50px;
}

.form_contact input {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    padding: 14px 20px;
    color: #0B0B0B;
    border-radius: 5px;
    background: #F6F6F7;
    border: 0;
    box-shadow: none;
}

.form_contact {
    padding-bottom: 40px;
}

.form_contact form p {
    margin-bottom: 20px;
    line-height: 18px;
}

.wpcf7-list-item {
    margin-left: 0;
    font-size: 14px;
}

.wpcf7-list-item label {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.wpcf7-list-item input {
    width: 14px;
}

.form_contact .send_button input {
    background: var(--blue);
    font-weight: 700;
    color: white;
    font-size: 16px;
    line-height: 24px;
}

.col-md-3.img_right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.col-md-3.img_right img {
    align-items: flex-end;
    height: 300px;
    width: auto;
    object-fit: contain;
}

.col-md-3.img_left img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transform: rotate(-26deg);
    margin-top: 40px;
}

.justify-center {
    justify-content: center;
}

.what_content {
    background: #0B0B0B;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 10px;
}

.what_content p {
  margin-bottom: 20px
}

.what_content h5 {
    display: flex;
    gap: 30px;
    align-items: anchor-center;
    margin-bottom: -15px;
}

.what_content img {
    width: 170px;
    margin-left: -50px;
    margin-top: -10px
}

.what_video {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.what_video a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.play_icon {
    width: 90px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.single_adv {
    border-radius: 20px;
    background: #0B0B0B;
    padding: 40px 20px;
    display: flex;
    align-items: center;
}

.single_adv p {
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    padding-left: 60px;
}

.single_adv p:before {
    content: '';
    background: url('/wp-content/uploads/2025/11/Img.svg');
    left: 0;
    top: -6px;
    width: 40px;
    height: 40px;
    position: absolute;
}

.what_advantages {
    margin-top: 30px;
}

.client_review .flex_review {
    background: #000;
    border-radius: 20px;
    padding: 25px;
}

.review_content h6 {
    font-weight: 700;
    font-style: italic;
    margin-bottom: 30px;
}

.review_content p {
    font-size: 16px;
    line-height: 26px;
    font-style: italic;
    margin-bottom: 50px;
}

.review_img {
    flex: 0 0 auto;
    width: calc(33.33333333% - 30px);
    margin-left: 30px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.review_content {
    align-items: center;
}

.review_content .col-md-9 {
    padding-right: 40px;
}

.ba_reviews img {
    height: 120px;
    object-fit: cover;
}

.b_img {
    margin-bottom: 30px;
}

.b_img,
.a_img {
    position: relative;
}

.socials_icon img {
    height: 40px;
    width: auto;
}

.socials_icon {
    margin-top: 30px;
    display: flex;
    gap: 30px;
}

.cta_form2 {
    background: #F6F6F7;
    border-radius: 10px;
    padding: 30px;
}

.cta_style2 h2 {
  font-size: 3.2rem;
  margin-bottom: 20px
}

.cta_style2 .form_flex {
    display: flex;
    flex-wrap: wrap;
}

.cta_style2 .form_flex .name_input,
.cta_style2 .form_flex .phone_input {
    width: 50%;
}

.cta_style2 .form_flex .name_input {
    padding-right: 10px;
}

.cta_style2 .form_flex .phone_input {
    padding-left: 10px
}

.cta_style2 input {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    padding: 14px 20px;
    color: #0B0B0B;
    border-radius: 5px;
    background: #FFFFFF;
    border: 1px solid #D2D2D2;
    box-shadow: none;
}

.cta_style2 .acceptance,
.cta_style2 .send_button {
    width: 100%;
}

.cta_style2 .wpcf7-list-item input {
    width: 14px;
}

.cta_style2 .wpcf7-list-item label {
    color: #000;
}

.cta_style2 form p {
    margin-bottom: 12px;
}

.contacts_footer .cta_form2 form p {
  color: white;
}

.cta_style2 .send_button input {
    background: var(--blue);
    font-weight: 700;
    color: white;
    font-size: 16px;
    line-height: 24px;
    border: 0;
}

.cta_style2 .send_button input:hover {
    background: var(--dark-blue)
}

.wpcf7-spinner {
    position: absolute;
    left: 10px;
    top: 15px;
}

.send_button {
    position: relative;
}

.send_button p {
    margin-bottom: 0 !important
}

.ortho_veneers {
    background: #000;
    border-radius: 20px;
    padding: 70px 85px;
}

.ortho_content p,
.veneers_content p {
    margin-bottom: 50px;
    margin-top: 30px;
    line-height: 32px;
}

.ortho_content {
    padding-right: 80px;
}

.veneers_content {
    padding-left: 80px;
}

.veneers_button {
    display: flex;
    justify-content: flex-end;
}

.service_bg {
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ortho_service {
    margin-bottom: 70px;
}

.footer_form .cta_form2 {
    background: transparent;
    padding: 0;
}

.contacts_footer .cta_style2 .wpcf7-list-item label {
    color: white;
}

.buttons_d-flex a img {
    width: 20px;
}

.buttons_d-flex a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    background: #EEEEEE;
    padding: 12px;
    justify-content: center;
    color: #000;
    border-radius: 5px;
    transition: .1s
}

.buttons_d-flex a:hover {
    background: var(--blue);
    color: white;
}

.buttons_d-flex a:hover img {
    filter: invert(1)
}

.buttons_d-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.social_buttons {
    margin-top: 50px;
}

.social_buttons h4 {
    margin-bottom: 20px;
    font-size: 26px;
}

.footer_form p.paragraph {
    margin-top: 0;
    margin-bottom: 30px;
    padding-right: 30px;
    font-size: 1.6rem;
}

.footer_form {
    padding-right: 20px;
    padding-bottom: 10px;
}

.footer_bg_img {
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video-layout {
    display: flex;
    overflow: hidden;
}

.main-video {
    position: relative;
    width: 60%;
}

.main-video iframe {
    width: 100%;
    height: 500px;
    /*margin-bottom: -8px;*/
    border-radius: 20px;
}

.related-videos {
    overflow-y: auto;
    max-height: 500px;
    width: 40%;
    padding-left: 60px;
}

.related-videos ul {
    list-style: none;
    padding: 0;
}

.related-videos ul li {
    border-left: 1px solid #4E4545;
    display: flex;
    align-items: center;
    padding: 16px 15px 16px 33px;
    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 {
    background-color: #0d0d0d;
    border-left-color: transparent;
}

.related-videos ul li img {
    width: 182px;
    height: 113px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 20px;
}

.related-videos ul li h4 {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 10px;
}

.related-videos ul li p {
    color: #D2D2D2;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.related-videos ul li span {
    border-radius: 4px;
    background: #161616;
    display: flex;
    padding: 2px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.related-videos {
    overflow-y: auto;
}

/* Scrollbar pentru Chrome, Edge, Safari */
.related-videos::-webkit-scrollbar {
    width: 8px; /* grosimea scroll-ului */
}

.related-videos::-webkit-scrollbar-track {
    background: #111; /* fundal track */
}

.related-videos::-webkit-scrollbar-thumb {
    background: #000; /* “bara” propriu-zisă */
    border-radius: 999px;
}

.related-videos::-webkit-scrollbar-thumb:hover {
    background: #222; /* la hover un pic mai deschis */
}

/* Scrollbar pentru Firefox */
.related-videos {
    scrollbar-width: thin;
    scrollbar-color: #000 #111; /* thumb / track */
}


.faq_answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 70px;
    padding-right: 30px;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq_item.active .faq_answer {
    max-height: 500px;
    opacity: 1;
}

.faq_question {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 30px;
    padding: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.faq_item {
    border-bottom: 1px solid #494949;
}

.faq_question span {
    font-size: 18px;
    color: #A4A4A4;
}

.faq_answer {
    padding-left: 70px;
    padding-right: 30px;
}

.faq_answer p {
    font-size: 16px;
}

.technologies_slider .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.technologies_slider .swiper-slide h3 {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
}

.technologies_slider .swiper-wrapper,
.services_slider .swiper-wrapper,
.grid_gallery .swiper-wrapper{
    transition-timing-function: linear !important;
}

.partners_logo .swiper-wrapper{
    transition-timing-function: linear !important;
}

.partners_logo{
    margin-top: 80px;
}

.partners_logo .swiper-slide img{
    width: 100%;
    height: 90px;
    object-fit: contain;
}

.equipment_section .arrows_slider {
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: 40px;
    margin-right: 80px;
}

.arrows_slider {
    display: flex;
    gap: 20px;
}

.arrows_slider .swiper-button-prev,
.arrows_slider .swiper-button-next {
    margin-top: 0;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrows_slider img {
    width: auto;
    height: 24px;
    display: block;
    pointer-events: none;
    user-select: none !important;
}

.arrows_slider .swiper-button-next img {
    transform: rotate(180deg);
}

.arrows_slider .swiper-button-next::after,
.arrows_slider .swiper-button-prev::after {
    display: none !important;
}

.services_slider {
    margin-bottom: 30px;
}

.services_slider .swiper-slide .service_img {
    position: relative;
}

.services_slider .swiper-slide {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.services_slider .swiper-slide::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgb(24 24 24 / 78%) 0%, rgb(0 0 0 / 71%) 40%, rgba(0, 0, 0, 0.10) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.link_to_service {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99
}

.service_slider_button {
  margin-top: 40px;
}

.home .problems_section {
  margin-top: 50px;
}

.services_slider .swiper-slide .service_img h3 {
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 3;
}

.services_slider .swiper-slide img {
    position: relative;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.container_slider {
    max-width: 1750px;
    margin-left: auto;
    margin-right: 0;
}

.reviews_slider .swiper-slide {
    display: flex;
    padding: 20px 20px 30px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    border-radius: 24px;
    border: 1px solid #202020;
    background: #0B0B0B;
}

.reviews_slider .swiper-slide h3 {
    color: white;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
}

.reviews_slider .swiper-slide .profile_user {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.reviews_slider .swiper-slide .profile_first {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews_slider .swiper-slide .profile_user .profile_img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 5px;
}

.reviews_slider .swiper-slide .profile_user .facebook_img {
    width: 29px;
    height: 29px;
    flex-shrink: 0;
    object-fit: contain;
}

.reviews_slider .swiper-slide p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}

.total_reviews {
    display: flex;
    width: 282px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 50px;
    padding: 12px;
    color: #1E1E1E;
    margin-top: 24px;
    margin-bottom: 35px;
}

.total_reviews p {
    color: #141414;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 0;
}

.stars {
    display: flex;
}

.stars img {
    width: auto;
    height: 12px;
}

.stars_total img {
    width: auto;
    height: 12px;
    transform: translateY(-2px);
}

.problem_item {
    padding: 20px;
    border-radius: 20px;
    background: #F6F6F7;
}

.problem_item .desc_text {
    margin-top: 57px;
    max-width: 60%;
    margin-left: auto;
    color: #1E1E1E;
}

.problem_item .pacient_img {
    position: absolute;
    top: -70px;
    left: 30px;
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #F6F6F7;
}

.before_problem,
.after_problem {
    width: 45%;
}

.before_problem p,
.after_problem p {
    font-size: 18px;
    font-style: normal;
    color: #1E1E1E;
    text-align: center;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 10px;
}

.before_problem img,
.after_problem img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
}

.before_after_case {
    display: flex;
    gap: 20px;
    align-items: center;
}

.problems_section .grid-2 {
    row-gap: 100px;
    column-gap: 48px;
}

.icon_before {
    margin-top: 30px;
}

.list_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 45px;
}

.know_item {
    border-radius: 20px;
    background: #000;
    overflow: hidden;
    height: 100%;
}

.know_item .title_know {
    background: #1877F2;
    text-align: center;
    padding: 22px;
}

.know_item h3 {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.know_left .know_item p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 38px;
    margin-bottom: 0;
}

.know_left {
    padding-right: 20px;
}

.know_item .cta_style2 .wpcf7-list-item label {
    color: white;
}

.know_item .cta_style2 .form_flex {
    flex-direction: column;
}

.know_item .cta_style2 .form_flex .name_input {
    width: 100%;
    padding-right: 0;
}

.know_item .cta_style2 .form_flex .phone_input {
    width: 100%;
    padding-left: 0;
}

.know_item .content_know {
    padding: 40px;
}

.know_item .content_know h4 {
    color: #FFF;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 37px;
}

.title_know h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.know_section .acceptance p {
  color: white!important
}

.know_item .cta_style2 .send_button input {
    padding: 28px;
}

.know_item .cta_style2 input {
    padding: 16px 20px 15px 20px;
}

.know_section .grid-2 {
    gap: 20px;
}

/* Discovery Section */

.discovery_team .discovery_left {
    padding-right: 28px;
    height: auto;
    display: flex;
}

.discovery_team .discovery_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.discovery_team .discovery_right {
    border-radius: 20px;
    background: #FFF;
    padding: 28px;
}

.discovery_team .discovery_right h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    color: #1E1E1E;
    margin-bottom: 25px;
}

.discovery_team .discovery_right p {
    color: #1E1E1E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0ș
}

.reviews_section .title_block p {
  margin-bottom: 20px;
  text-align: left;
}

.discovery_part_left {
    padding-right: 52px;
}

.discovery_team .arrows_slider {
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.discovery_slider .swiper-slide img{
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 20px;
}

.team_slider {
    margin-top: 38px;
}

.team_slider .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    object-position: 50% 28%;
}

.team_slider .swiper-slide h2 {
    margin-top: 30px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px; /* 135% */
}

.team_slider .swiper-slide h3 {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-block: 10px;
}

.team_slider .swiper-slide p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.team_slider .arrows_slider {
    justify-content: flex-end;
    align-items: flex-end;
    margin-right: 80px
}

.pagination_swiper{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 30px;
}

.certification_section .fraction-counter{
    display: flex;
    justify-content: flex-start;
    bottom: auto;
    left: auto;
    width: 50%;
    color: #BEBEBE;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 53px; /* 132.5% */
    text-transform: uppercase;
}

.certification_section .arrows_slider{
    justify-content: flex-end;
}

.gallery_slider .swiper-slide img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.gallery_slider .swiper-wrapper{
    transition-timing-function: linear !important;
}

.slider-wrapper {
    position: relative;
}

.slider-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to right,
    rgb(20, 20, 20) 0%,
    rgba(0,0,0,0) 100%
    );
}

.slider-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to left,
    rgb(20, 20, 20) 0%,
    rgba(0,0,0,0) 100%
    );
}

.patients_gallery .slider-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(
            90deg,
            #141414 -4.59%,
            rgba(38, 38, 38, 0.90) 6.39%,
            rgba(55, 55, 55, 0.80) 16.6%,
            rgba(72, 72, 72, 0.70) 27.07%,
            rgba(98, 98, 98, 0.60) 37.28%,
            rgba(100, 100, 100, 0.50) 47.75%,
            rgba(102, 102, 102, 0.40) 58.46%,
            rgba(104, 104, 104, 0.30) 68.18%,
            rgba(107, 107, 107, 0.20) 78.89%,
            rgba(109, 109, 109, 0.10) 89.6%,
            rgba(122, 122, 122, 0.00) 100%
    );
}

.patients_gallery .slider-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(270deg, #141414 -4.59%, rgba(38, 38, 38, 0.90) 6.39%, rgba(55, 55, 55, 0.80) 16.6%, rgba(72, 72, 72, 0.70) 27.07%, rgba(98, 98, 98, 0.60) 37.28%, rgba(100, 100, 100, 0.50) 47.75%, rgba(102, 102, 102, 0.40) 58.46%, rgba(104, 104, 104, 0.30) 68.18%, rgba(107, 107, 107, 0.20) 78.89%, rgba(109, 109, 109, 0.10) 89.6%, rgba(122, 122, 122, 0.00) 100%);
}

.dantura_left{
    padding-right: 37px;
}

.testimonials_page.patients_gallery .slider-wrapper::after,
.testimonials_page.patients_gallery .slider-wrapper::before,
.cases_page.patients_gallery .slider-wrapper::after,
.cases_page.patients_gallery .slider-wrapper::before {
  display: none;
}


.dantura_left .row{
    border-radius: 20px;
    background: #000;
    padding: 30px;
    height: 100%;
}

.bg_dantura{
    border-radius: 20px;
    background: #000;
    padding: 27px;
    height: 100%;
}

.dantura_right img{
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
}

.dantura_left h1{
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.dantura_left h1 b {
  color: var(--blue)
}

.dantura_left ul{
    margin-top: 20px;
    padding-left: 40px;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 20px
}

.dantura_left ul li {
  margin-bottom: 5px;
}

.dantura_left .col-md-7 {
  padding-right: 30px
}

.dantura_left p{
    margin-top: 30px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0;
}

.dantura_right h2{
    margin-block: 14px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
    margin-bottom: 5px;
}

.dantura_right p{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 0;
}

.speciality_hero{
    display: flex;
    gap: 12px;
}

.speciality_hero span{
    color:#999;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    border-radius: 5px;
    border: 1px solid #999;
    padding: 10px 20px;
}

.right_img img {
  width: 100%;
  margin-bottom: 70px;
  border-radius: 20px;
  height: 300px;
  object-fit: cover;
}

.right_img {
  text-align: center;
  margin-top: 10px;
}

.right_img a {
  width: 90%;
  margin: auto;
}

.experience_table{
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 10px;
    border: 1px solid #999;
    padding: 15px;
    gap: 20px;
}

.single_experience{
text-align: center;
}

.single_experience h3{
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 8px;
}

.single_experience p{
    color: #999;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 128.947% */
}

.single_experience span{
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    display: block
}

.client_review_dantura .review_img{
    margin-left: 0;
    margin-right: 30px;
}

.client_review_dantura .review_content .col-md-9{
    padding-right: 0;
    padding-left: 40px;
}

.hp_wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.text-and-images {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.single-image{
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
    gap: 20px;
    border-top: 1px solid #494949;
    text-decoration: none;
    color: white;
}

.single-image .arrow_hp {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

.single-image:hover .arrow_hp {
    opacity: 1;
    visibility: visible;
}

/* Mișcare instant la text */
.single-image .d-flex {
    transition: none !important;
}

/* Folosește margin-left în loc de padding-left */
.single-image:hover .d-flex {
    margin-left: 70px;
}


.single-image .image--inner {
    display: flex;
    font-size: 22px;
    cursor: pointer;
    transition: color .2s ease;
}

.single-image:hover .image--inner {
    font-weight: 600;
    color: white;
}

.hover-image {
    position: fixed;
    width: 386px;
    height: 292px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    opacity: 0;
    transform: scale(0.95);
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: flex-end;
}

.hover-image a{
    position: relative;
    bottom: -30px;
    border-radius: 5px;
}

.dantura_cta_style1 h2{
    margin-bottom: 30px;
    font-style: normal;
    font-weight: 700;
}

.dantura_cta_style1 .form_flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.dantura_cta_style1 .form_flex .acceptance,
.dantura_cta_style1 .form_flex .send_button {
  width: 100%;
}

.cta_style2 form p {
  color: #000
}

.modal .cta_style2 form p {
  color: white;
}

.problems_section .list_buttons a.main_button {
  min-width: 320px;
  text-align: center;
}

.acceptance p {
  font-size: 14px;
}

.dantura_cta_style1 .form_flex .phone_input,
.dantura_cta_style1 .form_flex .name_input {
  width: 50%;
}

.dantura_cta_style1 .form_flex .phone_input {
  padding-left: 10px;
}

.dantura_cta_style1 .form_contact {
    padding-bottom: 0px;
}

.dantura_cta_style1 .form_flex .name_input {
  padding-right: 10px;
}

.comparison_content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.comparison_item{
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #0B0B0B;
}

.comparison_item ul{
    list-style: none;
}

.comparison_item ul li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.first_comp ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #00b050;
}

.second_comp ul li::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #ff0000; /* roșu */
}

.comparison_item img{
    margin: 0 auto;
    width: 164px;
    height: 112px;
    aspect-ratio: 41/28;
}

.comparison_item h3{
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    margin-top: 10px
}

.content_comparison{
    padding: 26px;
}

.step_item:first-child{
    border-top: 1px solid #333;
}

.step_item {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 30px 0;
    border-bottom: 1px solid #333;
}

.step_left {
    display: flex;
    gap: 80px;
}

.step_left .step_number {
    color: #A4A4A4;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.step_content {
    display: flex;
    gap: 60px;
    color: #ccc;
    line-height: 1.6;
}

.step_content p{
    color: #F6F6F7;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.step_left h3{
    color: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.step_image {
    display: flex;
    justify-content: flex-end;
}

.step_image img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.text_style2{
    color: #FFF;
    font-size: 41px;
    font-style: normal;
    font-weight: 400;
    line-height: 62px;
}

.col-md-5.div-12.cta_form_title {
  padding-right: 50px;
}

.price_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    padding: 30px;
    border-radius: 24px;
}

.wpcf7-not-valid-tip,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 14px;
  text-align: center;
  margin-bottom: 7px;
}

.price_item span{
    color: #0B0B0B;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    text-transform: uppercase;
    display: block;
}

.price_item h3{
    color: #0B0B0B;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    margin-bottom: 15px;
}

.price_item p{
    color: #0B0B0B;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 53px; /* 132.5% */
    text-transform: lowercase;
    margin-bottom: 20px
}

.price_item p b{
    text-transform: uppercase;
    font-size: 30px
}

.price_item img{
    margin: 0 auto;
    width: 160px;
    object-fit: contain;
}

.price_item a{
    width: 100%;
    padding: 15px;
}

.price_item ul{
    margin-top: 30px;
}

.price_item ul li{
    color: #1E1E1E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 5px
}

.rate_section{
    background: #000;
    padding: 60px 0 80px;
}

/* Wrapper general */
.lp-calculator {
    max-width: 1440px;
    margin: 30px auto 50px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 60px;
    text-align: center;
    color: #000;
    margin-bottom: 0
}

/* Titlu */
.lp-calculator h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 33px;
    color: #1E1E1E;
}

.lp-calculator .subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 40px;
}

/* Grid 3 coloane */
.lp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-end;
    gap: 40px;
}

/* Coloane */
.lp-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

/* Label & Select */
.lp-col label {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: #1E1E1E;
}

.lp-col select {
    width: 100%;
    max-width: 100%;
    border: none;
    border-bottom: 2px solid #1a78f2;
    padding: 8px;
    font-size: 15px;
    background: transparent;
    outline: none;
    text-align: left;
}

/* Slider (mov subțire, bila gri) */
.lp-col input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    max-width: 100%;
    height: 2px;
    background: #1a78f2;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.lp-col input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: 0.2s;
}

.lp-col input[type=range]::-webkit-slider-thumb:hover {
    background: #000;
}

.lp-col input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
}

.lp-col input[type=range]::-moz-range-track {
    height: 4px;
    background: #1a78f2;
}

/* Valoare slider */
.lp-slider-value {
    padding: 8px;
    font-size: 15px;
    color: #1E1E1E;
}

/* Rezultatul */
.lp-result {
    font-weight: 600;
    font-size: 17px;
    color: #1E1E1E;
    background: transparent;
    border-bottom: 2px solid #1a78f2;
    padding: 8px 0;
    width: 100%;
}

/* Nota de jos */
.lp-note {
    margin-top: 30px;
    font-size: 16px;
    color: #1E1E1E;
}

/* Buton */
.lp-btn {
    font-size: 18px;
    display: inline-block;
    margin-top: 50px;
    background: #1a78f2;
    color: #fff;
    padding: 14px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
}

.lp-btn:hover {
    background: #135fc6;
    color: white;
}

@media (max-width: 900px) {
    .lp-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.dantura_problems_section .desc_text h2,
.dantura_problems_section p {
    color: #1E1E1E;
}

.dantura_problems_section .title_block  {
  margin-bottom: 120px
}

.dantura_problems_section .desc_text h2{
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 10px;
}

.problem_item .desc_text{
    max-width: 75%;
    margin-top: 0;
}

.dantura_problems_section .list_buttons{
    flex-wrap: wrap;
}

.dantura_problems_section .list_buttons a{
    width: 450px;
    text-align: center;
}

.standard_img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.standard_img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.hero_standard span{
    color: var(--blue);
}

.standard_img .hero_content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.standard_img img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    object-position: center;
}

.page-template-thank-you .standard_img img {
  height: 550px
}

.gallery_testimonials img{
    width: 100%;
    height: 336px;
    object-fit: cover;
    border-radius: 10px;
}

.list_grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.list_contacts .list_item{
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid rgba(207, 207, 207, 0.52);
    border-radius: 20px;
    padding: 20px;
}

.list_contacts .list_item h3 {
    font-size: 25px;
    text-align: center;
    margin-bottom: 10px;
}

.list_contacts .list_item p{
    line-height: 32px;
    margin-bottom: 0;
    text-align: center;
}

.list_contacts i {
    color: var(--blue);
    font-size: 25px;
    padding-right: 10px;
    display: block;
    margin-bottom: 20px;
}

.video_iframe iframe{
    border-radius: 10px;
}

.banner_mitachi{
    margin-bottom: 38px;
}

.banner_mitachi img{
    width: 100%;
    height: 640px;
    object-position: top;
    object-fit: cover;
    border-radius: 20px;
}

.single_disadvantages {
  border: 1px solid #333;
  border-radius: 20px;
  padding: 30px;
}

.disadvantages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.disadvantages_button {
  display: flex;
  align-items: center;
  margin-top: 40px;
  justify-content: center;
}

.single_disadvantages svg {
  width: 40px;
  margin-bottom: 15px;
}

.single_disadvantages h6 {
  font-size: 18px;
}

.review_button {
  display: flex;
  justify-content: center;
}

.review_button a {
  width: 400px;
  text-align: center;
}

.min-code {
  position: absolute;
  height: 0;
  width: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

nav.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  background: #141414;
  padding: 3px 14px;
  border-radius: 10px;
  margin-top: 30px
}

nav.breadcrumbs a {
  font-size: 12px;
}

.hero_standard .breadcrumbs a {
  color: white;
}

.hero_standard .breadcrumbs a:hover {
  color: var(--blue)
}

.single_hero p {
  font-size: 20px;
  margin-bottom: 0;
}

.content_service {
  background: #000;
  border-radius: 20px;
  padding: 30px;
  margin-top: 50px;
}

.content_service h2 {
  font-size: 2.8rem;
  line-height: 150%;
  margin-bottom: 12px;
  margin-top: 40px;
}

.content_service li {
  margin-bottom: 8px;
}

.content_service p {
  margin-bottom: 20px;
}

.content_service h3,
.content_service h4 {
  font-size: 2.4rem;
  line-height: 150%;
  margin-bottom: 12px;
  margin-top: 40px;
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.single_service {
  background: #000;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  padding-top: 50px;
  padding-bottom: 40px;
  width: calc(25% - 24px);
}

.single_service h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  transition: 0.3s;
}

.single_service:hover h2 {
  color: var(--blue)
}

.single_service:hover p {
  opacity: 0.7;
}

.single_service p {
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 28px;
  transition: 0.3s;
}

.single_service .service_number {
  text-align: left;
  position: absolute;
  left: 0;
  top: 0;
  background: #242424;
  padding: 12px;
  border-radius: 10px;
  line-height: 1;
}

.service_link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.hero_simple .standard_img img {
  height: 180px;
}

.hero_simple .standard_img::after {
  background: rgb(0 0 0);
}

.template_simple h2 {
  font-size: 2.8rem;
  line-height: 150%;
  margin-bottom: 12px;
  margin-top: 40px;
}

.template_simple .page_content {
  border-bottom: 4px solid #5c5c5c;
  padding-bottom: 80px;
}

.template_simple ul li,
.template_simple ol li {
  margin-bottom: 8px;
}

.problems_section.dantura_problems_section {
  margin-top: 50px;
}
