/*
Theme Name: Dentrust
Theme URI: www.min-code.com
Author: MinCode
Author URI: https://www.min-code.com
Version: 1.0
Text Domain: www.dentrust.ro
*/

:root {
  --bg: #DCAD7B40;
  --gradient: linear-gradient(90deg, #DDAE7C 0%, #97683D 100%);
  --white: #ffffff;
  --dark: #323335;
  --text: #313131;
  --text-muted: #5b5f66;
  --border: #e7ddd2;
  --accent: #DCAD7B;
  --accent-end: #96683d;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "LibreFranklin", sans-serif;
  color: var(--text);
  padding-left: 50px;
  padding-right: 50px;
  font-size: 18px;
  line-height: 1.6;
  background: #FBF8F4;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow-x: hidden;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s
}

p{
  margin-top: 0;
  margin-bottom: 0;
}

h2{
  margin-top: 0;
}

h4{
  margin-top: 0;
  margin-bottom: 0;
}

h3{
  margin-top: 0;
  margin-bottom: 0;
}

.section-dt{
  max-width: 1820px;
  width: 100%;
  margin: auto;
}

.hero.section-dt .btns-row a {
  width: 100%;
  max-width: 100%;
}

.mb-dt{
  margin-bottom: 120px;
}

.btn-dt{
  border-radius: 5px;
  font-size: 18px;
  line-height: 25px;
  padding: 13px 24px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.btn-white{
  background: #fff;
  color: #313131;
  transition: 0.3s
}

.btn-white:hover {
  background: #313131;
  color: #fff;
}

.btns-row{
  display: flex;
  column-gap: 15px;
}

.btn-grd{
  background: var(--gradient);
  color: #fff;
  max-width: 288px;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: 0.3s;
}

.btn-grd:hover {
  transform: scale(1.04)
}

.btn-wap{
  background: #41BF4F;
  color: #fff;
  display: flex;
  column-gap: 10px;
  align-items: center;
  transition: 0.3s
}

.btn-wap:hover {
  background: #29a437;
}

.btn-wap img{
  width: 20px;
}

.bg-title{
  font-size: 14px;
  line-height: 30px;
  background: var(--dark);
  color: #fff;
  border-radius: 3px;
  padding: 5px 30px;
  display: inline-block;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.title{
  font-size: 42px;
  line-height: 52px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.title span{
  color: var(--accent);
}

.title img{
  width: 37px;
  margin-right: 15px;
  transform: translateY(4px);
  display: inline-block;
}

.video-block {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.video-player iframe {
  width: 100%;
  height: 640px;
  border-radius: 5px;
  margin-bottom: -8px;
}

.video-list {
  height: 640px;
  overflow-y: scroll;
}

.video-list {
  background: #f8f8f8;
  border-radius: 5px;
  padding: 15px;
}

.video-list-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.video-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.video-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.video-item.active {
  background: #ddd;
}

.video-player__shell {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  background: #000;
}

.video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
  border-radius: 5px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-facade__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.video-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
  pointer-events: none;
}

.video-facade__play {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.video-facade__play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.video-facade:hover .video-facade__thumb {
  transform: scale(1.04);
}

.video-facade:hover .video-facade__play {
  transform: scale(1.08);
  background: var(--accent);
  border-color: var(--accent);
}

.video-facade:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.video-block--active .video-facade {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.accordion {
  margin: auto;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 18px 0;
  font-size: 18px;
  color: #333;
}

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

/* ICON */
.icon {
  width: 16px;
  height: 16px;
  position: relative;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: #999;
  transition: 0.3s;
}

/* linie orizontala */
.icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* linie verticala */
.icon::after {
  height: 100%;
  width: 2px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* activ = minus */
.accordion-item.active .icon::after {
  opacity: 0;
}

/* CONTENT */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content p {
  margin: 0 0 20px;
  color: #666;
  line-height: 1.6;
}

/* deschis */
.accordion-item.active .accordion-content {
  max-height: 200px;
}

header{
  max-width: 1820px;
  width: 100%;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  background: var(--gradient);
  padding: 11px 20px;
  border-radius: 5px;
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}

header.active {
  position: fixed;
  top: 10px;
  left: 50px;
  right: 50px;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 6px 20px;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(50, 51, 53, 0.18);
  animation: headerSlideDown 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-120%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header .logo_site img{
  max-width: 170px;
  transition: max-width 0.35s ease;
}

header.active .logo_site img{
  max-width: 140px;
}

.mobile__nav{
  display: none;
}

.header .header_menu{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .menu{
  display: flex;
  padding-left: 0;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  column-gap: 35px;
}

.header .menu li a{
  font-size: 18px;
  line-height: 21px;
  color: #fff;
  transition: 0.3s;
}

.header .menu li a:hover {
  color: #313131;
}

.header .menu li.current-menu-item a {
  color: #313131;
}

.hero{
  background: var(--bg);
  padding: 70px;
  border-radius: 5px;
}

.hero h1{
  font-size: 60px;
  line-height: 70px;
  text-transform: none;
  margin-top: 0;
}

.hero.section-dt h1 span {
  font-weight: 600;
}

@media only screen and (max-width: 1400px) {
  .hero.section-dt h1 br {
    display: none;
  }
}

.hero .desc{
  font-size: 18px;
  line-height: 28px;
  max-width: 720px;
  margin-bottom: 60px;
}

.hero .trusted-row{
  display: flex;
  margin-bottom: 60px;
}

.hero .trusted-row img{
  width: 49px;
  height: 50px;
  object-fit: contain;
}

.hero .trusted-row .trust-2{
  margin-left: -8px;
  width: 53px;
  height: 56px;
  margin-top: -5px;
}

@media (max-width: 1600px) {
  .has-map .fancybox__content, .has-pdf .fancybox__content,
  .has-youtube .fancybox__content, .has-vimeo .fancybox__content,
  .has-html5video .fancybox__content {
    width: 80%!important;
    height: 80%!important
  }
}

.hero .trusted-row .trust-3{
  margin-left: -8px;
  width: 53px;
  height: 56px;
  margin-top: -5px;
}

.trusted-text{
  margin-left: 14px;
  margin-top: -5px;
}

.trusted-text span{
  font-size: 17px;
  line-height: 26px;
  color: #323335;
}

.trusted-text p{
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
}

.hero .col-img{
  position: relative;
  border-radius: 5px;
  background-position: center;
  background-size: cover;
}

.hero .col-img img{
  display: flex;
}

.control-video{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 28px;
  position: absolute;
  bottom: 50px;
  width: 100%;
  left: 0;

}

.control-video img{
  width: 33px;
}

.hero .control-video .btn-play{
  width: 70px;
  height: 70px;
  padding: 24px;
  border: 1px solid #fff;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(10px);
  padding-left: 26px;
}

.hero .col-text{
  position: relative;
  padding-right: 100px;
}

.review-box{
  background: #fff;
  border-radius: 5px;
  position: absolute;
  z-index: 2;
  right: -140px;
  bottom: 120px;
  padding: 20px;
  width: 190px;
}

.review-box .stars{
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 25px;
  column-gap: 9px;
  margin-bottom: 15px;
  font-weight: 500;
}

.review-box img{
  width: 100px;
}

.review-box p{
  font-size: 18px;
  line-height: 25px;
}

.why-section{
  margin-bottom: 120px;
}

.why-section .col-text{
  padding: 15px;
}

.why-section .col-text .desc{
  max-width: 671px;
  margin-bottom: 40px;
}

.why-section .col-box{
  padding: 15px;
}

.why-section .col-box .box{
  color: #fff;
}

.why-section .box-bg-2 {
  color: #313131;
  background: #DCAD7B15;
  padding: 30px;
  border-radius: 5px;
}

.why-section .box-bg-1 {
  color: #313131;
  background: #dcad7b;
  padding: 30px;
  border-radius: 5px;
}

.why-section .box-bg-2 p:nth-child(2) {
  color: #313131
}

.why-section .col-box.box-bg-2 .box .nr{
  color: var(--accent);
}

.why-section .col-box .box .nr{
  font-size: 40px;
  line-height: 49px;
  margin-bottom: 30px;
}

.why-section .col-box .box h4{
  font-size: 22px;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 21px;
}

.why-section .col-box .box p{
  font-size: 16px;
}

.why-section .col-img{
  position: relative;
}

.why-section .col-img img{
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.why-section .row {
  gap: 15px;
}

.why-section .col-md-3 {
  width: calc(25% - 15px);
}

.why-section .btn-dt{
  position: absolute;
  left: 30px;
  bottom: 30px;
}

.happy-section .swiper-slide{
  position: relative;
}

.happy-section .swiper-slide img{
  position: relative;
  z-index: 1;
  border-radius: 5px;
}

.happy-section .swiper-slide .sw-content{
  position: absolute;
  z-index: 10;
  bottom: 20px;
  left: 0;
  right: 0;
  color: #fff;
}

.happy-section .swiper-slide .sw-content h3{
  color: var(--accent);
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: uppercase;
}

.sw-content p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 5px;
}

.swiper .swiper-pagination{
  bottom: 0;
}

.swiper .swiper-pagination span{
  background: #DCAD7B;
  opacity: 0.4;
  width: 64px;
  height: 15px;
  border-radius: 5px;
}

#menu-footer-menu li:last-child {
  padding-bottom: 4px;
}

.swiper .swiper-pagination .swiper-pagination-bullet-active{
  background: var(--gradient);
  opacity: 1;
}

.ba-row{
  background: var(--dark);
  color: #fff;
  border-radius: 5px;
}

.ba-section .col-content{
    padding: 30px;
}

.ba-section .col-content:nth-child(1){
  border-right: 1px solid var(--accent);
}

.ba-section .col-content .section-top{
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
  position: relative;
}

.ba-section .col-content .section-top img{
  width: 25%;
  display: flex;
  height: 80px;
  object-fit: cover;
}

.ba-section .col-content .section-top .quote{
  width: 48px;
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 0.2;
  height: auto;
}

.ba-section .col-content .section-top img:nth-child(1){
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.ba-section .col-content .section-top img:nth-child(2){
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.ba-section .col-content .section-top .box-text{
  padding-left: 30px;
}

.about-df .col-text {
  padding-right: 60px;
}

.about-df .btns-row a {
  width: 50%;
  max-width: 100%;
}

.ba-section .col-content .section-top .box-text h4{
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}
.ba-section .col-content .section-bottom{
  padding-right: 40px;
}

.box-text p {
  font-size: 14px;
}

.about-df .col-text .bg-title{
  margin-bottom: 20px;
}

.about-df .col-text h2{
  margin-bottom: 30px;
}

.about-df .col-text .desc{
  margin-bottom: 60px;
}

.about-df .col-video{
  position: relative;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
}

.about-df .col-video .box-video{
  position: relative;
  height: 100%;
}

.about-df .col-video .box-video img{
  border-radius: 5px;
}

.about-df .col-video .box-video .bg-grad{
  background: var(--gradient);
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 5px;
  width: calc(100% - 60px);
  left: 30px;
  bottom: 30px;
}

.about-df .col-video .box-video .bg-grad img{
  border-radius: 0;
  width: 20px;
  margin-left: 3px;
}

.video_fancy {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.about-df .col-video .box-video .btn-play{
  width: 59px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(10px)
}

.select-section{
  background: #fff;
  padding: 80px 40px;
  position: relative;
  border-radius: 5px;
  padding-bottom: 60px;
}

.select-section .bg-logo{
  position: absolute;
  bottom: 90px;
  left: 40px;
  max-width: 340px;
}

.select-section h2{
  margin-bottom: 60px;
}

.select-section .col-list{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 50px;
  padding: 0;
  justify-content: center;
}

.select-section .col-text {
  padding-right: 60px;
}

.select-section .col-list .select-box{
  width: calc(50% - 15px);
  padding: 25px;
  background: #FBF8F4;
  border-radius: 5px;
}

.select-section .col-list .select-box .box-top{
  display: flex;
  align-items: center;
  background: #323335;
  border-radius: 5px;
  padding: 13px;
  color: #fff;
  column-gap: 13px;
  margin-bottom: -15px;
  transform: translateY(-40px);
}

.select-section .select-box img {
  height: 240px;
  object-fit: cover;
  border-radius: 5px;
}

.select-section .col-list .select-box p{
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
}

.page-template-dantura-fixa .select-section {
  margin-bottom: 60px;
}

.select-section .col-list .select-box .box-top h4{
  font-size: 32px;
  line-height: 48px;
  color: var(--accent);
}

.cta-section .col-img {
  background-position: center;
  background-size: cover;
  border-radius: 5px;
}

.select-section .col-list .select-box .box-top p{
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  margin: auto;
}

.cta-section{
  background: var(--gradient);
  padding: 40px;
  border-radius: 5px;
}

.single-servicii .simple_page_content p {
  margin-bottom: 16px;
}

.cta-section .social-row{
  display: flex;
  align-items: center;
  column-gap: 35px;
  color: #fff;
}

.single-servicii .page_content h2 {
  color: #896343;
}

strong {
  font-weight: 600;
}

.cta-section .col-form {
  padding-right: 40px;
}

.cta-section .social-row .phone{
  display: flex;
    align-items: center;
  column-gap: 10px;
  font-size: 30px;
  line-height: 1;
  color: #fff;
}

.cta-section .social-row .phone img{
  width: 39px;
  height: 39px;
}

.cta-section .social-row .socials{
  display: flex;
  column-gap: 11px;
}

.cta-section .social-row .socials a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid #fff;
  border-radius: 5px;
}

.cta-section .social-row .socials img{
  height: 21px;
}

.cta-section h2{
  font-size: 34px;
  line-height: 44px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
}

.cta-section .col-form .col-input{
  padding-right: 15px;
}

.cta-section form {
  margin-bottom: 50px;
}

.cta-section form input{
  width: 100%;
  padding: 15px 15px;
  background: #fff;
  border-radius: 5px;
  color: #BBBBBB;
  font-size: 16px;
  line-height: 1;
  border: none;
}

.cta-section form .accept{
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: center;
  color: #fff;
  width: 100%;
  font-size: 13px;
}

.cta-section form .btn-dt{
  width: 100%;
  max-width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
}

.cta-section .col-img{
  padding-left: 55px;
}

.cta-section .col-img img{
  border-radius: 5px;
}

.select-section-2 .section-top{
  max-width: 1065px;
  margin: auto;
}

.select-section-2 .row-select{
  align-items: stretch;
  margin-bottom: 50px;
}

.select-section-2 .col-select{
  padding-left: 15px;
  padding-right: 15px;
}

.select-section-2 .col-select .box{
  background: #323335;
  color: #fff;
  padding: 30px;
  height: 100%;
  border-radius: 5px;
}

.select-section-2 .col-select.select-2 .box{
  background: #DCAD7B;
}

.select-section-2 .col-select .box .box-top{
  display: flex;
    padding-bottom: 45px;
  border-bottom: 1px solid #ffffff80;
}

.select-section-2 .col-select .box .box-top .col-img{
  width: 200px;
}

.select-section-2 .col-select.select-2 .box-top .col-img{
  width: 230px;
}

.select-section-2 .col-select .box-top .col-text{
  padding-left: 25px;
  padding-right: 30px;
}

.select-section-2 .col-select .box-top .col-text h4{
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
}

.select-section-2 .col-select .box-top .col-text p{
  font-size: 16px;
  line-height: 28px;
}

.select-section-2 .col-select .box ul{
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 40px;
}

.select-section-2 .col-select .box ul li{
  display: flex;
  margin-bottom: 15px;
  column-gap: 15px;
}

.select-section-2 .col-select .box ul li img {
  width: 36px;
  height: 36px;
  margin-top: -5px;
}

.select-section-2 .col-select.select-2 .box ul li img {
  width: 65px;
  margin-top: -5px;
}

.case_img {
  height: 440px;
  object-fit: cover;
  border-radius: 5px;
}

.step_video {
  position: relative;
}

.step_video .img_video {
  border-radius: 5px;
  height: 650px;
  object-fit: cover;
}

.step_video .btn-play {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.step_video .btn-play img {
  width: 36px;
  height: 36px;
  margin-left: 6px;
}

.step-section.section-dt {
  margin-bottom: 70px;
}

.step_video.section-dt {
  margin-bottom: 120px;
}

.box-step img {
  height: 220px;
  object-fit: cover;
}

.box-step .arrow-step img {
  height: auto;
}

.select-section-2 .btns-row{
  justify-content: center;
  column-gap: 32px;
}

.expert-section .section-top{
  text-align: center;
}

.video-block .video-item .img-box svg{
  opacity: 0;
}

.video-list{
  background: #fff;
  border-radius: 5px;
  border: 1px solid var(--accent);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  width: 559px;
}

.video-list .video-list-header{
  display: flex;
  flex-wrap: wrap;
  padding-left: 30px;
  padding-right: 30px;
}

.video-list .video-list-header h3{
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.video-list .video-list-header h3 span {
  font-size: 18px;
  line-height: 28px;
  color: #886343;
}

.video-list .video-list-header p{
  font-size: 14px;
  margin-bottom: 12px;
}

.video-block .video-item.active .img-box svg{
  opacity: 1;
}

.video-block .video-item .img-box{
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.video-block .video-item .img-box img{
  width: 139px;
  height: 91px;
  object-fit: cover;
  border-radius: 5px;
}

.video-block .video-item{
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  align-items: center;
}

.video-block .video-item.active{
  background: #F1EFEA;
  border-radius: 0;
}

.video-block .video-item .video-info{
  font-size: 16px;
  line-height: 24px;
  flex: 1;
}

.step-section .title{
  margin-bottom: 50px;
}

.step-section .box-step{
  padding-left: 16px;
  padding-right: 16px;
}

.step-section .box-step .box-img{
  border-radius: 5px;
  position: relative;
  margin-bottom: 25px;
}
.step-section .box-step .box-img span{
  position: absolute;
  width: 122px;
  left: 0;
  right: 0;
  color: #fff;
  margin: auto;
  bottom: 15px;
  background: var(--accent);
  z-index: 3;
  border-radius: 5px;
  padding-top: 9px;
  font-size: 15px;
  line-height: 18px;
}

.step-section .box-step .box-img::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 20px;
  background: var(--accent);
  bottom: 0;
  left: 0;
  z-index: 2;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}


.step-section .box-step h4{
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.step-section .box-step p{
  font-size: 16px;
  line-height: 26px;
}

.step-section .box-step .arrow-step{
  position: absolute;
  width: 53px;
  height: 53px;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3
}

.cta-section-2{
  background: var(--dark);
  border-radius: 5px;
  color: #fff;
  padding: 38px;
}

.cta-section-2 .col-img {
  border-radius: 5px;
  padding: 10px;
  background-size: cover;
  background-position: center;
  border: 2px solid #DCAD7B;
  min-height: 500px;
}

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

.cta-section-2 .col-img img{
  border-radius: 5px;
  display: flex;
}

.cta-section-2 .col-text{
  padding-left: 50px;
}

.cta-section-2 .col-text h2{
  font-size: 32px;
  line-height: 42px;
  text-transform: uppercase;
}

.cta-section-2 .col-text p{
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 60px;
}

.justify-center {
  justify-content: center;
}

.justify-center.btn2 {
  margin-top: 40px;
}

.hero_page.th-page {
  margin-bottom: 20px;
  padding: 100px 20px 120px
}

.hero_page.th-page .d-flex {
  margin-top: 60px;
}

.home .services-section.section-dt {
  margin-bottom: 80px;
}

.home .happy-section,
.review-section.section-dt {
  margin-bottom: 100px
}

.section-video .videoSlider{
  padding-bottom: 60px;
}

.section-video .swiper-slide .sw-img{
  position: relative;
}

.section-video .swiper-slide .bg-grad{
  background: var(--gradient);
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 5px;
  width: calc(100% - 30px);
  left: 15px;
  bottom: 30px;
  column-gap: 15px;
}

.section-video .swiper-slide .bg-grad img{
  border-radius: 0;
  width: 18px;
  margin-left: 3px;
}

.section-video .swiper-slide .btn-play{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(10px)
}

.section-video .swiper-slide .sw-content{
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 15px;
}

.price-section .row-price{
  gap: 30px;
}

.contact-section h2.title {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 40px;
}

.price-section .row-price .box-price{
  background: var(--accent);
  border-radius: 5px;
  padding: 40px;
  color: #fff;
  position: relative;
}

.grid2.row-price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px
}

.price-section .row-price .col-price-white .box-price{
  background: #fff;
  color: #000;
}

.price-section .row-price .box-price .btn-dt{
  display: inline-block;
  text-align: center;
}

.price-section .row-price .box-price h4{
  font-size: 20px;
  line-height: 24px;
  color: #886343;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.price-section .row-price .box-price h3{
  font-size: 32px;
  line-height: 38px;
  font-weight: 500;
  margin-bottom: 28px;
}

.price-section .row-price .box-price ul{
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  margin-bottom: 38px;
}

.price-section .row-price .box-price ul li{
  position: relative;
  font-size: 18px;
  line-height: 28px;
  padding-left: 29px;
  margin-bottom: 8px;
}

.price-section .row-price .box-price ul li:before{
  content: '';
  width: 17px;
  height: 17px;
  left: 0;
  top: 5px;
  position: absolute;
  background: url('assets/img/smile.svg');
  background-size: contain;
}

.price-section .row-price .col-price-white .box-price ul li:before{
  background: url('assets/img/smile-2.svg');
  background-size: contain;
}

.price-section .row-price .box-price .box-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-section .row-price .box-price img{

}

.price-section .row-price .box-price .price{
  font-size: 40px;
  line-height: 38px;
  font-weight: 500;
  color: #fff;
}

.price-section .row-price .box-price .price span{
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.price-section .row-price .col-price-white .box-price .price{
  color: #886343;
}

.price-section .row-price .col-price-white .box-price .price span{
  color: #313131;
}

.team-section .title{
  margin-bottom: 50px;
}

.team-section .swiper-slide .sw-box{
  position: relative;
}

.team-section .swiper-slide .box-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  bottom: 20px;
  left: 0;
}

.team-section .swiper-slide .box-bottom img{
  border-radius: 5px;
}

.team-section .swiper-slide .box-bottom p{
  font-size: 16px;
  line-height: 30px;
  padding: 6px 20px;
  text-align: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 5px;
}

.team-section .swiper-slide .box-bottom .btn-play{
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 5px;
}

.team-section .swiper-slide .box-bottom .btn-play img{
  width: 17px;
  height: 18px;
  border-radius: 0px;
}

.team-section .swiper{
  padding-bottom: 80px;
}

.diplom-section .list-cert{
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
  padding-left: 20px;
}

.diplom-section img{
  border-radius: 5px;
}

.diplom-section .list-cert .cert-item{
  width: calc(33% - 11px);
}

.cert-item.cert-more-overlay {
  position: relative;
  overflow: hidden;
}

.cert-item.cert-more-overlay .overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  pointer-events: none;
  padding: 10px;
}

.cert-item.cert-more-overlay .overlay-text span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.cert-item.cert-more-overlay:hover .overlay-text {
  background-color: rgba(0, 0, 0, 0.75);
}

.team-section .swiper-slide h4{
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin-top: 20px;
}

.team-section .swiper-button-prev,
.team-section .swiper-button-next,
.review-section .swiper-button-prev,
.review-section .swiper-button-next {
  width: 53px;
  height: 53px;
  background: url('assets/img/arrow-dk.svg') no-repeat center;
  background-size: contain;
  bottom: 0;
  top: inherit;
}

.team-section .swiper-button-prev,
.review-section .swiper-button-prev{
   left: calc(50% - 60px);
}

.team-section .swiper-button-next,
.review-section .swiper-button-next{
   right: calc(50% - 60px);
}

.team-section .swiper-button-prev::after,
.team-section .swiper-button-next::after,
.review-section .swiper-button-prev::after,
.review-section .swiper-button-next::after {
  display: none;
}

.team-section .swiper-button-prev,
.review-section .swiper-button-prev {
  transform: rotate(180deg);
}

.review-section .title{
  margin-bottom: 50px;
}

.review-section .swiper{
  padding-bottom: 60px;
}

.review-section .swiper-slide{
  text-align: center;
  background: var(--dark);
  border-radius: 5px;
  color: #fff;
  padding: 30px;
}

.review-section .swiper-slide .name{
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.review-section .swiper-slide .name span{
  font-weight: 400;
}

.review-section .swiper-slide .desc{
  margin-bottom: 35px;
  height: 98px;
  overflow-y: scroll;
  padding-right: 10px;
  font-size: 16px;
}

.review-section .swiper-slide .desc::-webkit-scrollbar {
    width: 6px;
}

.review-section .swiper-slide .desc::-webkit-scrollbar-track {
    background: #e6e6e6;
    border-radius: 6px;
}

.review-section .swiper-slide .desc::-webkit-scrollbar-thumb {
    background: #dcad7b;
    border-radius: 5px;
}

.review-section .swiper-slide .desc::-webkit-scrollbar-thumb:hover {
    background: #174e77;
}

.review-section .swiper-slide .comp-logo img{
  max-width: 90px;
  margin: auto;
}

.review-section .swiper-slide .stars{
  max-width: 105px;
  margin: auto;
  margin-bottom: 35px;
}

.testimonials-video .btn-play {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 100%;
  background: var(--gradient);
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  left: 30px;
  top: 30px;
}

.testimonials-video .btn-play img {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

.testimonials-video .sw-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.testimonials-video .sw-content p {
  font-weight: 500;
}

.testimonials-video .case_img {
  height: auto
}

.review-section.reviews_white .swiper-slide {
  background: white;
  color: var(--dark)
}

.review-section .swiper-wrapper {
  display: flex;
  align-items: stretch;
  margin-bottom: 30px
}

.accordion-item:last-child {
  border-bottom: 0;
}

.review-section .swiper-slide {
  height: auto;
  display: flex;
}

.review-section .slide-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.review-section .sw-content {
  height: 100%;
}

.contact-section .box-list{
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
}

.contact-section .box-list .box{
  background: var(--accent);
  border-radius: 5px;
  padding: 21px;
  color: #fff;
  width: calc(33% - 10px);
}

.contact-section .box-list .box .icon-svg{
  height: 37px;
  width: 37px;
  border-radius: 5px;
  background: #fff;
  display: flex;
  justify-content:center;
  align-items: center;
    margin-bottom: 27px;
}

.contact-section .box-list .box img{
  height: 18px;
}

.contact-section .box-list .box .sp-text{
  font-size: 22px;
  line-height: 48px;
  font-weight: 500;
}

.contact-section .box-list .box .link-text{
  font-size: 18px;
  line-height: 26px;
}

.contact-section .contact-form{
  padding: 30px 10px;
  background: white;
  border-radius: 10px;
}

.contact-section .col-input{
  background: #fff;
  border-radius: 5px;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
}

.map iframe {
  border-radius: 10px;
  height: 244px;
}

.contact-section .col-input label{
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #886343;
  margin-bottom: 12px;
  width: 100%;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.contact-section .col-input input{
  width: 100%;
  background: #FBF8F4;
  border: none;
  border-radius: 5px;
  height: 52px;
  padding: 20px;
  font-size: 15px;
  line-height: 68px;
}

.contact-section .accept{
  text-align: center;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 12px;
  width: 100%;
  font-size: 12px;
  margin-top: 20px
}

.contact-section .btn-grd{
  width: 100%;
  max-width: 100%;
  padding: 18px;
}

.faq-section .col-text{
  padding-right: 30px;
}

.faq-section .col-text .desc{
  font-size: 18px;
  line-height: 28px;
  max-width: 740px;
  margin-bottom: 50px;
}

.faq-section .col-text .faq-btns{
  position: relative;
}

.faq-section .col-text .faq-btns img{
  border-radius: 5px;
}

.faq-section .col-text .faq-btns .btns-row{
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  bottom: 30px;
  justify-content: center;
}

.faq-section .col-acord{
  background: #fff;
  padding: 40px;
  border-radius: 5px;
  padding-top: 20px;
  padding-bottom: 30px;
}

.faq-section .col-acord .accordion-header span{
  font-size: 24px;
  line-height: 30px;
  padding-top: 6px;
  font-weight: 500
}

.faq-section .col-acord .accordion-header .icon::before, .faq-section .col-acord .accordion-header .icon::after{
  display: none;
}

.faq-section .col-acord .accordion-item .icon{
  transition: 0.4s;
}

.faq-section .col-acord .accordion-item.active .icon{
  transform: rotate(-45deg);
}

.faq-section .col-acord .accordion-content p{
  padding-top: 10px;
  padding-bottom: 30px;
}

.footer-row{
  background: #323335;
  color: #fff;
  padding: 40px;
  border-radius: 5px;
}

.footer-row .logo-footer img{
  max-width: 340px;
}

.footer-row .logo-footer{
  margin-bottom: 60px;
  display: flex;
}

.socials-footer{
  display: flex;
  column-gap: 15px;
  margin-bottom: 80px;
}

.socials-footer a{
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid #D6B188;
  border-radius: 5px;
  transition: 0.3s;
}

.socials-footer a:hover {
  transform: scale(1.04);
}

.contact-section .box-list .box a:hover {
  color: #886343
}

.cta-footer a:hover {
  color: #ddac7a;
}

.socials-footer img{
  height: 31px;
}

.footer-row .col-menu h4, .footer-row .col-info h4{
  font-size: 26px;
  line-height: 30px;
  color: #8A8A8A;
  font-weight: 500;
  margin-bottom: 27px;
}

.footer-row .col-menu ul{
  list-style: none;
  padding-left: 30px;
  margin-bottom: 0;
  border-left: 1px solid var(--accent);
}

.footer-row .col-menu ul li{
  font-size: 18px;
  line-height: 21px;
  padding-bottom: 18px;
  font-weight: 500;
}

.col-info .text-link {
  margin-bottom: 10px;
  line-height: 24px;
}

.footer-row .col-info .box-info{
  border-left: 1px solid var(--accent);
  padding-left: 30px;
  width: 100%;
}

.footer-row .col-info .box-info .text-accent{
  color: var(--accent);
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-row .col-info .box-info .text-link{
  font-size: 18px;
}

.footer-row .col-info .box-info:nth-child(2) {
  padding-bottom: 20px;
}

.footer-row .col-info .box-info:nth-child(3) {
  padding-top: 10px;
}

.cta-footer{
  background: #886343;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 30px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #F4F3EF;
    margin: 15% auto;
    padding: 50px 30px 60px;
    border: 1px solid #888;
    width: 80%;
    max-width: 940px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s;
    position: relative;
    overflow: visible;
    border-radius: 5px;
}

.modal-content h2 {
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 46px;
}

.modal-content .acceptance p {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 14px;
}

.modal-content .close {
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: #313131;
    position: absolute;
    right: -1px;
    top: -1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.modal-content .close svg {
    stroke: white;
    width: 18px;
    height: 18px;
}

.modal-content .close:hover,
.modal-content .close:focus {
    background: var(--dark);
    text-decoration: none;
    cursor: pointer;
}

.modal-content .contact_form .wpcf7-form-control.wpcf7-text,
.modal-content .contact_form .wpcf7-form-control.wpcf7-tel {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.grid3.cases_photos img {
  border-radius: 5px;
}

.floating-buttons {
  position: fixed;
  bottom: 70px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-buttons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 5px;
  box-shadow: 0 4px 6px rgb(0 0 0 / .1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.floating-buttons a img {
  width: 24px;
  height: 24px;
}

.floating-buttons p {
  margin-bottom: 0;
  position: absolute;
  left: -75px;
  font-size: 14px;
  background: var(--dark-blue);
  color: white;
  border-radius: 30px;
  padding: 2px 15px;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
}

.page-template-testimoniale .happy-section.mb-dt {
  margin-bottom: 20px;
}

.row1 {
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 40px;
  margin-bottom: 50px;
  align-items: flex-end;
}

.footer .col-menu a:hover,
.footer .col-info a:hover {
  color: #ddac7a
}

.fancybox__footer {
  display: none;
}

.home_hero {
  position: relative;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  margin-bottom: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 60px;
}

.home_hero:before {
  content: '';
  background: linear-gradient(to right, #886343 15%, rgba(25, 78, 118, 0) 160%);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.home_hero .container_md {
  position: relative;
  z-index: 9;
}

.home_hero .hero {
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 100px;
  color: white;
}

.home_hero .trusted-text span {
  color: white;
}

.home_hero h1 {
  font-size: 70px;
  color: white;
  margin-bottom: 20px;
}

.home_hero h1 span {
  color: #DCAD7B;
}

.home_hero p {
  color: white;
  font-size: 18px;
  line-height: 28px;
}

.home_hero a {
  margin-top: 50px;
  border: 1px solid white;
}

.social-row a:hover {
  color: #313131
}

.social-row .socials a:hover {
  transform: scale(1.06);
}

.team-section.team_df {
  margin-bottom: 80px;
}

.contact-section.section-dt {
  margin-bottom: 80px;
}

.service_swiper {
  background: white;
  border: 1px solid #DCAD7B;
  padding: 20px;
  border-radius: 5px;
}

.card-content img {
  border-radius: 5px;
  height: 300px;
  object-fit: cover;
}

.service_content {
  background: #F8F1E9;
  border-radius: 5px;
  margin-top: 10px;
  padding: 30px;
  text-align: center;
}

.my_services {
  overflow: hidden;
}

.service_content h3 {
  font-weight: 500;
  text-transform: uppercase;
  color: #DCAD7B;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 32px;
}

.my_services .swiper-wrapper {
  display: flex;
}

.swiper-slide.service_swiper {
  height: auto;
  display: flex;
}

.service_swiper .card-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
}

.service_swiper .service_content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service_swiper .btn-details {
  margin-top: auto;
}

.row-diplom .col-md-3 a img {
  height: 100%;
  object-fit: cover;
}

.page-template-dantura-fixa .happy-section.mb-dt {
  margin-bottom: 70px;
}

.testimonials-video.section-dt {
  margin-bottom: 20px;
}

.service_content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}

.service_content a {
  background: var(--gradient);
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: 0.3s;
  margin-top: 30px;
  font-size: 18px;
  line-height: 25px;
  padding: 13px 24px;
  border-radius: 5px;
}

.service_content a:hover {
  transform: scale(1.04);
}

.dots_slider {
  margin-top: 60px;
}

.page_text p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  width: fit-content;
  background: #323335;
  border-radius: 3px;
  color: white;
  padding: 10px 15px;
}

.page_text p img {
  width: 14px;
}

.page_text h1 {
  margin-bottom: 0;
  margin-top: 120px;
  text-transform: uppercase;
  font-size: 60px;
  color: #DCAD7B;
}

.page-template-contact .page_text h1 {
  margin-top: 80px;
  font-size: 42px;
  padding-right: 20px
}

.page_bg {
  background-position: center;
  background-size: cover;
  border-radius: 5px;
}

.page_hero {
  background: #dcad7b2b;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 80px;
}

.page_hero .page_text {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.page_hero .page_text h1 {
  width: 100%;
}

.contact_info {
  background: white;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 80px;
}

.page-template-contact .page_hero {
  margin-bottom: 20px;
}

.contact_map {
  padding-left: 50px;
}

.contact_map iframe {
  border-radius: 5px;
}

.contact_info .box-list {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.single_social {
  background: #886343;
  color: white;
  border-radius: 6px;
  transition: 0.3s
}

.single_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
    padding: 10px;
}

.single_social img {
  height: 20px;
  object-fit: contain;
  width: auto;
}

.single_social:hover {
  background: #323335
}

.grid3.socials {
  margin-bottom: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #D5D5D5;
}

.d-flex.form7 {
  flex-wrap: wrap;
}

.d-flex.form7 input {
  width: 100%;
  padding: 18px 25px;
  border: 0;
  font-size: 16px;
  border-radius: 10px;
}

.modal .d-flex.form7 label {
  display: none;
}

.d-flex.form7 .col-12 {
  padding: 0 10px;
}

.d-flex.form7 .submit_button input {
  font-size: 18px;
  font-weight: 500;
  color: white;
  background: var(--gradient);
  transition: 0.2s;
  line-height: 1;
  padding: 20px 25px;
}

.d-flex.form7 .submit_button input:hover {
  transform: scale(1.04);
}

.submit_button {
  position: relative;
}

.submit_button .wpcf7-spinner {
  position: absolute;
  left: 15px;
  top: 15px;
}

.cta-section .d-flex.form7,
.cf_contact_page .d-flex.form7 {
  margin: 0 -10px;
}

.cf_contact_page h4 {
  font-size: 24px;
  line-height: 140%;
}

.socials-footer .whatsapp {
  height: 38px;
}

.cta-section .d-flex.form7 .submit_button input {
  background: #2E2F33;
  font-size: 18px;
}

.cta-section .d-flex.form7 .submit_button input:hover {
  background-color: #424649;
}

.contact-section .col-text {
  padding-right: 50px;
}

.page-template-services .cta-section,
.page-template-testimoniale .cta-section {
  margin-bottom: 10px;
}

.cf_contact_page .d-flex.form7 {
  margin-top: 30px
}

.contact-section .cf_contact_page .accept {
  padding: 0;
  margin-top: 20px;
}

.cta-section .col-form label {
  display: none;
}

.price_list {
  background: white;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #DCAD7B
}

.single_pricelist {
  margin-bottom: 70px;
}

.single_pricelist h3 {
  text-transform: uppercase;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 20px;
  color: #DCAD7B
}

.price_itemlist {
  background: #F8F1E9;
  border-radius: 5px;
  padding: 12px 20px;
  width: 100%;
  margin-bottom: 10px;
}

.price_itemlist:last-child,
.single_pricelist:last-child {
  margin-bottom: 0;
}

.price_itemlist p {
  width: 200px;
  text-align: right;
  transform: translateY(2px);
  font-weight: 500;
  color: #886343;
  font-size: 20px;
}

.price_itemlist p span {
  font-size: 15px;
  color: var(--dark);
  font-weight: 400;
}

.price_itemlist h4 {
  width: calc(100% - 200px);
  padding-right: 15px;
  font-size: 20px;
}

.single_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.price_sidebar {
  background: var(--gradient);
  border-radius: 5px;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  padding: 30px 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .price_sidebar.col-md-3 {
    width: calc(30% - 30px);
    margin-left: 30px;
  }
  .price_list.col-md-3 {
    width: 70%;
  }
}

.price_sidebar h3 {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 34px;
}

.price_sidebar .form7 label {
  display: none;
}

.price_sidebar .d-flex.form7 .col-12 {
  padding: 0;
  width: 100%;
}

.price_sidebar .d-flex.form7 {
  row-gap: 12px;
}

.price_sidebar .acceptance p {
  font-size: 13px;
  line-height: 18px;
  color: white;
  margin-top: 10px;
}

.price_sidebar .d-flex.form7 .submit_button input {
  background: var(--dark);
}

.sidebar_contact {
  border-top: 1px solid white;
  margin-top: 50px;
  padding-top: 35px;
}

.sidebar_contact .sidebar_phone a {
  color: white;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}

.sidebar_contact .sidebar_phone a:hover {
  color: var(--dark)
}

.sidebar_contact .sidebar_phone {
  margin-bottom: 12px;
}

.faq1 {
  padding-right: 50px;
}

.faq2 {
  padding-left: 50px;
}

.myClinicSwiper {
    width: 100%;
    height: auto;
    padding-bottom: 60px;
}

.myClinicSwiper .swiper-slide {
    height: calc((100% - 20px) / 2) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.myClinicSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hero_page {
  text-align: center;
  background: #dcad7b2b;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 80px;
}

.hero.section-dt {
  padding: 40px;
  margin-bottom: 80px;
}

.hero.section-dt .col-img .video_play,
.swiper-slide.position-relative a.video_play {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9
}

.hero_page h1 {
  text-transform: uppercase;
  font-size: 60px;
  color: #DCAD7B;
}

.page_content h2 {
  margin-top: 50px;
  margin-bottom: 12px;
}

.page_content h2:nth-child(1) {
  margin-top: 0;
}

.page_content {
  margin-bottom: 80px;
  background: white;
  border-radius: 5px;
  padding: 50px;
}

.not_found_page {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  background: white;
  padding: 50px;
  border-radius: 5px;
  padding-bottom: 80px;
}

.video-info p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.not_found_page h2 {
  font-size: 120px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #dcad7b;
  font-style: italic;
}

.button_cta {
  display: flex;
  justify-content: center;
  margin-top: 60px
}

@media (min-width: 1366px) and (max-width: 1540px) {
  .video-player iframe {
    height: 600px;
  }
  .video-list {
    height: 600px;
    overflow-y: scroll;
  }
}
