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

html {
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 320px;
  max-width: 2560px;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  margin: 0 auto;
  font-family: 'Rubik', sans-serif;
  /*font-display: swap;*/
  color: #4a4a4a;
}
@media all and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: .3s all ease;
}

button {
  cursor: pointer;
}

textarea {
  font-family: inherit;
  resize: none;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.header {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  max-width: 2560px;
  z-index: 100;
}

.header .social {
  margin-left: auto;
  margin-top: 17px;
  margin-right: 15px;
}
.header .social .phone {
  display: none;
}
@media all and (max-width: 767px) {
  .header .social li {
    padding: 0 2px;
  }
  .header .social .phone {
    display: block;
  }
}

.header.fixed {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 100;
}

.header.fixed .header__top {
  opacity: 0;
  display: none;
}

@media all and (max-width: 767px) {
  .header.fixed .header__top {
    opacity: 1;
    display: block;
    z-index: 100;
    background: #f7e9f7;
    height: 60px;
  }
  .header .social {
    margin-top: 10px;
  }
}

.header.fixed .menu {
  background: #fff;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
}

.header.fixed .menu__list a {
  height: 60px;
}

.header__top {
  height: 73px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 29px 0 rgba(164, 39, 35, 0.44);
}

@media all and (max-width: 767px) {
  .header__top {
    height: 60px;
  }
}

.header__top .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.header__info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.header__info:hover .header__link {
  color: #fd5778 !important;
}

.header__request {
  margin-left: 10px;
}

.header-request {
  background-color: rgb(253, 87, 120);
  color: #ffffff;
  padding: 10px 10px;
}

.header__request:hover {
  background-color: rgb(249, 162, 36);
}

@media all and (max-width: 767px) {
  .header .header__info {
    display: none;
  }
}

.header__icon {
  background: #fd5778;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  margin-right: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
}

.header__icon svg {
  max-width: 14px;
  max-height: 14px;
  fill: #fff;
}

.header__title {
  font-size: 14px;
  opacity: .6;
  margin: 3px;
}

.header__link {
  font-weight: 500;
  transition: .5s all ease;
}

.header__logo {
  height: 84px;
  width: 290px;
  background: #f0e7f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

@media all and (max-width: 1150px) {
    .header__logo {
        width: 138px;
        padding: 0 10px;
    }
}

@media all and (max-width: 999px) {
    .header__request {
        display: none;
    }

    /*.header .social {*/
    /*    display: none;*/
    /*}*/
}

@media all and (max-width: 767px) {
  .header__logo {
    position: relative;
    transform: none;
    left: 0;
    width: 120px;
    padding: 0 10px;
    height: 65px;
  }
  .header__logo img {
    max-width: 100%;
  }
}

.header__toggle {
  width: 44px;
  height: 44px;
  position: relative;
  display: none;
  margin-top: 8px;
  background: #fd5778;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.header__toggle-inner {
  position: relative;
  width: 30px;
  height: 30px;
}

@media all and (max-width: 767px) {
  .header__toggle {
   display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex; 
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  }
}

.header__toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  transition: .3s all ease;
  left: 5px;
}

.header__toggle span:nth-child(1) {
  top: 7px;
}

.header__toggle span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}

.header__toggle span:nth-child(3) {
  bottom: 7px;
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(-45deg);
  margin-top: 7.4px;
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(45deg);
  bottom: inherit;
  top: 7px;
  margin-top: 7px;
}

.menu {
  position: absolute;
  top: 100%;
  width: 100%;
}

.menu-item {
  position: relative;
}

.menu__list > .menu-item {
  height: 90px;
  display: flex;
  align-items: center;
  position: relative;
}

.menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70px;
  background-color: rgb(251, 231, 236);
  opacity: 0;
  visibility: hidden;
}

.menu-item .sub-menu a {
  padding: 15px 20px;
  height: auto;
  width: auto;
  white-space: nowrap;
}

.menu__list li:after {
  content: "";
  height: 2px;
  position: absolute;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
    background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(253, 87, 120);
  margin-top: 13px;
  width: 0px;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: initial;
  transition-property: all;
}

.menu__list li.current_page_item, .menu__list li.current-menu-item, .menu__list li.current-menu-parent {
  color: rgb(253, 87, 120);
}

.menu__list li.current_page_item:after, .menu__list li.current-menu-item:after, .menu__list li.current-menu-parent:after {
  width: 0% !important;
}

.menu__list li.current_page_item .sub-menu a, .menu__list li.current-menu-item .sub-menu a, .menu__list li.current-menu-parent .sub-menu a {
  color: rgb(74, 74, 74);
}

.menu__list li.current_page_item .sub-menu a:hover, .menu__list li.current-menu-item .sub-menu a:hover, .menu__list li.current-menu-parent .sub-menu a:hover {
  color: rgb(253, 87, 120);
}


.menu-item .sub-menu a:after {
  display: none;
}

.menu-item .sub-menu a:hover {
  color: rgb(253, 87, 120);
}


body.no-scroll {
  overflow-x: hidden;
  overflow-y: hidden;
}
@media all and (min-width: 768px){
	.menu__list .sub-menu li.current-menu-item {
		padding:15px 20px;
	}
}
@media all and (max-width: 767px) {
  .menu {
    display: none;
    background: #fff;
    box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
    z-index: 100;
    padding-bottom: 30px;
  }

    .menu__list li, .menu__list > .menu-item {
        display: block;
        height: auto;
        color: inherit;
    }

    .sub-menu {
        position: relative;
        opacity: 1;
        visibility: visible;
        /*padding: 0 20px;*/
        display: none;
        top: 0;
    }

    .menu-item:hover .sub-menu a {
        background-color: rgb(251, 231, 236);
        color: rgb(74, 74, 74);
    }

    .menu__list li.current_page_item a, .menu__list li.current-menu-item a, .menu__list li.current-menu-parent a, .menu__list li:hover a {
      color: rgb(74, 74, 74);
      background: #ffffff;
    }

    .menu-item > a.open {
      background-color: rgb(253, 87, 120);
      color: rgb(255, 255, 255);
    }

    .header.fixed .menu {
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        overflow-x: hidden;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;
    }

  .header.fixed .menu::-webkit-scrollbar {
    display: none;
  }

    .menu__list li {
        line-height: 50px;
    }

  .menu__list li::after {
    display: none;
  }

    .menu__list li.current_page_item, .menu__list li.current-menu-item, .menu__list li.current-menu-parent, .menu__list li:hover a {
        background: #fd5778;
        color: #fff;
        text-align: center;
    }

    .menu__list a, .menu__list li.current_page_item, .menu__list li.current-menu-item, .menu__list li.current-menu-parent {
        /*height: 50px !important;*/
        padding: 0 15px;
        justify-content: center;
    }

    .sub-menu {
      width: calc(100% + 30px);
    }

  .menu__list li.current_page_item .sub-menu, .menu__list li.current-menu-item .sub-menu, .menu__list li.current-menu-parent .sub-menu {
    display: block;
  }

  .menu__list li.current_page_item .sub-menu a, .menu__list li.current-menu-item .sub-menu a, .menu__list li.current-menu-parent .sub-menu a {
    background-color: rgb(251, 231, 236);
  }
}

.menu.fixed {
  position: fixed;
  left: 0;
  top: 0;
  background: #fff;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
  z-index: 100;
}

.menu.fixed .menu__list a {
  height: 70px;
}

.menu__list {
  justify-content: space-around;
  display: flex;
}

@media all and (max-width: 767px) {
  .menu__list {
    flex-wrap: wrap;
    margin: 0 -15px;
  }
}

@media all and (max-width: 767px) {
  .menu__list li {
    width: 100%;
  }
}

.menu__list li.current_page_item a,
.menu__list li.current-menu-item a,
.menu__list li.current-menu-parent a {
  color: #fd5778;
}

@media all and (max-width: 767px) {
  .menu__list li.current_page_item a, 
  .menu__list li.current-menu-item a,
  .menu__list li.current-menu-parent a,
  .menu__list li:hover a {
    background: #fd5778;
    color: #fff;
  }
}

.menu__list li.current_page_item a:after, 
.menu__list li.current-menu-item a:after, 
.menu__list li.current-menu-parent a:after,
.menu__list li:hover a:after {
  width: 100%;
}

@media all and (max-width: 767px) {
  .menu__list li.current_page_item a:after,
  .menu__list li.current-menu-item a:after,  
  .menu__list li.current-menu-parent a:after,  
  .menu__list li:hover a:after {
    width: 0 !important;
  }
}

.menu__list a {
  height: 90px;
  display: flex;
  align-items: center;
  position: relative;
}

@media all and (max-width: 767px) {
  .menu__list a {
    height: 50px !important;
    padding: 0 15px;
    justify-content: center;
  }
}

.menu__list a:after {
  content: '';
  height: 2px;
  position: absolute;
  background: #fd5778;
  margin-top: 13px;
  width: 0;
  transition: .3s all ease;
}

.menu .header__info {
  display: none;
}

@media all and (max-width: 767px) {
  .menu .header__info {
    display: flex;
  }
}

.bg {
  background: url(../img/bg-banner.jpg) center top no-repeat, url(../img/bg-about.jpg) center bottom no-repeat;
  padding-top: 160px;
}

@media all and (min-width: 1921px) {
  .bg {
    background-size: cover;
  }
}

@media all and (max-width: 767px) {
  .bg {
    padding-top: 90px;
  }
}

.page-bg {
  background: url(../img/bg-banner.jpg) center top no-repeat;
  padding-top: 160px;
}

@media all and (min-width: 1921px) {
  .page-bg {
    background-size: cover;
  }
}

@media all and (max-width: 767px) {
  .page-bg {
    padding-top: 60px;
  }
}

.modal {
  display: none;
  max-width: 500px !important;
  width: 100%;
  padding: 10px 25px 30px 25px !important;
}

.banner-slider {
  overflow: hidden;
}

@media all and (max-width: 1200px) {
  .banner-slider__item {
    padding: 0 50px;
  }
}

@media all and (max-width: 767px) {
  .banner-slider__item {
    padding: 0;
    text-align: center;
  }
}

.banner-slider__item .container {
  display: flex;
  align-items: center;
  position: relative;
}

@media all and (max-width: 767px) {
  .banner-slider__item .container {
    flex-wrap: wrap;
  }
}

.banner-slider__text {
  width: 55%;
  flex-shrink: 0;
}

@media all and (max-width: 767px) {
  .banner-slider__text {
    width: 100%;
    order: 2;
  }
}

.banner-slider__title {
  font-family: "Lobster", cursive;
  font-size: 52px;
  line-height: 1;
}

@media all and (max-width: 992px) {
  .banner-slider__title {
    font-size: 40px;
  }
}
@media all and (max-width: 767px) {
  .banner-slider__title {
    font-size: 30px;
  }
}
.banner-slider__title span {
  color: #fd5778;
  display: block;
}

.banner-slider__desc {
  line-height: 1.87;
  margin: 15px 0;
  max-width: 470px;
}

@media all and (max-width: 767px) {
  .banner-slider__desc {
    max-width: 100%;
  }
}

.banner-slider .btn {
  width: 255px;
}

@media all and (max-width: 767px) {
  .banner-slider .btn {
    margin: 0 auto;
  }
}

.banner-slider__img {
  position: relative;
}

@media all and (max-width: 767px) {
  .banner-slider__img {
    width: 100%;
    order: 1;
  }
}

.banner-slider__img img {
  max-width: unset;
  margin-left: -100px;
}

@media all and (max-width: 1200px) {
  .banner-slider__img img {
    max-width: 650px;
    margin-left: -70px;
  }
}

@media all and (max-width: 992px) {
  .banner-slider__img img {
    max-width: 550px;
  }
}

@media all and (max-width: 767px) {
  .banner-slider__img img {
    margin-left: 0;
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
}

.banner-slider__percent {
  position: absolute;
  width: 130px;
  height: 130px;
  background: #fd5778;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: -60px;
  bottom: 120px;
}

@media all and (max-width: 1600px) {
  .banner-slider__percent {
    right: 50px;
  }
}

@media all and (max-width: 1200px) {
  .banner-slider__percent {
    right: 120px;
    bottom: 60px;
  }
}

@media all and (max-width: 992px) {
  .banner-slider__percent {
    width: 100px;
    height: 100px;
    font-size: 14px;
    bottom: 50px;
  }
}
@media all and (max-width: 767px) {
  .banner-slider__percent {
    width: 100px;
    height: 100px;
    font-size: 14px;
    bottom: 20px;
    right: 0;
  }
}

.banner-slider__percent span {
  font-family: "Lobster", cursive;
  font-size: 35px;
}

@media all and (max-width: 992px) {
  .banner-slider__percent span {
    font-size: 25px;
  }
}

.banner-slider__mouse {
  fill: #fd5778;
  margin-top: 50px;
  display: inline-block;
  animation: 2s mouse infinite;
}

@media all and (max-width: 767px) {
  .banner-slider__mouse {
    margin: 20px 0 40px;
  }
}

.banner-slider__mouse svg {
  max-height: 32px;
  max-width: 20px;
}

@keyframes mouse {
  from {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}

.banner-slider .prev {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  background: #fff;
}

@media all and (max-width: 1600px) {
  .banner-slider .prev {
    left: 1%;
  }
}

@media all and (max-width: 1200px) {
  .banner-slider .prev {
    left: 0;
  }
}

@media all and (max-width: 767px) {
  .banner-slider .prev {
    display: none;
  }
}

.banner-slider .next {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  background: #fff;
}

@media all and (max-width: 1600px) {
  .banner-slider .next {
    right: 1%;
  }
}

@media all and (max-width: 1200px) {
  .banner-slider .next {
    right: 0;
  }
}

@media all and (max-width: 767px) {
  .banner-slider .next {
    display: none;
  }
}

.btn {
  background: linear-gradient(0deg, #f89509, #ffe7b7 100%);
  height: 55px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #e8af58;
  font-weight: 500;
  color: #4a4a4a;
  border-radius: 8px;
  box-shadow: 0 8px 29px 0 rgba(221, 88, 118, 0.23);
  font-family: inherit;
  transition: .4s all ease;
}

.btn:hover {
  box-shadow: 0 8px 29px 0 rgba(221, 88, 118, 0.6);
}

.btn--tab {
  background: #fbe7ec;
  box-shadow: none;
  border-color: #fbe7ec;
}

.btn--tab:hover, .btn--tab.active {
  border: 1px solid #e8af58;
  box-shadow: 0 8px 29px 0 rgba(221, 88, 118, 0.23);
  background: linear-gradient(0deg, #f89509, #ffe7b7 100%);
}

.title-sec {
  font-family: "Lobster", cursive;
  font-size: 52px;
  line-height: 1;
  color: #fd5778;
  text-align: center;
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .title-sec {
    font-size: 30px;
  }
}

h1.title-sec {
  margin-top: 0;
}

.tabs {
  display: flex;
  justify-content: center;
  margin: 0 -15px;
}

@media all and (max-width: 767px) {
  .tabs {
    flex-wrap: wrap;
  }
}

.tabs li {
  padding: 0 15px;
}

@media all and (max-width: 767px) {
  .tabs li {
    margin-bottom: 15px;
  }
  .tabs li:last-child {
    margin-bottom: 0;
  }
}

.tabs a {
  width: 250px;
}

@media all and (max-width: 992px) {
  .tabs a {
    width: 200px;
  }
}

.services {
  padding: 40px 0 90px;
}

@media all and (max-width: 767px) {
  .services {
    padding: 40px 0 50px;
  }
}

.services__tab-content {
  display: none;
  margin-top: 40px;
}

.services__tab-content.active {
  display: block;
}

.services__wrapper {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.2;
}

.services__item {
  width: 25%;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 15px;
}

@media all and (max-width: 992px) {
  .services__item {
    width: 50%;
  }
}

@media all and (max-width: 767px) {
  .services__item {
    width: 100%;
  }
}

.services__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.services__text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services__img-inner:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: none;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  border: 9px solid #fff;
}
.services__inner:hover .services__img-inner {
  box-shadow: none;
}
.services__inner:hover .services__img-inner:before {
  box-shadow: 0 5px 40px 0 rgba(213, 169, 195, 0.8);
  border: 9px solid #faedf2;
  width: 140px;
  height: 140px;
}

.services__inner:hover .services__more {
  color: #fd5778;
}

.services__inner:hover .services__more svg {
  fill: #fd5778;
}

.services__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  flex-shrink: 0;
}

.services__img-inner {
  height: 122px;
  width: 122px;
  border-radius: 50%;
  box-shadow: 0 5px 15px 0 rgba(213, 169, 195, 0.44);
  border: 0px solid #faedf2;
  transition: .5s all ease;
  position: relative;
}
.services__img-inner img {
  position: relative;
  border-radius: 50%;
}
.services__title {
  font-family: "Lobster", cursive;
  font-size: 25px;
  margin: 10px 0 0;
  color: #fd5778;
}

.services__desc {
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 8px;
}

.services__more {
  font-size: 14px;
  font-weight: 500;
  color: #fcc570;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s all ease;
}

.services__more svg {
  fill: #fcc570;
  width: 7px;
  height: 11px;
  margin-left: 13px;
  transition: .5s all ease;
}

.service__wrapper {
  border-bottom: 1px solid #fd5778;
  padding-bottom: 20px;
  clear: both;
}

.service__desc {
  line-height: 1.8;
  padding: 20px 0;
}

.service-one {
  
}
.service-one__navigation {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
  line-height: 1.2;
}
.service-one__navigation a {
  color: #fd5778;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin: 5px 0;
}
.service-one__navigation a .arrow {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 12px;
}
.service-one__navigation a .arrow svg {
  width: 11px;
  height: 20px;
}
.service-one__navigation a:hover .arrow {
  text-decoration: underline;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
}
.service-one__wrapper {
  padding-bottom: 0px;
}

.service-one__img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
}

.service-one__gallery {
  width: 50%;
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  margin-top: 20px;
}

@media all and (max-width: 992px) {
  .service-one__gallery {
    width: 100%;
  }
}

.service-one__gallery .about__gallery {
  width: 100%;
  margin-top: 0;
}

@media all and (max-width: 992px) {
  .service-one__gallery .about__gallery:before {
    bottom: 0;
  }
}

.service-preim {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
}

.service-preim__item {
  width: 50%;
  padding: 0 15px;
	margin-bottom: 30px;
}

@media all and (max-width: 1200px) {
  .service-preim__item {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 767px) {
  .service-preim__item {
    width: 100%;
  }
}

.service-preim__inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 15px 35px 15px 15px;
  justify-content: space-between;
  background: #fcf3f7;
  border-radius: 10px;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
  position: relative;
  transition: .5s all ease;
}

.service-preim__inner:before {
  content: '';
  width: 60px;
  height: 60px;
  background: url(../img/about-flower.svg) center/contain no-repeat;
  position: absolute;
  right: -15px;
  bottom: -10px;
}

.service-preim__inner:hover {
  box-shadow: 0 5px 40px 0 rgba(213, 169, 195, 0.8);
}

.service-preim__inner:hover .service-preim__number {
      transform: translateY(-20px);
}

.service-preim__title {
  font-weight: 500;
  line-height: 1.6;
	padding-right: 30px;
}

.service-preim__number {
  color: rgba(253, 87, 120, 0.5);
  font-size: 108px;
  font-family: "Lobster", cursive;
  flex-shrink: 0;
  transition: .5s all ease;
}

.arrow {
  width: 70px;
  height: 70px;
  z-index: 1;
  background: #fbe6ef;
  fill: #fd5778;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s all ease;
  cursor: pointer;
}

@media all and (max-width: 1200px) {
  .arrow {
    width: 50px;
    height: 50px;
  }
}

.arrow:hover {
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
}

.arrow svg {
  width: 17px;
  height: 29px;
}

@media all and (max-width: 1200px) {
  .arrow svg {
    width: 14px;
    height: 24px;
  }
}

.arrow.prev svg {
  transform: rotate(180deg);
}

.about {
  padding-bottom: 90px;
}

@media all and (max-width: 767px) {
  .about {
    padding-bottom: 50px;
  }
}

.about__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.about__text {
  width: 50%;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 992px) {
  .about__text {
    width: 100%;
  }
}

.about__text p {
  margin-top: 0;
  line-height: 1.87;
  margin-bottom: 10px;
}

.about__text h3 {
  font-size: 25px;
  color: #fd5778;
  font-family: "Lobster", cursive;
  margin: 10px 0;
}

@media all and (max-width: 992px) {
  .about__text h3 {
    text-align: center;
  }
}

.about__text center {
  text-align: left;
}

@media all and (max-width: 992px) {
  .about__text center {
    text-align: center;
  }
}

.about__text img {
  display: inline-block;
  margin-right: 30px;
}

.about__gallery {
  width: 50%;
  position: relative;
  padding: 0 15px;
}

@media all and (max-width: 992px) {
  .about__gallery {
    width: 100%;
    margin-top: 40px;
  }
}

.about__gallery:before {
  content: '';
  width: 200px;
  height: 200px;
  position: absolute;
  background: url(../img/about-flower.svg) center/contain no-repeat;
  left: -120px;
  bottom: 50px;
  z-index: 1;
}

.about-gallery {
  border-radius: 15px;
  position: relative;
}

.about-gallery__item {
  overflow: hidden;
}

.about-gallery__item img {
  width: 100%;
  border-radius: 15px;
}

.about-gallery .prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
  padding-left: 28px;
  background: #fcf3f7;
}

@media all and (max-width: 1200px) {
  .about-gallery .prev {
    width: 70px;
    height: 70px;
  }
}

.about-gallery .prev:hover {
  background: linear-gradient(0deg, #f89509, #ffe7b7 100%);
}

.about-gallery .prev svg {
  width: 12px;
  height: 20px;
}

.about-gallery .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -35px;
  padding-right: 28px;
  background: #fcf3f7;
}

@media all and (max-width: 1200px) {
  .about-gallery .next {
    width: 70px;
    height: 70px;
  }
}

.about-gallery .next:hover {
  background: linear-gradient(0deg, #f89509, #ffe7b7 100%);
}

.about-gallery .next svg {
  width: 12px;
  height: 20px;
}

.about-thumbs {
  padding: 0 20px;
  margin-top: -20px;
}

.about-thumbs__item {
  padding: 0 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

@media all and (max-width: 1200px) {
  .about-thumbs__item {
    padding: 0 5px;
  }
}

.about-thumbs__item img {
  border-radius: 10px;
}

.about-thumbs__item.swiper-slide-thumb-active .about-thumbs__inner:before {
  opacity: 0;
}

.about-thumbs__inner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-thumbs__inner:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: .3s all ease;
}

.reviews {
  background: url(../img/bg-reviews.jpg) left bottom -30px no-repeat;
  padding: 90px 0 30px;
}

@media all and (max-width: 767px) {
  .reviews {
    padding: 50px 0 30px;
    background: none;
  }
}

.reviews__item {
  text-align: center;
  padding: 15px 0;
}

.reviews__wrapper {
  margin-top: -15px;
}

.reviews__img {
  display: flex;
  justify-content: center;
}

.reviews__img-inner {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
}

.reviews__title {
  font: 25px/52px "Lobster", cursive;
  color: #fd5778;
  line-height: 1;
  margin: 15px 0 5px;
}

.reviews__desc {
  font-weight: 300;
  line-height: 1.9;
  font-style: italic;
  max-width: 570px;
  margin: 0 auto;
}

.reviews__date {
  color: #fd5778;
  line-height: 1.9;
  font-weight: 300;
  font-style: italic;
}

.reviews .prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8%;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
}

@media all and (max-width: 992px) {
  .reviews .prev {
    left: 2%;
  }
}

@media all and (max-width: 767px) {
  .reviews .prev {
    top: 30px;
  }
}

.reviews .prev:hover {
  background: #fd5778;
  fill: #fff;
}

.reviews .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8%;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
}

@media all and (max-width: 992px) {
  .reviews .next {
    right: 2%;
  }
}

@media all and (max-width: 767px) {
  .reviews .next {
    top: 30px;
  }
}

.reviews .next:hover {
  background: #fd5778;
  fill: #fff;
}

.reviews-gallery {
  padding: 40px 0;
  cursor: grab;
}

.reviews-gallery--single {
  margin-top: 50px;
}

@media all and (max-width: 767px) {
  .reviews-gallery--single {
    margin-top: 50px;
  }
}

.reviews-gallery__item {
  width: 400px;
  position: relative;
  /*overflow-y: 15px;*/
  transition: .3s all ease;
  opacity: .5;
}

@media all and (max-width: 767px) {
  .reviews-gallery__item {
    width: 200px;
  }
}

.reviews-gallery__item:before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(253, 87, 120, 0.5);
  position: absolute;
  left: 0;
  top: 0;
}

.reviews-gallery__item.swiper-slide-active {
  transform: scale(1.3);
  z-index: 2;
  position: relative;
  opacity: 1;
}

.reviews-gallery__item.swiper-slide-active img {
  border-radius: 15px;
  overflow: hidden;
}

.reviews-gallery__item.swiper-slide-active:before {
  opacity: 0;
}

.reviews-gallery .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}

.reviews-gallery .arrow:hover {
  background: #fd5778;
  fill: #fff;
}

.reviews-gallery .arrow.prev {
  left: 25%;
}

@media all and (max-width: 1600px) {
  .reviews-gallery .arrow.prev {
    left: 18%;
  }
}

@media all and (max-width: 1200px) {
  .reviews-gallery .arrow.prev {
    left: 5%;
  }
}

.reviews-gallery .arrow.next {
  right: 25%;
}

@media all and (max-width: 1600px) {
  .reviews-gallery .arrow.next {
    right: 18%;
  }
}

@media all and (max-width: 1200px) {
  .reviews-gallery .arrow.next {
    right: 5%;
  }
}

.contacts {
  background: url() center top no-repeat;
  padding-top: 120px;
  margin-top: -50px;
}

@media all and (min-width: 1921px) {
  .contacts {
    background-size: cover;
  }
}

@media all and (max-width: 767px) {
  .contacts {
    padding-top: 80px;
  }
}

.contacts--page {
  background-position: center bottom;
  padding-top: 50px;
}

.contacts--single .form {
  margin-top: 80px !important;
}

@media all and (max-width: 767px) {
  .contacts--single .form {
    margin-top: 40px !important;
  }
}

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

@media all and (max-width: 992px) {
  .contacts__info {
    flex-wrap: wrap;
  }
}

.contacts__col {
  margin-bottom: 30px;
}

.contacts .header__info {
  margin-top: 0;
}

.contacts .form {
  margin-top: -60px;
}

.map {
  height: 400px;
  width: 100%;
  border-radius: 15px;
}

@media all and (max-width: 767px) {
  .map {
    height: 300px;
  }
}

.form {
  background: #fcf3f7;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  border-radius: 15px;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
  padding: 10px 75px 30px;
}

@media all and (max-width: 767px) {
  .form {
    padding: 10px 15px 30px;
  }
}

.form__title {
  font: 30px/52px "Lobster", cursive;
  color: #fd5778;
  text-align: center;
  margin-bottom: 10px;
}

.form__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.form__col {
  padding: 0 15px;
  width: 33.3333%;
}

@media all and (max-width: 767px) {
  .form__col {
    width: 100%;
  }
}

.form__btn {
  display: flex;
  justify-content: center;
}

.form__btn .btn {
  width: 250px;
  font-size: 16px;
  font-weight: 500;
}

input, textarea {
  background: #fff;
  height: 100%;
  padding: 0 17px;
  font-size: 14px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 10px;
  transition: .4s all ease;
}
input.wpcf7-not-valid {
  border-color: red;
}

input:focus, textarea:focus {
  border-color: #fd5778;
}

textarea {
  padding-top: 15px;
  padding-bottom: 15px;
}

.label {
  display: block;
  height: 55px;
  position: relative;
  margin-bottom: 20px;
}

@media all and (max-width: 767px) {
  .label {
    margin-bottom: 10px;
  }
}

.label svg {
  max-width: 14px;
  max-height: 14px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .7;
}

.footer {
  padding: 50px 0 10px 0;
}

.footer__row:first-child {
  display: flex;
  justify-content: space-between;
}

.footer__nav {
  width: calc(100% - 720px);
  padding-left: 50px;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
}

.footer__menu li {
  flex-basis: 50%;
  padding: 10px 5px;
}

.footer__menu li:first-child {
  order: 1;
}

.footer__menu li:nth-child(2) {
  order: 3;
}

.footer__menu li:nth-child(3) {
  order: 5;
}

.footer__menu li:nth-child(4) {
  order: 2;
}

.footer__menu li:nth-child(5) {
  order: 4;
}

.footer__menu li:nth-child(6) {
  order: 6;
}

.footer__menu li a:hover {
  color: rgb(253, 87, 120);
}

.footer-contacts__title {
  font-size: 30px;
  line-height: 52px;
  font-family: Lobster, cursive;
  color: rgb(253, 87, 120);
  text-align: center;
}

.footer-contacts__list .header__info {
  margin-top: 10px;
}

.footer .footer__social {
  margin-top: 20px;
  margin-left: 50px;
}

.footer__copyright {
  text-align: center;
}

/*@media all and (max-width: 1200px) {*/
/*  .footer .container {*/
/*    max-width: 500px;*/
/*  }*/
/*}*/

.social {
  display: flex;
  align-items: center;
  margin: 0 -5px;
}

@media all and (max-width: 992px) {
  /*.footer*/
  .footer__nav {
    width: calc(100% - 400px);
    /*padding-left: 0px;*/
  }
}

@media all and (max-width: 767px) {
  .header .social {
    margin-right: 10px;
  }

  .footer__row:first-child {
    display: block;
  }

  .footer__nav {
    padding-left: 0;
    width: 100%;
    margin-top: 30px;
  }

  .footer-contacts {
    margin-top: 30px;
  }

  .footer__copyright {
    margin-top: 10px;
  }

  .footer .footer__social {
      margin-left: auto;
      margin-right: auto;
      width: 120px;
  }
}

.social li {
  padding: 0 5px;
  flex-shrink: 0;
}

.social a {
  width: 30px;
  height: 30px;
  display: block;
}

.social a svg {
  max-width: 100%;
  max-height: 100%;
  fill: #fd5778;
  transition: .3s all ease;
}

.social a:hover svg {
  fill: #f9a224;
}

.up {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 70px;
  height: 70px;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
  background: #fd5778;
  border-radius: 50%;
  right: 5%;
  bottom: 5%;
  fill: #fff;
  cursor: pointer;
  z-index: 100;
  transition: .5s all ease;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
}
.up.fixed {
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 1600px) {
  .up {
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
  }
}

.up:hover {
  box-shadow: 0 0px 20px 0 #fd5778;
}

.up svg {
  width: 17px;
  height: 29px;
  transform: rotate(-90deg);
}

.breadcrumbs {
  margin: 20px 0;
}

.breadcrumbs li {
  display: inline-block;
  vertical-align: middle;
  margin: 5px 0;
}

.breadcrumbs li:last-child:after {
  content: none;
}

.breadcrumbs li:after {
  content: '/';
  margin: 0 5px;
  opacity: .6;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumbs__item {
  opacity: .6;
  font-size: 14px;
}

.breadcrumbs a:hover {
  opacity: 1;
}

.news-item {
  display: block;
}

.news-item:hover .news-item__img img {
  transform: scale(1.1);
}

.news-item:hover .services__more {
  left: 50%;
  transform: translateX(-50%);
}

.news-item__img {
  position: relative;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
  border-radius: 10px;
  overflow: hidden;
}

.news-item__img img {
  width: 100%;
  transition: .5s all ease;
}

.news-item__date {
  position: absolute;
  left: 10px;
  top: 10px;
  height: 43px;
  width: 95px;
  background: #fbe7ec;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.news-item__title {
  font-family: "Lobster", cursive;
  color: #fd5778;
  font-size: 25px;
  line-height: 1.3;
  margin-top: 15px;
}

.news-item__desc {
  line-height: 1.8;
  margin: 5px 0 10px;
  font-weight: 300;
}

.news-item .services__more {
  text-align: left;
  width: 100px;
  position: relative;
  left: 0;
}

.single {
  line-height: 1.8;
}

.single__img {
  width: 50%;
  float: left;
  margin-right: 30px;
  margin-bottom: 15px;
}

@media all and (max-width: 767px) {
  .single__img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

    .breadcrumbs {
        align-items: center;
        white-space: nowrap;
        overflow-x: auto;
    }
}

.single p {
  font-weight: 300;
}

.single b {
  color: #fd5778;
  font-weight: 500;
}

.single br + p {
  margin-top: 0;
}

.single blockquote {
  font-weight: 500;
  color: #fd5778;
  padding: 12px 15px;
  border-top: 1px solid #fd5778;
  border-bottom: 1px solid #fd5778;
  margin: 40px 0;
  font-style: italic;
  text-align: center;
}

.single h2 {
  color: #fd5778;
  font-size: 25px;
  font-family: "Lobster", cursive;
  line-height: 1.3;
}

.news__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  justify-content: center;
}

.news__col {
  padding: 0 15px;
  margin-bottom: 25px;
}

.news__col--6 {
  width: 50%;
}

@media all and (max-width: 767px) {
  .news__col--6 {
    width: 100%;
  }
}

.news__col--4 {
  width: 33.3333%;
}

@media all and (max-width: 992px) {
  .news__col--4 {
    width: 50%;
  }
}

@media all and (max-width: 767px) {
  .news__col--4 {
    width: 100%;
  }
}

.news__col--red .news__inner {
  background: #fd5778;
}

.news__col--red .news-item {
  background: #fd5778;
  color: #fff;
  padding: 0 15px 20px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
}

.news__col--red .news-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.news__col--red .news-item__date {
  position: relative;
  color: #4a4a4a;
  left: 0;
  top: 0;
  margin-top: 10px;
  font-size: 10px;
  width: 65px;
  height: 30px;
}

.news__col--red .news-item__title {
  color: #fff;
  margin-top: 5px;
  transition: .3s all ease;
  font-size: 22px;
}

.news__col--red .news-item__desc {
  font-size: 14px;
}

.news__col--red .news-item .services__more {
  font-size: 14px;
}

.news__inner {
  border-radius: 10px;
  overflow: hidden;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin: 0 -5px;
  margin-top: 10px;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.wp-pagenavi > * {
  margin: 0 5px;
  flex-shrink: 0;
}

.wp-pagenavi .pagination__item.active {
  background: linear-gradient(0deg, #f89509, #ffe7b7 100%);
  color: #4a4a4a;
}

.pagination__item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fd5778;
  background: #fcf3f7;
  font-family: "Lobster", cursive;
  border-radius: 50%;
  font-size: 22px;
  transition: .3s all ease;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
}

.pagination__item:hover {
  background: linear-gradient(0deg, #f89509, #ffe7b7 100%);
  color: #4a4a4a;
}

.pagination__item:hover .arrow {
  fill: #4a4a4a;
}

.wp-pagenavi .arrow {
  width: 50px;
  height: 50px;
  background: transparent;
}

.wp-pagenavi .arrow svg {
  width: 8px;
  height: 14px;
}

.single-page {
  background: url() center bottom no-repeat;
}

@media all and (min-width: 1921px) {
  .single-page {
    background-size: cover;
    background-position: center top 600px;
  }
}

.table {
  margin-bottom: 50px;
}
@media all and (max-width: 767px) {
  .table {
    overflow-x: scroll;
    font-size: 14px;
  }
}

.table__title {
  height: 63px;
  width: 100%;
  background: #fcf3f7;
  font-weight: 500;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 29px 0 rgba(213, 169, 195, 0.44);
  justify-content: center;
  position: relative;
  z-index: 1;
  min-width: 450px;
}

@media all and (max-width: 767px) {
  .table__title {
    height: 50px;
  }
}

.table__td:first-child {
  width: 55%;
  flex-shrink: 0;
}

.table__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 450px;
}

.table__head {
  background: #fcf3f7;
  font-weight: 500;
}
.table__head .table__td {
  text-decoration: none !important;
}
.table__tr {
  border-bottom: 1px solid #fcf3f7;
  transition: .4s all ease;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.table__tr:hover {
  background: rgba(253, 87, 120, 0.08);
}

.table__td {
  height: 60px;
  margin: 0;
  border: 0;
  padding: 0 20px;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.table__td:first-child {
  text-align: left;
}

@media all and (max-width: 767px) {
  .table__td {
    height: 50px;
  }
}

.table b {
  font-weight: 500;
}
.table__td:nth-child(2) {
  text-decoration: line-through;
}
.table__td:nth-child(2),
.table__td:nth-child(3) {
  font-weight: 500;
  width: 130px;
  flex-shrink: 0;
}
.table__td:nth-child(2),
.table__td:nth-child(3),
.table__td:nth-child(4) {
  justify-content: center;
}
.table__tr .table__td:last-child {
  font-weight: 500;
  color: #fd5778;
  flex-grow: 1;
}
.table__head .table__td:last-child {
  color: #4a4a4a;
}

@media all and (max-width: 992px) {
  .table__td:first-child {
    width: 40%;
  }
}
@media all and (max-width: 767px) {
  .table__td {
    width: 45%;
    height: auto;
  }
  .table__td {
    padding:5px 10px;
  }
  .table__td:nth-child(2),
  .table__td:nth-child(3) {
    width: 80px;
    padding: 0 2px;
  }
  .table__td:nth-child(1) {
    order: 1;
  }
  .table__td:nth-child(4) {
    order: 2;
  }
  .table__td:nth-child(2) {
    order: 3;
  }
  .table__td:nth-child(3) {
    order: 4;
  }
}


.wow {
  visibility: hidden;
}


span.wpcf7-not-valid-tip,
div.wpcf7-validation-errors {
  display: none !important;
}

.menu__list li {
  position: relative;
}

.menu__list li:after {
  left: 0;
  right: 0;
  margin: 0 auto;
}

.language-select.nice-select {
	padding:10px 14px;
	margin-left:5px;
    align-items: center;
    background-color: transparent;
    border-radius: 0;
    border-style: none;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    --tw-text-opacity: 1;
    color: #fd5778;
    outline: 2px solid transparent;
    outline-offset: 0;
    transition-duration: .3s
}

@media (min-width: 1000px) {
    .language-select.nice-select {
        font-size:16px;
    }
}

.language-select.nice-select .nice-select-dropdown {
	opacity:0;
	visibility:hidden;
	transition:all .3s;
}
.language-select.nice-select:hover .nice-select-dropdown {
	opacity:1;
	visibility:visible;
	transition:all .3s;
}

@media (min-width: 1000px) {
    .language-select.nice-select:hover {
		color:#fff;
    }

    .language-select.nice-select:hover:hover {
        background-color: #fd5778
    }
}

.language-select.nice-select.open,.language-select.nice-select:active,.language-select.nice-select:focus {
    --tw-bg-opacity: 1;
    background-color: rgb(229 245 243/var(--tw-bg-opacity,1));
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity,1));
    outline: 2px solid transparent;
    outline-offset: 2px
}

.language-select.nice-select.open:after,.language-select.nice-select:active:after,.language-select.nice-select:focus:after {
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0/var(--tw-bg-opacity,1))
}

.language-select.nice-select:after {
	content:'';
    display: block;
        height: 5px;
    pointer-events: none;
    position: absolute;
    right: 4px;
    top: 16px;
    width: 5px;
    border: solid #fd5778;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
	transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.language-select.nice-select:hover:after {
       transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
	border: solid #fff;
	border-width: 0 2px 2px 0;
	content:'';
	 top: 18px;
}


.language-select.nice-select .list {
    background-color: #fbe7ec;
    border: none;
    left: 0;
    position: absolute;
    top: calc(100% + 4px);
    width: 100%;
	z-index:98;
}

.language-select.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 37px;
    list-style: none;
    min-height: 37px;
    outline: none;
    padding-left: 14px;
    padding-right: 8px;
    text-align: left;
    transition: all .3s;
    width: 100%;
	color:#4a4a4a;
}



.language-select.nice-select .option.focus,.language-select.nice-select .option.selected.focus,.language-select.nice-select .option:hover {
    background-color:#fbe7ec;
	color:#fd5778
}



