@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --font-family: "Noto Serif", sans-serif;
  --second-family: "Open Sans", sans-serif;
  --zelenyy: #455535;
  --korichnevyy: #67422c;
}

@media (min-width: 1200px) {
  .container {
    width: 1160px;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
@media (max-width: 1200px) {
  .container {
    width: 100%;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 30px;
  }
}
@media (max-width: 991px) {
  .container {
    width: 100%;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
  }
}
.modal-q {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  transition: all 0.5s ease-in-out;
  z-index: 9999;
}
.modal-q .modal-wrapper.menu-wrapper {
  width: calc(50% - 80px);
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  opacity: 1;
  z-index: 9999;
  background-color: #ffffff;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  animation: fadeIn 0.3s ease-in-out;
  overflow-y: auto;
}
@media (max-width: 1200px) {
  .modal-q .modal-wrapper.menu-wrapper {
    width: 400px;
  }
}
@media (max-width: 500px) {
  .modal-q .modal-wrapper.menu-wrapper {
    width: 100%;
  }
}
.modal-q .modal-menu {
  padding: 106px 77px 77px 77px;
  width: 508px;
  overflow-y: auto;
  position: relative;
}
@media (max-width: 1200px) {
  .modal-q .modal-menu {
    padding: 56px 73px 56px 87px;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .modal-q .modal-menu {
    padding-top: 56px;
  }
}
@media (max-width: 370px) {
  .modal-q .modal-menu {
    padding: 56px 60px 56px 48px;
  }
}
.modal-q .modal-menu .modal-close {
  background-image: url("../images/close.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 31px;
  height: 31px;
  position: absolute;
  right: 14px;
  top: 65px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .modal-q .modal-menu .modal-close {
    width: 24px;
    height: 24px;
    right: 40px;
    top: 68px;
  }
}
@media (max-width: 991px) {
  .modal-q .modal-menu .modal-close {
    top: 56px;
  }
}
.modal-q .modal-menu ul li {
  padding-left: 0;
}
.modal-q .modal-menu ul li:before {
  display: none;
}
.modal-q .modal-menu ul#menu-main_menu li, .modal-q .modal-menu ul#menu-main_menude li {
  padding-bottom: 15px;
}
.modal-q .modal-menu ul#menu-main_menu li a, .modal-q .modal-menu ul#menu-main_menude li a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #1e1e1e;
}
@media (max-width: 1200px) {
  .modal-q .modal-menu ul#menu-main_menu li a, .modal-q .modal-menu ul#menu-main_menude li a {
    font-size: 16px;
  }
}

.mobile__links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
}
.mobile__links .phone {
  background-image: url(../images/phone__icon.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 51%;
  padding-left: 20px;
}
.mobile__links .phone a {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--zelenyy);
}
@media (max-width: 1200px) {
  .mobile__links .phone a {
    font-size: 14px;
  }
}
.mobile__links .social {
  display: flex;
}
.mobile__links .social .menu__social_item {
  width: 35px;
  margin-left: 15px;
}
@media (max-width: 1200px) {
  .mobile__links .social .menu__social_item {
    width: 27px;
  }
}

.mobile__lang {
  margin-top: 35px;
}
.mobile__lang .cpel-switcher__list {
  display: flex;
}
.mobile__lang .cpel-switcher__lang {
  margin-right: 15px;
}
.mobile__lang .cpel-switcher__lang a {
  font-size: 24px;
}
@media (max-width: 1200px) {
  .mobile__lang .cpel-switcher__lang a {
    font-size: 18px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
body {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #1e1e1e;
}

.home h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 72px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(125deg, #1a1a1a 20%, #7a7a7a 50%, #1a1a1a 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .home h1 {
    font-size: 35px;
  }
}

h2, .about h1, h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 125%;
  text-align: center;
  background: linear-gradient(125deg, #1a1a1a 20%, #7a7a7a 50%, #1a1a1a 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: none;
}
@media (max-width: 767px) {
  h2, .about h1, h1 {
    font-size: 25px;
  }
}

h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  text-align: center;
  background: linear-gradient(125deg, #1a1a1a 20%, #7a7a7a 50%, #1a1a1a 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .service__item_desc h3 {
    font-size: 25px;
    margin-top: 5px;
  }
}

h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 125%;
  background: linear-gradient(125deg, #1a1a1a 20%, #7a7a7a 50%, #1a1a1a 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  h4 {
    font-size: 16px;
  }
}

h5 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #1e1e1e;
}
@media (max-width: 767px) {
  h5 {
    font-size: 16px;
  }
}

ul {
  padding-left: 0;
}

ul li {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #1e1e1e;
  list-style: none;
  position: relative;
  padding-left: 30px;
}
@media (max-width: 767px) {
  ul li {
    font-size: 14px;
  }
}
ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4%;
  /*transform: translateY(-50%);*/
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask: url("../images/star.svg") no-repeat center/contain;
  mask: url("../images/star.svg") no-repeat center/contain;
}
@media (max-width: 767px) {
  ul li::before {
    width: 13px;
    height: 13px;
    top: 9%;
  }
}

a {
  text-decoration: none;
}

/* ================================= header =====================*/
.header__contacts_address, .header__contacts_phone a {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--zelenyy);
}

.header__contacts_mobile .header__contacts_address, .header__contacts_mobile .header__contacts_phone a {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 14px;
  color: var(--zelenyy);
}

.cpel-switcher__lang a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: var(--zelenyy);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .cpel-switcher__lang a {
    font-size: 14px;
  }
}

.cpel-switcher__lang.active a {
  color: #5aab00;
}

/* ================================== hp-banner ======================*/
.hp__slogan {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  color: #1e1e1e;
  text-align: center;
}
@media (max-width: 767px) {
  .hp__slogan {
    font-size: 16px;
  }
}

.hp-banner_services a {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  /* background: linear-gradient(126deg, #91b766 0%, rgba(145, 183, 102, 0.4) 51.61%, #91b766 100%);
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;*/
}
@media (max-width: 767px) {
  .hp-banner_services a {
    font-size: 12px;
  }
}

.hp-banner__content > a.appointment {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--korichnevyy);
}
@media (max-width: 767px) {
  .hp-banner__content > a.appointment {
    font-size: 13px;
  }
}

/* ==============================================================*/
.service__item_topdesc {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #1e1e1e;
}
@media (max-width: 767px) {
  .service__item_topdesc {
    font-size: 16px;
    text-align: center;
  }
}

.service__item_bottomdesc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--korichnevyy);
}
@media (max-width: 767px) {
  .service__item_bottomdesc {
    font-size: 16px;
  }
}

.readmore {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--korichnevyy);
  transition: all 0.3s ease-in-out;
}
.readmore:hover {
  box-shadow: 0 5px 0 0 #77905f;
  background: linear-gradient(117deg, #91b766 0%, #e7ffcd 51.61%, #91b766 100%);
  color: var(--zelenyy);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .readmore {
    font-size: 10px;
  }
}

/*  hp-our-works */
.hp-our-works__desc {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #1e1e1e;
}
@media (max-width: 767px) {
  .hp-our-works__desc {
    text-align: left;
    font-size: 14px;
  }
}

.see-all-works {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--korichnevyy);
}
@media (max-width: 767px) {
  .see-all-works {
    font-size: 14px;
  }
}

/* ==========================  about us ============================ */
.hp-about-us .readmore {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--korichnevyy);
}

.hp-about-us__desc {
  font-size: 20px;
  line-height: 150%;
}
@media (max-width: 767px) {
  .hp-about-us__desc {
    font-size: 14px;
    text-align: center;
  }
}

.hp-about-us__bottomdesc {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  text-align: left;
  color: var(--korichnevyy);
}
@media (max-width: 767px) {
  .hp-about-us__bottomdesc {
    font-size: 14px;
    text-align: center;
  }
}

/* ================================ courses ============================== */
.courses__promo_one {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--korichnevyy);
}
@media (max-width: 767px) {
  .courses__promo_one {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.courses__promo_two {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #1e1e1e;
}
@media (max-width: 767px) {
  .courses__promo_two {
    font-size: 14px;
  }
}

.courses__bottom {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #1e1e1e;
}

/* ================================ footer ================================ */
.footer__contacts_phone a {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--zelenyy);
}
@media (max-width: 767px) {
  .footer__contacts_phone a {
    font-size: 16px;
  }
}

.footer__contacts_address {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--zelenyy);
}
@media (max-width: 767px) {
  .footer__contacts_address {
    font-size: 16px;
  }
}

/* Service page */
.service__item_bottom {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--korichnevyy);
}
@media (max-width: 767px) {
  .service__item_bottom {
    font-size: 16px;
  }
}

.price__item_title, .price__item_dotted {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: var(--zelenyy);
}
@media (max-width: 767px) {
  .price__item_title, .price__item_dotted {
    font-size: 16px;
  }
}

.price__item_value {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--korichnevyy);
}
@media (max-width: 767px) {
  .price__item_value {
    font-size: 16px;
  }
}

.price__item_bottom, .price__item_suptop {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: var(--zelenyy);
}

.service-price a.appointment {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--korichnevyy);
}
@media (max-width: 767px) {
  .service-price a.appointment {
    font-size: 13px;
  }
}

.service-bottom_desc {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #1e1e1e;
}
@media (max-width: 767px) {
  .service-bottom_desc {
    font-size: 14px;
  }
}

.about-item__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #1e1e1e;
}
@media (max-width: 1200px) {
  .about-item__text {
    font-size: 14px;
  }
}

.about-item h5 {
  color: var(--korichnevyy);
}
@media (max-width: 1200px) {
  .about-item h5 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .about-item h5 {
    font-size: 16px;
  }
}
.about-item:nth-child(even) h5 {
  color: var(--zelenyy);
}

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  position: relative;
  min-width: 320px;
  background-color: #fcfcfc;
}

img.responsive {
  width: 100%;
  height: auto;
  display: block;
}

a.appointment {
  display: flex;
  border-radius: 15px;
  width: 451px;
  height: 101px;
  box-shadow: 0 5px 0 0 #b9937c;
  background: linear-gradient(134deg, #f1d5b5 0%, #fff0df 52.04%, #f1d5b5 100%);
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  a.appointment {
    width: 266px;
    height: 71px;
  }
}
a.appointment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(117deg, #91b766 0%, #e7ffcd 51.61%, #91b766 100%);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
a.appointment:hover::before {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
a.appointment:hover {
  box-shadow: 0 5px 0 0 #77905f;
  transition: all 0.4s ease-in-out;
}
a.appointment span {
  position: relative;
  z-index: 1;
}

.readmore-grad.readmore:hover {
  background: unset;
}

.readmore-grad {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  width: 245px;
  height: 77px;
  box-shadow: 0 4px 0 0 #b9937c;
  background: linear-gradient(134deg, #f1d5b5 0%, #fff0df 52.04%, #f1d5b5 100%);
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--korichnevyy);
}
@media (max-width: 767px) {
  .readmore-grad {
    width: 158px;
    height: 50px;
    font-size: 10px;
  }
}
.readmore-grad::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(117deg, #91b766 0%, #e7ffcd 51.61%, #91b766 100%);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.readmore-grad:hover::before {
  opacity: 1;
}
.readmore-grad:hover {
  box-shadow: 0 5px 0 0 #77905f;
  transition: all 0.4s ease-in-out;
}
.readmore-grad span {
  position: relative;
  z-index: 1;
}

/* ==================================== header =======================================*/
header {
  width: 100%;
}

body.home header {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}
header .row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  header .row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .header__logo {
    width: 180px;
    margin-bottom: 13px;
  }
}

.header__contacts {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .header__contacts {
    display: none;
  }
}
.header__contacts .header__contacts_phone {
  background-image: url("../images/phone__icon.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 51%;
  padding-left: 20px;
  padding-right: 50px;
}
@media (min-width: 991px) {
  .header__contacts .header__contacts_phone {
    padding-right: 10px;
  }
}
@media (min-width: 1200px) {
  .header__contacts .header__contacts_phone {
    padding-right: 40px;
  }
}
.header__contacts .header__contacts_address {
  background-image: url("../images/address_icon.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 51%;
  padding-left: 20px;
}

.header__block {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .header__block {
    justify-content: space-between;
    width: 100%;
  }
}

.header__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80px;
}
@media (max-width: 767px) {
  .header__social {
    width: 75px;
  }
}

@media (max-width: 767px) {
  .header__social_item {
    width: 27px;
  }
}

.header__language .cpel-switcher__list {
  padding-left: 35px;
  padding-right: 40px;
}
@media (min-width: 991px) and (max-width: 1200px) {
  .header__language .cpel-switcher__list {
    padding-left: 9px;
    padding-right: 9px;
    display: flex;
  }
}
@media (max-width: 991px) {
  .header__language .cpel-switcher__list {
    padding-right: 35px;
    display: flex;
  }
}
.header__language .cpel-switcher__list li {
  padding-left: 7px;
  padding-right: 7px;
  display: inline-block;
}
.header__language .cpel-switcher__list li:after {
  display: none;
}
.header__language .cpel-switcher__list li:before {
  display: none;
}

.header__menu {
  background-image: url("../images/menu.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left 50%;
  width: 43px;
  height: 23px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .header__menu {
    height: 20px;
    width: 36px;
  }
}

.header__contacts_mobile {
  display: none;
}
@media (max-width: 991px) {
  .header__contacts_mobile {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}
.header__contacts_mobile .header__contacts_phone {
  background-image: url("../images/phone__icon.svg");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: left 51%;
  padding-left: 15px;
}
.header__contacts_mobile .header__contacts_address {
  background-image: url("../images/address_icon.svg");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: left 48%;
  padding-left: 13px;
}

/* ==================================== hp-banner =================================== */
.hp-banner {
  background-image: url(../images/home__banner.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 957px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .hp-banner {
    background-image: url("../images/hp-banner__bg_m.webp");
    padding-top: 280px;
    height: 835px;
    align-items: unset;
  }
}
@media (max-width: 575px) {
  .hp-banner {
    background-position: center 25px;
  }
}
.hp-banner .container {
  position: relative;
}
@media (max-width: 1200px) {
  .hp-banner .container {
    top: 200px;
  }
}
@media (max-width: 767px) {
  .hp-banner .container {
    top: unset;
  }
}

.hp-banner__content {
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  width: 51%;
  align-items: center;
  /*  .hp-banner_services{
      display: flex;
      gap: 10px;
      .hp-banner__item{
        border-radius: 7px;
        width: 177px;
        height: 52px;
        background: rgba(255, 255, 255, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #92d392c2;
        @include maxRespond(767){
          width: 99px;
          height: 31px;
        }
      }
      }
      a{

      }
  */
}
@media (max-width: 1200px) {
  .hp-banner__content {
    width: 100%;
  }
}
.hp-banner__content h1 {
  margin: 0;
}
.hp-banner__content .hp__slogan {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .hp-banner__content .hp__slogan {
    margin-top: 10px;
  }
}
.hp-banner__content a.appointment {
  margin-top: 58px;
}
@media (max-width: 767px) {
  .hp-banner__content a.appointment {
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    bottom: -30px;
  }
}

.hp-banner_services {
  display: flex;
  gap: 7px;
}
@media (max-width: 767px) {
  .hp-banner_services {
    gap: 2px;
  }
}
.hp-banner_services a {
  padding: 11px 10px;
  display: flex;
}
@media (max-width: 767px) {
  .hp-banner_services a {
    padding: 5px 10px;
  }
}

.hp-banner__item {
  padding: 1px;
  background: linear-gradient(125deg, #91B76699 20%, #E7FFCD99 50%, #91B76699 90%);
  border-radius: 7px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .hp-banner__item {
    border-radius: 3px;
  }
}

.hp-banner__item > div {
  border-radius: 6px;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  transition: all 0.4s ease-in-out;
}
.hp-banner__item > div:hover {
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .hp-banner__item > div {
    padding: 0;
    border-radius: 2px;
  }
}
.hp-banner__item > div div {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(126deg, #91b766 0%, rgba(145, 183, 102, 0.4) 51.61%, #91b766 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .hp-banner__item > div div {
    font-size: 14px;
    letter-spacing: 0.2em;
    line-height: 150%;
  }
}

/* ==================================== our-services ==================================*/
.our-services {
  background-image: url("../images/service_bg1_1.jpg"), url("../images/service_bg1_2.jpg"), url("../images/service_bg2.jpg");
  background-position: 0% 24%, 100% 9%, bottom center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 20%, 20%, 100%;
}
@media (max-width: 767px) {
  .our-services {
    background-image: none;
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .our-services h3 {
    margin-top: 10px;
  }
}

.services__item {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 767px) {
  .services__item {
    flex-direction: column;
    gap: 0;
    padding-bottom: 25px;
  }
}
.services__item h3 {
  text-align: left;
}
@media (max-width: 767px) {
  .services__item h3 {
    text-align: center;
  }
}

.services__item_one, .services__item_two {
  width: 50%;
}
@media (max-width: 767px) {
  .services__item_one, .services__item_two {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .services__item_two {
    padding-top: 20px;
  }
  .services__item_two ul {
    margin-bottom: 9px;
  }
  .services__item_two li {
    padding-left: 20px;
    padding-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .services__item_two h3 {
    display: none;
  }
}

.services__item_head-mobile {
  display: none;
}
@media (max-width: 767px) {
  .services__item_head-mobile {
    display: block;
  }
}

.our-services .container:nth-child(odd):not(:first-child) .services__item {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .our-services .container:nth-child(odd):not(:first-child) .services__item {
    flex-direction: column;
  }
}

.service__item_bottomdesc {
  border: 2px solid rgba(69, 85, 53, 0.3);
  border-radius: 15px;
  width: 495px;
  padding: 29px 19px 69px 19px;
  background: rgba(69, 85, 53, 0.05);
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .service__item_bottomdesc {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service__item_bottomdesc {
    width: 100%;
    padding: 20px 10px 39px 10px;
  }
}

.readmore {
  width: 245px;
  height: 77px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  width: 245px;
  height: 77px;
  box-shadow: 0 4px 0 0 #b9937c;
  background: linear-gradient(134deg, #f1d5b5 0%, #fff0df 52.04%, #f1d5b5 100%);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .readmore {
    width: 158px;
    height: 50px;
  }
}

.our-services .readmore-grad {
  position: relative;
  top: -39px;
}
@media (max-width: 767px) {
  .our-services .readmore-grad {
    top: -25px;
  }
}

/*  hp-our-works */
.hp-our-works {
  /* background-image: url("../images/our-works_bg1.png"), url("../images/our-works_bg2.png");
  background-position: 0% 80%, 100% 20%;
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, 100%; */
  position: relative;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .hp-our-works {
    padding-top: 0;
  }
}
.hp-our-works h3 {
  margin-top: -35px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .hp-our-works h3 {
    margin-top: 24px;
    margin-bottom: 15px;
  }
}

.hp-our-works .hp-our-works__bg1 {
  position: absolute;
  z-index: 1;
  bottom: 9%;
  left: 0;
}
@media (max-width: 767px) {
  .hp-our-works .hp-our-works__bg1 {
    width: 150px;
    bottom: 16%;
  }
}

.hp-our-works .hp-our-works__bg2 {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 5%;
}
@media (max-width: 767px) {
  .hp-our-works .hp-our-works__bg2 {
    width: 100px;
    z-index: 3;
    top: 31%;
  }
}

.hp-our-works__desc {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 55px;
  z-index: 2;
  position: relative;
  /*  background-color: #ffffff;*/
}
@media (max-width: 767px) {
  .hp-our-works__desc {
    padding-bottom: 20px;
    margin: 0;
  }
}

.hp-our-works__items .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.hp-our-works__item {
  width: 23%;
  position: relative;
  z-index: 2;
  background: linear-gradient(134deg, #ddc1a1 0%, #fbe6cd 52.04%, #ddc1a1 100%);
  border-radius: 25px;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .hp-our-works__item {
    display: none;
  }
}

.page-template-works .hp-our-works__item {
  background: none;
}

@media (min-width: 767px) {
  .hp-our-works__items-mobile {
    display: none;
  }
}

.hp-our-works__items-mobile img {
  padding: 0 15px;
}

.hp-our-works__item img {
  position: relative;
  border-radius: 25px;
  left: -10px;
  top: -10px;
}

.hp-our-works__btn {
  text-align: center;
}

.see-all-works {
  border: 2px solid #edcda5;
  border-radius: 15px;
  background: rgba(237, 205, 165, 0.3);
  transition: all 0.5s ease;
  display: inline-block;
  margin: 0 auto;
  margin-top: 55px;
  padding: 26px 59px;
}
.see-all-works:hover {
  border: 2px solid #c9e6a9;
  background: rgba(219, 245, 190, 0.4);
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .see-all-works {
    margin-top: 26px;
    padding: 16px 45px;
  }
}

/* ============== Swiper ============== */
.swiperAllworks {
  padding-bottom: 80px;
}

.swiper-button-next, .swiper-button-prev {
  top: unset;
  bottom: 0px;
  width: 65px;
  height: 65px;
}
@media (max-width: 767px) {
  .swiper-button-next, .swiper-button-prev {
    width: 47px;
    height: 47px;
  }
}
.swiper-button-next:after, .swiper-button-prev:after {
  content: "";
}

.swiper-button-next {
  background-image: url("../images/rightArrow.svg");
  right: calc(50% - 75px);
  background-repeat: no-repeat;
}
.swiper-button-next:hover {
  background-image: url("../images/rightArrow-h.svg");
}

.swiper-button-prev {
  background-image: url("../images/leftArrow.svg");
  left: calc(50% - 75px);
  background-repeat: no-repeat;
}
.swiper-button-prev:hover {
  background-image: url("../images/leftArrow-h.svg");
}

/* ==========================  about us ============================ */
.hp-about-us {
  background-image: url("../images/about__br.webp");
  background-position: center center;
  height: 865px;
  border-radius: 25px;
  margin-top: 110px;
  margin-bottom: 118px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .hp-about-us {
    height: unset;
    margin-top: 45px;
    margin-bottom: 113px;
    background-size: 100% auto;
    background-position: center bottom;
    border-radius: 0;
    background-image: url(../images/hp-about-us-m.webp);
  }
}
.hp-about-us h4 {
  margin-top: 0;
}
@media (max-width: 767px) {
  .hp-about-us h4 {
    text-align: center;
    margin-top: 20px;
  }
}
.hp-about-us .readmore {
  margin: 0;
}
@media (max-width: 767px) {
  .hp-about-us .readmore {
    margin: 0 auto;
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 254px;
    height: 77px;
  }
}
.hp-about-us .see-all-works {
  background: #faf0e4;
  margin-top: 14px;
}
.hp-about-us .see-all-works:hover {
  background: #dbf5be;
}
@media (max-width: 767px) {
  .hp-about-us .see-all-works {
    position: absolute;
    bottom: -42px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 44px;
    font-size: 16px;
    width: 254px;
  }
}

.hp-about-us__title h2 {
  position: relative;
}
.hp-about-us__title h2::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/about-head2.webp);
  width: 55px;
  height: 72px;
  display: block;
  background-size: cover;
}
@media (max-width: 767px) {
  .hp-about-us__title h2::after {
    width: 28px;
    height: 36px;
    right: -30px;
  }
}
.hp-about-us__title h2::before {
  content: "";
  left: -54px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/about-head1.webp);
  width: 55px;
  height: 72px;
  display: block;
  background-size: cover;
  position: absolute;
}
@media (max-width: 767px) {
  .hp-about-us__title h2::before {
    width: 28px;
    height: 36px;
    left: -30px;
  }
}

.hp-about-us .container {
  display: flex;
  justify-content: flex-end;
}

.hp-about-us__block {
  width: 50%;
}
@media (max-width: 767px) {
  .hp-about-us__block {
    width: 100%;
    padding-bottom: 360px;
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.hp-about-us__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .hp-about-us__title {
    flex-direction: column;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .hp-about-us__logo {
    width: 110px;
  }
}

.hp-about-us__desc {
  margin-bottom: 20px;
  max-width: 488px;
}

.hp-about-us__bottomdesc {
  margin-bottom: 20px;
  max-width: 488px;
}

/* ================================ courses ================================== */
.courses {
  border-radius: 50px;
  width: 1514px;
  background: linear-gradient(134deg, #ddc1a136 0%, #fbe6cd36 52.04%, #ddc1a136 100%);
  opacity: 1;
  margin: 0 auto;
  padding-top: 46px;
  padding-bottom: 66px;
  position: relative;
}
@media (max-width: 1550px) {
  .courses {
    width: unset;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .courses {
    padding-bottom: 35px;
  }
}
.courses h2 {
  margin: 0;
}
.courses h4 {
  text-align: center;
  max-width: 645px;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .courses h4 {
    margin-bottom: 15px;
  }
}

.courses__promo {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .courses__promo {
    flex-direction: column;
  }
}

.courses__promo_one {
  width: 50%;
  border-right: 1px solid var(--korichnevyy);
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .courses__promo_one {
    border: none;
    width: 100%;
    padding: 0;
  }
}

.courses__promo_two {
  width: 50%;
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .courses__promo_two {
    width: 100%;
    padding: 0;
  }
}

.courses__include {
  display: flex;
  width: 898px;
  background: rgba(69, 85, 53, 0.05);
  border: 2px solid rgba(69, 85, 53, 0.3);
  border-radius: 15px;
  padding: 40px;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 30px;
}
@media (max-width: 920px) {
  .courses__include {
    padding-top: 20px;
    padding-left: 60px;
    padding-right: 10px;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .courses__include {
    flex-direction: column;
  }
}

.courses__items h5 {
  text-align: center;
  margin: 0;
  color: var(--zelenyy);
}
@media (max-width: 767px) {
  .courses__items h5 {
    text-align: left;
  }
}
.courses__items ul {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .courses__items ul {
    flex-direction: column;
  }
}
.courses__items li {
  width: 33.33%;
}
@media (max-width: 767px) {
  .courses__items li {
    width: 100%;
    padding-left: 20px;
  }
}

.courses__bottom-m {
  display: none;
  text-align: center;
}
@media (max-width: 767px) {
  .courses__bottom-m {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #1e1e1e;
    text-align: left;
  }
}

.courses__bottom {
  display: block;
  text-align: center;
  max-width: 670px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .courses__bottom {
    display: none;
  }
}

.courses .readmore-grad {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .courses .readmore-grad {
    margin-top: -57px;
  }
}

.courses .courses_bg1 {
  width: 25%;
  position: absolute;
  right: 0;
  top: 0px;
}
@media (max-width: 767px) {
  .courses .courses_bg1 {
    width: 30%;
    position: absolute;
    right: -30px;
    top: -30px;
  }
}

.courses .courses_bg2 {
  width: 18%;
  position: absolute;
  bottom: 120px;
  left: 10px;
}
@media (max-width: 767px) {
  .courses .courses_bg2 {
    width: 129px;
    position: absolute;
    bottom: 334px;
    left: -43px;
  }
}

.courses .courses_bg3 {
  width: 18%;
  position: absolute;
  bottom: 120px;
  right: 10px;
}
@media (max-width: 767px) {
  .courses .courses_bg3 {
    width: 129px;
    position: absolute;
    bottom: 134px;
    left: -43px;
  }
}

/* ============================== achivments ================================ */
.achivments {
  padding-bottom: 193px;
}
@media (max-width: 767px) {
  .achivments {
    padding-bottom: 80px;
    padding-top: 45px;
  }
}
.achivments .container.achivments-container {
  padding: 0;
  margin: 0 auto;
  max-width: 1740px;
  width: 100%;
}
@media (max-width: 767px) {
  .achivments .container.achivments-container {
    padding: 0 30px;
  }
}

.swiperAchivments .swiper-wrapper {
  padding-bottom: 110px;
}
@media (max-width: 767px) {
  .swiperAchivments .swiper-wrapper {
    padding-bottom: 80px;
  }
}

.swiperAchivments .swiper-button-prev {
  left: calc(50% - 75px);
}
@media (max-width: 767px) {
  .swiperAchivments .swiper-button-prev {
    left: calc(50% - 75px);
  }
}
.swiperAchivments .swiper-button-next {
  right: calc(50% - 75px);
}
@media (max-width: 767px) {
  .swiperAchivments .swiper-button-next {
    right: calc(50% - 75px);
  }
}

/* ============================== swiper ================================== */
.swiper-button-prev, .swiper-button-next {
  background-size: 65px;
}
@media (max-width: 767px) {
  .swiper-button-prev, .swiper-button-next {
    background-size: 45px;
  }
}

/* ================================ footer ================================ */
footer {
  padding: 60px 0px;
  background: linear-gradient(117deg, #91b766 0%, #e7ffcd 51.61%, #91b766 100%);
}
footer a {
  display: inline-block;
}
@media (max-width: 767px) {
  footer {
    padding-top: 40px;
  }
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  footer .container {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .footer__logo {
    margin-bottom: 20px;
    margin-top: 5px;
  }
}
.footer__logo img {
  width: 170px;
}
@media (max-width: 767px) {
  .footer__logo img {
    width: 118px;
  }
}

.footer__contacts {
  display: flex;
}
@media (max-width: 767px) {
  .footer__contacts {
    flex-direction: column-reverse;
  }
}

.footer__contacts_phone {
  padding-right: 60px;
}
@media (max-width: 767px) {
  .footer__contacts_phone {
    padding-right: 0;
    text-align: center;
    margin-top: 12px;
  }
}
.footer__contacts_phone a {
  background-image: url("../images/phone__icon.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 51%;
  padding-left: 20px;
}

.footer__contacts_address {
  background-image: url("../images/address_icon.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 51%;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .footer__social img {
    width: 27px;
    margin-top: 20px;
  }
}

.footer__social_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80px;
}
@media (max-width: 767px) {
  .footer__social_items {
    width: 71px;
  }
}

.footer__social_item {
  display: flex;
  align-items: center;
}
.footer__social_item a {
  height: 32px;
}
@media (max-width: 767px) {
  .footer__social_item a {
    height: 27px;
  }
}

/* ======================= Service page ========================== */
.service {
  background-image: url("../images/servic_bg1.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.service .container {
  display: flex;
  flex-direction: column;
}
.service h1 {
  margin-top: 32px;
  margin-bottom: 63px;
  text-transform: unset;
}
@media (max-width: 767px) {
  .service h1 {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 25px;
  }
}
.service .service__items:nth-child(odd) .service__item {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .service .service__items:nth-child(odd) .service__item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .service .service__items ul {
    padding-top: 15px;
  }
}
.service .service__item {
  display: flex;
  gap: 55px;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .service .service__item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .service .service__item {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
}
.service .service__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .service .service__item:nth-child(even) {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .service .service__item:nth-child(even) {
    flex-direction: column;
  }
}
.service .service__item h3 {
  text-align: left;
}
@media (max-width: 767px) {
  .service .service__item h3 {
    text-align: center;
  }
}
.service .service__item .service__item_desc {
  width: 50%;
  align-items: center;
}
@media (max-width: 991px) {
  .service .service__item .service__item_desc {
    width: 100%;
  }
}
.service .service__item .service__item_desc h5 {
  margin-bottom: 20px;
  margin-top: 0;
}
@media (max-width: 991px) {
  .service .service__item .service__item_desc h5 {
    margin-top: 0;
    text-align: center;
  }
}
.service .service__item .service__item_desc ul.service__item_list li {
  margin-bottom: 15px;
}
.service .service__item .service__item_desc .service__item_bottom {
  border: 2px solid #edcda5;
  border-radius: 15px;
  background: rgba(237, 205, 165, 0.3);
  padding: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .service .service__item .service__item_desc .service__item_bottom {
    margin-bottom: 60px;
  }
}
.service .service__item .service__item_img {
  width: 50%;
  background: linear-gradient(134deg, #ddc1a1 0%, #fbe6cd 52.04%, #ddc1a1 100%);
  border-radius: 15px;
}
@media (max-width: 767px) {
  .service .service__item .service__item_img {
    display: none;
    width: 100%;
  }
}
.service .service__item .service__item_img img {
  position: relative;
  left: -10px;
  top: -10px;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .service .service__item .service__item_img img {
    left: -5px;
    top: -5px;
  }
}
@media (min-width: 767px) {
  .service .service__item .service__item_img.mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .service .service__item .service__item_img.mobile {
    display: block;
  }
}

/* ===================================== Price section ========================================== */
.service-price {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../images/servic_bg2.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
@media (max-width: 1200px) {
  .service-price {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .service-price {
    margin-top: 10px;
    padding-top: 0;
    padding-bottom: 0;
    background-size: auto 80%;
    background-position: center right;
  }
}
.service-price .container {
  max-width: 960px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  background: linear-gradient(134deg, #ddc1a14d 0%, #fbe6cd61 52.04%, #ddc1a159 100%);
  opacity: 1;
}
@media (max-width: 767px) {
  .service-price .container {
    padding: 20px 20px;
  }
}
.service-price .service__wrapper_head {
  display: flex;
  justify-content: center;
}
.service-price h2 {
  position: relative;
  margin-top: 18px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .service-price h2 {
    margin-top: 13px;
    margin-bottom: 15px;
    position: relative;
    width: 100px;
  }
}
.service-price h2::after {
  content: "";
  position: absolute;
  right: -75px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/about-head2.webp);
  width: 70px;
  height: 86px;
  display: block;
  background-size: cover;
}
@media (max-width: 767px) {
  .service-price h2::after {
    width: 28px;
    height: 36px;
    right: -20px;
  }
}
.service-price h2::before {
  content: "";
  left: -75px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/about-head1.webp);
  width: 70px;
  height: 86px;
  display: block;
  background-size: cover;
  position: absolute;
}
@media (max-width: 767px) {
  .service-price h2::before {
    width: 28px;
    height: 36px;
    left: -20px;
  }
}

.service-price__head {
  display: flex;
  justify-content: center;
}

.service-price__head-wrap {
  padding: 1px;
  background: linear-gradient(125deg, #91B76699 20%, #E7FFCD99 50%, #91B76699 90%);
  border-radius: 7px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .service-price__head-wrap {
    border-radius: 3px;
  }
}

.service-price__head-wrap > div {
  padding: 11px 27px;
  border-radius: 6px;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
}
@media (max-width: 767px) {
  .service-price__head-wrap > div {
    max-width: 240px;
    padding: 5px 13px;
    border-radius: 2px;
  }
}
.service-price__head-wrap > div div {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(126deg, #91b766 0%, rgba(145, 183, 102, 0.4) 51.61%, #91b766 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .service-price__head-wrap > div div {
    font-size: 14px;
    letter-spacing: 0.2em;
    line-height: 150%;
  }
}

.service-price__item {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #67422c3d;
  padding-bottom: 36px;
  padding-top: 40px;
}
.service-price__item:last-child {
  border: none;
}
@media (max-width: 767px) {
  .service-price__item {
    border-bottom: 1px solid #67422c3d;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.service-price__item.price__item_head {
  border: none;
  padding-bottom: 0;
  margin-bottom: -23px;
}
@media (max-width: 767px) {
  .service-price__item.price__item_head {
    margin-bottom: -16px;
  }
}
.service-price__item.price__item_head .price__item_value {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: var(--zelenyy);
}
@media (max-width: 767px) {
  .service-price__item.price__item_head .price__item_value {
    font-size: 14px;
  }
}

.price__item_title {
  min-width: 550px;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .price__item_title {
    min-width: 380px;
  }
}
@media (max-width: 767px) {
  .price__item_title {
    min-width: 80px;
  }
}

.price__item_title.price2 {
  font-size: 20px;
}
@media (max-width: 767px) {
  .price__item_title.price2 {
    font-size: 14px;
    min-width: 80px;
  }
}

.price__item_value {
  white-space: nowrap;
  font-weight: bold;
  min-width: 130px;
  text-align: center;
}
@media (max-width: 767px) {
  .price__item_value {
    min-width: 80px;
  }
}

.price__item_value.price1 {
  display: none;
}

.price__item_dotted {
  flex-grow: 1;
  text-align: center;
  letter-spacing: 2px;
  overflow: hidden;
  white-space: nowrap;
}

.price__item_dotted::before {
  content: "...................................................................................................................................................................................................................................................";
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.price__item_top {
  display: flex;
  align-items: center;
  gap: 10px;
  align-items: flex-end;
}

.price__item_bottom, .price__item_suptop {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .price__item_bottom, .price__item_suptop {
    font-size: 14px;
  }
}

.price__item_suptop {
  display: none;
  font-family: var(--font-family);
}

.price__item_suptop.price2 {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .price__item_suptop.price2 {
    font-size: 16px;
  }
}

.price__item_bottom.price2 {
  display: none;
}

.service-price a.appointment {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .service-price a.appointment {
    margin-top: 30px;
  }
}

.service-price__bottom {
  text-align: center;
  width: 1160px;
  display: block;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #1e1e1e;
  margin: 0 auto;
  margin-top: 53px;
  opacity: 0.5;
  padding-bottom: 20px;
}
@media (max-width: 1200px) {
  .service-price__bottom {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .service-price__bottom {
    font-size: 14px;
    margin-top: 38px;
    padding-bottom: 8px;
  }
}

.service-bottom {
  padding-top: 25px;
  padding-bottom: 115px;
}
@media (max-width: 767px) {
  .service-bottom {
    margin-top: 0px;
    margin-bottom: 50px;
    padding-bottom: 0;
    padding-top: 20px;
  }
}
.service-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 770px;
}
.service-bottom h4 {
  margin-bottom: 20px;
  text-align: center;
}
.service-bottom .service-bottom_desc {
  text-align: center;
}

/* ========================= About Page ============================== */
.about {
  padding-top: 60px;
  padding-bottom: 115px;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding-bottom: 75px;
    padding-top: 35px;
  }
}
.about .hp-our-works__bg1 {
  position: absolute;
  z-index: 1;
  bottom: 9%;
  left: 0;
}
@media (max-width: 1600px) {
  .about .hp-our-works__bg1 {
    z-index: -1;
    width: 160px;
  }
}
@media (max-width: 767px) {
  .about .hp-our-works__bg1 {
    width: 120px;
    bottom: 28%;
    z-index: 1;
  }
}
.about .hp-our-works__bg2 {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 5%;
}
@media (max-width: 1600px) {
  .about .hp-our-works__bg2 {
    z-index: -1;
    top: 25%;
    width: 160px;
  }
}
@media (max-width: 767px) {
  .about .hp-our-works__bg2 {
    width: 100px;
    z-index: 3;
    top: 30%;
  }
}
.about .container {
  display: flex;
  flex-direction: column;
}
.about h1 {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .about h1 {
    margin-bottom: 25px;
  }
}
.about .about-items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .about .about-items {
    flex-direction: column;
    margin: 0 20px;
  }
}
.about .about-items .about-item__frame {
  border: 1px solid #975c2d1a;
  margin: 10px;
  border-radius: 20px;
  height: 273px;
  padding: 10px;
}
@media (max-width: 767px) {
  .about .about-items .about-item__frame {
    height: unset;
  }
}
.about .about-items .about-item {
  border-radius: 20px;
  width: 30%;
  background: linear-gradient(134deg, #ddc1a187 0%, #fbe6cda8 52.04%, #ddc1a157 100%);
  opacity: 1;
}
@media (max-width: 767px) {
  .about .about-items .about-item {
    width: 100%;
  }
}
.about .about-items .about-item:nth-child(even) {
  background: linear-gradient(117deg, #91b76687 0%, #e7ffcda8 51.61%, #91b76657 100%);
}
.about .about-items .about-item h5 {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 20px;
}
.page-our-works {
  padding-bottom: 115px;
}
@media (max-width: 767px) {
  .page-our-works {
    padding-top: 35px;
    padding-bottom: 90px;
  }
}

/* =========================== Our Works ============================= */
.hp-our-works.page-our-works .hp-our-works__items .container {
  gap: 20px;
}
@media (max-width: 767px) {
  .hp-our-works.page-our-works .hp-our-works__items .container {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .hp-our-works.page-our-works .hp-our-works__item {
    width: 47%;
    display: block;
  }
}
.hp-our-works.page-our-works .hp-our-works__item img {
  position: static;
}

/* ===============================  All prices ============================ */
.allprices {
  margin-bottom: 49px;
}
@media (max-width: 767px) {
  .allprices {
    margin-bottom: 30px;
  }
}
.allprices h2 {
  margin-top: 33px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .allprices h2 {
    margin-top: 58px;
    margin-bottom: 30px;
  }
}

.allprices__items {
  display: flex;
  gap: 45px;
}
@media (max-width: 767px) {
  .allprices__items {
    gap: 10px;
  }
}
.allprices__items .allprices__image {
  background: linear-gradient(134deg, #ddc1a1 0%, #fbe6cd 52.04%, #ddc1a1 100%);
  border-radius: 20px;
}
@media (max-width: 767px) {
  .allprices__items .allprices__image {
    border-radius: 6px;
  }
}
.allprices__items .allprices__image img {
  position: relative;
  left: -10px;
  top: -10px;
}
@media (max-width: 767px) {
  .allprices__items .allprices__image img {
    left: -3px;
    top: -3px;
  }
}

.service-price.allprices_page {
  padding-bottom: 118px;
}
@media (max-width: 767px) {
  .service-price.allprices_page {
    padding-bottom: 0px;
    margin-bottom: 75px;
  }
}

/*# sourceMappingURL=style.css.map */
