/* Functions */
/* Fonts */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLDz8V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLDD4V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLBT5V1s.ttf) format('truetype');
}
body {
  line-height: 1.5;
  --gutter-x: 15px;
  --gutter-x2: -15px;
  overflow-x: hidden;
  font-family: 'Ubuntu', sans-serif;
}
body.modal-opened {
  overflow: hidden !important;
  width: 100%;
}
body main {
  overflow-x: clip;
}
a.mobile-hamburger-menu {
  display: flex;
  z-index: 999999;
  flex-direction: column;
  padding: 10px;
  width: 40px;
  height: 34px;
}
a.mobile-hamburger-menu .hamburger-menu {
  position: relative;
  transform: translateY(6px);
  background: #fff;
  transition: all 0ms 300ms;
  width: 20px;
  height: 2px;
}
a.mobile-hamburger-menu .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
a.mobile-hamburger-menu .hamburger-menu.animate.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  background: #FFC1D3;
}
a.mobile-hamburger-menu .hamburger-menu.animate.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  background: #FFC1D3;
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
a.mobile-hamburger-menu .hamburger-menu:after,
a.mobile-hamburger-menu .hamburger-menu:before {
  width: 20px;
  height: 2px;
}
a.mobile-hamburger-menu .hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  background: #FFC1D3;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
a.mobile-hamburger-menu .hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  background: #FFC1D3;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.gen-col-mb {
  margin-bottom: 32px;
}
.pagination {
  margin-top: 40px;
  display: block;
  width: 100%;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li {
  color: #CEB1A8;
  margin-right: 8px;
}
.pagination ul li:last-child {
  margin-right: 0;
}
.pagination ul li:hover a {
  color: #542636;
}
.pagination ul li.active a {
  border-color: #542636;
  background-color: #542636;
  color: #fff;
  font-weight: 700;
}
.pagination ul li span,
.pagination ul li a {
  border: solid 1px #e4e4e4;
  background-color: #f4f4f4;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li a {
  color: #939393;
  font-size: 16px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#side-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
}
#side-menu .backdrop {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  flex: 1;
  width: 100%;
  height: 100%;
}
#side-menu .content {
  padding: 100px 0 50px;
  width: 75%;
  background-color: #fff;
  box-shadow: -3px 0 10px 0 #00000026;
  margin-right: calc((50% + 56px) * -1);
  overflow-y: auto;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#side-menu .content.in {
  margin-right: 0;
}
#side-menu .content ul.menu {
  margin-bottom: 35px;
}
#side-menu .content ul.menu li.current-menu-item a {
  font-weight: 900;
}
#side-menu .content ul.menu li.opened.menu-item-has-children > a svg {
  transform: translateY(-50%) rotate(180deg);
}
#side-menu .content ul.menu li.opened > ul.sub-menu {
  max-height: 400px;
  overflow-y: auto;
}
#side-menu .content ul.menu li.menu-item-has-children > a svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 8px;
  right: 5px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  color: #000;
}
#side-menu .content ul.menu li a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  color: grey;
  font-size: 14px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
#side-menu .content ul.menu li ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#side-menu .content ul.menu li ul.sub-menu li {
  background-color: gray;
}
#side-menu .content ul.menu li ul.sub-menu li a {
  color: #fff;
}
#side-menu .content ul.menu li ul.sub-menu li ul.sub-menu li {
  background-color: #999;
}
#side-menu .content ul.menu li ul.sub-menu li ul.sub-menu li a {
  border-bottom-color: #fff;
}
#side-menu .content ul.menu li ul.sub-menu li.menu-item-has-children > a svg {
  filter: invert(1);
}
#side-menu .content ul.social-menu {
  margin-bottom: 35px;
}
#side-menu .content ul.social-menu li {
  margin-right: 16px;
}
#side-menu .content ul.social-menu li:last-child {
  margin-right: 0;
}
#side-menu .content ul.social-menu li a {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #542636;
  padding: 4px;
}
#side-menu .content ul.social-menu li a svg {
  color: #542636;
}
#left-whatsapp {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
#left-whatsapp a {
  height: 52px;
  width: 52px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
  background: #58d164;
  /* Old browsers */
  background: -moz-linear-gradient(top, #58d164 0%, #2cb842 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #58d164 0%, #2cb842 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #58d164 0%, #2cb842 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  border-radius: 0 8px 8px 0;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#left-whatsapp a:hover {
  padding-left: 5px;
  width: 57px;
}
#left-whatsapp a svg {
  color: #fff;
}
#mobile-footer-cta-buttons {
  padding-bottom: 14px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
#mobile-footer-cta-buttons:before {
  content: " ";
  height: 40px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #542636;
}
#mobile-footer-cta-buttons .row {
  --gutter-x: 4px;
  --gutter-x2: -4px;
}
#mobile-footer-cta-buttons .button-x {
  height: 52px;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 0 20px;
  color: #fff;
}
#mobile-footer-cta-buttons .button-x.button-call {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
  background: #e08ba9;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e08ba9 0%, #D17897 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #e08ba9 0%, #D17897 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #e08ba9 0%, #D17897 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
}
#mobile-footer-cta-buttons .button-x.button-whatsapp {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
  background: #58D164;
  /* Old browsers */
  background: -moz-linear-gradient(top, #58D164 0%, #2CB842 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #58D164 0%, #2CB842 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #58D164 0%, #2CB842 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
}
#mobile-footer-cta-buttons .button-x svg {
  color: #fff;
}
#mobile-footer-cta-buttons .button-x span.text {
  margin-left: 12px;
  font-weight: 400;
  font-size: 14px;
}
.wpcf7-spinner {
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
}
#sidebar-area .sidebar-form-area {
	
	    background-image: url('https://yelsaestetikguzellik.com/wp-content/uploads/2025/09/nano-5.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 192, 203, 0.2); /* Pembe yarı saydam arka plan */
    padding: 30px;
	border-color:#392b1d;
    border-radius: 15px;
	border: 1px solid #392b1d;
    color: #fff;
		
  background-color: #FFC1D3;
  padding: 40px 20px 32px;
}
#sidebar-area .sidebar-form-area .form-title-area {
  margin-bottom: 40px;
}
#sidebar-area .sidebar-form-area .form-title-area .text {
  font-size: 24px;
  color: #392b1d;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
#sidebar-area .sidebar-form-area .wpcf7-not-valid-tip {
  color: #fff !important;
}
#sidebar-area .sidebar-form-area form .row {
  --gutter-x: 10px;
  --gutter-x2: -10px;
}
#sidebar-area .sidebar-form-area form [class*="col-"] {
  margin: 10px 0;
}
#sidebar-area .sidebar-form-area form .form-control {
  border: 1px solid grey;
  padding: 0 20px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #000;
  width: 100%;
  height: 64px;
  border: none;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#sidebar-area .sidebar-form-area form .form-control::placeholder {
  color: #555555;
}
#sidebar-area .sidebar-form-area form .form-control:focus {
  border-color: #FFC1D3;
}
#sidebar-area .sidebar-form-area form textarea.form-control {
  font-family: 'Ubuntu', sans-serif;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 150px;
}
#sidebar-area .sidebar-form-area .button-white {
  cursor: pointer;
  border: 0;
  border: 1px solid #fff;
  color: #392b1d;
  display: block;
  padding: 20px 50px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
  width: 100%;
  background-color: #FFC1D3;
  -webkit-appearance: none;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#sidebar-area .sidebar-form-area .button-white:hover {
  color: #FFC1D3;
  background-color: #fff;
}
#sidebar-area .sidebar-form-area .wpcf7-response-output {
  margin: 0px;
  color: #fff !important;
  padding: 12px;
}
#post-detail {
  padding-bottom: 120px;
  font-family: 'Ubuntu', sans-serif;
}
#post-detail .img-20 {
  margin-bottom: 20px;
}
	#post-detail .post-content .alignleft,
#post-detail .post-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
#post-detail .post-content .alignright,
#post-detail .post-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
#post-detail .post-content .alignnone,
#post-detail .post-content img.alignnone {
  display: block;
  clear: both;
}
#post-detail .post-content .aligncenter,
#post-detail .post-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
#post-detail.contact-page .post-content .contacts-area {
  --gutter-x: 10px;
  --gutter-x2: -10px;
}
#post-detail.contact-page .post-content .contact-items {
  margin-bottom: 60px;
}
#post-detail.contact-page .post-content .contact-items .contact-col {
  margin-bottom: 20px;
}
#post-detail.contact-page .post-content .contact-items .map-box {
  overflow: hidden;
}
#post-detail.contact-page .post-content .contact-items .map-box iframe {
  width: 100%;
  height: 350px;
  display: block;
}
#post-detail.contact-page .post-content .contact-items .c-item {
  height: 100%;
  background-color: #fff;
  box-shadow: 0 1px 10px 0 #0000000c;
  padding: 20px 20px 60px;
  color: #542636;
  line-height: 34px;
  position: relative;
}
#post-detail.contact-page .post-content .contact-items .c-item .title {
  font-weight: 700;
  font-size: 24px;
  color: #542636;
}
#post-detail.contact-page .post-content .contact-items .c-item .value {
  font-size: 14px;
  color: #4E4E4E;
}
#post-detail.contact-page .post-content .contact-items .c-item .value p {
  margin: 0;
}
#post-detail.contact-page .post-content .contact-items .c-item a.value {
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#post-detail.contact-page .post-content .contact-items .c-item a.value:hover {
  color: #542636;
}
#post-detail.contact-page .post-content .contact-items .c-item .icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
#post-detail.contact-page .post-content .contact-items .c-item .icon svg {
  color: #542636;
  width: 40px;
  height: 40px;
}
#post-detail.contact-page .post-content iframe {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
#post-detail .post-header {
  overflow: hidden;
  margin-bottom: 40px;
  background: #FEDDE4;
/*  background: linear-gradient(275deg, #E1C7BF 0%, #CEB1A8 66%, #BB9B90 100%); */
}
#post-detail .post-header .post-title {
  padding: 50px 0;
  font-weight: 700;
  color: #392b1d;
  font-size: 48px;
  line-height: 1.2;
  width: 100%;
  text-align: center;
}
#post-detail .post-content {
  font-size: 16px;
  color: #392b1d;
/*  color: #000; */
  line-height: 1.5;
}
#post-detail .post-content p,
#post-detail .post-content ul,
#post-detail .post-content ol {
  margin: 25px 0;
}
#post-detail .post-content h1 {
  font-size: 28px;
}
#post-detail .post-content h2 {
  font-size: 24px;
}
#post-detail .post-content h3 {
  font-size: 20px;
}
#post-detail .post-content h4,
#post-detail .post-content h5 {
  font-size: 16px;
}
#post-detail .post-content h1,
#post-detail .post-content h2,
#post-detail .post-content h3,
#post-detail .post-content h4 {
  margin: 25px 0;
  line-height: 1.2;
}
#post-detail .post-content ol {
  list-style: decimal!important;
  padding-left: 20px;
}
#post-detail .post-content ul {
  padding-left: 20px;
}
#post-detail .post-content ul li {
  list-style: disc;
}
#post-detail .post-content p img {
  margin-bottom: 20px;
}
#post-detail .post-content a {
  color: #fff9fb;
  font-weight: 600;
}
#post-detail .post-content img {
  max-width: 100%;
  height: auto;
}
#post-detail .post-content table {
  border-collapse: collapse;
  margin-bottom: 20px;
  border: 1px solid #000;
  color: #000;
  width: 100%;
}
#post-detail .post-content table tr {
  border: 1px solid #000;
  width: 100%;
}
#post-detail .post-content table th,
#post-detail .post-content table td {
  text-align: left;
  padding: 8px;
  border: 1px solid #000;
}
#post-detail #archive-area {
  --gutter-x: 10px;
  --gutter-x2: -10px;
}
#post-detail #archive-area .archive-list [class*="col-"] {
  margin-bottom: 20px;
}
#post-detail #archive-area .archive-list .archive-card {
  background-color: #fff;
  border: solid 2px #ebf0f2;
  min-height: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#post-detail #archive-area .archive-list .archive-card .card-thumb {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
}
#post-detail #archive-area .archive-list .archive-card .card-text-area {
  text-align: center;
  padding: 20px 15px;
}
#post-detail #archive-area .archive-list .archive-card .card-text-area .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}
#post-detail #archive-area .archive-list .archive-card .card-text-area .card-text {
  color: #000;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
header {
  background-color: #FFC1D3;
/*  background-color: #D07595;*/
}
header .top-logo {
  display: block;
}
header .top-logo img {
  width: 100px;
  height: auto;
  display: block;
}
header .top-menu {
  display: flex;
}
header .top-menu > li > a {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #392b1d;
  font-weight: 500;
  padding: 60px 15px;
}
header .top-menu li {
  position: relative;
}
header .top-menu li:hover::after {
  width: 100%;
}
header .top-menu li:hover > ul.sub-menu {
  z-index: 15;
  opacity: 1;
  top: 100%;
  pointer-events: initial;
}
header .top-menu li ul.sub-menu {
  display: initial;
  opacity: 0;
  position: absolute;
  z-index: 9;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fcfcfc;
  pointer-events: none;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
header .top-menu li ul.sub-menu::after {
  content: '';
  width: 100%;
  height: 30px;
  position: absolute;
  top: -20px;
  background: None;
  left: 0;
  z-index: 0;
}
header .top-menu li ul.sub-menu:before {
  content: ' ';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  border: 10px solid;
  border-color: transparent transparent #fff transparent;
}
header .top-menu li ul.sub-menu li {
  padding: 0;
  margin: 0;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
header .top-menu li ul.sub-menu li:hover > ul.sub-menu {
  opacity: 1;
  pointer-events: initial;
  left: 99%;
}
header .top-menu li ul.sub-menu li:after {
  display: none;
}
header .top-menu li ul.sub-menu li a {
  white-space: nowrap;
  color: #392b1d;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding: 10px 40px 10px 20px;
  display: block;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
header .top-menu li ul.sub-menu li a:hover {
  opacity: 0.5;
}
header .top-menu li ul.sub-menu li ul.sub-menu {
  left: 95%;
  margin: 0;
  top: 0;
  transform: translateX(0);
}
header .top-menu li ul.sub-menu li ul.sub-menu:before {
  display: none;
}
#home-slider {
  position: relative;
  margin-bottom: 100px;
}
#home-slider .owl-nav {
  margin: 0;
}
#home-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  border: none;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.6;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-slider .owl-nav button svg {
  width: 50px;
  height: 50px;
  color: #542636;
}
#home-slider .owl-nav button:hover {
  opacity: 1;
}
#home-slider .owl-nav .owl-prev {
  left: 5%;
}
#home-slider .owl-nav .owl-next {
  right: 5%;
}
.section-title-area {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #392b1d;
  line-height: 1.2;
}
.section-text {
  font-size: 20px;
  color: #4E4E4E;
}
.gen-btn {
  display: block;
  color: #392b1d;
  background-color: #FFC1D3;
  width: max-content;
  font-size: 18px;
  padding: 8px 40px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.gen-btn:hover {
  background-color: #FEDDE4;
}
#home-about-us {
  padding: 40px 0;
}
#home-about-us .about-text-area .about-title {
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 600;
  color: #392b1d;
  line-height: 1.2;
}
#home-about-us .about-text-area .about-text {
  font-size: 18px;
  color: #392b1d;
  margin-bottom: 20px;
}
#home-about-us .about-text-area .info-boxes .box-mb {
  margin-bottom: 30px;
}
#home-about-us .about-text-area .info-box .img-box-outer {
  background: linear-gradient(to right, #fce1dd 0 50%, #fff 50% 100%);
  padding: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  margin-right: 5px;
}
#home-about-us .about-text-area .info-box .img-box-outer .img-box {
  padding: 10px;
  background-color: #D07595;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#home-about-us .about-text-area .info-box .img-box-outer .img-box .box-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
#home-about-us .about-text-area .info-box .box-title {
  font-size: 18px;
}
#home-about-us .about-text-area .about-btn {
  margin-top: 10px;
}
#home-services-area {
  background: url('../../imgs/services-bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
  position: relative;
}
#home-services-area .bg-decor {
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 15vw;
  min-width: 300px;
}
#home-services-area .service-box {
  display: block;
  background-color: #FEDDE4;
  text-align: center;
  padding: 40px 60px;
  height: 100%;
  -webkit-border-radius: 140px;
  -moz-border-radius: 140px;
  -ms-border-radius: 140px;
  border-radius: 140px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-services-area .service-box .box-icon {
  margin-bottom: 30px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-services-area .service-box .box-title {
  font-size: 22px;
  font-weight: 600;
  color: #4E4E4E;
  line-height: 1.2;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-services-area .service-box:hover {
  background-color: #D07595;
}
#home-services-area .service-box:hover .box-icon {
  filter: brightness(0) invert(1);
}
#home-services-area .service-box:hover .box-title {
  color: #fff;
}
#home-services-area .owl-stage {
  display: inline-flex;
}
#home-services-area .owl-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
#home-services-area .owl-nav button {
  z-index: 8;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  background-color: #FCE1DD;
  color: #D07595;
  margin: 10px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-services-area .owl-nav button svg {
  width: 40px;
  height: 40px;
}
#home-services-area .owl-nav button:hover {
  background-color: #D07595;
  color: #fff;
}
#home-form-area {
  background: linear-gradient(275deg, #FEDDE4 0%, #FFC1D3 66%, #FFC1D3 100%);
  padding: 50px 0;
  --gutter-x: 40px;
  --gutter-x2: -40px;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
#home-form-area .section-title-area {
  margin-bottom: 30px;
}
#home-form-area .section-title {
  color: #fff;
}
#home-form-area .form-area form .wpcf7-not-valid-tip {
  color: #fff;
  margin-top: 5px;
}
#home-form-area .form-area form .wpcf7-response-output {
  border-color: #542636;
  color: #fff;
  margin: 10px 0;
  padding: 5px 10px;
}
#home-form-area .form-area .input-area {
  margin-bottom: 30px;
}
#home-form-area .form-area .input-area .form-in {
  background-color: #fff;
  border: none;
  width: 100%;
  font-size: 20px;
  padding: 25px 30px;
}
#home-form-area .form-area .input-area .form-in::placeholder {
  font-family: 'Ubuntu', sans-serif;
}
#home-form-area .form-area .form-button {
  padding: 25px;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  color: #fff;
  border: 4px solid #fff;
  background: linear-gradient(93deg, #D07595 0%, #D17897 100%);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-form-area .form-area .form-button:hover {
  background: #fff;
  color: #D07595;
}
#home-treatments-area {
  padding: 40px 0;
}
#home-treatments-area .section-title-area {
  margin-bottom: 60px;
}
#home-treatments-area .treatments-row {
  --gutter-x: 20px;
  --gutter-x2: -20px;
}
#home-treatments-area .treatments-row .box-mb {
  margin-bottom: 40px;
}
#home-treatments-area .treatment-box {
  display: flex;
  flex-direction: column;
  background-color: #FEDDE4;
  text-align: center;
  height: 100%;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  border-radius: 35px;
}
#home-treatments-area .treatment-box .img-wrapper {
  padding: 15px;
  display: flex;
  justify-content: center;
  background-color: #FFC1D3;
  -webkit-border-radius: 35px 35px 100% 100%;
  -moz-border-radius: 35px 35px 100% 100%;
  -ms-border-radius: 35px 35px 100% 100%;
  border-radius: 35px 35px 100% 100%;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-treatments-area .treatment-box .img-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-treatments-area .treatment-box .box-text-area {
  padding: 20px 20px 40px;
}
#home-treatments-area .treatment-box .box-title {
  font-size: 22px;
  font-weight: 600;
  color: #4E4E4E;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-treatments-area .treatment-box:hover .img-wrapper {
  background-color: #D07595;
}
#home-treatments-area .treatment-box:hover .img-wrapper img {
  filter: brightness(0) invert(1);
}
#home-treatments-area .treatment-box:hover .box-title {
  color: #542636;
}
#home-treatments-area .section-btn {
  margin-top: 20px;
}
#home-blog-area {
  padding: 50px 0;
}
#home-blog-area .section-title-area {
  margin-bottom: 60px;
}
#home-blog-area .blog-area {
  --gutter-x: 25px;
  --gutter-x2: -25px;
}
#home-blog-area .blog-area .box-mb {
  margin-bottom: 30px;
}
#home-blog-area .blog-area .blog-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  overflow: hidden;
}
#home-blog-area .blog-area .blog-box .box-text-area {
  height: 100%;
  padding: 25px 25px 15px;
  background-color: #FEDDE4;
  text-align: center;
}
#home-blog-area .blog-area .blog-box .box-text-area .box-title {
  font-size: 22px;
  font-weight: 600;
  color: #4E4E4E;
  margin-bottom: 10px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-blog-area .blog-area .blog-box .box-text-area .box-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  color: #4E4E4E;
}
#home-blog-area .blog-area .blog-box:hover .box-text-area .box-title {
  color: #542636;
}
#home-videos-area {
  padding: 50px 0;
}
#home-videos-area .video-item .video {
  position: relative;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  overflow: hidden;
}
#home-videos-area .video-item .video .video-img {
  aspect-ratio: 16/9;
}
#home-videos-area .video-item .video .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: auto;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-videos-area .video-item .video:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}
#home-videos-area .section-text-area {
  text-align: center;
}
#home-videos-area .section-text-area .videos-title {
  margin-bottom: 15px;
}
#home-videos-area .section-text-area .videos-text {
  margin-bottom: 30px;
}
#home-videos-area .owl-navi {
  display: flex;
  justify-content: center;
}
#home-videos-area .owl-navi .owl-button {
  display: block;
  z-index: 8;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  background-color: #FCE1DD;
  color: #D07595;
  margin: 10px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-videos-area .owl-navi .owl-button svg {
  width: 40px;
  height: 40px;
}
#home-videos-area .owl-navi .owl-button:hover {
  background-color: #D07595;
  color: #fff;
}
#home-instagram-area {
  padding: 50px 0;
}
#home-instagram-area .section-title-area {
  margin-bottom: 40px;
}
#home-instagram-area .section-title-area .section-title {
  margin-bottom: 20px;
}
#home-instagram-area .section-title-area .section-title img {
  margin-right: 15px;
}
#home-instagram-area .section-title-area .section-text {
  font-size: 24px;
  color: #4E4E4E;
  width: 90%;
}
#home-instagram-area .insta-slider-area .slider-item img {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
}
#home-instagram-area .owl-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
#home-instagram-area .owl-nav button {
  z-index: 8;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  background-color: #FCE1DD;
  color: #D07595;
  margin: 10px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-instagram-area .owl-nav button svg {
  width: 40px;
  height: 40px;
}
#home-instagram-area .owl-nav button:hover {
  background-color: #D07595;
  color: #fff;
}
#home-multi-section {
  background: url('../../imgs/multi-section-bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
#home-comments-area {
  padding: 50px 0;
}
#home-comments-area .comments-slider-area .owl-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
#home-comments-area .comments-slider-area .owl-nav button {
  z-index: 8;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  background-color: #FCE1DD;
  color: #D07595;
  margin: 10px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#home-comments-area .comments-slider-area .owl-nav button svg {
  width: 40px;
  height: 40px;
}
#home-comments-area .comments-slider-area .owl-nav button:hover {
  background-color: #D07595;
  color: #fff;
}
#home-comments-area .comments-slider-area .owl-stage-outer {
  overflow: visible;
  overflow-x: clip;
}
#home-comments-area .comments-slider-area .comment-item {
  position: relative;
  padding: 35px 70px 80px;
  background-color: #fff;
  box-shadow: 0px 9px 20px #0000000D;
  border-radius: 70px;
}
#home-comments-area .comments-slider-area .comment-item .item-title {
  font-size: 22px;
  font-weight: 600;
  color: #4E4E4E;
  margin-bottom: 10px;
}
#home-comments-area .comments-slider-area .comment-item .item-text {
  font-size: 18px;
  color: #4E4E4E;
}
#home-comments-area .comments-slider-area .comment-item .star-img {
  position: absolute;
  right: 70px;
  bottom: 30px;
  width: 180px;
  height: auto;
}
#home-brands-area {
  padding: 50px 0 100px;
  position: relative;
}
#home-brands-area .bg-decor {
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 15vw;
}
#home-brands-area .section-title-area {
  margin-bottom: 40px;
}
footer {
  position: relative;
  z-index: 2;
}
footer .footer-top {
  background-color: #FFC1D3;
/*  background-color: #542636;*/
  padding: 100px 0 80px;
  --gutter-x: 10px;
  --gutter-x2: -10px;
}
footer .footer-top .footer-logo {
  margin-bottom: 20px;
  display: block;
}
footer .footer-top .footer-logo img {
  width: 220px;
  height: auto;
  max-width: 100%;
}
footer .footer-top .footer-socials li {
  margin: 5px;
}
footer .footer-top .footer-socials li a {
  display: block;
  border: 1px solid #392b1d;
  color: #392b1d;
  padding: 5px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
footer .footer-top .footer-socials li a svg {
  height: 25px;
  width: 25px;
}
footer .footer-top .footer-socials li a:hover {
  background-color: #fff;
  color: #542636;
}
footer .footer-top .footer-title {
  font-size: 24px;
  color: #392b1d;
  margin-bottom: 20px;
  font-weight: bold;
  display:inline-block;
}
footer .footer-top .map-box {
  margin-top: 20px;
}
footer .footer-top .map-box iframe {
  display: block;
  height: 200px;
  width: 100%;
}
footer .footer-top .footer-menu {
  margin: -4px 0 0 -4px;
}
footer .footer-top .footer-menu li {
  color: #392b1d;
}
footer .footer-top .footer-menu li a {
  display: block;
  font-size: 14px;
  color: #392b1d;
  padding: 4px;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
footer .footer-top .footer-menu li a:hover {
  opacity: 0.6;
}
footer .footer-top .footer-contacts .footer-contact {
  display: flex;
  font-size: 14px;
  color: #392b1d;
  margin-bottom: 15px;
}
footer .footer-top .footer-contacts .footer-contact svg {
  height: 35px;
  width: 35px;
  min-width: 35px;
  margin-top: -5px;
  margin-right: 10px;
}
footer .footer-top .footer-contacts .footer-contact:last-child {
  margin: 0;
}
footer .footer-bottom {
  padding: 20px 0;
  background-color: #D07595;
}
footer .footer-bottom .copyright {
  font-size: 14px;
  color: #fff;
}
