:root {
  --pink: #eb2f96;
  --dark-pink: #841c54;
  --text-color: #b2b2b2;
  --black: #0d0d0d;
  --white: #ffffff;
  --title-font: "Cormorant Garamond";
  --footer-bg: #111111;
  --body-font: "DM Sans";
  --icon-font: "Font Awesome 6 Free";
  --icon-size: 12px;
  --gray: #3d4250;
  --text-size: 16px;
  --brown: #c28565;
  --body-color: #6e6e6e;
  --smoke-color: #f9f3f0;
  --smoke-color2: #f4e8e1;
  --border-color: #e0e0e0;
}

@keyframes movingX {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(50px);
  }

  100% {
    transform: translateX(0);
  }
}

* {
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font), sans-serif;
}

.text p {
  color: var(--body-color);
  font-size: var(--title-font);
  line-height: 1.75;
  font-weight: 500;
}

.full-width {
  width: 100% !important;
}

.half-width {
  width: 50% !important;
}

.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right !important;
}

.main-title h1 {
  font-size: 68px;
  color: var(--black);
  font-weight: 600;
}

.swipe {
  animation: movingX 8s linear infinite;
}

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

.sec-title {
  margin-bottom: 0 !important;
}

.sec-title h2 {
  font-size: 45px;
  font-weight: 600;
  color: var(--black);
}

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

.sub-title h3 {
  font-size: 20px;
  color: var(--pink);
  font-weight: 500;
}

.title h4 {
  font-size: 25px;
  font-weight: 500;
  color: var(--black);
}

.title h4:hover {
  color: var(--pink);
}

.site-footer p {
  color: var(--text-color);
  font-size: var(--text-size) !important;
  line-height: 1.75 !important;
  font-weight: 500;
  margin-bottom: 15px !important;
}

.site-footer .widget-title {
  font-size: 30px !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  font-family: var(--title-font) !important;
  position: relative;
  margin-bottom: 35px !important;
}

.site-footer .widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 61px;
  height: 2px;
  background-color: var(--pink);
}

.site-footer .widget-title::after {
  content: "";
  position: absolute;
  width: 15px;
  border: 3px solid var(--footer-bg);
  height: 5px;
  background-color: transparent;
  bottom: -6px;
  left: 35px;
}

.site-footer .widget h4 {
  margin: 0 0 5px 0;
  font-size: 18px !important;
  color: var(--white);
  font-weight: 600;
}

.site-footer .widget img {
  margin-bottom: 20px;
}

.site-footer .widget p {
  /* margin-bottom: 20px; */
}

.site-footer {
  position: relative;
}

.site-footer::before {
  content: "";
  background-image: url(../images/footer_shape_1.png);
  width: 400px;
  height: 500px;
  position: absolute;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}

.site-footer::after {
  content: "";
  background-image: url(../images/footer_shape_2.png);
  width: 200px;
  height: 450px;
  position: absolute;
  background-repeat: no-repeat;
  right: 0;
  bottom: 0;
}

.site-footer a {
  color: var(--text-color) !important;
  font-size: var(--text-size);
}

.site-footer .col-full .widget:nth-child(2) .menu-quick-link-container a:hover {
  padding-left: 25px !important;
  color: var(--pink) !important;
}

.site-footer
  .col-full
  .widget:nth-child(2)
  .menu-quick-link-container
  a::after {
  display: none;
}

.site-footer .col-full .widget:nth-child(2) .menu-quick-link-container li {
  margin-bottom: 10px;
}

.site-footer .col-full .widget:nth-child(2) .menu-quick-link-container a {
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
  font-weight: 600;
}

.site-footer
  .col-full
  .widget:nth-child(2)
  .menu-quick-link-container
  a::before {
  content: "\f30b";
  position: absolute;
  font-weight: 600;
  font-family: var(--icon-font);
  left: 0;
  top: 2px;
  font-size: var(--icon-size);
}

.site-footer .col-full .widget:nth-child(3) a::after {
  display: none;
}

.site-footer .col-full .widget:nth-child(3) li i {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  background-color: var(--pink);
  position: absolute;
  left: 0;
  font-size: 10px;
}

.site-footer .col-full .widget:nth-child(3) li {
  position: relative;
  margin-bottom: 20px;
}

.site-footer .col-full .widget:nth-child(3) a {
  padding-left: 30px;
  display: block;
  line-height: 25px;
}

.site-footer .col-full .widget:nth-child(3) a:hover {
  color: var(--pink) !important;
}

.site-footer .col-full .widget:nth-child(3) a:hover i {
  color: var(--text-color);
}

.site-footer .footer-social {
  display: inline-flex;
  gap: 10px;
}

.site-footer .footer-social a::after {
  display: none;
}

.site-footer .footer-social a {
  width: 45px;
  height: 45px;
  background-color: var(--gray);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
  transform-style: preserve-3d;
}

.site-footer .footer-social a:hover {
  transform: rotateZ(360deg);
}

.site-footer .footer-social a:hover {
  color: var(--text-color);
  background-color: var(--pink);
}

.site-footer .footer-social a:hover i {
  color: var(--text-color);
}

.site-footer .footer-form input {
  color: var(--text-color);
  font-size: var(--text-size);
  background-color: var(--gray);
  border: unset;
  border-radius: unset;
  height: 50px;
  padding: 0 20px;
}

.site-footer .footer-form input:focus {
  background-color: var(--gray);
}

.site-footer .widget_text .has-spinner {
  background-color: var(--pink);
  width: 100%;
  font-size: var(--text-size);
  color: var(--white);
  border-radius: unset;
  height: 50px;
  position: relative;
}

.site-footer .widget_text .has-spinner:hover {
  color: var(--black);
  background-color: var(--white);
}

.copyright {
  background-color: var(--black) !important;
}

.copyright .col-full .widget:first-child a {
  color: var(--brown);
}

.copyright .col-full .widget:first-child a:hover {
  color: var(--white);
}

.copyright .col-full .widget:last-child a {
  color: var(--white);
}

.copyright .col-full .widget:last-child a:hover {
  color: var(--brown);
}

footer:last-child:not(:only-of-type) {
  margin-top: unset !important;
}

.header-4-container {
  background-color: transparent !important;
  border: unset !important;
  box-shadow: unset !important;
  max-width: 1920px;
  margin: 0 auto;
}

.header-4-container .header-4-inner {
  max-width: 1920px !important;
}

.header-4 .search-trigger span {
  border: unset !important;
}

.header-4-container .main-navigation ul.menu {
  padding-left: 300px;
  padding-right: 100px;
  position: relative;
}
.header-4-container .main-navigation ul.menu::after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  background: var(--black);
}

.header-4 .primary-navigation {
  text-align: unset !important;
}

.header-4-container .col-full-nav .search-trigger {
  position: relative;
}

.header-4-container .col-full-nav .search-trigger::before {
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  position: absolute;
  content: "";
  height: 100%;
  width: 300px;
  right: -30px;
  z-index: -1;
  margin-top: -1px;
}

.header-4-container .col-full-nav .search-trigger span svg {
  background-color: var(--white);
  padding: 15px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  box-sizing: unset;
  transform: translateY(12px);
}

.header-4-container .menu-primary-menu-container a {
  color: var(--white) !important;
  font-weight: 600;
  text-transform: uppercase;
}

.header-4-container .menu-primary-menu-container li {
  margin-right: 15px;
  position: relative;
  z-index: 10;
}
.main-navigation ul.menu ul.sub-menu a{color: var(--black)!important;}
.main-navigation ul.menu ul.sub-menu a:hover{color: var(--pink)!important;}
.header-4-container .menu-primary-menu-container a span::before {
  display: none;
}

.header-4-container .menu-primary-menu-container a::after {
  background-color: var(--white) !important;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1240px !important;
}

.page-template-about-us .archive-header {
  display: none;
}

.breadcrumbs {
  height: 400px;
  padding: 150px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.breadcrumbs a,
.breadcrumbs span {
  font-size: 20px;
  color: var(--body-color);
}

.breadcrumbs a:hover {
  color: var(--pink);
}

/* .breadcrumbs::before {
  position: absolute;
  content: "";
  background-image: url(../images/breadcumb-bg.jpg);
  z-index: -1;
  width: 1920px;
  height: 400px;
  top: 0;
  left: 0;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
} */

.about-01 .left,
.about-01 .right {
  padding: 0 15px;
}

.about-01 .right {
  padding-left: 30px;
}

.about-01 .left .img2,
.about-01 .left .img3 {
  position: absolute;
  bottom: 0;
  width: fit-content !important;
}

.about-01 .left .img2 {
  right: 0;
}

.about-01 .left .img3 {
  left: -100px;
}

.about-01 .right .subtitle {
  margin-bottom: 20px !important;
}

.about-01 .right .sec-title {
  margin-bottom: 30px !important;
}

.btn-link a.elementor-button {
  font-weight: 600;
  border-radius: unset;
}

.about-wrapper .about-info {
  display: flex;
  gap: 20px;
}

.about-wrapper h3 {
  width: 250px;
  margin-bottom: 0;
  background-color: var(--smoke-color);
  color: var(--black);
  padding: 15px;
}

.about-wrapper h3::before {
  background-image: url(https://themeholy.com/wordpress/rasm/wp-content/uploads/2023/07/title_left.svg);
  content: "";
  width: 25px;
  height: 20px;
  display: inline-block;
  margin: 0 10px -5px 0;
}

.about-02 {
  background-color: var(--smoke-color);
  margin-top: -100px;
  padding-top: 200px;
}

.about-02 .left {
  padding-right: 70px;
}

.about-02 .subtitle {
  margin-bottom: 20px !important;
}

.about-02 .sec-title {
  margin-bottom: 30px !important;
}

.about-02 .choose {
  margin-bottom: 30px;
}

.about-02 .choose .box-icon {
  align-items: center;
}

.about-02 .choose .box-icon .icon img {
  transition: transform 0.5s ease-in-out;
  transform-style: preserve-3d;
}

.about-02 .choose .box-icon .icon img:hover {
  transform: rotateY(180deg);
}

.about-02 .choose h4 {
  margin-bottom: 0;
}

.about-02 .right .img3 {
  position: absolute;
  bottom: 0;
  left: -70px;
}

.about-03 .appointment > div {
  display: inline-block !important;
}

.about-03 .elementor-background-overlay {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
}

.about-03 .sec-title h2 {
  color: white;
}

.about-03 .appointment .elementor-container .elementor-column:first-child {
  margin-bottom: 100px;
}

.about-03 .working-list ul {
  margin-left: 0;
}

.about-03 .working-list li {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--dark-pink);
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--black);
  font-family: var(--title-font);
  font-weight: 700;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
}

.about-03 .working-list li strong {
  font-weight: 700;
}

.about-form .form {
  padding: 50px;
  background-color: var(--smoke-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 0;
}

.about-form .form input {
  padding: 15px 20px;
  width: 100%;
  color: var(--body-color);
  font-size: var(--text-size);
}

.about-form .form select {
  color: var(--body-color);
  font-size: var(--text-size);
  background-color: white;
  height: 55px;
  padding-left: 20px;
  background-image: none;
}

.about-form .form select option {
  color: var(--body-color);
}

.about-form .form input:focus {
  background-color: white;
}

.about-form .form input:focus-visible {
  border: unset;
  border-radius: unset;
}

.about-form .form .half-width input {
  max-width: 240px;
}

.about-form .form .half-width {
  width: fit-content !important;
}

.about-form .form .half-width p {
  width: fit-content;
}

.about-form .form .group input,
.about-form .form .group select {
  border-radius: unset;
  border: unset;
}

.about-form .form p {
  position: relative;
}

.about-form .form p i {
  position: absolute;
  color: var(--brown);
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.about-form .form .submit input {
  background-color: var(--pink);
  color: white;
}

.about-form .form .submit input:hover {
  color: var(--black);
  background-color: white;
}

.about-form .form .submit p {
  text-align: center;
}

.about-form .form .submit p span {
  margin-top: 20px;
}

.about-03 .left {
  padding-right: 50px;
}

.about-deco img {
  border-radius: 50% !important;
  border: 1px solid white !important;
  padding: 8px;
  box-sizing: unset;
}

.about-deco .shape-img {
  position: relative;
  width: 60px !important;
  height: 60px;
  background-color: var(--pink);
  border-radius: 50%;
  padding: 5px;
  display: block;
  margin: 0 auto;
  align-items: center;
  display: flex;
  justify-content: center;
}

.about-deco .shape-img::after,
.about-deco .shape-img::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 550px;
  height: 2px;
}

.about-deco .shape-img::before {
  background: -webkit-linear-gradient(
    right,
    var(--pink) 0%,
    rgba(194, 133, 101, 0) 100%
  );
  background: linear-gradient(
    270deg,
    var(--pink) 0%,
    rgba(194, 133, 101, 0) 100%
  );
  right: 0;
  margin-right: 80px;
}

.about-deco .shape-img::after {
  background: -webkit-linear-gradient(
    left,
    var(--pink) 0%,
    rgba(194, 133, 101, 0) 100%
  );
  background: linear-gradient(
    90deg,
    var(--pink) 0%,
    rgba(194, 133, 101, 0) 100%
  );
  left: 0;
  margin-left: 80px;
}

.about-form .form .full-width input {
  padding-right: 40px;
}

.about-form .date.full-width input {
  padding-right: 20px;
}

.team-slide {
  margin-top: 50px;
}

.team-slide .item-team {
  padding: 15px;
}

.team-slide .item-team > div {
  display: block;
  position: relative;
}

.team-slide .item-team .main-cnt {
  width: 100% !important;
  padding: 15px;
  box-shadow: 0px 6px 15px 0px rgba(191, 191, 191, 0.2);
  background-color: var(--white);
}

.team-slide .item-team .main-cnt .team-text h3 a {
  font-size: 30px;
  color: var(--black);
}

.team-slide .item-team .main-cnt .team-text h3 a:hover {
  color: var(--pink);
}

.team-slide .item-team .main-cnt .team-text p {
  font-size: 14px;
  color: var(--pink);
}

.team-slide .item-team .social {
  position: absolute;
  right: 25px;
  bottom: 80px;
  width: fit-content !important;
}

.team-slide .item-team .social > div {
  width: fit-content;
  display: block;
}

.team-slide .item-team .social .icon i {
  font-size: 16px;
  width: 45px;
  height: 45px;
  background-color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  filter: drop-shadow(0px 0px 10px rgba(174, 174, 174, 0.5));
  transition: all 0.3s ease;
}

.team-slide .item-team .social .icon i:hover {
  color: var(--white);
  background-color: var(--pink);
}

.team-slide .item-team .social::before {
  content: "\2b";
  font-family: "Font Awesome\ 6 Pro";
  font-weight: 300;
  color: var(--white);
  font-size: 30px;
  border-radius: 50%;
  background-color: var(--pink);
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  transform-style: preserve-3d;
  position: absolute;
  bottom: -45px;
  transition: all 0.3s ease;
}

.team-slide .item-team .social > div {
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
}

.team-slide .item-team > div:hover img {
  transform: scale(1.1);
}

.team-slide .item-team .team-img {
  overflow: hidden;
}

.team-slide .item-team img {
  transition: all 0.3s ease;
}

.team-slide .item-team > div:hover .social::before {
  transform: rotateZ(45deg);
}

.team-slide .item-team > div:hover .social > div {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.about-05 {
  background-color: var(--smoke-color);
  position: relative;
}

.about-05::before {
  position: absolute;
  content: "";
  background-image: url(../images/flower_1_1.png);
  width: 600px;
  height: 500px;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}

.about-05 .cus-slide {
  margin-top: 50px;
}

.about-05 .cus-slide .item-cus {
  padding: 0 15px;
}

.about-05 .cus-slide .item-cus .elementor-widget-wrap {
  background-color: var(--white);
  border: 1px solid var(--smoke-color2);
  padding: 40px 25px !important;
  text-align: center;
  z-index: 1;
}

.about-05 .item-cus .deco-1 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-05 .item-cus .deco-2 {
  position: absolute;
  top: 0;
  left: 0;
}

.about-05 .item-cus .deco-3 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.about-05 .item-cus .cus-text {
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  font-family: var(--title-font);
}

.about-05 .item-cus .cus-name h3 {
  font-size: 25px;
  font-weight: 700;
  color: var(--black);
}

.about-05 .item-cus .cus-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--pink);
}

.contact-box .left {
  background-color: var(--smoke-color);
  padding: 30px;
  height: fit-content;
}

.contact-box .left .sec-title {
  margin-bottom: 20px !important;
  position: relative;
}

.contact-box .left .sec-title h3 {
  line-height: 1.5;
}

.contact-box .left .sec-title::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 70px;
  left: 0;
  bottom: 0;
  background-color: var(--pink);
}

.contact-box .contact-infor {
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--white);
}

.contact-box .contact-infor .icon i {
  color: var(--white);
  font-size: 35px;
}

.contact-box .contact-infor .icon {
  background-color: var(--pink);
  width: 75px;
  height: 75px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.contact-box .contact-infor .icon .elementor-icon-wrapper {
  height: 35px;
}

.contact-box .contact-infor .text h3 {
  color: var(--black);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.contact-box .contact-infor .text a {
  color: var(--body-color);
}

.contact-box .contact-infor .text a:hover {
  color: var(--pink);
}

.contact-box .contact-infor:last-child {
  margin-bottom: 0;
}

.contact-box .right {
  padding-left: 50px;
}

.contact-box .right .map iframe {
  height: 100%;
}

.contact-box .right .map,
.contact-box .right .map > div,
.contact-box .right .map > div > div {
  height: 100%;
}

.contact-02 .elementor-widget-wrap {
  box-shadow: 0px 6px 35px 0px rgba(0, 0, 0, 0.06);
  padding: 60px !important;
  background-color: var(--white);
  padding-bottom: 0 !important;
}

.contact-02 .sec-title {
  margin-bottom: 20px !important;
}

.contact-form .form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.contact-form .form input,
.contact-form .form textarea {
  padding: 15px 20px;
  width: 100%;
  color: var(--body-color);
  font-size: var(--text-size);
  border-radius: unset;
  border: unset;
  background-color: var(--smoke-color);
}

.contact-form .form select {
  width: 100%;
  color: var(--body-color);
  font-size: var(--text-size);
  border-radius: unset;
  border: unset;
  background-color: var(--smoke-color);
  height: 56px;
  padding-left: 20px;
  background-image: none;
  margin-bottom: 0;
}

.contact-form .form select:focus {
  border: 1px solid var(--border-color);
}

.contact-form .form input:focus,
.contact-form .form textarea:focus {
  background-color: var(--smoke-color);
  border: 1px solid var(--border-color);
}

.contact-form .form .group {
  position: relative;
}

.contact-form .form .group i {
  position: absolute;
  color: var(--brown);
  right: 20px;
  top: 30px;
  transform: translateY(-50%);
}

.contact-form .form .group.half-width {
  max-width: calc(50% - 15px);
}

.contact-form .form .submit input {
  background-color: var(--pink);
  color: var(--white);
}

.contact-form .form .submit p {
  text-align: center;
}

.contact-form .form .submit span {
  margin-top: 20px;
}

.contact-form .form .submit input:hover {
  background-color: var(--black);
}

.contact-form .form input,
.contact-form .form textarea {
  padding-right: 40px;
}

.home-05 > div.elementor-container.elementor-column-gap-default,
.gallery-content > div.elementor-container.elementor-column-gap-default {
  max-width: 1920px !important;
}

.home-05 .subtitle,
.home-05 .sec-title {
  max-width: 700px;
  z-index: 1;
}

.gallery-content > div {
  display: block !important;
}

.gallery-content .left,
.gallery-content .right {
  width: 100% !important;
}

.gallery-content .left {
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-box .elementor-tab-title.elementor-tab-desktop-title {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  border-radius: unset;
  transition: all 0.3s ease;
}
.gallery-box .elementor-tab-title.elementor-tab-desktop-title:hover {
  background: var(--black);
  border-color: var(--black);
}
.gallery-box .elementor-tabs-wrapper {
  display: flex;
  gap: 10px;
  justify-content: right;
  margin-bottom: 50px;
  margin-top: -50px;
  max-width: 1240px;
  margin: -50px auto 50px auto;
}

.gallery-box .elementor-tab-title.elementor-tab-desktop-title.elementor-active {
  background-color: var(--black);
  border: 1px solid var(--black);
  border-radius: unset;
}

.gallery-box
  .elementor-tab-title.elementor-tab-desktop-title.elementor-active::before,
.gallery-box
  .elementor-tab-title.elementor-tab-desktop-title.elementor-active::after {
  display: none;
}

.gallery-box
  .elementor-tabs-content-wrapper
  .elementor-tab-content.elementor-clearfix {
  border: unset;
  padding: 0;
}

.gallery-box
  .elementor-tabs-content-wrapper
  .elementor-tab-content.elementor-clearfix
  > p {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-box
  .elementor-tabs-content-wrapper
  .elementor-tab-content.elementor-clearfix
  > p
  > * {
  width: 100%;
  display: flex;
  max-height: 480px;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  position: relative;
}

.gallery-box
  .elementor-tabs-content-wrapper
  .elementor-tab-content.elementor-clearfix
  img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.gallery-box
  .elementor-tabs-content-wrapper
  .elementor-tab-content.elementor-clearfix
  a:hover
  img {
  transform: scale(1.1);
}

.gallery-box
  .elementor-tabs-content-wrapper
  .elementor-tab-content.elementor-clearfix
  a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.gallery-box
  .elementor-tabs-content-wrapper
  .elementor-tab-content.elementor-clearfix
  a::before {
  position: absolute;
  content: "";
  bottom: 40px;
  top: 40px;
  left: 40px;
  right: 40px;
  background-color: rgba(13, 13, 13, 0.699);
  border: 1px solid var(--pink);
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
}

.gallery-box
  .elementor-tabs-content-wrapper
  .elementor-tab-content.elementor-clearfix
  a::after {
  position: absolute;
  content: "\f062";
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  z-index: 2;
  font-size: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: 1px solid var(--pink);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  align-items: center;
  display: flex;
  justify-content: center;
  transform: rotate(45deg);
  color: var(--pink);
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.gallery-box
  .elementor-tabs-content-wrapper
  .elementor-tab-content.elementor-clearfix
  a:hover::after {
  background-color: var(--white);
  opacity: 1;
}

.home-07 .left > .elementor-widget-wrap {
  padding-bottom: 0 !important;
}

.home-07 .contact-form .form .submit {
  max-width: 250px;
}

.home-07 .contact-form .form .submit input {
  color: var(--white);
  background-color: var(--black);
}

.home-07 .contact-form .form .submit input:hover {
  color: var(--black);
  background-color: var(--white);
}

.blog-main article {
  margin-bottom: 40px !important;
  padding: 40px;
  background: var(--white);
  box-shadow: 0px 6px 35px 0px rgba(0, 0, 0, 0.06);
  border-bottom: unset !important;
}

.blog-main article .post-thumbnail img {
  max-height: 450px;
  margin-top: unset;
}

.blog-main article .entry-meta {
  margin-bottom: 15px;
}

.blog-main article .entry-meta span {
  font-size: 14px;
  color: var(--body-color);
  margin-right: 16px;
  padding-right: 16px;
  border-right: 1px solid var(--pink);
  height: 12px;
  line-height: 12px;
  font-weight: 400;
}

.blog-main article .entry-meta span:last-child {
  border: unset;
}

.blog-main article .entry-meta a {
  color: var(--body-color);
}

.blog-main article .entry-meta a:hover {
  color: var(--pink);
}

.blog-main article .entry-meta span i {
  line-height: 12px;
  font-size: 14px;
  margin-right: 5px;
  color: var(--pink);
}

.blog-main article .entry-title {
  font-size: 35px;
  line-height: 1.25;
  font-weight: 700;
}

.blog-main article .entry-title a {
  color: var(--black);
}

.blog-main article .entry-title a:hover {
  color: var(--pink);
}

.blog-main article .entry-excerpt {
  margin-bottom: 50px;
  color: var(--body-color);
  line-height: 1.75;
}

.blog-main article .read-more a {
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--pink);
  font-size: 14px;
  font-weight: 600;
  padding: 20px 30px;
  transition: all 0.3s ease;
}

.blog-main article .read-more i {
  margin-left: 10px;
}

.blog-main article .read-more a:hover {
  background-color: var(--black);
}

.blog-main {
  width: 65% !important;
}

.blog-sidebar {
  width: 35% !important;
  padding-left: 30px;
  padding-top: 120px !important;
}

.blog-sidebar .widget {
  border-bottom: unset !important;
  padding: 30px !important;
  background-color: var(--smoke-color);
}

.blog-sidebar .widget .widget-title {
  color: var(--black);
  font-size: 30px;
  font-weight: 700;
  font-family: var(--title-font);
  line-height: 1em;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}

.blog-sidebar .widget .widget-title::before {
  content: "";
  height: 3px;
  width: 100%;
  background-color: var(--border-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.blog-sidebar .widget .widget-title::after {
  content: "";
  height: 3px;
  background-color: var(--pink);
  width: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.blog-sidebar .widget_search .search-form {
  margin-bottom: 0;
}

.blog-sidebar .widget_search .search-form::before {
  background-color: var(--pink);
  mask-image: unset;
  -webkit-mask-image: unset;
  color: var(--white);
  content: "\f002";
  font-weight: 900;
  font-family: var(--icon-font);
  height: 50px;
  width: 50px;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-sidebar .widget_search .search-field {
  height: 50px;
  padding-left: 60px !important;
}

.blog-sidebar .widget_categories li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  font-size: 16px !important;
  color: var(--body-color);
  font-weight: 400;
  margin-bottom: 0 !important;
}

.single-product .site-content .col-full {
  background-color: unset !important;
}

.single-product .site-content .col-full {
  max-width: 1250px !important;
  margin: 0 auto !important;
}

.blog-sidebar .widget_categories li a {
  font-size: 16px;
  color: var(--body-color);
  font-weight: 400;
}

.blog-sidebar .widget_categories li a:hover {
  color: var(--pink) !important;
}

.blog-sidebar .widget_categories li a::before {
  content: "";
  background-image: url(../images/flower.svg);
  width: 20px;
  height: 15px;
  margin-right: 10px;
  background-repeat: no-repeat;
  display: inline-block;
  filter: invert(30%) sepia(44%) saturate(4703%) hue-rotate(309deg)
    brightness(96%) contrast(92%);
}

.blog-sidebar .recent-post-wrap .recent-post {
  display: flex;
  margin-bottom: 20px;
}

.blog-sidebar .recent-post-wrap .media-img {
  position: relative;
  width: 30%;
}

.blog-sidebar .recent-post-wrap .media-img::after {
  content: "\f0c1";
  font-family: var(--icon-font);
  position: absolute;
  inset: 0;
  text-align: center;
  line-height: 100px;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--pink);
  pointer-events: none;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.4s ease-in-out;
  font-weight: 900;
}

.blog-sidebar .recent-post-wrap .media-body {
  width: 70%;
  padding-left: 10px;
}

.blog-sidebar .recent-post-wrap .media-body i {
  color: var(--pink);
  margin-right: 5px;
}

.blog-sidebar .recent-post-wrap .media-body .post-date {
  color: var(--body-color);
  font-size: 16px;
}

.blog-sidebar .recent-post-wrap .media-body h3 {
  margin-bottom: 0;
}

.blog-sidebar .recent-post-wrap .media-body h3 a {
  color: var(--black) !important;
  font-size: 20px;
  font-weight: bold;
}

.blog-sidebar .recent-post-wrap .recent-post:hover .media-body h3 a {
  color: var(--pink) !important;
}

.blog-sidebar .recent-post-wrap .recent-post:hover .media-img::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

#secondary.widget-area.blog-sidebar .widget_tag_cloud .tagcloud a {
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1;
  padding: 10px 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: var(--body-color);
  background-color: var(--white);
  border-radius: 0;
}

#secondary.widget-area.blog-sidebar .widget_tag_cloud .tagcloud a:hover {
  color: var(--white);
  background-color: var(--pink);
}

.blog-main .pagination .nav-links > * {
  display: inline-block;
  text-align: center;
  position: relative;
  color: var(--title-color);
  background-color: #e7e7e7;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 0;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
  margin-right: 5px;
  margin-bottom: 0;
}

.blog-main .pagination .nav-links .current {
  background-color: var(--pink);
  color: var(--white);
}

.blog-main .pagination .nav-links a {
  color: var(--black);
}

.blog-main .pagination .nav-links a:hover {
  background-color: var(--pink);
  color: var(--white);
}

.blog-main .post .wp-post-image {
  margin-top: 0;
}

.search-results-content .entry-title a:hover {
  color: var(--pink);
}

.not-found .search-form {
  margin-top: 20px;
}

.not-found .search-form::before {
  background-color: var(--pink);
  mask-image: unset;
  -webkit-mask-image: unset;
  color: var(--white);
  content: "\f002";
  font-weight: 900;
  font-family: var(--icon-font);
  height: 50px;
  width: 50px;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found .search-form .search-field {
  height: 50px;
  padding-left: 60px !important;
}

.not-found .search-submit {
  color: var(--white);
  background-color: var(--pink);
  border-radius: unset;
}

.not-found .search-submit:hover {
  background-color: var(--black);
}
