/*
Theme Name: New Dental
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 {
    --purple: #7245A3;
    --purple-gradient: linear-gradient(90.08deg, #7245A3 0.07%, #2B1A3D 137.82%);
    --dark-purple: #24004C;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: 1.8rem;
    font-family: "Lato", sans-serif;
    color: #24004C;
}

body.no-scroll {
    overflow: hidden;
}

.d-flex {
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

h1 {
    font-size: 5.6rem;
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
    line-height: 120%;
    font-weight: 400;
}

h2 {
    font-size: 4.2rem;
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
    line-height: 130%;
    font-weight: 400;
}

h3 {
    font-size: 3.2rem;
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: "Libre Baskerville", serif;
    line-height: 140%
}

h4 {
    font-size: 2.4rem;
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
    line-height: 150%;
    font-weight: 400;
}

h5 {
    font-size: 2rem;
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
    line-height: 150%;
    font-weight: 400;
}

h6 {
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
    line-height: 150%;
    font-weight: 400;
}

p {
    font-size: 1.8rem;
    line-height: 28px;
    margin-bottom: 30px;
    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;
}

a {
  font-size: 1.8rem;
  text-decoration: none;
}

.container {
    max-width: 1470px;
    padding: 0 15px;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

/* Dividers */

.mt-3 {
    margin-top: 3rem !important;
}

.mt-4 {
    margin-top: 4rem !important;
}

.mt-5 {
    margin-top: 5rem !important;
}

.mt-8 {
    margin-top: 80px;
}

.mb-8 {
    margin-bottom: 80px;
}

.mb-6 {
    margin-bottom: 60px;
}

.mt-12 {
    margin-top: 120px;
}

.mb-12 {
    margin-bottom: 120px;
}

.mg-10 {
  margin: 100px 0;
}

.mb-10 {
  margin-bottom: 100px;
}

.mt-10 {
  margin-top: 100px;
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.main_button {
    padding: 4px 30px;
    padding-right: 4px;
    font-size: 1.8rem;
    border-radius: 50px;
    font-style: normal;
    font-weight: 400;
    transition: 0.3s;
    border: 1px solid var(--purple);;
    display: flex;
    align-items: center;
    gap: 25px;
    width: fit-content;
    color: var(--purple);
}

.main_button img {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

.main_button:hover img {
  filter: invert(1);
}

.main_button span {
  width: 80px;
  background: var(--purple);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  height: 48px;
  align-items: center;
  transition: 0.3s;
}

.main_button:hover {
  color: white;
  background: var(--purple);
  border-color: var(--purple);
}

.main_button:hover span {
  background: white;
}


.main_button.transparent_button {
  color: white;
  border-color: white;
}

.main_button.transparent_button:hover {
  border-color: var(--purple);
}

.button_accent a {
  padding: 8px 25px 10px;
  font-size: 1.6rem;
  border-radius: 50px;
  font-style: normal;
  font-weight: 400;
  color: white;
  background: #c48dff;
  display: block;
  transition: 0.1s
}

.button_accent:hover a {
  background: white;
  color: var(--purple)!important
}

.mobile__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
}

.mobile__nav.active {
    right: 0;
}

.mobile__nav .menu {
    list-style: none;
    padding: 0;
    justify-content: center;
    flex-direction: column;
    margin: 0;
}

.mobile__nav .menu li {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile__nav .menu li:last-child {
    border-bottom: none;
}

.mobile__nav .menu a {
    display: block;
    padding: 15px 0;
    font-size: 1.6rem;
    text-transform: uppercase;
    text-align: center;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.mobile__nav .menu a:hover {
    color: var(--green);
    padding-left: 10px;
}

.mobile__nav .menu .sub-menu {
    padding-left: 20px;
    display: none;
}

.mobile__nav .menu li.menu-item-has-children > a {
    position: relative;
}

.mobile__nav .menu li.menu-item-has-children > a::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--green);
}

/* Mobile nav logo */
.mobile__nav__logo {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile__nav__logo img {
    max-width: 180px;
    height: auto;
}

/* Mobile nav CTA button */
.mobile__nav__cta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.mobile__nav__cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
}

.mobile__nav__cta .btn-green {
    background: var(--green);
    color: white;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.mobile__nav__cta .btn-green:hover {
    background: var(--dark);
    transform: scale(1.02);
}

.mobile__nav__cta .btn-green svg {
    flex-shrink: 0;
}

.close__mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    color: var(--dark);
}

.close__mobile:hover {
    background: var(--green);
    color: white;
    transform: rotate(90deg);
}

/* Mobile overlay */
.mobile__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile__overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1101px) {
    .mobile__menu {
        display: none;
    }
    .mobile__nav {
        display: none;
    }
}

@media only screen and (max-width: 1256px) {
    .header_menu .col-md-9 {
        display: none !important
    }
    .header_menu .main_menu,
    .header_menu .right_menu {
        display: none;
    }
    .header_menu {
        position: relative;
    }
    .header_menu .logo_site {
        flex: 1;
    }
    .mobile__menu {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 54px;
        width: 54px;
        background: var(--green);
        flex-shrink: 0;
        border-radius: 100%;
        cursor: pointer;
        z-index: 99;
        transition: 0.3s;
        font-size: 0;
        gap: 6px;
    }
    .menu-second-menu-container{
        border-top: 1px solid #f0f0f0;
    }
    .mobile__nav .menu li{
        width: 100%;
    }
    .menu-second-menu-container ul{
        gap: 0;
    }
    .mobile__nav__cta{
        margin-top: 0;
    }
    .mobile__menu:hover {
        background: var(--dark);
    }
    .mobile__menu span {
        display: block;
        height: 4px;
        width: 30px;
        border-radius: 8px;
        background: var(--dark-blue);
        transition: 0.3s;
    }
    .mobile__menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile__menu.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile__menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .header_icons {
        position: relative;
        padding-right: 52px;
        margin-top: -8px;
    }
    .menu__primary {
        display: none;
    }
    .header_menu > .d-flex {
        justify-content: space-between;
    }
    .mobile__nav {
        display: block;
    }
}

.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: 30px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 80%;
    max-width: 860px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s;
}

.modal-content h3{
    font-size: 3.5rem;
}

.modal-content .acceptance p {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

.modal-content .close {
    color: white;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border-radius: 100%;
    background: var(--purple);
    position: absolute;
    right: -19px;
    top: -17px;
}

.modal-content .close:hover,
.modal-content .close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.modal-content .contact_form {
    display: flex;
    flex-wrap: wrap;
}

.modal-content .contact_form .input_name,
.modal-content .contact_form .input_phone {
    width: 50%;
    padding: 0 8px;
}

.modal-content .contact_form .acceptance,
.modal-content .contact_form .send_button {
    width: 100%;
    padding: 0 16px
}


.modal-content input,
.modal-content textarea {
    width: 100%;
    font-size: 15px;
    background: #F3F3F3;
    border-radius: 8px;
    padding: 20px;
}

.modal-content ::placeholder {
  color: #1E354996
}

.modal-content textarea {
    width: 100%;
    height: 100px;
    padding: 20px;
}

.modal-content .form_short {
    padding-left: 0;
    margin-top: 30px;
}

.modal-content .form_short .form_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.modal-content .form_short .form_flex > .col-md-6 {
    flex: 1 1 calc(50% - 15px);
    min-width: 200px;
}

.modal-content .form_short .form_flex > .col-12:not(.col-md-6) {
    flex: 1 1 100%;
}

.modal-content .form_flex label {
  margin-bottom: 5px;
  font-size: 14px;
  margin-left: 10px;
}

.hero_section {
  height: 96vh;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
linear-gradient(178.43deg, rgba(114, 69, 163, 0) 1.34%, #7245A3 238.33%);
}

.dantura_hero{
    height: 84vh;
    background-position: center;
    background-size: cover;
    position: relative;
}

.dantura_hero .container {
  position: relative;
  z-index: 9
}

.dantura_hero:after {
  content: '';
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
linear-gradient(178.43deg, rgba(114, 69, 163, 0) 1.34%, #7245A3 238.33%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.page_hero {
  margin-top: 88px;
}

.page_hero_content h1 {
  margin-bottom: 30px;
  font-size: 5rem;
  background: var(--purple-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.breadcrumbs {
  margin-bottom: 50px;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.breadcrumbs ul li a,
.breadcrumbs ul li {
  font-size: 14px;
  line-height: 18px;
  color: var(--purple);
  transition: 0.3s
}

.breadcrumbs ul li {
  color: #7245a387;
  position: relative;
}

.breadcrumbs ul li a:hover {
  color: var(--dark-purple)
}

.breadcrumbs ul li:after {
  content: '';
  position: absolute;
  right: -29px;
  top: 3px;
  background: url('/wp-content/uploads/2026/02/guidance_up-arrow.svg');
  background-size: cover;
  width: 18px;
  height: 13px;
  background-position: center;
}

.breadcrumbs ul li:last-child:after {
  display: none;
}

.page_hero_img img {
  height: 360px;
  object-fit: cover;
}

.page_hero_img {
  position: relative;
}

.page_hero_img:after {
  content: '';
  background: linear-gradient(to right, transparent, white);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.page_hero .d-flex {
  align-items: center;
}

.page_hero_content {
  padding-left: 70px;
}

.dantura_hero .row{
    color: white;
    padding-top: 60px;
    align-items: center;
}

.dantura_hero {
  display: flex;
  align-items: center;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 12px 0;
  background: transparent;
  transition: 0.3s;
}

.header.active {
  transition: 0.3s;
  background: var(--purple);
  padding: 8px 0;
}

.logo_light img {
  height: 64px;
  object-fit: cover;
  width: auto;
  transition: 0.3s
}

.header.active .logo_light img {
  height: 50px;
}

.main_menu .menu {
  display: flex;
  list-style: none;
  padding-left: 0;
  align-items: center;
}

.main_menu .menu li {
  padding: 10px 15px
}

.header_menu {
  align-items: center;
  justify-content: space-between;
}

.main_menu .menu li a {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  display: block;
  letter-spacing: 1px;
  transition: 0.3s
}

.main_menu .menu li.current_page_item a {
  color: #c48dff;
}

.main_menu .menu li a:hover {
  color: #c48dff
}

.modal-content .input_textarea {
  display: none;
}

.hero_video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero_section {
  position: relative;
}

.content_hero {
  position: absolute;
  bottom: 60px;
  left: 40px;
  color: white;
  width: 72%;
}

.content_hero h1 {
  font-size: 13rem;
  line-height: 100%;
  margin-bottom: 30px;
}

.content_hero .d-flex {
  gap: 30px;
}

.content_hero .d-flex .descriptor {
  width: 60%;
}

.content_hero .d-flex .hero_text {
  width: 40%;
}

.descriptor h2 {
  margin-bottom: 30px;
}

.hero_text p {
  margin-bottom: 0;
}

.block_title h2 span {
  background: var(--purple-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.block_title {
  margin-bottom: 30px;
}

.reviews_social .block_title {
  margin-bottom: 50px;
}

.block_title p {
  margin-top: 10px;
}

.single_choose .icon_choose {
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: auto;
}

.single_choose {
  background: #F9F8FE;
  padding: 40px 30px;
  border-radius: 30px;
}

.single_choose h4 {
  color: var(--purple);
  margin-bottom: 15px;
  margin-top: 30px;
}

.single_choose p {
  margin-bottom: 0;
}

.hidden-choose {
  background: white;
}

.single_choose.choose_cta {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  background: white;
}

.single_choose.choose_cta p {
  margin-bottom: 30px;
}

.single_choose.bg-img {
  background-position: center;
  background-size: cover;
  color: white;
  position: relative;
}

.single_choose.bg-img h4 {
  color: white;
}

.single_problem p {
  margin-bottom: 0;
}

.single_choose.bg-img:before {
  border-radius: 30px;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #7245a38f;
}

.problem_img {
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.cta_style1_content {
  background: #F9F8FE;
  border-radius: 30px;
  padding: 30px;
}

.form_style1 {
  background: white;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0px 0px 18.4px 0px #00000014;
  padding-bottom: 50px;
}

.col_input input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cbbfd8;
  padding: 12px 0;
}

.col_input ::placeholder {
  color: #24004C70;
  font-size: 16px;
  line-height: 26px;
}

.header_contacts_footer .col_input.input_submit input {
  color: var(--dark-purple);
  background: white;
  border-radius: 30px;
  text-align: left;
  padding: 13px 30px;
}

.header_contacts_footer .col_input.input_submit input:hover {
  background: var(--purple);
  border: 1px solid white;
  color: white;
  transition: 0.3s;
}

.header_contacts_footer .col_input.input_submit:hover .form_img {
  background: white;
}

.header_contacts_footer .form_img {
  background: var(--purple);
}

.header_contacts_footer .form_img img {
  filter: invert(0);
}

.header_contacts_footer .col_input.input_submit:hover .form_img img {
  filter: invert(1);
}

.col_input p {
  margin-bottom: 0;
}

.col_input {
  margin-bottom: 20px;
}

.col_input.input_submit {
  margin-top: 30px;
  margin-bottom: 0;
}

.input_submit {
  position: relative;
}

.input_submit p {
  margin-bottom: 0;
}

.wpcf7-spinner {
  position: absolute;
  right: 10px;
  top: 15px;
}

.form_img {
  position: absolute;
  right: 4px;
  width: 80px;
  background: white;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  height: 48px;
  align-items: center;
  transition: 0.3s;
  top: 4px;
}

.form_img img {
  width: 20px;
  height: 20px;
  transition: 0.3s;
  filter: invert(1);
}

.form_acceptance p {
  font-size: 13px;
  line-height: 16px;
  color: #4C4C4C;
}

.col_input.input_submit:hover .form_img {
  background: var(--purple);
}

.col_input.input_submit:hover .form_img img {
  filter: invert(0);
}

.form_bg img {
  border-radius: 30px;
  height: 360px;
  object-fit: cover;
}

.form_bg {
  padding-left: 30px;
}

.cta_style1 .block_title {
  margin-bottom: 30px;
}

.play_icon {
  width: 70px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.what_implant {
  border-radius: 30px;
  background: #F9F8FE;
  overflow: hidden;
  margin-bottom: 30px;
}

.video_what {
  border-radius: 30px;
  position: relative;
}

.video_what a {
  display: block;
  width: 100%;
  height: 100%;
}

.what_implant .col-md-8 {
  padding-top: 30px;
  padding-bottom: 40px;
  padding-left: 40px;
}

.what_implant .col-md-8 p {
  margin-bottom: 0;
}

.what_implant .col-md-8 {
  padding-left: 30px;
}

.what_implant h3 {
  font-weight: 400;
  color: #7245A3;
  margin-bottom: 20px;
}

.advantages_implant {
  border-radius: 30px;
  padding: 30px;
  background: #7245A3;
  color: white;
  padding-bottom: 40px;
}

.advantages_implant h3 {
  color: white;
  font-weight: 400;
  margin-bottom: 30px;
}

.advantages_implant ul {
  list-style: none;
  padding-left: 0;
}

.advantages_implant ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
}

.advantages_implant ul li:last-child {
  margin-bottom: 0;
}

.advantages_implant ul li:before {
  content: '';
  width: 22px;
  height: 22px;
  left: 0;
  top: 2px;
  background: url('/wp-content/uploads/2026/02/healthicons_odontology-implant-outline.svg');
  position: absolute;
  background-position: center;
  background-size: cover;
}

.video-layout {
  display: flex;
  overflow: hidden;
}

.main-video {
  position: relative;
  width: 65%;
}

.related-videos {
    overflow-y: scroll;
    width: 35%;
    padding-left: 30px;
    height: 540px;
    padding-right: 30px;
}

.sidebar_video {
  height: 486px;
}

.related-videos::-webkit-scrollbar {
    width: 10px;
}

.related-videos::-webkit-scrollbar-track {
    background: #f3e8ff;
    border-radius: 10px;
}

.related-videos::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 10px;
}

.related-videos::-webkit-scrollbar-thumb:hover {
    background: #7e22ce;
}

.sidebar_video > div {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  transition: background-color .3s ease, border-color .3s ease;
  border-radius: 30px;
  position: relative;
}

.video_text {
  width: calc(100% - 140px);
}

.thumb_img {
  margin-right: 20px;
}

.sidebar_video .video_featured {
  width: 120px;
  height: auto;
  border-radius: 20px;
}

.related-videos img.faq_play {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 0;
  transition: 0.2s
}

.main-video iframe {
  height: 540px;
  border-radius: 30px;
}

.related-intro {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cbbfd8;
  padding-bottom: 10px;
  margin-bottom: 15px;
  align-items: center;
}

.related-intro p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--purple);
  font-size: 16px;
}

.related-intro h6 {
  font-size: 16px;
  line-height: 24px;
}

.sidebar_video .active {
  background: #F9F8FE
}

.video_text h4 {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video_text p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  margin-top: 10px;
}

.sidebar_video .thumb_img:before {
  content: '';
  background: #7245a38f;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
  width: 0%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
}

.sidebar_video .active .thumb_img:before, .sidebar_video > div:hover .thumb_img:before {
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.active img.faq_play {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

.block_title.flex_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev {
  left: auto;
  right: 90px;
  bottom: 0;
  transform: rotate(-180deg);
}

.swiper-button-next {
  left: auto;
  right: 0px;
  bottom: 0;
}

.swiper-button-prev,
.swiper-button-next {
  height: 56px;
  width: 56px;
}

.arrows_slider {
  transform: translateY(-35px);
}

.happy_slider img {
  border-radius: 30px;
  height: 450px;
  object-fit: cover;
}

.happy_slider .swiper-slide:nth-child(2n) img {
  height: 400px;
  object-fit: cover;
}

.happy_slider .swiper-wrapper {
  align-items: flex-end;
}

.comparison_item {
  display: flex;
}

.comparison-slider {
  position: relative;
  width: 100%;
  height: 253px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 10;
  touch-action: none;
}

.comparison-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  pointer-events: none;
}

.image-before, .image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.image-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.3s ease;
  z-index: 2;
}

.slider-handle {
  height: 5.2rem;
  width: 5.2rem;
  background: white;
  border: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  outline: none;
  user-select: none;
}

.slider-handle::before,
.slider-handle::after {
  position: absolute;
  content: "";
  top: 50%;
  border: 1.6rem solid transparent;
  border-bottom-width: 0;
  border-right-width: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.slider-handle::before {
  border-left-color: #14162a;
  left: 40%;
  border-radius: 5px;
}

.slider-handle::after {
  left: 60%;
  border-top-color: #14162a;
  border-radius: 5px;
}

.line-top, .line-bottom {
  position: absolute;
  width: 2px;
  background-color: #ffffff;
  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);
}

.ba_content .d-flex {
  padding: 0 40px;
  background: #F9F8FE;
  border-radius: 30px;
}

.review_content {
  padding-left: 50px;
}

.review_content p {
  margin-bottom: 50px;
  color: #7245A3;
  margin-top: 20px;
}

.quote_img {
  display: flex;
  position: absolute;
  right: 40px;
  top: 40px;
}

.quote_img img {
  width: 28px;
  height: 28px;
  margin: 0 -3px;
}

.content_cons {
  border-radius: 0 30px 30px 0;
  padding: 80px 40px;
  background: linear-gradient(270deg, #FAFAFA 0%, #e6e6e670 103.28%);
}

.content_pros {
  border-radius: 30px 0px 0px 30px;
  padding: 80px 40px;
  background: linear-gradient(90deg, #F9F8FE 0%, #DFD4EA 187.89%);
}

.img_cons img,
.img_pros img  {
  height: 560px;
  object-fit: cover;
  border-radius: 30px;
}

.content_cons h3,
.content_pros h3 {
  color: var(--purple);
  font-weight: 400;
  margin-bottom: 30px;
}

.content_cons ul,
.content_pros ul {
  list-style: none;
  padding-left: 0;
}

.content_cons ul li,
.content_pros ul li {
  position: relative;
  margin: 12px 0;
  padding-left: 35px;
}

.content_pros ul li:last-child,
.content_cons ul li:last-child {
  margin-bottom: 0
}

.content_cons ul li:before {
  content: '';
  width: 20px;
  height: 20px;
  left: 0;
  top: 3px;
  background: url('/wp-content/uploads/2026/02/jam_close-1.svg');
  position: absolute;
  background-position: center;
  background-size: cover;
}

.content_pros ul li:before {
  content: '';
  width: 20px;
  height: 20px;
  left: 0;
  top: 3px;
  background: url('/wp-content/uploads/2026/02/typcn_plus.svg');
  position: absolute;
  background-position: center;
  background-size: cover;
}

.cta_img.cta_bg .cta_content {
  background: #F9F8FE;
  border-radius: 30px;
  padding: 40px;
}

.before_after_review.ba_style2 .review_content {
  padding-left: 0;
  padding-right: 50px;
}

.before_after_review.ba_style2 .imgs_ba {
  padding-right: 0;
}

.before_after_review.ba_style2 .quote_img {
  left: 40px;
}

.slider_steps {
  padding-left: 50px;
}

.slider_steps .swiper-slide {
  border-radius: 30px;
  background: #F9F8FE;
  padding: 30px;
}

.slider_steps .swiper-slide h2 {
  color: var(--purple);
  font-size: 50px;
  font-weight: 400;
}

.slider_steps .swiper-slide h4 {
  font-size: 20px;
  color: var(--purple);
  margin-top: 30px;
  margin-bottom: 15px;
}

.slider_steps .swiper-slide p {
  margin-bottom: 0;
}

.slider_steps .swiper-wrapper {
  align-items: stretch;
}

.slider_steps .swiper-slide {
  height: auto;
  display: flex;
}

.slider_steps .step_content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.treatment_steps .d-flex {
  align-items: flex-end;
}

.treatment_steps .arrows_slider {
  transform: translateY(0px);
}

.treatment_steps .swiper-button-next {
  left: 90px;
  right: auto;
}

.treatment_steps .swiper-button-prev {
  left: 0;
  right: auto;
}

.step_intro p {
  margin-bottom: 80px;
}

.step_intro {
  margin-bottom: 50px;
}

.steps_slider {
  padding-bottom: 15px;
}

.form_style2 {
  background: var(--purple);
  padding: 40px;
  border-radius: 30px 0 0 30px;
  padding-bottom: 60px;
}

.form_style .input_textarea {
  display: none;
}

.cta_style2_content .form_bg {
  border-radius: 0px 30px 30px 0px;
  background-position: center;
  background-size: cover;
}

.cta_style2_content .col_input.input_submit input {
  background: white;
  border-color: white;
  color: var(--purple);
}

.cta_style2_content .col_input.input_submit input:hover {
  background: #c48dff;
  color: white;
}

.cta_style2_content .form_acceptance p {
  color: white;
}

.cta_style2_content .form_img {
  background: var(--purple);
}

.cta_style2_content .form_img img {
  filter: invert(0);
}

.cta_style2_content .col_input input {
  background: transparent;
  color: white;
}

.cta_style2_content .col_input ::placeholder {
  color: #ffffff90
}

.single_treatment .video_img {
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
}

.single_treatment.col-md-6 {
  padding: 0 30px;
}

.main_button.light-button span {
  background: #7245A31A
}

.main_button.light-button img {
  filter: invert(1);
}

.main_button.light-button:hover span {
  background: white;
}

.treatment_buttons {
  gap: 30px;
}

.clinical_cases .arrows_slider {
  transform: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.clinical_cases .swiper-button-prev,
.clinical_cases .swiper-button-next {
  width: 83px;
  height: 48px;
  position: initial;
}

.clinical_cases .swiper-button-next img {
  width: 24px;
  height: 24px;
}

.clinical_cases .swiper-button-prev img {
  width: 50px;
  height: 50px;
}

.clinical_cases .swiper-button-prev {
  transform: none;
}

.clinical_cases .swiper-button-next {
  background: var(--purple);
  border-radius: 30px;
}

.clinical_cases .swiper-button-prev {
  background: #7245A31A;
  border-radius: 30px;
}

.ba_slider {
  border-radius: 30px;
  background: #F9F8FE
}

.review_about p {
  margin-bottom: 20px;
}

.review_about h5 {
  color: var(--purple);
  margin-bottom: 20px;
}

.review_about,
.imgs_ba {
  padding: 40px;
}

.imgs_ba {
  padding-left: 0;
}

.ba_slider .comparison-slider {
  height: 400px;
}

.comparison-slider p {
  font-size: 14px;
  position: absolute;
  margin-bottom: 0;
  bottom: 20px;
  line-height: 14px;
  background: white;
  border-radius: 30px;
  padding: 7px 14px;
  color: var(--purple);
}

.image-after p {
  left: 20px;
}

.image-before p {
  right: 20px;
}

.clinical_cases .block_title {
  margin-bottom: 30px;
}

.accordion-dental {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: #FFF;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #F1EDF6 !important;
    border-radius: 16px !important;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accordion-item:hover {
    border-color: #c9b3e0;
}

.accordion-item.active {
    background: #F1EDF6 !important;
    border-color: #F1EDF6 !important;
}

.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    opacity: 0.85;
}

.quest {
    flex: 1;
}

.quest h4 {
    color: var(--purple);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.accordion-item.active .quest h4 {
    font-weight: 600;
    font-size: 2rem;
}

.accordion-header .toggle-icon {
    width: 56px;
    height: 36px;
    min-width: 56px;
    border: 1px solid var(--purple);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    color: var(--purple);
}

.accordion-item.active .accordion-header .toggle-icon {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

.accordion-header .toggle-icon svg {
    display: block;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .toggle-icon svg {
    transform: rotate(-45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    margin-top: 16px;
}

.accordion-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
    color: var(--purple);
    padding-right: 50px;
}

.input_textarea textarea {
  width: 100%;
  height: 172px;
  border: 1px solid var(--purple);
  border-radius: 30px;
  padding: 12px 20px 14px;
}

.footer_contact .col_input input {
  border: 1px solid var(--purple);
  border-radius: 30px;
  padding: 12px 20px 14px;
}

.footer_contact .form_acceptance {
  margin-bottom: 10px;
  margin-top: -10px;
  padding: 0 10px;
}

.footer_contact .col_input.input_submit {
  margin-top: 20px;
}

.form_cta {
  border-radius: 30px;
  padding: 30px;
  background: #F9F8FE;
}

.form_cta h3 span {
  background: var(--purple-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.form_cta p {
  margin-top: 30px;
  padding-right: 20px;
}

.form_cta h5 {
  color: var(--purple);
  margin-top: 50px;
}

.social_buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.social_buttons a {
  border-radius: 30px;
  border: 1px solid var(--purple);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  width: 50%;
  color: var(--purple);
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
}

.social_buttons a:hover {
  background: white;
}

.social_buttons img {
  width: 22px;
  height: 22px;
}

.bg-contact {
  border-radius: 30px;
  background-position: center;
  background-size: cover;
}

.technology_content {
  padding-right: 50px;
}

.technology_content h3 {
  color: var(--purple);
  margin-bottom: 20px;
}

.technology_content h5 {
  color: var(--purple);
  margin-bottom: 20px;
  margin-top: 50px;
  font-size: 2.4rem;
}

.technology_content ul li {
  position: relative;
  padding-left: 35px;
  margin: 10px 0;
}

.technology_content ul li:last-child {
  margin-bottom: 0;
}

.technology_content ul li:before {
  content: '';
  width: 22px;
  height: 22px;
  left: 0;
  top: 2px;
  background: url('/wp-content/uploads/2026/02/svg.svg');
  position: absolute;
  background-position: center;
  background-size: cover;
}

.img1 {
  padding-right: 30px;
}

.img1 img {
  margin-bottom: 30px;
  height: 230px;
  object-fit: cover;
  border-radius: 30px;
}

.img2 img {
  height: 490px;
  object-fit: cover;
  border-radius: 30px;
}

.img1 img:last-child {
  margin-bottom: 0;
}

.technology {
  padding: 80px 0;
  background: #F9F8FE;
}

.social {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  margin-bottom: 0;
}

.social_star img {
  width: 22px;
  height: 22px;
}

.social_icon img {
  height: 22px;
  width: auto;
  margin-top: 6px;
  margin-right: 5px;
}

.name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.review {
  height: 173px;
  overflow-y: scroll;
  padding-right: 20px;
}

.review::-webkit-scrollbar {
    width: 6px;
}

.review::-webkit-scrollbar-track {
    background: #ecebeb;
    border-radius: 10px;
}

.review::-webkit-scrollbar-thumb {
    background: #d5d5d5;
    border-radius: 10px;
}

.review::-webkit-scrollbar-thumb:hover {
    background: #efefef;
}

.diplomas_slider img {
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
}

.wp-singular .header {
  transition: 0.3s;
  background: var(--purple);
  padding: 12px 0;
}

.wp-singular .header.active {
  padding: 8px 0;
}

.price_section .block_title {
  margin-bottom: 40px;
}

.page-template-home .header,
.page-template-dantura-fixa .header {
  background: transparent;
}

.page-template-home .header.active,
.page-template-dantura-fixa .header.active {
  background: var(--purple);
  padding: 8px 0;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: initial;
  margin-top: 25px;
}

.dantura_hero .swiper-pagination-bullets.swiper-pagination-horizontal {
  margin-top: 10px;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 30px;
  height: 8px;
  border-radius: 8px;
}

.swiper-pagination-bullet-active {
  background: var(--purple)
}

.cta_content {

}

.cta_intro {
  padding-right: 50px;
}

.cta_intro p {
  color: var(--purple);
  font-size: 20px;
  line-height: 30px;
  margin-top: 30px;
}

.cta_intro a {
  margin-top: 80px;
}

.imgs_cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.imgs_cta img {
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  width: calc(50% - 5px);
}

.price_section .grid3{
    gap: 24px;
}

.price_layout{
    background: #F9F8FE;
    border-radius: 30px;
}

.price_item h3{
    width: 334px;
    margin: 0 auto;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    line-height: normal;
    background: var(--purple);
    padding: 11px 25px;
    border-radius: 18px 18px 0 0;
}

.price_item h4{
    color: #201B16;
    font-family: "Libre Baskerville";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    line-height: 34px;
}
.price_item p{
    color: #7245A3;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.price_item p span{
    color: #7245A3;
    font-family: "Lato", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.price_item .price_content{
    padding: 34px;
}

.price_item ul{
    margin-bottom: 24px;
    list-style: none;
}

.price_item ul li{
    color: #272727;
    font-family:  "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    position: relative;
    padding-left: 40px;
    margin-bottom: 5px;
}

.price_item ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    background-image: url("/wp-content/uploads/2026/02/Done_round_duotone.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.price_item a{
    width: 100%;
    color: black;
    justify-content: space-between;
}

.price_item .img_price{
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 30px;
}

.team_slider .swiper-slide img{
    width: 100%;
    height: 430px;
    border-radius: 30px;
    object-fit: cover;
}

.team-slide-img {
    position: relative;
    display: inline-block;
    width: 100%;
}

.team-info-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    background: transparent;
    padding: 0;
}

.team-info-btn img {
    width: 22px !important;
    height: 22px !important;
}

.team-info-btn:hover {
    transform: scale(1.1);
}

/* Team Modal - Side Panel */
.team-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}

.team-modal.active {
    display: block;
}

.team-modal-content {
    background: linear-gradient(180deg, #7245a3 0%, #4a2d6b 100%);
    position: fixed;
    right: -400px;
    top: 0;
    height: 100%;
    width: 380px;
    max-width: 90%;
    padding: 0;
    border-radius: 20px 0 0 20px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    transition: right 0.4s ease;
    overflow-y: auto;
}

.team-modal.active .team-modal-content {
    right: 0;
}

.team-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.team-modal-close svg {
    color: white;
    stroke: white;
}

.team-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.team-modal-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.team-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-modal-info {
    padding: 25px;
    color: white;
}

.team-modal-info h3 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-family: "Libre Baskerville", serif;
}

.team-modal-info .team-modal-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.team-modal-info .team-modal-bio {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.team_slider .swiper-slide h3{
    margin-top: 15px;
    color: #7245A3;
    font-family: "Libre Baskerville";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.team_slider .swiper-slide p{
    color: #201B16;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.equipment_card{
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

.equipment_media{
    width: 50%;
}

.equipment_content{
    width: 50%;
}

.equipment_content h3{
    color: #7245A3;
    text-align: center;
    font-family: "Libre Baskerville";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.equipment_content p{
    margin-top: 29px;
    color: #24004C;
    text-align: center;
    font-family: "Lato", sans-serif;;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.equipment_device{
    width: 327px;
    height: 449px;
}

.pagination_arrows{
  margin-top: 40px;
    display: inline-flex;
    padding: 4px 4px 4px 24px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 100px;
    border: 1px solid #7245A3;
}

.pagination_arrows .swiper-button-prev{
    position: static;
    width: auto;
    height: 48px;
    border-radius: 100px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination_arrows .swiper-button-next{
    position: static;
    width: 83px;
    height: 48px;
    border-radius: 100px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination_arrows .swiper-button-prev{
    background: transparent;
}

.pagination_arrows .swiper-button-prev img{
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(28%) sepia(30%) saturate(2476%) hue-rotate(246deg) brightness(88%) contrast(80%);
}

.pagination_arrows .swiper-button-next{
    background: #7245A3;
}

.pagination_arrows .swiper-button-next img{
    width: 24px;
    height: 24px;
}

.pagination_arrows2{
    padding: 4px 24px 4px 4px;
}

.pagination_arrows2 .swiper-button-next{
  background: transparent;
  width: auto;
}

.pagination_arrows2 .swiper-button-prev{
     background: #7245A3;
    width: 83px;
    height: 48px;
}

.pagination_arrows2 .swiper-button-prev img{
    width: 24px;
    height: 24px;
      filter: brightness(0) invert(1);
}

.fb_review{
    margin-top: 50px;
}

.fb_review .social_icon img{
    height: 14px;
    margin-top: 0;
}

.footer{
    padding: 50px 0 60px;
}

.footer_logo{
    margin-bottom: 30px;
}

.footer_logo img{
    width: auto;
    height: 85px;
    object-fit: contain;
}

.social_layout{
    display: flex;
    flex-direction: column;
}

.social_layout h2{
    color: #0A0A0A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 10px;
}

.footer_services ul{
    margin-top: 17px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 8px;
}

.footer_services ul li{
    border-radius: 74px;
    color: white;
    background: #7245A3;
    display: inline-flex;
    padding: 4px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer_services{
    padding-right: 108px;
}

.footer .col-md-6 h3{
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    color: #0A0A0A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 12px;
}

.social_links{
    display: flex;
    gap: 5px;
    margin-bottom: 40px;
}

.social_item{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: rgba(114, 69, 163, 0.10);
    border-radius: 50%;
    transition: 0.3s;
}

.social_item:hover {
  opacity: 0.7
}

.terms p {
  margin-bottom: 0;
}

.footer_contacts ul li{
    margin-bottom: 12px;
}

.footer_contacts ul li a{
    color: #0A0A0A;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    transition: 0.3s
}

.footer a:hover {
  color: #c48dff;
}

.terms{
    display: flex;
    gap: 40px;
    align-items: center;
}

.terms a{
    color: black;
}

.header_contacts_footer .row{
    padding: 60px 0 80px;
    border-radius: 30px;
    background: #7245A3;
    color: white;
}

.header_contacts_footer h2{
    margin-bottom: 20px;
}

.header_contacts_layout{
    max-width: 600px;
    margin: 0 auto;
}

.header_contacts_layout .form_acceptance p{
    color: white;
}

.header_contacts_layout .col_input input{
    background: transparent;
    color: white;
}

.header_contacts_layout .input_textarea textarea{
    display: none;
}

.header_contacts_layout .col_input.input_submit input{
    border: 1px solid white;
}

.header_contacts_layout .wpcf7-form-control::placeholder{
    color: #ffffff;
    opacity: 1;
}

.contact_us_left {
    border-radius: 30px;
    background-position: center;
    background-size: cover;
}

.contact_us_right{
    padding-left: 23px;
}

.contact_us_right .contact_item{
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(270deg, #F9F8FE 0%, #DFD4EA 188.12%);
    margin-bottom: 20px;
}

.contact_us_right .contact_item:last-child {
  margin-bottom: 0;
}

.contact_us_right .icon_contact{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 66px;
    height: 66px;
    border-radius: 13px;
    background: #FFF;
}

.contact_us_right img{
    width: 24px;
    height: 24px;
}

.contact_item{
    display: flex;
    gap: 30px;
}

.contact_item h3{
    color: #24004C;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 5px;
}

.contact_item a,
.contact_item p{
    color: #7245A3;
    font-family: "Libre Baskerville", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 0;
    transition: 0.3s
}

.contact_item a:hover {
  color: #c48dff;
}

.dantura_hero_right{
  padding-left: 30px;
}

.dantura_hero_left .d-flex{
    gap: 42px;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.dantura_hero_left .d-flex p{
    width: 60%
}

.dantura_hero_left h1{
    color: #FFF;
    font-family: "Libre Baskerville";
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

.dantura_hero_left .d-flex p{
    margin-bottom: 0;
}

.dantura_hero_left p {
  max-width: 70%;
  margin-bottom: 50px;
}

.header_solutions{
    padding: 10px;
    border-radius: 28px;
    background: #F9F8FE;
}

.header_solutions h3{
    margin-top: 24px;
    color: #7245A3;
    text-align: center;
    font-family: "Libre Baskerville";
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}

.header_solutions p{
    color: #24004C;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding-left: 10px;
    padding-right: 10px;
}

.header_solutions a img{
    width: 24px;
    height: 24px;
    margin-left: 20px;
}

.header_solutions a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    border-radius: 100px;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    text-decoration: none;

    background: linear-gradient(90deg, #7245A3, #C48DFF);
    background-size: 140% 100%;

    transition:
            background-position .35s ease,
            box-shadow .25s ease,
            transform .2s ease;

    box-shadow: 0 6px 14px rgba(114,69,163,0.25);
}

.header_solutions a:hover{
    background-position: 100% 0;
    box-shadow: 0 10px 20px rgba(114,69,163,0.35);
    transform: translateY(-1px);
}

.header_solutions a:active{
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(114,69,163,0.25);
}

.header_solutions .slider-handle{
    background: transparent;
    border: 2px solid transparent;
}

.header_solutions .line-top{
    height: 100%;
}

.header_solutions .slider-handle::before{
    border-left-color: white;
    left: 50%;
    border-radius: 0;
}

.header_solutions .slider-handle::after{
    border-top-color: white;
    left: 50%;
    border-radius: 0;
}

.header_solutions .comparison-slider{
  height: 173px;
}

.admin-bar .header {
    top: 32px;
}

.admin-bar .mobile__nav {
    top: 32px;
    height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
    .admin-bar .mobile__nav {
        top: 46px;
        height: calc(100vh - 46px);
    }
}

.equipment_row{
    background: #F9F7FD;
    overflow: hidden;
    border-radius: 20px;
}

.equipment_right .content {
  padding: 0 30px;
}

.equipment_row .equipment_right{
    padding: 70px  86px 0 0;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.equipment_row .equipment_left{
    position: relative;
}

.equipment_row .equipment_left::before{
    content: '';
    position: absolute;
    top: 0;
    right: -82px;
    width: 200px;
    height: 100%;
    background-image: url('/wp-content/uploads/2026/02/Rectangle-2372-1.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 2;
}

.equipment_row .equipment_right h3{
    color: #7245A3;
    text-align: center;
    font-family: "Libre Baskerville";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.equipment_row .equipment_right p{
    margin-top: 30px;
    color: #24004C;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.img_equipment{
    width: auto;
    height: 240px;
    margin: 0 auto;
}

.equipment_left img {
  height: 580px;
  object-fit: cover;
}

.before_after_review .imgs_ba .slider-handle{
    background: transparent;
    border: 2px solid transparent;
}

.before_after_review .imgs_ba .line-top{
    height: 100%;
}

.before_after_review .imgs_ba .slider-handle::before{
    border-left-color: white;
    left: 50%;
    border-radius: 0;
}

.before_after_review .imgs_ba .slider-handle::after{
    border-top-color: white;
    left: 50%;
    border-radius: 0;
}

.explorer_item{
    display: flex;
    gap: 20px;
    border-radius: 30px;
    background: #F1EDF6;
    padding: 20px;
}

.explorer_item h3{
    color: #7245A3;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 50px;
}

.explorer_item .explore_image{
    width: 35%;
}

.explorer_item .content {
  width: 65%;
}

.explorer_item .explore_image img{
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.explorer_item .explore_link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
    background: rgba(114, 69, 163, 0.10);
    margin-bottom: 8px;
}

.explorer_item .explore_link h4{
    width: 85%;
    font-family: "Lato", sans-serif;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.explorer_item .explore_link h4 span{
    color: #7245A3;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.explorer_item .main_button{
  width: 15%;
    background: white;
    color: black;
    padding: 4px 20px;
    border-radius: 100px;
    border: 3px solid rgba(114, 69, 163, 0.34);
    outline: 1px solid white;
    transition: 0.3s;
}

.explorer_item .main_button:hover svg{
    filter: brightness(0) invert(1);
}

.explorer_item .main_button:hover{
    background: var(--purple);
}

.contact_consultation .row{
    border-radius: 30px;
    background: #7245A3;
    align-items: center;
}

.contact_consultation_content h2{
    margin-bottom: 20px;
}

.contact_consultation_content {
  padding-left: 50px;
}

.contact_consultation_content p.text-white {
  margin-bottom: 40px;
}

.contact_consultation a{
    border: 1px solid white;
    color: white;
}

.contact_consultation a:hover{
    background: white;
    border: 1px solid white;
   color: black;
}

.contact_consultation .main_button span{
    background: white;
}

.contact_consultation .main_button:hover span{
    background: var(--purple);
}

.contact_consultation .main_button:hover img{
    filter: brightness(0) invert(1);
}

.contact_consultation .main_button img{
    filter: invert(1);
}

.modal-content .col_input input{
    border: 1px solid #cbbfd8;
    padding: 12px 20px;
    border-radius: 30px;
}

.modal-content h2{
    font-size: 4rem;
}

.modal-content .input_textarea textarea{
    border: 1px solid #cbbfd8;
    border-radius: 8px;
}

.modal-content .input_submit input{
    padding: 13px 30px;
    font-size: 18px;
    text-align: left;
    background: var(--purple);
    color: white;
}

.modal-content .input_submit input:hover {
  background: transparent;
  color: var(--dark-purple)
}

.form_style .input_submit input {
  border-radius: 30px;
  text-align: left;
  border: 1px solid var(--purple);
  padding-left: 20px;
  color: white;
  background: var(--purple)
}

.form_style .input_submit input:hover {
  color: var(--purple);
  background: transparent;
}

.modal-content .input_submit {
  width: fit-content;
  min-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.modal-content .form_acceptance p {
  text-align: center;
}

.serv_title {
  background: var(--purple);
  color: white;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 10px 20px;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.table_price {
  border-radius: 30px;
  padding: 40px;
  background: #F9F8FE;
}

.subservices {
  background: white;
  padding: 30px;
  border-radius: 30px;
  width: calc(75% - 50px);
  margin-left: 50px;
}

.single_subservices p {
  margin-bottom: 0;
  width: 200px;
  text-align: right;
  font-family: "Lato", sans-serif;
  color: #7245A3;
}

.single_subservices:last-child {
  margin-bottom: 0;
  padding-bottom: 5px;
  border-bottom: 0;
}

.single_subservices {
  align-items: center;
  border-bottom: 1px solid #7245A31A;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.single_subservices h6 {
  width: calc(100% - 200px);
  padding-right: 20px;
  font-family: "Lato", sans-serif;
  font-size: 20px;
}

.comparison-slider {
  height: 220px;
}

.b_a_img {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.table_price .imgs_ba {
  padding: 0;
}

.service_single_price {
  margin-bottom: 80px;
}

.contact_us.contact_page_info .contact_info_content {
  padding: 30px;
  border-radius: 30px;
  background: #F9F8FE;
}

.contact_info_content .contact_us_left {
  background: white;
  padding: 40px;
  box-shadow: 0px 0px 18.4px 0px #00000014;
}

.form_contact_page .input_textarea textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cbbfd8;
  padding: 12px 0;
  border-radius: 0;
  height: 120px;
}

.form_contact_page .input_submit {
  width: 340px;
}

.form_contact_page .input_submit input {
  border-radius: 30px;
  text-align: left;
  padding-left: 30px;
  border: 1px solid var(--purple);
  background: var(--purple);
  color: white;
  transition: 0.3s;
  padding-bottom: 14px
}

.form_contact_page .input_submit input:hover {
  background: transparent;
  color: var(--purple)
}

.map_iframe iframe {
  border-radius: 30px;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    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;
}

.floating-buttons .phone {
    background: var(--purple);
}

.floating-buttons a img {
    width: 24px;
    height: 24px;
}

.floating-buttons .mail {
    background: #7e64cb;
}

.floating-buttons .whatupp {
    background: #25d366;
}

.floating-buttons .messenger {
    background: #006aff;
}
