/*
Theme Name: Dental Excellence
Theme URI: https://min-code.com
Author: Min-code Group
Author URI: https://min-code.com
Version: 1.0
Text Domain: www.dentalexcellence.ro
*/

@font-face {
    font-family: 'Calibri';
    src: url('assets/fonts/Calibri.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('assets/fonts/Calibri-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('assets/fonts/Calibri-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

:root {
    --purple: #5941CD;
    --blue: #00B8FF;
    --pink: #FF7DDF;
    --gray: #F5F4EC;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: Calibri, sans-serif;
    background: #f3f3f3;
}

h1 {
    font-size: 4rem;
    padding: 0;
    margin: 0;
}

h2 {
    font-size: 4rem;
    padding: 0;
    margin: 0;
}

h3 {
    font-size: 2.4rem;
    padding: 0;
    margin: 0;
}

h4 {
    font-size: 2.4rem;
    padding: 0;
    margin: 0;
}

h5 {
    font-size: 1.8rem;
}

p {
    font-size: 1.8rem;
    padding: 0;
    margin: 0;
    line-height: 140%;
}


dl, ol, ul {
    padding-left: 0;
}

.container {
    max-width: 1470px;
    padding: 0 15px;
}

/* Header */

/* Toogle Button*/
.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.header_logo{
    width: 270px;
    object-fit: contain;
    height: auto;
}

.navbar__toggle {
    background: transparent;
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 2001;
    position: relative;
    justify-content: center;
    align-items: center;
}

.navbar__toggle span {
    display: block;
    position: absolute;
    width: 30px;
    height: 4px;
    background: #191919;
    transition: transform 0.3s ease, background 0.3s ease;
}

.navbar__toggle span:nth-child(1) {
    transform: translateY(-10px);
}

.navbar__toggle span:nth-child(2) {
    transform: translateY(10px);
}

/*.navbar__toggle.open span:nth-child(1) {*/
/*    transform: rotate(45deg);*/
/*}*/

/*.navbar__toggle.open span:nth-child(3){*/
/*    display: none;*/
/*}*/

/*.navbar__toggle.open span:nth-child(2) {*/
/*    transform: rotate(-45deg);*/
/*}*/

/* End toogle */

.navbar__menu {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #FFFFFF;
    margin-bottom: 2px;
}

.single-post .navbar__menu {
    border-bottom: 1px solid #C2C2C2;
}

.navbar__menu .container {
    padding: 0px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__menu__items ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin-bottom: 0;
}

.navbar__menu__items ul li a {
    font-size: 1.8rem;
    color: black;
    text-decoration: none;
}

.navbar__menu__items ul li {
    position: relative;
}

.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}


.menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #00b6ff ;
    padding: 0;
    z-index: 1000;
    border-radius: 0px;
}

.menu-item-has-children > .sub-menu li {
  padding: 5px 0;
  border-bottom: 1px solid #78d8ff;
}

.case_menu.menu-item-has-children > .sub-menu {
  width: 240px;
}

.about_menu.menu-item-has-children > .sub-menu {
  width: 180px;
}

.services_menu.menu-item-has-children > .sub-menu {
  max-width: 1440px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  columns: 3;
  list-style: disc;
  margin: 0;
}

.services_menu.menu-item-has-children {
  position: inherit;
}

.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.sub-menu li a {
    color: white;
    font-size: 1.4rem;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
}

.sub-menu li a:hover {
    color: #5941CD;
}

.sub-menu li:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.navbar__menu__items ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #5941CD;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 24px;
    padding: 30px 5px;
    transition: color 0.3s, background-color 0.3s;
}

.navbar__menu__items ul li ul li.current_page_item > a::before,
.navbar__menu__items ul li ul li.current-menu-item > a::before,
.navbar__menu__items ul li ul li.current-menu-ancestor > a::before {
    content: none !important;
    border-top: none !important;
    top: 0;
}

.navbar__menu__items ul > li.current_page_item > a {
    color: #000000;
}

.navbar__menu__items ul li a:hover {
    color: #3c299b;
}

.navbar__menu__items ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    min-width: 150px;
}

.navbar__menu__items ul li ul li {
    display: block;
}

.navbar__menu__items ul li ul li a {
    padding: 5px 15px;
    font-size: 1.6rem;
    color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
}

.navbar__menu__items ul li ul li a:hover {
    color: #ededed;
}

.navbar__menu__items ul li:hover > ul {
    display: block;
}

/* End Header */

/* Hero Section */

.mg-30 {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 60px;
    margin-bottom: 60px
}

.hero_years {
    display: flex;
    gap: 16px;
    align-items: center;
    background: white;
    color: white;
    padding: 23px;
    border-radius: 20px;
}

.hero_years h4 {
    font-weight: 700;
    color: #212529
}

.hero_years img {
    max-width: 160px;
    height: 36px;
}

.hero_section {
    margin-top: 30px;
}

.hero_section h1 {
    margin-top: 35px;
    margin-bottom: 38px;
    font-size: 50px;
    font-weight: 700;
}

.hero_section span {
    color: #5941CD;
}

.hero_services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero_services .services_item {
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 20px;
    min-height: 100px;
    position: relative;
    gap: 15px;
}

.hero_services .services_content {
    padding: 20px;
}

.hero_services .services_content h5 {
    font-weight: 700;
}

.hero_services .services_icon {
    width: 70px;
    flex-shrink: 0;
}

.hero_services .services_icon img {
    height: 76px;
    object-fit: cover;
}

.hero_services .col-md-8 .services_item:nth-child(2) .services_icon img {
  height: 56px;
}

.hero_services .col-md-4 {
  background: white;
  border-radius: 20px;
}

.benefits_item {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #F3F3F3;
    padding: 9px 26px 26px 26px;
    border-radius: 20px;
}

.benefits_item img {
    width: 80px;
    height: 80px;
}

.benefits_item img.star_icon {
  height: 25px;
  width: 90%;
  margin-bottom: 10px;
  margin-top: 22px
}

.benefits_item h5 {
    margin-top: 10px;
    font-family: Calibri, sans-serif;
    text-align: center;
    font-size: 2rem
}

.hero_left {
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero_right {
    padding: 30px;
    border-radius: 20px;
    background: white;
    display: flex;
    align-items: center;
}

.hero_right .btn_hero {
  text-transform: uppercase;
}

.btn_hero {
    width: 100%;
    background: #5941CD;
    font-size: 22px;
    color: white;
    font-weight: 700;
    border-radius: 20px;
    padding: 18px 17px;
    transition: 0.3s;
}

.btn_hero:hover {
    background: #4330a3 !important;
    color: white !important;
}

.dr_hero {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.dr_hero span {
    background: #00B8FF;
    width: 100%;
    font-size: 25px;
    padding: 12px 16px;
    color: white;
    border-radius: 20px 0 20px 0;
    text-align: center;
    font-weight: 500
}

.dr_hero img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: center top
}

.hero_ul {
    list-style: none;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 30px
}

.hero_list {
    padding-left: 13px;
}

.hero_ul li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 18px;
    line-height: 26px
}

.hero_ul li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    width: 16px;
    height: 16px;
    background-image: url('/wp-content/uploads/2025/10/Vector-18.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero_ul li:last-child {
    margin-bottom: 0;
}

.bg_hero {
    background: #F3F3F3;
    border-radius: 20px;
    padding-top: 0px;
    padding-left: 20px;
    margin-bottom: 10px;
}

.hero_img {
  border-radius: 20px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 58% 80%;
}

.hero__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Marquee */

.marquee-bar {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 100;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    will-change: transform;
    z-index: 100;
}

.marquee_item {
    display: flex !important;
    align-items: center;
    color: black;
    gap: 50px;
}

.marquee-bar__title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 28px;
    z-index: 1000;
    padding-right: 130px;
}

.marquee-bar__title img {
    width: 200px;
    height: 139px;
    object-fit: contain;
}

.marquee-content.clone {
    left: 100%;
}

.resolution__true {
    height: 300px;
}

.block_title {
    width: 86%;
    margin: 0 auto;
    background: #ffffff;
    padding: 28px 40px;
    border-radius: 20px 20px 0 0;
}

.block_title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #5941CD;
    text-align: center;
    line-height: 140%;
}

.dantura_left {
    padding-right: 15px;
}

.bg_dantura {
    background: white;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
}

.dantura_section .col-md-4.dantura_right {
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.bg_dantura .item {
    background: #f3f3f3;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
}

.bg_dantura .item:last-child {
    margin-bottom: 0;
}

.bg_dantura .item h4 {
    position: relative;
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 68px;
}

.bg_dantura .item p {
    padding-left: 68px;
    font-size: 22px;
    line-height: 30px;
}

.bg_dantura .item h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2%;
    width: 48px;
    height: 48px;
    background-image: url('/wp-content/uploads/2025/10/Img.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.dantura_left iframe {
    height: 472px;
    border-radius: 20px;
    overflow: hidden;
}

.dantura_section1 {
    background: #5941CD;
    padding: 50px 0;
}

.dantura_section1 h3 {
    font-size: 29px;
    font-family: Inter, sans-serif;
    color: white;
    font-weight: 700;
}

.dantura_section1 h2 {
    font-family: Inter, sans-serif;
    color: #F2D7FB;
}

.dantura_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.grid_item {
    background: white;
    padding: 13px;
    border-radius: 20px;
}

.grid_item img {
    width: 100%;
    height: 133px;
    object-fit: cover;
    border-radius: 20px;
}

.grid_item h4 {
    font-family: Inter, sans-serif;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
}

.list_buttons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.btn_button {
    font-size: 1.8rem;
    background: #5941CD;
    padding: 10px 40px;
    color: white;
    border-radius: 20px;
    transition: 0.3s;
}

.buttons_main .btn_button {
  background: #00B8FF;
  font-size: 2rem;
  padding: 8px 40px;
  font-weight: 600;
  border-radius: 15px
}

.btn_button:hover {
    background: #4330a3 !important;
    color: white !important;
}

.accept {
  color: white;
  margin-bottom: 0;
  font-size: 14px;
  margin-top: -5px;
  text-align: center;
}

.dantura_left1 {
    padding-right: 50px;
}

.dantura_right1 h2 {
    color: #5941CD;
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 20px 20px 0;
    text-align: center;
}

.dantura_right1 p {
    color: #5941CD;
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

.dantura_right1 h2 span {
    font-size: 40px;
    font-weight: 700;
}

.dantura_bg {
    background: white;
    border-radius: 20px;
}

.dantura_bg img {
    width: 45%;
    height: 400px;
    object-fit: cover;
}

.offert_right {
    width: 50%;
    margin-top: 30px
}

.offert_item {
    background: #00B8FF;
    padding: 25px;
    border-radius: 20px;
}

.offert_item h2 {
    font-family: Calibri, sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: white;
    padding: 0;
}

.offert_item p {
    font-size: 40px;
    font-family: Calibri, sans-serif;
    color: white;
    text-transform: none;
    line-height: 100%;
}

.dantura-info {
    margin-top: 40px;
    padding: 0 20px;
}

.dantura-info .btn_button {
    font-family: Calibri, sans-serif;
    font-size: 30px;
    font-weight: 700;
    border-radius: 10px;
}

.dantura_section2 img {
    width: 100%;
    height: 777px;
    object-fit: cover;
    border-radius: 20px;
}

.custom-contact-form {
    background-color: #5941cd;
    padding: 30px;
    border-radius: 12px;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-contact-form .form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
}

.custom-contact-form .form-top .wpcf7-form-control-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 15px;
    height: 50px;
    transition: box-shadow 0.2s ease;
}

.custom-contact-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.custom-contact-form input[type="submit"] {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    height: 50px;
    padding: 0 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 220px
}

.custom-contact-form input[type="submit"]:hover {
    background-color: #fff;
    color: #5941cd;
}

.modal-content .form-bottom {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* partea de jos - checkbox */
.custom-contact-form .form-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    gap: 8px;
    font-size: 14px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.custom-contact-form .form-bottom input[type="checkbox"] {
    accent-color: #fff;
    transform: scale(1.1);
}

.custom-contact-form .form-bottom label {
    color: #fff;
    font-size: 14px;
}

/* ascunde spinnerul default */
.custom-contact-form .wpcf7-spinner {
    display: none !important;
}

/* responsive */
@media (max-width: 992px) {
    .custom-contact-form .form-top {
        flex-wrap: wrap;
    }

    .custom-contact-form .form-top .wpcf7-form-control-wrap {
        flex: 1 1 calc(50% - 10px);
    }

    .custom-contact-form .form-top input[type="submit"] {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .custom-contact-form .form-top {
        flex-direction: column;
    }

    .custom-contact-form .form-top .wpcf7-form-control-wrap,
    .custom-contact-form .form-top input[type="submit"] {
        width: 100%;
        flex: 1 1 100%;
    }
}


.bg_contact_form {
    width: 100%;
    height: 776px;
    display: flex;
    justify-content: flex-end;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
}

.contact_form {
    padding-top: 140px;
    padding-right: 70px;
}

.contact_form .d-flex {
    gap: 26px;
    margin-bottom: 26px;
}

.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form input[type="tel"] {
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 15px;
    transition: box-shadow 0.2s ease;
}

.contact_form input[type="submit"] {
    width: 50%;
    background-color: #5941cd;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact_form input[type="submit"]:hover {
  background-color: #00B8FF
}

.contact_form label {
    font-family: Calibri, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.contact_form .d-flex .wpcf7-form-control-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.contact_form .form_line {
    width: 50%;
}

.contact_form .wpcf7-form-control-wrap {
    display: flex;
    justify-content: flex-end;
}

.contact_form .wpcf7-spinner {
    display: none !important;
}

.header_team img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team_section h2 {
    font-family: Calibri, sans-serif;
    font-size: 40px;
    line-height: 140%;
    font-weight: 700;
}

.team_slider {
    margin-top: 50px;
}

.team_slider .swiper-slide {
    background: white;
    border-radius: 20px;
    padding: 10px 20px;
}

.team_slider .swiper-slide h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    margin-top: 10px;
    margin-bottom: 4px
}

.team_slider .swiper-slide p {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
}

.team_serv {
  display: inline-block;
  background-color: #F2F2F2;
  padding: 5px 10px;
  color: #323232 !important;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 10px;
  border-radius: 5px;
  margin-top: 12px
}

.certification {
    margin-top: 30px;
    background: #F3F3F3;
    padding: 20px;
    border-radius: 20px;
}

.certification h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #7F7E7E;
}

.certification_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.certification_content img {
    width: 100%;
    height: 112px !important;
    object-fit: contain !important;
}

.team_right {
    padding-left: 20px;
}

.bg_team img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-pagination {
    margin-top: 30px;
}

.swiper-pagination-bullet {
    background: #C2C2C2;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #5941CD;
    width: 10px;
    height: 10px;
}

.dantura_grid3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.team_section.mg-30 {
  padding-bottom: 10px;
}

.clients_slider.swiper {
  background: white;
  padding: 50px 30px;
  border-radius: 20px;
}

.dantura__left,
.dantura__right {
    width: 50%;
}

.dantura__right {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dantura_item {
    background: white;
    border-radius: 20px;
}

.dantura_item .block_title {
    width: 100%;
    background: #5941CD;
    padding: 28px;
}

.dantura_item .block_title h2 {
    color: white;
    font-size: 40px;
}

.dantura__left h3 {
    color: #5941CD;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
}

.dantura__left p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
    color: #00B8FF;
}

.dantura__left img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.dantura_content {
    padding: 30px;
}

.dantura__right h3 {
    font-size: 22px;
    color: #5941CD;
    font-weight: 700;
    line-height: 30px;
}

.dantura__right ul {
    list-style: none;
    margin-top: 23px;
}

.dantura__right ul li {
    font-family: Calibri, sans-serif;
    position: relative;
    margin-bottom: 15px;
    padding-left: 30px;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}

.dantura__right ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('/wp-content/uploads/2025/10/Symbol.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.btn_dantura {
    font-size: 23px;
    color: white;
    background: #00B8FF;
    padding: 12px 0px;
    border-radius: 20px;
    font-weight: 700;
}

.btn_dantura:hover {
    background: #4330a3 !important;
    color: white !important;
}

.question_section .faq__section {
    background: white;
    padding: 36px;
    border-radius: 20px;
}

.question_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


.accordion-dental {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: none;
}

.accordion-item {
    margin-bottom: 12px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.accordion-header {
    font-family: Calibri, sans-serif;
    padding: 30px 0;
    cursor: pointer;
    width: 100%;
    padding: 10px;
    background: #EDF1F5;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    transition: background 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

.toggle-icon i {
    color: #000;
    font-size: 16px; /* ajustează după design */
    transition: transform 0.3s ease;
}

.toggle-icon.open i {
    transform: rotate(180deg);
}


.accordion-header:hover {
    color: #DD7210;
}

.accordion-header .bullet {
    color: #DD7210;
    font-size: 2rem;
    margin-right: 10px;
}

.quest {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}

.quest h4 {
    color: #000000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.3s ease, font-size 0.3s ease;
}

.accordion-item.active .quest h4 {
    color: #5941CD;
    font-weight: 400;
}

.accordion-item:last-of-type {
  margin-bottom: 0;
}

.accordion-header .toggle-icon {
    color: #ffffff;
    font-size: 2rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-header .toggle-icon {
    transform: rotate(-90deg);
    color: #ffffff;
}

.accordion-content {
    display: block;
    max-height: 0;
    overflow: hidden;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    /*border-bottom: 1px solid rgba(169, 169, 169, 0.10);*/
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 20px 16px 20px;
}

.accordion-content p {
    font-size: 1.6rem;
    font-weight: 500;
    font-family: "Urbanist", sans-serif;
    margin: 0;
}

.accordion-item.active {
    transition: box-shadow 0.3s ease;
}

.question_left {
    padding-right: 20px;
}

.question_section .block_title h2 {
    font-size: 40px;
    font-weight: 700;
}

.question_section h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 24px;
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.before_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.before_item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.before_item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.before_item .before,
.before_item .after {
    position: relative;
}

.before_item .before span {
    font-family: Calibri, sans-serif;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #00B8FF;
    text-transform: uppercase;
    color: white;
    padding: 5px 12px;
    border-radius: 0 10px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.before_item .after span {
    font-family: Calibri, sans-serif;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #00B8FF;
    text-transform: uppercase;
    color: white;
    padding: 5px 12px;
    border-radius: 10px 0 0 0;
    font-size: 13px;
    font-weight: 700;
}

.certification_section .block_title h2 {
    font-family: Calibri, sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.certification_slider {
    position: relative;
}

.certification_slider img {
  width: 100%;
  border-radius: 25px;
}

.certification_slider .swiper-slide p {
    font-size: 13px;
    line-height: 18px;
    font-weight: 100;
}

.swiper__content {
    padding: 0 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.young_section .container .content_young {
  padding: 30px;
  background: white;
  border-radius: 20px;
}

.young_section .content_young h3{
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.title_young h4 {
  font-size: 20px;
  font-weight: 600;
  color: #5941CD;
  margin-top: 20px
}

.why_us .why_column_right .btn_hero {
  text-transform: uppercase;
}

.young_item {
    font-family: Calibri, sans-serif;
    background: #f3f3f3;
    border: 1px solid #5941CD;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 12px;
    width: calc(20% - 20px);
    margin: 0 10px;
    text-align: center;
}

.why_column_right h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600
}

.young_item p{
    font-weight: 400;
    line-height: 22px;
}

.young_content {
  display: flex;
}


.title_young {
    margin-bottom: 8px;
}

.title_young .number {
  background: #5941cd;
    border-radius: 100px;
    margin-bottom: 10px;
    color: white;
    display: inline-block;
    margin-bottom: 0
}

.title_young h3 {
    font-size: 20px;
    font-weight: 700;
}

.title_young .number span {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.happy_left img {
    width: 50%;
    height: 127px;
    object-fit: contain;
}

.happy_left h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
}

.bg_happy .d-flex.gap-4 {
  align-items: center;
}

.happy_right {
    padding-left: 30px;
}

.happy_right h3 {
    font-size: 24px;
    font-weight: 700;
}

.happy_right ul {
    margin-top: 40px;
    list-style: none;
}

.happy_right ul li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    padding-left: 20px;
}

.happy_right ul li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    width: 23px;
    height: 19px;
    background-image: url('/wp-content/uploads/2025/10/Img-2.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.happy_left .happy_img {
    margin-top: 60px;
    width: calc(100% - 56px);
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    left: 28px;
    bottom: 50px;
}

.happy_section .happy_left {
  position: relative;
}

.happy_section.mg-30 {
  margin-bottom: 0;
  padding-bottom: 0
}

.happy_section .happy_left,
.happy_section .happy_right {
    background: #f3f3f3;
    padding: 50px 28px;
    border-radius: 20px;
}

@media (min-width: 768px) {
  .happy_left.col-md-7 {
      flex: 0 0 auto;
      width: calc(58.33333333% - 15px);
      margin-right: 15px;
  }
  .happy_right.col-md-5 {
      flex: 0 0 auto;
      width: calc(41.66666667% - 15px);
      margin-left: 15px;
  }
}

.happy_section .btn_button {
    background: #00B8FF;
    font-size: 20px;
    font-weight: 600;
}

.happy_section .btn_button:hover {
    background: #008fcc !important;
    color: white !important;
}

.calculator_section .container .row {
    background: #5941CD;
    padding: 60px;
    border-radius: 20px;
    color: white;
}

.calculator_section p {
  margin-top: 30px;
  margin-bottom: 40px;
}

.calculator_section .btn_button {
    background: white;
    color: black;
}

.calculator_right {
    font-family: Calibri, sans-serif;
    text-align: center;
}

.calculator_right img {
  height: 130px;
  margin-bottom: 30px;
  object-fit: cover
}

.calculator_right h2 {
  font-weight: 600;
}

.calculator_section .row {
  align-items: center;
}

.calculator_right .btn_button {
    color: #5941CD !important;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.3s;
}

.calculator_right .btn_button:hover {
    background: transparent !important;
    border: 1px solid white !important;
    color: white !important;
}

.faq_section {
    padding: 0;
}

.faq_grid {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px; */
    width: 960px;
    margin: auto;
}

.video_section2.mg-30 {
  margin-bottom: 0;
}

.review_section.mg-30 {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 80px
}

.review_section .review-pagination {
  margin-top: 50px
}

.rate_section {
  margin-top: 60px;
}

.video5.mg-30 {
  padding-bottom: 0;
}

.review_section.mg-30.google_reviews {
  margin-top: 90px;
  padding-bottom: 0;
}

.faq_item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq_question {
    font-family: Calibri, sans-serif;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 22px;
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    outline: none;
    transition: color 0.3s ease;
}

.mg-30.tv_video {
  padding-top: 0;
}

.parteners_section2 .marquee-bar {
  padding-top: 10px
}

.faq_question:hover {
    color: #0056b3;
}

.faq_answer {
    font-family: Calibri, sans-serif;
    display: none;
    padding: 5px 0 15px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.faq_item.active .faq_answer {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .faq_grid {
        grid-template-columns: 1fr;
    }
}

.type_review {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.type_review img {
    width: 120px;
    height: 80px;
    object-fit: contain;
}

.type_review h3 {
    font-family: Calibri, sans-serif;
    font-size: 16px;
    line-height: 40px;
}

.type_review span {
    color: #008000;
    font-weight: 600
}

.review_slider .swiper-slide h4 {
    font-family: Calibri, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.review_slider .swiper-slide p {
    margin-top: 25px;
    font-family: Calibri, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.review_slider .swiper-slide p {
    margin-top: 25px;
    font-family: Calibri, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.review-pagination {
    margin-top: 30px;
}

.block_gradient {
    background: white;
}

.block_gradient h2 {
    font-size: 40px;
    font-family: Calibri, sans-serif;
    font-weight: 700;
}

.clients_slider .swiper-slide {
    height: 100%;
}

.clients_slider .swiper-slide img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}


.video-layout {
    background: #232323;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.main-video {
    flex: 2;
    position: relative;
}

.main-video iframe {
    width: 100%;
    height: 562px;
}

.main-video img {
    width: 100%;
    border-radius: 8px;
}

.main-video p {
    display: none;
    margin-top: 10px;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
}

.related-videos {
    flex: 1;
    overflow-y: auto;
    max-height: 570px;
}

.related-videos h3 {
    font-size: 20px;
    font-weight: 400;
    color: white;
}

.related-videos ul {
    list-style: none;
    padding: 0;
}

.related-videos ul li {
    display: flex;
    align-items: center;
    padding: 12px;
}

.related-videos ul li img {
    width: 72px;
    height: 42px;
    object-fit: cover;
    margin-right: 20px;
}

.related-videos ul li p {
    margin-top: 5px;
    font-size: 13px;
    color: #999999;
    font-weight: 400;
}

/*.related-videos ul li p:hover {*/
/*    color: #d3caff;*/
/*}*/

.related-videos ul li.active p {
    color: #d3caff;
    font-weight: 400;
}

.related-videos ul li {
    cursor: pointer;
}

.related-videos ul li:hover {
    background-color: rgba(40, 40, 40, 0.4);
    border-bottom: 1px solid #393939;
    color: #d3caff;
}

.related-videos ul li.active {
    background-color: #2f2f2f;
    border-bottom: 1px solid #393939;
    font-weight: 400;
    color: #d3caff;
}

@media only screen and (max-width: 640px) {
  .benefits_item p br {
    display: none;
  }
    .video-layout {
        flex-direction: column;
    }

    .main-video iframe {
        height: 300px;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .video-layout {
        flex-direction: column;
    }

    .main-video iframe {
        height: 450px;
    }
}

.rate_section {
    font-family: Calibri, sans-serif;
    background: #5941CD;
    padding: 50px 0;
    color: white;
}

.rate_section h3{
    font-size: 32px;
    line-height: 28px;
    font-weight: 700
}

.rate_benefits {
    margin-top: 60px;
    flex-direction: column;
    display: flex;
    align-items: center;
}

.rate_section ul{
    display: flex;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 50px;
}

.rate_section ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 18px;
    text-align: center;
    line-height: 28px;
    margin-bottom: 12px;
}

.rate_section ul li:last-child{
    margin-bottom: 0;
}

/*.rate_section .custom-contact-form{*/
/*    background: transparent;*/
/*    max-width: 1440px;*/
/*    margin: 0 auto;*/
/*}*/

.footer{
    font-family: Calibri, sans-serif;
    background: #252424;
    padding: 35px;
}

.footer h2{
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF99;
}

.footer .footer_left ul{
    margin-top: 37px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    align-items: center;
    list-style: none;
}

.footer .footer_left ul li {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFFD9;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}

.footer .footer_left ul li a{
    color: #FFFFFFD9;
    text-decoration: none;
    transition: 0.3s
}

.footer .footer_left ul li a:hover {
  color: #00B8FF
}

.footer .footer_left ul li:not(:first-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #ddd;
}

.footer .footer_left ul li:first-child{
    padding-left: 0;
    border: none;
}

.footer_right{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer_right a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: white;
    transition: 0.3s;
}

.footer_right a:hover{
    text-decoration: underline;
}

.footer_right ul{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

.info_header ul{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    margin-bottom: 0;
}

.info_header ul li a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: black;
}

.more__info{
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.more__info .more_item{
    width: 33%;
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid #ddd;
    padding: 0 30px;
}

.more__info .more_item h5{
    font-size: 14px;
    color: #00B8FF;
    font-weight: 400;
}

.more__info .more_item p,
.more__info .more_item p a{
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
}

.more__info .more_item img{
    width: 36px;
    height: 36px;
}

.content_more{
    position: relative;
    padding: 30px 0;
}

.content_more::before {
    content: '';
    position: absolute;
    left: -19px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #fff
}


/* Wrapper general */
.lp-calculator {
    max-width: 1440px;
    margin: 30px auto 50px;
    background: #fff;
    border: 4px solid #5639e6;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 60px;
    text-align: center;
    color: #000;
}

/* Titlu */
.lp-calculator h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.lp-calculator .subtitle {
    font-size: 16px;
    color: #555;
    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;
}

.lp-col select {
    width: 100%;
    max-width: 100%;
    border: none;
    border-bottom: 2px solid #5639e6;
    padding: 8px;
    font-size: 15px;
    background: transparent;
    color: #000;
    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: #5639e6;
    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: #a389ff;
}

/* Valoare slider */
.lp-slider-value {
    padding: 8px;
    font-size: 15px;
    color: #000;
}

/* Rezultatul */
.lp-result {
    font-weight: 600;
    font-size: 17px;
    background: transparent;
    border-bottom: 2px solid #5639e6;
    padding: 8px 0;
    width: 100%;
}

/* Nota de jos */
.lp-note {
    margin-top: 30px;
    font-size: 16px;
    color: #333333;
}

/* Buton */
.lp-btn {
    font-size: 18px;
    display: inline-block;
    margin-top: 25px;
    background: #5941CD;
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(100, 55, 227, 0.4);
    transition: all 0.3s;
    text-transform: uppercase;
}

.lp-btn:hover {
    background: #3f2b98;
    color: white;
}

/* Responsivitate */
@media (max-width: 900px) {
    .lp-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.wpcf7-not-valid-tip{
    font-size: 14px;
    color: white;
}

/* Modal */

/* Modal */

.modal-content .custom-contact-form .form-top .wpcf7-form-control-wrap[data-name="your-email"] {
  display: none;
}

.modal-content .custom-contact-form .form-top {
  flex-wrap: wrap;
}

.modal-content .custom-contact-form .form-top .wpcf7-form-control-wrap {
  flex: auto;
  display: block;
  width: 48%;
}

.modal-content .custom-contact-form input[type="submit"] {
  width: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    font-family: Calibri, sans-serif;
}

.modal-content {
    background-color: var(--purple);
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    color: white;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s;
}

.modal-content .close {
    color: white;
    width: 43px;
    height: 43px;
    font-size: 3rem;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: absolute;
    right: 5px;
    top: 5px;
}

.modal-content .gform_title {
    display: none;
}

.modal-content .close:hover,
.modal-content .close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.modal-content .ginput_container_consent {
    display: flex;
    align-items: center;
}

.modal-content .form_two {
    display: flex;
    column-gap: 20px;
}

.modal-content .form_two .form-group {
    width: 50%;
}

.modal-content .ginput_container_consent label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 3px;
    margin-left: 9px;
}

.modal-content input,
.modal-content textarea {
    border-color: #ccc
}

.modal-content textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    font-size: 1.8rem;
}

.message_form {
    margin-top: 20px;
}

.modal-content .gform_button {
    background: #281970;
    color: white;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    transition: 0.3s;
    margin-bottom: 0;
    margin-top: 10px;
    border: none;
}

.modal-content .gform_button:hover {
    background: #252846;
    color: white;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    transition: 0.3s;
    margin-top: 10px;
    margin-bottom: 0;
    border: none;
}

.modal-content h2 {
    margin-bottom: 00px;
    font-weight: 600;
    margin-top: 30px
}

.modal-content h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-bottom: 2px solid #bb1d82;
}

.modal-content .modal_line {
    margin-bottom: 15px;
}

.modal-content label {
    display: block;
    font-weight: bold;
    font-size: 1.6rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.modal-content input[type="text"],
.modal-content input[type="tel"],
.modal-content input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 1.8rem;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.modal-content input[type="text"]:focus,
input[type="email"]:focus {
    border-color: #007BFF;
}

/* Button Styles */
.modal-content button {
    width: 100%;
    background-color: var(--pink);
    color: white;
    border: none;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-content button:hover {
    background-color: #252846;
}

.modal-content .wpcf7-list-item {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 10px;
    margin-left: 0;
}

.modal_calculator .modal-content{
    max-width: 1440px;
}

.about_denture {
  margin-bottom: 50px
}

.about_denture .row {
  background: white;
  padding: 30px;
  border-radius: 20px;
}

.why_column img {
  width: 100%;
  border-radius: 20px;
  height: 65rem;
  object-fit: cover;
}

.why_column_right h3 {
  font-size: 3rem;
  font-weight: 700;
}

.about_denture .row.gy-0 {
  align-items: center;
}

.last_block {
  background: #5941cd;
  padding-bottom: 50px
}

.why_column_right {
  padding-left: 60px
}

.why_column_right p {
  font-size: 1.8rem;
    font-weight: 400;
  margin-bottom: 20px
}

.why_column_right ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  padding-left: 20px;
  margin-bottom: 30px
}

.why_column_right ul li {
  position: relative;
  font-size: 1.6rem;
    font-weight: 400;
  margin-bottom: 5px;
  padding-left: 15px;
}

.why_column_right ul li:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url('/wp-content/uploads/2025/10/Vector-18.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.why_column_right .btn_hero {
  background: #00b8ff;
}

.contact_section1 .custom-contact-form .form-top {
  flex-wrap: wrap;
}

.contact_section1 .custom-contact-form .form-top .wpcf7-form-control-wrap {
  flex: auto;
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: calc(50% - 15px);
}

.contact_section1 .contact_form input[type="submit"] {
  width: calc(50% - 7px);
}

.contact_section1 .custom-contact-form {
  background-color: transparent;
  max-width: 60%;
  margin-right: 0;
  margin-left: auto;
  padding: 0;
}

.contact_section1 .contact_form input[type="submit"]:hover {
    background-color: #00B8FF;
    color: white;
}

.formare img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.formare .btn-brown {
    margin-top: 50px
}

.formare_content .coroana h3:after {
    content: '';
    height: 3px;
    width: 152%;
    background: #333;
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 0
}

.formare_content .coroana h3:before {
    content: '';
    position: absolute;
    background: #333;
    width: 15px;
    height: 15px;
    border-radius: 100px;
    right: -52%;
    bottom: -5px;
    z-index: 9
}

.formare_content h3 {
    font-size: 30px;
    position: relative;
    color: #5840cb;
}

.formare_content .bont h3:after {
    content: '';
    height: 3px;
    width: 156%;
    background: #333;
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 0
}

.formare_content .bont h3:before {
    content: '';
    position: absolute;
    background: #333;
    width: 15px;
    height: 15px;
    border-radius: 100px;
    right: -56%;
    bottom: -5px;
    z-index: 9
}

.bont {
    margin-top: 158px;
}

.formare_content .implant h3:after {
    content: '';
    height: 3px;
    width: 160%;
    background: #333;
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 0
}

.formare_content .implant h3:before {
    content: '';
    position: absolute;
    background: #333;
    width: 15px;
    height: 15px;
    border-radius: 100px;
    right: -60%;
    bottom: -5px;
    z-index: 9
}

.implant {
    margin-top: 196px;
}

.formare .btn{
    max-width: 400px;
}

.benefits_list{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefits_list .benefits_item img{
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.benefits_list .benefits_item{
    padding: 20px;
}

.aparitii_grid{
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
    column-gap: 30px;
}

.aparitii_img{
    position: relative;
}

.aparitii_img span{
    font-size: 18px;
    color: white;
    font-weight: 600;
    position: absolute;
    background: #5a42cd;
    bottom: 20px;
    left: 20px;
    padding: 10px 30px;
    border-radius: 10px;
}

.aparitii_item img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.aparitii_item h3{
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.parteners_section{
    margin-top: 90px;
    margin-bottom: 20px;
}

.dantura_section2 .block_title p{
    font-size: 30px;
    font-weight: 400;
}
