@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

h2.h2 {
  font-size: 80px;
  color: #000;
  text-align: center;
  font-family: "Marcellus", serif;
}
h2.h2.white {
  color: #fff;
}

@media only screen and (max-width: 1550px) {
  h2.h2 {
    font-size: 70px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 28px;
  }
}
header {
  height: 6rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
}
header .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 100px;
}
header .left .logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .left .logo {
  height: 70px;
  border-radius: 10px;
  padding: 10px;
  background: #050000;
}
header .left nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 35px;
}
header .left nav a {
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
header .left nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: 0.25s ease;
}
header .left nav a:hover::after, header .left nav a.active::after {
  width: 70%;
}
header .btn a {
  font-size: 16px;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #F5F0E6;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: #101010;
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header .left {
    gap: 50px;
  }
  header .left nav {
    gap: 20px;
  }
  header .left nav a {
    font-size: 15px;
  }
  header .btn a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  header .left {
    gap: 30px;
  }
  header .left nav {
    gap: 20px;
  }
  header .left nav a {
    font-size: 13px;
  }
  header .btn a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 10%;
  }
  header .left .logo {
    height: 60px;
  }
  header .left nav {
    display: none;
  }
  header .btn {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn.gold a {
  background: #A98752;
  color: #fff;
}
.btn a {
  font-size: 1em;
  background: #F5F0E6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  text-decoration: none;
  padding: 0.75em 1.5em;
  font-weight: 600;
  transition: 0.2s ease;
}

footer {
  padding: 5rem 7.5%;
  background: #040404;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 40%;
}
footer .footer__content .left img {
  height: 150px;
}
footer .footer__content .left p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .left .footer__contacts {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 20px;
  margin-top: 2rem;
}
footer .footer__content .left .footer__contacts a {
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: center;
  color: #fff;
  text-decoration: none;
  gap: 10px;
}
footer .footer__content .left .footer__contacts a svg {
  height: 27px;
  width: 27px;
}
footer .footer__content .left .footer__contacts a span {
  font-size: 20px;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right h3 {
  font-size: 35px;
  line-height: 1.1em;
  margin-bottom: 0.75rem;
  color: #fff;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a:hover svg {
  transform: translateX(5px);
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #fff;
  stroke-width: 3;
  transition: 0.25s ease;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left img {
    height: 70px;
  }
  footer .footer__content .left .footer__contacts a svg {
    height: 23px;
    width: 23px;
  }
  footer .footer__content .left .footer__contacts a span {
    font-size: 17px;
  }
  footer .footer__content .right {
    justify-content: center;
    gap: 10px;
  }
  footer .footer__content .right h3 {
    font-size: 28px;
  }
  footer .footer__content .right a {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) {
  footer .footer__content .left {
    width: 60%;
  }
  footer .footer__content .left .footer__contacts a {
    grid-template-columns: 21px 1fr;
  }
  footer .footer__content .left .footer__contacts a svg {
    height: 21px;
    width: 21px;
  }
  footer .footer__content .left .footer__contacts a span {
    font-size: 15px;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 2rem 0 1.5rem;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #fff;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.contacts {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  background: #1A1816;
}
.contacts::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20vw;
  background: #A98752;
}
.contacts form h2.h2 {
  text-align: start;
}
.contacts form p {
  font-size: 18px;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.6);
}
.contacts form .input__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.contacts form .input__row input {
  width: 100%;
  padding-bottom: 15px;
  border: none;
  background: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  font-size: 20px;
  color: #fff;
}
.contacts form .input__row input:focus {
  outline: none;
  border-bottom: 2px solid #fff;
}
.contacts form textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  font-size: 18px;
  resize: none;
  background: none;
  color: #fff;
}
.contacts form textarea:focus {
  outline: none;
  border-bottom: 2px solid #fff;
}
.contacts form .btn a {
  font-size: 21px;
}
.contacts .details {
  padding: 40px;
  background: #F5F0E6;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 20px;
  width: 40vw;
  z-index: 2;
}
.contacts .details h3 {
  font-size: 45px;
  color: #000;
  font-weight: 500;
}
.contacts .details .link {
  color: #000;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.contacts .details .link svg {
  height: 31px;
  width: 31px;
}
.contacts .details .link span {
  font-size: 27px;
}

@media only screen and (max-width: 1300px) {
  .contacts {
    padding: 3.5rem 10%;
  }
  .contacts form p {
    font-size: 16px;
  }
  .contacts form .btn a {
    font-size: 18px;
  }
  .contacts .details h3 {
    font-size: 30px;
  }
  .contacts .details .link svg {
    height: 23px;
    width: 23px;
  }
  .contacts .details .link span {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts {
    padding: 3.5rem 10%;
    grid-template-columns: 1fr;
  }
  .contacts::after {
    height: 200px;
    width: 100vw;
    bottom: 0;
    top: initial;
  }
  .contacts form {
    z-index: 2;
  }
  .contacts .details {
    position: relative;
    top: 0;
    transform: none;
    width: 80vw;
  }
}
@media only screen and (max-width: 700px) {
  .contacts::after {
    height: 150px;
  }
  .contacts form p {
    font-size: 13px;
  }
  .contacts form .input__row input {
    font-size: 13px;
  }
  .contacts form textarea {
    font-size: 13px;
  }
  .contacts form .btn a {
    font-size: 14px;
  }
  .contacts .details {
    padding: 30px;
  }
  .contacts .details h3 {
    font-size: 20px;
  }
  .contacts .details .link svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .link span {
    font-size: 15px;
  }
}
.hero {
  padding: 12rem 0 0 7.5vw;
  display: grid;
  grid-template-columns: 0.6fr 0.4fr;
  gap: 50px;
  background: #211F1D;
  background: linear-gradient(310deg, rgb(33, 31, 29) 0%, rgb(26, 24, 22) 100%);
  position: relative;
  overflow: hidden;
}
.hero .text h1 {
  font-size: 90px;
  font-family: "Marcellus", serif;
  line-height: 1em;
  color: #A98752;
}
.hero .text p {
  font-size: 22px;
  color: #fff;
  margin: 2rem 0 2rem;
  line-height: 1.75em;
}
.hero .text .buttons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 25px;
}
.hero .text .buttons .btn a {
  font-size: 22px;
}
.hero .image {
  display: flex;
  justify-content: center;
  align-items: end;
  width: 100%;
}
.hero .image img {
  height: 700px;
}

.appointment {
  padding: 5rem 7.5vw;
  background: #F5F0E6;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  gap: 35px;
}
.appointment .appointment__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 100px;
  margin-top: 2rem;
}
.appointment .appointment__content .item {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  gap: 10px;
  position: relative;
}
.appointment .appointment__content .item:nth-child(1)::after, .appointment .appointment__content .item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 51px;
  right: 0;
  width: 15vw;
  border-top: 3px dotted #000;
  transform: translateX(10vw);
}
.appointment .appointment__content .item .number {
  height: 101px;
  width: 101px;
  background: #1A1816;
  border-radius: 50%;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.appointment .appointment__content .item h3 {
  font-size: 35px;
  text-align: center;
  color: #1A1816;
}
.appointment .appointment__content .item p {
  font-size: 15px;
  text-align: center;
}
.appointment .btn a {
  font-size: 20px;
}

.services {
  padding: 5rem 10%;
  background: #1A1816;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.services .services__filter {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: row wrap;
  gap: 20px;
  padding: 0 10%;
}
.services .services__filter button {
  padding: 12px 25px;
  background: #F5F0E6;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #000;
}
.services .services__filter button.active {
  background: #A98752;
  color: #F5F0E6;
}
.services .services__filter button.active:hover {
  background: #A98752;
}
.services .services__filter button:hover {
  background: #e6dac2;
}
.services #products-description {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 50px;
  margin-bottom: 20px;
}
.services #products-description section {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 5px;
}
.services #products-description section.main-section p {
  font-size: 16px;
}
.services #products-description section.second-section {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 20px;
}
.services #products-description section.second-section p {
  font-size: 15px;
}
.services #products-description section * {
  color: #fff;
}
.services #products-description section h3 {
  font-size: 30px;
  line-height: 1.35em;
  margin-bottom: 5px;
}
.services #products-description section h4 {
  font-size: 25px;
  margin-bottom: 5px;
}
.services #products-description section ul {
  margin-left: 20px;
}
.services #products-description section ul li {
  font-size: 15px;
}
.services .services__content {
  position: relative;
  width: 100%;
  margin-top: 1rem;
}
.services .services__content .swiper-wrapper-container {
  position: relative;
  width: 100%;
}
.services .services__content .swiper-wrapper-container .swiper {
  width: 100%;
  height: 100%;
}
.services .services__content .swiper-wrapper-container .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
}
.services .services__content .swiper-wrapper-container .swiper-slide .slide__content {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  width: 100%;
}
.services .services__content .swiper-wrapper-container .swiper-slide .slide__content .image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #020100;
  border: 2px solid #a98752;
}
.services .services__content .swiper-wrapper-container .swiper-slide .slide__content .image img {
  width: 200px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services .services__content .swiper-wrapper-container .swiper-slide .slide__content h3 {
  font-size: 30px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 5px;
  text-align: start !important;
  line-height: 1.25em;
}
.services .services__content .swiper-wrapper-container .swiper-slide .slide__content h4 {
  font-size: 18px;
  color: #fff;
  text-align: start !important;
  font-weight: 500;
}
.services .services__content .swiper-wrapper-container .swiper-slide .slide__content .btn {
  margin-top: 15px;
}
.services .services__content .swiper-wrapper-container .swiper-slide .slide__content .btn a {
  font-size: 16px;
}
.services .services__content .swiper-wrapper-container .swiper-button-next {
  right: 0;
  transform: translate(5vw, -200%);
  color: #A98752;
}
.services .services__content .swiper-wrapper-container .swiper-button-prev {
  left: 0;
  transform: translate(-5vw, -200%);
  color: #A98752;
}
.services .services__content .swiper-wrapper-container .swiper-pagination {
  bottom: 0;
  transform: translateY(200%);
}
.services .services__content .swiper-wrapper-container .swiper-pagination span {
  background: #A98752;
}

.about {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  position: relative;
  background: #F5F0E6;
}
.about .image {
  height: 100%;
  width: 100%;
}
.about .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .text {
  position: absolute;
  top: 50%;
  right: 7.5vw;
  transform: translateY(-50%);
  width: 60vw;
  background: #F5F0E6;
  padding: 50px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 10px;
}
.about .text .h2 {
  text-align: start;
}
.about .text section h3 {
  font-size: 25px;
}
.about .text section p, .about .text section ul li {
  font-size: 18px;
}
.about .text section ul {
  padding-left: 15px;
}
.about .text .btn {
  margin-top: 1rem;
}
.about .text .btn a {
  font-size: 18px;
}

.google__reviews {
  padding: 5rem 5%;
}

.pricing {
  padding: 5rem 15vw;
  background: #1A1816;
}
.pricing .pricing__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 1.5rem;
}
.pricing .pricing__content .item {
  padding: 25px;
  background: #121212;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 10px;
}
.pricing .pricing__content .item .item__heading {
  display: grid;
  grid-template-columns: 51px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.pricing .pricing__content .item .item__heading img {
  height: 51px;
  width: 51px;
}
.pricing .pricing__content .item .item__heading h3 {
  font-size: 28px;
  color: #F5F0E6;
  font-weight: 600;
  line-height: 1.1em;
}
.pricing .pricing__content .item ul {
  padding-left: 15px;
}
.pricing .pricing__content .item ul li {
  font-size: 16px;
  color: #F5F0E6;
}
.pricing .pricing__content .item p {
  color: #F5F0E6;
  font-size: 16px;
}
.pricing .pricing__content .item p strong {
  font-size: 25px;
  color: #F5F0E6;
  font-weight: 600;
}
.pricing .pricing__table {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  width: 100%;
  margin-top: 2rem;
}
.pricing .pricing__table .table__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #A98752;
  width: 100%;
  padding: 25px 2.5%;
}
.pricing .pricing__table .table__header h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 400;
}
.pricing .pricing__table .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  width: 100%;
  padding: 25px 2.5%;
  background: #F5F0E6;
}
.pricing .pricing__table .row:nth-child(even) {
  background: #f1e9db;
}
.pricing .pricing__table .row .item h4 {
  font-size: 22px;
  font-weight: 600;
}
.pricing .pricing__table .row .item span {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}
.pricing .pricing__table .row .item b {
  font-size: 25px;
}

.reviews {
  padding: 5rem 7.5vw;
  background: #F5F0E6;
}
.reviews .reviews__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 2rem;
}
.reviews .reviews__content .item {
  padding: 30px 50px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  gap: 20px;
  background: #1A1816;
}
.reviews .reviews__content .item img {
  height: 151px;
  width: 151px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews .reviews__content .item .stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.reviews .reviews__content .item .stars svg {
  height: 31px;
  width: 31px;
  fill: #ffea00;
  stroke: none;
}
.reviews .reviews__content .item p {
  font-size: 15px;
  text-align: center;
  line-height: 1.75em;
  color: rgba(255, 255, 255, 0.6);
}
.reviews .reviews__content .item h3 {
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
}

@media only screen and (max-width: 1550px) {
  .hero {
    padding: 10rem 0 0 7.5vw;
  }
  .hero .text h1 {
    font-size: 75px;
  }
  .hero .text p {
    font-size: 20px;
  }
  .hero .text .buttons .btn a {
    font-size: 20px;
  }
  .services .services__content .swiper-wrapper-container .swiper-slide .slide__content img {
    height: 250px;
  }
  .services .services__content .swiper-wrapper-container .swiper-slide .slide__content h3 {
    font-size: 26px;
  }
  .services .services__content .swiper-wrapper-container .swiper-slide .slide__content h4 {
    font-size: 16px;
  }
  .services .services__content .swiper-wrapper-container .swiper-slide .slide__content .btn a {
    font-size: 15px;
  }
  .about .text {
    width: 65vw;
    padding: 35px;
    gap: 5px;
  }
  .about .text .h2 {
    font-size: 45px;
  }
  .about .text section h3 {
    font-size: 20px;
  }
  .about .text section p, .about .text section ul li {
    font-size: 16px;
  }
  .about .text .btn a {
    font-size: 16px;
  }
  .pricing {
    padding: 5rem 10vw;
  }
  .pricing .pricing__table .table__header h3 {
    font-size: 20px;
  }
  .pricing .pricing__table .row .item h4 {
    font-size: 20px;
  }
  .pricing .pricing__table .row .item span {
    font-size: 15px;
  }
  .pricing .pricing__table .row .item b {
    font-size: 22px;
  }
  .reviews .reviews__content {
    gap: 35px;
  }
  .reviews .reviews__content .item {
    padding: 25px 35px;
    gap: 10px;
  }
  .reviews .reviews__content .item img {
    height: 125px;
    width: 125px;
  }
  .reviews .reviews__content .item .stars svg {
    height: 25px;
    width: 25px;
  }
  .reviews .reviews__content .item p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1350px) {
  .hero .text {
    padding-bottom: 5rem;
  }
  .hero .text h1 {
    font-size: 50px;
  }
  .hero .text p {
    font-size: 16px;
  }
  .hero .text .buttons .btn a {
    font-size: 17px;
  }
  .hero .image img {
    height: 450px;
  }
  .appointment {
    padding: 3.5rem 7.5vw;
  }
  .appointment .appointment__content {
    gap: 50px;
    margin-top: 1rem;
  }
  .appointment .appointment__content .item:nth-child(1)::after, .appointment .appointment__content .item:nth-child(2)::after {
    top: 37px;
  }
  .appointment .appointment__content .item .number {
    height: 75px;
    width: 75px;
    font-size: 30px;
    font-weight: 600;
  }
  .appointment .appointment__content .item h3 {
    font-size: 27px;
  }
  .appointment .appointment__content .item p {
    font-size: 14px;
  }
  .appointment .btn a {
    font-size: 17px;
  }
  .services {
    padding: 3.5rem 7.5vw;
  }
  .services .services__filter {
    padding: 0;
    gap: 10px;
  }
  .services .services__filter button {
    font-size: 14px;
    padding: 10px 20px;
  }
  .services #products-description {
    gap: 30px;
  }
  .services #products-description section.main-section p {
    font-size: 14px;
  }
  .services #products-description section.second-section p {
    font-size: 14px;
  }
  .services #products-description section h3 {
    font-size: 25px;
  }
  .services #products-description section h4 {
    font-size: 22px;
  }
  .services #products-description section ul li {
    font-size: 14px;
  }
  .services .services__content .swiper-wrapper-container .swiper-slide .slide__content img {
    height: 200px;
  }
  .services .services__content .swiper-wrapper-container .swiper-slide .slide__content h3 {
    font-size: 22px;
  }
  .services .services__content .swiper-wrapper-container .swiper-slide .slide__content h4 {
    font-size: 14px;
  }
  .services .services__content .swiper-wrapper-container .swiper-slide .slide__content .btn a {
    font-size: 13px;
  }
  .services .services__content .swiper-wrapper-container .swiper-button-next {
    right: 0;
    transform: translate(6vw, -100%);
    color: #A98752;
  }
  .services .services__content .swiper-wrapper-container .swiper-button-next::after {
    font-size: 35px;
  }
  .services .services__content .swiper-wrapper-container .swiper-button-prev {
    left: 0;
    transform: translate(-6vw, -100%);
    color: #A98752;
  }
  .services .services__content .swiper-wrapper-container .swiper-button-prev::after {
    font-size: 35px;
  }
  .about .text {
    position: relative;
    top: 0;
    right: inherit;
    transform: none;
    padding: 3.5rem 7.5vw 3.5rem 40px;
    width: 60vw;
  }
  .about .text section p, .about .text section ul li {
    font-size: 14px;
  }
  .about .text .btn a {
    font-size: 14px;
  }
  .pricing .pricing__content .item .item__heading {
    grid-template-columns: 41px 1fr;
  }
  .pricing .pricing__content .item .item__heading img {
    height: 41px;
    width: 41px;
  }
  .pricing .pricing__content .item .item__heading h3 {
    font-size: 24px;
  }
  .pricing .pricing__content .item p {
    font-size: 15px;
  }
  .pricing .pricing__table {
    margin-top: 1rem;
  }
  .pricing .pricing__table .table__header h3 {
    font-size: 18px;
  }
  .pricing .pricing__table .row {
    gap: 0;
  }
  .pricing .pricing__table .row .item:nth-child(1) {
    width: 70%;
  }
  .pricing .pricing__table .row .item h4 {
    font-size: 18px;
  }
  .pricing .pricing__table .row .item span {
    font-size: 14px;
  }
  .pricing .pricing__table .row .item b {
    font-size: 18px;
  }
  .reviews .reviews__content {
    gap: 5px;
    margin-top: 1rem;
  }
  .reviews .reviews__content .item {
    padding: 20px 30px;
  }
  .reviews .reviews__content .item img {
    height: 101px;
    width: 101px;
  }
  .reviews .reviews__content .item .stars {
    gap: 3px;
  }
  .reviews .reviews__content .item .stars svg {
    height: 21px;
    width: 21px;
  }
  .reviews .reviews__content .item p {
    font-size: 12px;
  }
  .reviews .reviews__content .item h3 {
    font-size: 18px;
  }
  .contacts {
    padding: 3.5rem 10%;
  }
  .contacts form p {
    font-size: 16px;
  }
  .contacts form .btn a {
    font-size: 18px;
  }
  .contacts .details h3 {
    font-size: 30px;
  }
  .contacts .details .link svg {
    height: 23px;
    width: 23px;
  }
  .contacts .details .link span {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) {
  .hero {
    gap: 25px;
    padding: 7.5rem 0 0 7.5vw;
  }
  .hero .text h1 {
    font-size: 37px;
    line-height: 1.25em;
  }
  .hero .text p {
    font-size: 14px;
    margin: 1rem 0 2rem;
  }
  .hero .text .buttons .btn a {
    font-size: 15px;
  }
  .hero .image img {
    height: 350px;
  }
  .appointment .appointment__content .item {
    gap: 5px;
  }
  .appointment .appointment__content .item:nth-child(1)::after, .appointment .appointment__content .item:nth-child(2)::after {
    top: 30px;
    transform: translateX(11vw);
  }
  .appointment .appointment__content .item .number {
    height: 61px;
    width: 61px;
    font-size: 25px;
  }
  .appointment .appointment__content .item h3 {
    font-size: 20px;
  }
  .appointment .appointment__content .item p {
    font-size: 13px;
  }
  .appointment .btn a {
    font-size: 15px;
  }
  .services .services__filter button {
    font-size: 13px;
  }
  .services #products-description {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .services #products-description section.main-section p {
    font-size: 13px;
  }
  .services #products-description section.second-section {
    gap: 20px;
  }
  .services #products-description section.second-section p {
    font-size: 13px;
  }
  .services #products-description section h3 {
    font-size: 18px;
  }
  .services #products-description section h4 {
    font-size: 18px;
  }
  .services #products-description section ul li {
    font-size: 13px;
  }
  .about .text .h2 {
    font-size: 35px;
  }
  .pricing {
    padding: 2.5rem 7.5vw;
  }
  .pricing .pricing__content .item .item__heading {
    grid-template-columns: 35px 1fr;
  }
  .pricing .pricing__content .item .item__heading img {
    height: 35px;
    width: 35px;
  }
  .pricing .pricing__content .item .item__heading h3 {
    font-size: 22px;
  }
  .pricing .pricing__content .item p {
    font-size: 14px;
  }
  .pricing .pricing__table .table__header {
    padding: 20px 2.5%;
  }
  .pricing .pricing__table .table__header h3 {
    font-size: 16px;
  }
  .pricing .pricing__table .row {
    padding: 20px 2.5%;
  }
  .pricing .pricing__table .row .item:nth-child(1) {
    width: 65%;
  }
  .pricing .pricing__table .row .item h4 {
    font-size: 16px;
  }
  .pricing .pricing__table .row .item span {
    font-size: 12px;
  }
  .pricing .pricing__table .row .item b {
    font-size: 16px;
  }
  .reviews {
    padding: 2.5rem 7.5vw;
  }
  .reviews .reviews__content {
    grid-template-columns: 1fr;
  }
  .contacts {
    padding: 3.5rem 10%;
    grid-template-columns: 1fr;
  }
  .contacts::after {
    height: 200px;
    width: 100vw;
    bottom: 0;
    top: initial;
  }
  .contacts form {
    z-index: 2;
  }
  .contacts .details {
    position: relative;
    top: 0;
    transform: none;
    width: 80vw;
  }
}
@media only screen and (max-width: 700px) {
  .hero {
    padding: 7.5rem 0 0;
    grid-template-columns: 1fr;
  }
  .hero .text {
    padding: 0 7.5vw;
  }
  .hero .text h1 {
    font-size: 32px;
  }
  .hero .text p {
    font-size: 13px;
  }
  .hero .text .buttons .btn a {
    font-size: 14px;
  }
  .appointment .appointment__content {
    grid-template-columns: 1fr;
  }
  .appointment .appointment__content .item:nth-child(1)::after, .appointment .appointment__content .item:nth-child(2)::after {
    display: none;
  }
  .appointment .btn a {
    font-size: 14px;
  }
  .services {
    padding: 3.5rem 10%;
  }
  .services .services__filter button {
    padding: 7px 15px;
    font-size: 11px;
  }
  .services .services__content .swiper-wrapper-container .swiper-button-next {
    right: 0;
    transform: translate(8.5vw, -150%);
    color: #A98752;
  }
  .services .services__content .swiper-wrapper-container .swiper-button-next::after {
    font-size: 25px;
  }
  .services .services__content .swiper-wrapper-container .swiper-button-prev {
    left: 0;
    transform: translate(-8.5vw, -150%);
    color: #A98752;
  }
  .services .services__content .swiper-wrapper-container .swiper-button-prev::after {
    font-size: 25px;
  }
  .services .services__content .swiper-wrapper-container .swiper-pagination {
    transform: translateY(150%);
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about .image {
    order: 2;
  }
  .about .text {
    width: 100%;
    padding: 2.5rem 7.5vw;
  }
  .about .text .h2 {
    font-size: 28px;
  }
  .about .text section h3 {
    font-size: 16px;
  }
  .about .text section p, .about .text section ul li {
    font-size: 13px;
  }
  .pricing .pricing__content {
    grid-template-columns: 1fr;
  }
  .pricing .pricing__table .table__header {
    padding: 10px 0;
  }
  .pricing .pricing__table .table__header h3 {
    display: none;
  }
  .pricing .pricing__table .row {
    padding: 25px;
    align-items: start;
    flex-flow: column;
    gap: 20px;
  }
  .pricing .pricing__table .row .item:nth-child(1) {
    width: 100%;
  }
  .reviews .reviews__content .item img {
    height: 75px;
    width: 75px;
  }
  .contacts::after {
    height: 150px;
  }
  .contacts form p {
    font-size: 13px;
  }
  .contacts form .input__row input {
    font-size: 13px;
  }
  .contacts form textarea {
    font-size: 13px;
  }
  .contacts form .btn a {
    font-size: 14px;
  }
  .contacts .details {
    padding: 30px;
  }
  .contacts .details h3 {
    font-size: 20px;
  }
  .contacts .details .link svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .link span {
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */