@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:hover,
a {
  text-decoration: none;
}

:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

html {
  height: 100%;
}

body {
  font-family: "Raleway", sans-serif;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  color: #393630;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 35px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
}

.burger {
  display: none;
  position: absolute;
  top: 22px;
  left: -39px;
  width: 21px;
  height: 21px;
  cursor: pointer;
  z-index: 111;
  background: #fff;
  border-radius: 4px 0 0 4px;
  width: 40px;
  height: 40px;
}
.burger.open:before {
  background: #e1a629;
  transform: rotate(-45deg);
  top: 18px;
  height: 2px;
}
.burger.open:after {
  background: #e1a629;
  top: 18px;
  transform: rotate(45deg);
  height: 2px;
}
.burger.open span:before {
  display: none;
}
.burger:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 13px;
  width: 15px;
  height: 2px;
  background: #e1a629;
  transition: 0.5s;
}
.burger:after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 13px;
  width: 15px;
  height: 2px;
  background: #e1a629;
  transition: 0.5s;
}
.burger span {
  position: relative;
  display: block;
  width: 21px;
  height: 21px;
}
.burger span:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 13px;
  width: 15px;
  height: 2px;
  background: #e1a629;
}
@media (max-width: 1180px) {
  .burger {
    display: block;
  }
}

.logo {
  font-size: 13px;
  color: #e9dfca;
  text-align: center;
}
.logo span {
  font-family: "Playfair Display", serif;
  display: block;
  font-size: 22px;
  color: #fff;
}

.language-selection {
  width: 28px;
  margin-left: 50px;
  position: relative;
}
.language-selection:hover .language-selection__dropdown {
  display: block;
}
.language-selection__current img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e9dfca;
}
.language-selection__current:before {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  top: 30px;
  left: 0;
}
.language-selection__dropdown {
  display: none;
  position: absolute;
  top: 30px;
}
.language-selection__dropdown img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e9dfca;
}

.header-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 28px;
  border: 1px solid #e9dfca;
  font-weight: 500;
  font-size: 16px;
  color: #e9dfca;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.5s;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .header-btn a {
    height: 40px;
    padding: 0 20px;
  }
}
.header-btn a:hover {
  border-color: #e1a629;
  background: #e1a629;
  color: #fff;
}

header {
  padding-top: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media (max-width: 1180px) {
  header {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  header .social, header .header-btn {
    display: none;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1180px) {
  .header-content {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .header-content {
    padding-right: 40px;
  }
}
.header-content__right {
  display: flex;
  align-items: center;
}

.main-menu {
  transition: 1s;
}
@media (max-width: 1180px) {
  .main-menu {
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(300px);
    width: 300px;
    height: 100vh;
    background: #fff;
    padding: 50px 20px 20px 20px;
    z-index: 99;
  }
}
.main-menu.open {
  transform: translateX(0px);
}
.main-menu ul {
  display: flex;
}
@media (max-width: 1180px) {
  .main-menu ul {
    flex-direction: column;
  }
}
.main-menu ul li {
  margin: 0 15px;
}
@media (max-width: 1180px) {
  .main-menu ul li {
    margin: 0 0 30px 0;
  }
}
.main-menu ul li a {
  font-size: 18px;
  color: #e9dfca;
  transition: 0.5s;
}
@media (max-width: 1180px) {
  .main-menu ul li a {
    font-size: 24px;
    color: #6d5b47;
  }
}
.main-menu ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 1180px) {
  .main-menu ul li a:hover {
    text-decoration: none;
    color: #e1a629;
  }
}

.main-section {
  overflow: hidden;
  position: relative;
}
.main-section__desktop-bg {
  width: 100%;
  height: 100vh;
}
.main-section__desktop-bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-section.show .content-bg-desktop2-girl {
/*   transform: translateY(0px); */
}

.content-bg-desktop2-girl {
/*   transform: translateY(-50px); */
/*   transition: 1s; */
  position: absolute;
  z-index: 20;
  position: absolute;
  bottom: 30px;
  left: calc(50% - 124px);
}
@media (max-width: 768px) {
  .content-bg-desktop2-girl {
    display: none;
  }
}
.content-bg-desktop2-girl img {
  width: 248px;
  display: block;
}

.content-bg-mobile2 {
  display: none;
  width: 100%;
  position: relative;
  z-index: 16;
}
@media (max-width: 768px) {
  .content-bg-mobile2 {
    display: block;
  }
}
.content-bg-mobile2 img {
  display: block;
  width: 100%;
}

.social {
  display: flex;
}
.social a {
  display: flex;
  margin-left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
}
.social a:first-child {
  margin-left: 10px;
}
.social a:before {
  content: "";
  width: 40px;
  height: 60px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  position: absolute;
  top: -40px;
  left: -30px;
  transition: 1s;
}
.social a.social-whatsapp {
  background: rgb(103, 227, 0);
}
.social a.social-telegram {
  background: rgb(39, 170, 225);
}
.social a img {
  display: block;
  transition: 0.5s;
  position: relative;
  z-index: 9;
  transform: scale(0.6);
}
.social a:hover img {
  transform: scale(0.8);
}
.social a:hover:before {
  top: 40px;
  left: 30px;
}

.wrapper {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.about-section {
  padding: 140px 0;
  background: #e9dfca;
  position: relative;
  z-index: 12;
}
@media (max-width: 992px) {
  .about-section {
    padding: 70px 0;
  }
}
.about-section__branch-right {
  position: absolute;
  right: -800px;
  top: -660px;
  transition: 4s;
}
.about-section__branch-right img {
  display: block;
}
@media (max-width: 1180px) {
  .about-section__branch-right img {
    width: 316px;
  }
}
.about-section__branch-left {
  position: absolute;
  bottom: 500px;
  left: -800px;
  transition: 5s;
}
@media (max-width: 1180px) {
  .about-section__branch-left {
    bottom: -400px;
  }
}
.about-section__branch-left img {
  display: block;
}
@media (max-width: 1180px) {
  .about-section__branch-left img {
    width: 316px;
  }
}
.about-section.show .about-section__branch-right {
  position: absolute;
  right: 0;
  top: -260px;
}
@media (max-width: 1180px) {
  .about-section.show .about-section__branch-right {
    top: -130px;
  }
}
.about-section.show .about-section__branch-left {
  position: absolute;
  bottom: -500px;
  left: 0;
}
@media (max-width: 1180px) {
  .about-section.show .about-section__branch-left {
    bottom: -200px;
  }
}

.about {
  position: relative;
  z-index: 12;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 566px) {
  .about {
    flex-direction: column;
  }
}
.about--align-center {
  align-items: center;
}
@media (max-width: 566px) {
  .about--align-center .about__col:last-child {
    order: -2;
  }
}
.about:last-child {
  margin-top: -40px;
}
@media (max-width: 1180px) {
  .about:last-child {
    margin-top: -20px;
  }
}
@media (max-width: 566px) {
  .about:last-child {
    margin-top: 0;
  }
}
.about h2 {
  position: relative;
  text-align: right;
  font-size: 40px;
  color: #393630;
  font-weight: 500;
  line-height: 140%;
  font-family: "Playfair Display", system-ui;
}
@media (max-width: 1180px) {
  .about h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .about h2 {
    font-size: 22px;
  }
}
@media (max-width: 566px) {
  .about h2 {
    text-align: center;
    padding-right: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
    font-size: 24px;
  }
}
.about h2:before {
  content: "";
  width: 1px;
  height: calc(100% - 25px);
  background: #393630;
  position: absolute;
  top: 20px;
  right: -60px;
}
@media (max-width: 1180px) {
  .about h2:before {
    right: -40px;
  }
}
@media (max-width: 566px) {
  .about h2:before {
    width: 200px;
    height: 1px;
    left: calc(50% - 100px);
    bottom: 0px;
    top: auto;
    right: auto;
  }
}
.about h2 span {
  display: block;
  font-size: 50px;
  color: #e1a629;
}
@media (max-width: 1180px) {
  .about h2 span {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .about h2 span {
    font-size: 22px;
  }
}
@media (max-width: 566px) {
  .about h2 span {
    font-size: 26px;
  }
}
.about p {
  font-size: 18px;
  color: #393630;
  margin-bottom: 30px;
  line-height: 130%;
  text-align: right;
  font-weight: 500;
}
@media (max-width: 566px) {
  .about p {
    text-align: left;
  }
}
@media (max-width: 566px) {
  .about__list {
    display: flex;
    justify-content: flex-end;
  }
}
.about ul {
  padding-top: 155px;
}
@media (max-width: 1180px) {
  .about ul {
    padding-top: 100px;
  }
}
@media (max-width: 768px) {
  .about ul {
    padding-top: 60px;
  }
}
@media (max-width: 566px) {
  .about ul {
    padding-top: 40px;
  }
}
.about ul li {
  padding-left: 135px;
  font-size: 27px;
  margin-bottom: 40px;
  color: #393630;
  font-weight: 500;
  position: relative;
}
@media (max-width: 1180px) {
  .about ul li {
    padding-left: 95px;
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .about ul li {
    font-size: 16px;
  }
}
.about ul li:last-child {
  margin-bottom: 0;
}
.about ul li span {
  display: block;
  color: #e1a629;
  font-family: "Playfair Display", system-ui;
  font-size: 35px;
}
@media (max-width: 1180px) {
  .about ul li span {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .about ul li span {
    font-size: 22px;
  }
}
.about ul li:before {
  content: "";
  position: absolute;
  left: 105px;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e1a629;
}
@media (max-width: 1180px) {
  .about ul li:before {
    left: 66px;
  }
}
.about__col {
  width: calc(100% - 472px);
  padding-right: 60px;
}
@media (max-width: 1180px) {
  .about__col {
    width: calc(100% - 310px);
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .about__col {
    width: calc(100% - 270px);
    padding-right: 40px;
  }
}
@media (max-width: 566px) {
  .about__col {
    width: 100%;
    padding-right: 0;
  }
}
.about__col:last-child {
  width: 472px;
  padding-right: 0;
}
@media (max-width: 1180px) {
  .about__col:last-child {
    width: 410px;
  }
}
@media (max-width: 768px) {
  .about__col:last-child {
    width: 270px;
  }
}
@media (max-width: 566px) {
  .about__col:last-child {
    width: 100%;
  }
}
.about__img {
  display: block;
  padding-left: 60px;
}
@media (max-width: 1180px) {
  .about__img {
    padding-left: 40px;
  }
}
@media (max-width: 566px) {
  .about__img {
    padding-left: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
}
.about__img img {
  display: block;
  width: 100%;
}
@media (max-width: 566px) {
  .about__img img {
    max-width: 260px;
  }
}

.my-approach-section {
  padding: 140px 0;
  background: #8c8140;
  position: relative;
  z-index: 11;
}
@media (max-width: 992px) {
  .my-approach-section {
    padding: 70px 0 70px 0;
  }
}

.h2 {
  font-family: "Playfair Display", system-ui;
  color: #393630;
  font-size: 62px;
  margin-bottom: 100px;
  position: relative;
  z-index: 14;
}
@media (max-width: 768px) {
  .h2 {
    font-size: 34px;
    margin-bottom: 50px;
  }
}
.h2--center {
  text-align: center;
}
.h2--light {
  color: #e9dfca;
}

.approach-item {
  position: relative;
  z-index: 12;
  display: flex;
  align-items: center;
  max-width: 660px;
  margin: 0 auto 80px;
  font-size: 27px;
  color: #e9dfca;
  line-height: 35px;
}
@media (max-width: 768px) {
  .approach-item {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 40px;
  }
}
.approach-item:last-child {
  margin-bottom: 0;
  text-align: right;
}
.approach-item:last-child .approach-item__number:before {
  transform: rotate(-180deg);
  right: -414px;
  top: -520px;
  transition: 3s;
}
@media (max-width: 992px) {
  .approach-item:last-child .approach-item__number:before {
    right: -25px;
    top: -20px;
  }
}
@media (max-width: 768px) {
  .approach-item:last-child .approach-item__number:before {
    right: -10px;
    top: -10px;
  }
}
.approach-item span {
  font-style: italic;
  color: #e1a629;
}
.approach-item__number {
  width: 175px;
  min-width: 175px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .approach-item__number {
    width: 80px;
    min-width: 80px;
  }
}
.approach-item__number:before {
  content: "";
  width: 101px;
  height: 201px;
  background: url(../images/circle-half.png) 0 0 no-repeat;
  position: absolute;
  right: -800px;
  top: -280px;
  transition: 5s;
}
@media (max-width: 992px) {
  .approach-item__number:before {
    right: 60px;
    top: -20px;
  }
}
@media (max-width: 768px) {
  .approach-item__number:before {
    background-size: auto 81px;
    width: 41px;
    height: 81px;
    right: 40px;
    top: -10px;
  }
}
.approach-item__number img {
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .approach-item__number img {
    height: 66px;
  }
}

.my-approach-section.show .approach-item__number:before {
  right: 100px;
  top: -20px;
}
@media (max-width: 768px) {
  .my-approach-section.show .approach-item__number:before {
    right: 40px;
    top: -10px;
  }
}
.my-approach-section.show .approach-item:last-child .approach-item__number:before {
  right: -25px;
  top: -20px;
}
@media (max-width: 768px) {
  .my-approach-section.show .approach-item:last-child .approach-item__number:before {
    right: -10px;
    top: -10px;
  }
}

.tests-section {
  padding: 140px 0 70px 0;
  background: #e9dfca;
  position: relative;
  z-index: 11;
  overflow: hidden;
}
@media (max-width: 992px) {
  .tests-section {
    padding: 70px 0;
  }
}
.tests-section__branch-left {
  position: absolute;
  bottom: 500px;
  left: -800px;
  transition: 5s;
}
@media (max-width: 1180px) {
  .tests-section__branch-left {
    bottom: -400px;
  }
}
.tests-section__branch-left img {
  display: block;
}
@media (max-width: 1180px) {
  .tests-section__branch-left img {
    width: 316px;
  }
}
.tests-section.show .tests-section__branch-left {
  top: -80px;
  left: 0;
}
.tests-section.show .tests .test-item {
  margin: 0 7px 30px 7px;
}

.tests {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 70px;
  position: relative;
  z-index: 15;
  transition: 2s;
}

.test-item {
  margin: 0 30px 30px 30px;
  width: 250px;
  transition: 3s;
  cursor: pointer;
}
@media (max-width: 1180px) {
  .test-item {
    margin: 0 7px 30px 7px;
  }
}
.test-item:hover .test-item__title {
  color: #e1a629;
}
.test-item__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  background: url(../images/number-circle.png) 50% 50% no-repeat;
  margin-bottom: 40px;
}
.test-item__title {
  display: block;
  font-size: 20px;
  line-height: 25px;
  color: #393630;
  text-align: center;
  font-family: "Playfair Display", system-ui;
  font-weight: 500;
  transition: 0.5s;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% + 180px);
  margin: 0 -90px;
}
@media (max-width: 1180px) {
  .services {
    margin: 0;
    width: 100%;
  }
}
.services.show .service-item {
  margin: 0 55px 60px 55px;
}
@media (max-width: 1180px) {
  .services.show .service-item {
    margin: 0 25px 40px 25px;
  }
}
@media (max-width: 768px) {
  .services.show .service-item {
    margin: 0 15px 30px 15px;
  }
}
.services__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.service-item {
  width: 275px;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  background: #d7ceba;
  margin: 0 25px 60px 25px;
  transition: 2s;
}
@media (max-width: 1180px) {
  .service-item {
    margin: 0 25px 40px 25px;
  }
}
@media (max-width: 768px) {
  .service-item {
    margin: 0 15px 30px 15px;
  }
}
.service-item__title {
  display: block;
  font-size: 27px;
  color: #393630;
  margin-bottom: 10px;
  font-family: "Playfair Display", system-ui;
}
.service-item__title span {
  display: block;
  color: #e1a629;
  font-size: 62px;
  line-height: 40px;
  padding-bottom: 10px;
}
.service-item__time {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
  color: #e9dfca;
  font-weight: bold;
}
.service-item__cost {
  border-radius: 30px;
  background: #e0d7c2;
}
.service-item__cost span {
  display: block;
  font-size: 62px;
  font-weight: bold;
  color: #e1a629;
  padding: 15px 0;
}
.service-item__cost a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 57px;
  border-radius: 30px;
  background: #e9dfca;
  color: #e1a629;
  font-size: 18px;
  transition: 0.5s;
}
.service-item__cost a:hover {
  color: #fff;
  background: #e1a629;
}

footer {
  padding: 140px 0;
  background: #8c8140;
}
@media (max-width: 992px) {
  footer {
    padding: 70px 0;
  }
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
}
.footer-content__main {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-content__main {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 40px;
  }
}
.footer-content__img {
  margin-right: 40px;
  display: block;
}
@media (max-width: 768px) {
  .footer-content__img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.footer-content__img img {
  display: block;
  width: 150px;
}
.footer-content__name {
  color: #e9dfca;
  font-weight: 500;
  font-size: 21px;
}
@media (max-width: 768px) {
  .footer-content__name {
    text-align: center;
  }
}
.footer-content__name span {
  display: block;
  font-size: 35px;
  margin-bottom: 10px;
  font-family: "Playfair Display", system-ui;
}
@media (max-width: 992px) {
  .footer-content__menu {
    display: none;
  }
}
.footer-content__menu ul li {
  margin-bottom: 15px;
}
.footer-content__menu ul li a {
  font-size: 18px;
  color: #e9dfca;
  font-weight: 500;
  transition: 0.5s;
}
.footer-content__menu ul li a:hover {
  color: #e1a629;
}
.footer-content__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .footer-content__contacts {
    align-items: center;
  }
}
.footer-content .social {
  margin-bottom: 20px;
}

.footer-contact {
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer-contact {
    margin-bottom: 30px;
  }
}
.footer-contact a {
  font-size: 18px;
  color: #e9dfca;
  font-weight: 500;
  transition: 0.5s;
}
.footer-contact a:hover {
  color: #e1a629;
}

.footer-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 28px;
  border: 1px solid #e9dfca;
  font-weight: 500;
  font-size: 16px;
  color: #e9dfca;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .footer-btn a {
    height: 40px;
    padding: 0 20px;
  }
}
.footer-btn a:hover {
  border-color: #e1a629;
  background: #e1a629;
  color: #fff;
}

.consultations-section {
  position: relative;
  background: #e9dfca;
  z-index: 15;
  padding: 140px 0;
}
.consultations-section__branch-right {
  position: absolute;
  right: -800px;
  top: -660px;
  transition: 4s;
  display: none;
}
@media (max-width: 992px) {
  .consultations-section__branch-right {
    display: block;
  }
}
.consultations-section__branch-right img {
  display: block;
}
@media (max-width: 1180px) {
  .consultations-section__branch-right img {
    width: 316px;
  }
}
.consultations-section__branch-bottom {
  position: absolute;
  bottom: -1200px;
  left: -1000px;
  transition: 7s;
}
@media (max-width: 992px) {
  .consultations-section__branch-bottom {
    display: block;
  }
}
.consultations-section__branch-bottom img {
  display: block;
}
@media (max-width: 1180px) {
  .consultations-section__branch-bottom img {
    width: 316px;
  }
}
.consultations-section.show .consultations-section__branch-right {
  position: absolute;
  right: 0;
  top: 60px;
}
@media (max-width: 1180px) {
  .consultations-section.show .consultations-section__branch-right {
    top: 130px;
  }
}
.consultations-section.show .consultations-section__branch-bottom {
  position: absolute;
  bottom: -280px;
  left: 33%;
}
@media (max-width: 1180px) {
  .consultations-section.show .consultations-section__branch-bottom {
    bottom: -80px;
    left: 0;
  }
}
@media (min-width: 1181px) {
  .consultations-section.show .include {
    transform: rotate(0deg);
  }
}
@media (max-width: 992px) {
  .consultations-section {
    padding: 70px 0;
  }
}
.consultations-section:before {
  content: "";
  background: url(../images/kontur.png) 50% 0 repeat-x;
  width: 100%;
  height: 82px;
  position: absolute;
  top: -80px;
  left: 0;
}

.include {
  position: relative;
  width: 1068px;
  height: 676px;
  margin: 0 auto;
  background: url(../images/branch-3.png) 50% 50% no-repeat;
  transition: 3s;
}
@media (min-width: 1181px) {
  .include {
    transform: rotate(-15deg);
  }
}
@media (max-width: 1180px) {
  .include {
    transform: rotate(-60deg);
    margin-top: 300px;
    margin-bottom: 200px;
  }
}
@media (max-width: 992px) {
  .include {
    margin-top: 0;
    margin-bottom: 100px;
    transform: rotate(0);
    height: auto;
    background: transparent;
  }
}

.include-item {
  position: relative;
  font-size: 35px;
  font-family: "Playfair Display", system-ui;
  color: #393630;
  text-align: center;
  position: absolute;
  font-weight: 500;
  padding-top: 130px;
  display: block;
}
@media (max-width: 1180px) {
  .include-item {
    transform: rotate(60deg);
  }
}
@media (max-width: 992px) {
  .include-item {
    transform: none !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    position: relative;
    padding: 0 0 0 90px;
    display: flex;
    align-items: center;
    min-height: 60px;
    margin-bottom: 30px;
    text-align: left;
    font-size: 27px;
    font-weight: 600;
  }
}
.include-item:before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: calc(50% - 50px);
  background: #e1a629;
  opacity: 0.6;
  animation: pulse 1.5s infinite; /* Добавлен анимационный эффект */
}

@keyframes pulse { /* Определение анимации */
  0% {
    transform: scale(1); /* Начальное состояние */
  }
  50% {
    transform: scale(1.1); /* Расширение */
  }
  100% {
    transform: scale(1); /* Возвращение к начальному состоянию */
  }
}
@media (max-width: 992px) {
  .include-item:before {
    width: 60px;
    height: 60px;
    left: 0;
  }
}
.include-item--1 {
  left: -40px;
  top: calc(50% + 90px);
  transform: translateY(-100%);
}
@media (max-width: 1180px) {
  .include-item--1 {
    transform: translateY(-100%) rotate(60deg);
  }
}
.include-item--2 {
  left: calc(50% + 20px);
  transform: translateX(-50%);
  top: calc(50% - 90px);
}
@media (max-width: 1180px) {
  .include-item--2 {
    transform: translateX(-50%) rotate(60deg);
  }
}
.include-item--3 {
  right: 0;
  top: 50px;
}

.consultations-text {
  margin: 0 auto 130px;
  max-width: 760px;
}
@media (max-width: 992px) {
  .consultations-text {
    margin-bottom: 60px;
  }
}
.consultations-text__circle {
  position: relative;
  display: inline-block;
}
.consultations-text__circle:before {
  content: "";
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e1a629;
  position: absolute;
  left: -10px;
  top: -4px;
}
.consultations-text__circle span {
  position: relative;
  z-index: 9;
}
.consultations-text p {
  font-size: 27px;
  color: #393630;
  text-align: center;
  line-height: 40px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .consultations-text p {
    font-size: 22px;
    line-height: 30px;
  }
}
.consultations-text p em {
  color: #e1a629;
}

.consultation-item {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}
@media (max-width: 566px) {
  .consultation-item {
    flex-direction: column;
  }
}
.consultation-item:last-child {
  margin-bottom: 0;
}
.consultation-item__img {
  display: flex;
  width: 50%;
}
@media (max-width: 566px) {
  .consultation-item__img {
    order: -2;
    width: 100%;
    justify-content: center !important;
    margin-bottom: 20px;
    padding: 0 !important;
    text-align: center;
  }
}
.consultation-item__img img {
  display: block;
  max-width: 100%;
}
.consultation-item__text {
  font-size: 27px;
  color: #000;
  font-weight: 500;
  line-height: 40px;
  width: 50%;
}
@media (max-width: 768px) {
  .consultation-item__text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 566px) {
  .consultation-item__text {
    width: 100%;
    padding: 20px 0 0 0 !important;
    border: 0 !important;
    text-align: center !important;
  }
}
.consultation-item__text span {
  font-family: "Playfair Display", system-ui;
  color: #e1a629;
  font-size: 35px;
}
@media (max-width: 768px) {
  .consultation-item__text span {
    font-size: 24px;
  }
}
.consultation-item--left .consultation-item__img {
  padding-right: 40px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .consultation-item--left .consultation-item__img {
    padding-right: 15px;
  }
}
.consultation-item--left .consultation-item__text {
  padding-left: 40px;
  border-left: 1px solid #000;
}
@media (max-width: 768px) {
  .consultation-item--left .consultation-item__text {
    padding-left: 15px;
  }
}
.consultation-item--right .consultation-item__img {
  padding-left: 40px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .consultation-item--right .consultation-item__img {
    padding-left: 15px;
  }
}
.consultation-item--right .consultation-item__text {
  padding-right: 40px;
  border-right: 1px solid #000;
  text-align: right;
}
@media (max-width: 768px) {
  .consultation-item--right .consultation-item__text {
    padding-right: 15px;
  }
}

.why-section {
  padding: 140px 0;
  background: url(../images/bg-2.jpg) 50% 0% no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .why-section {
    padding: 70px 0 160px 0;
  }
}
@media (max-width: 768px) {
  .why-section {
    background-position: 75% 0;
  }
}

.why {
  max-width: 600px;
}
@media (max-width: 992px) {
  .why ul {
    padding-left: 20px;
  }
}
.why ul li {
  position: relative;
  font-size: 27px;
  color: #e9dfca;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .why ul li {
    font-size: 18px;
    line-height: 27px;
  }
}
.why ul li:before {
  content: "";
  width: 13px;
  height: 13px;
  background: #e1a629;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: -25px;
}
.why ul li:last-child {
  margin-bottom: 0;
}

.content-bg-desktop {
  display: block;
  width: 100%;
  position: relative;
  z-index: 16;
}
@media (max-width: 768px) {
  .content-bg-desktop {
    display: none;
  }
}
.content-bg-desktop img {
  display: block;
  width: 100%;
}

.content-bg-laptop {
  display: none;
  width: 100%;
  position: relative;
  z-index: 16;
}
@media (max-width: 768px) {
  .content-bg-laptop {
    display: block;
  }
}
@media (max-width: 480px) {
  .content-bg-laptop {
    display: none;
  }
}
.content-bg-laptop img {
  display: block;
  width: 100%;
}

.content-bg-mobile {
  display: none;
  width: 100%;
  position: relative;
  z-index: 16;
}
@media (max-width: 480px) {
  .content-bg-mobile {
    display: block;
  }
}
.content-bg-mobile img {
  display: block;
  width: 100%;
}

.content-bg-desktop2 {
  display: block;
  width: 100%;
  position: relative;
  z-index: 16;
}
@media (max-width: 768px) {
  .content-bg-desktop2 {
    display: none;
  }
}
.content-bg-desktop2 img {
  display: block;
  width: 100%;
}

.content-bg-mobile2 {
  display: none;
  width: 100%;
  position: relative;
  z-index: 16;
}
@media (max-width: 768px) {
  .content-bg-mobile2 {
    display: block;
  }
}
.content-bg-mobile2 img {
  display: block;
  width: 100%;
}

.about-training {
  background: #d2a678 url(../images/bg7.png) 50% 100% no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 140px;
}
@media (max-width: 992px) {
  .about-training {
    padding-bottom: 70px;
  }
}

.training {
  padding-top: 140px;
}
@media (max-width: 992px) {
  .training {
    padding-top: 70px;
  }
}

.title-description {
  font-size: 35px;
  color: #6d5b47;
  font-family: "Playfair Display", system-ui;
  margin-bottom: 70px;
  margin-top: -30px;
  text-align: center;
  display: block;
  font-style: italic;
}
@media (max-width: 992px) {
  .title-description {
    font-size: 20px;
  }
}

.training-content {
  position: relative;
  width: 1012px;
  height: 388px;
  background: url(../images/training.png) 50% 50% no-repeat;
  margin: 0 auto 100px;
}
@media (max-width: 1180px) {
  .training-content {
    transform: scale(0.8);
    left: -100px;
  }
}
@media (max-width: 840px) {
  .training-content {
    left: auto;
    transform: scale(1);
    width: 270px;
    height: 258px;
    background: url(../images/training-mobile.png) 50% 50% no-repeat;
    margin-bottom: 0;
  }
}

.training-item {
  width: 520px;
  z-index: 12;
  position: absolute;
}
@media (max-width: 840px) {
  .training-item {
    width: 270px;
  }
}
.training-item p {
  position: relative;
  z-index: 9;
  font-size: 27px;
  line-height: 35px;
  font-weight: 500;
  color: #e9dfca;
}


/* Стили для планшетов */
@media (min-width: 768px) and (max-width: 1199px) {
   .content-bg-desktop2-girl img {
	    width: 100px;
	    display: block;
	}
}

/* Стили для ноутбуков и настольных компьютеров */
@media (min-width: 1200px) and (max-width: 1799px) {
  .content-bg-desktop2-girl img {
	    width: 150px;
	    display: block;
	}
}


@media (max-width: 1380px) {
	
  .training-item p {
    font-size: 18px;
    width: 360px;
    line-height: 26px;
  }
}
@media (max-width: 840px) {
  .training-item p {
    font-size: 13px;
    width: 220px;
    line-height: 18px;
  }
}
.training-item:before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #e1a629;
  position: absolute;
  top: -30px;
  left: -40px;
  animation: pulse 2.5s infinite;
}

@media (max-width: 840px) {
  .training-item:before {
    display: none;
  }
}
.training-item--1 {
  left: 63px;
  top: 68px;
}
@media (max-width: 840px) {
  .training-item--1 {
    left: 13px;
    top: 21px;
  }
}
.training-item--2 {
  left: 634px;
  top: 176px;
}
@media (max-width: 840px) {
  .training-item--2 {
    left: 74px;
    top: 113px;
  }
  .training-item--2 p {
    text-align: right;
  }
}
.training-item--3 {
  left: 395px;
  top: 392px;
}
@media (max-width: 840px) {
  .training-item--3 {
    top: 210px;
    left: 13px;
  }
}

.training-cost {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
}
.training-cost__sum {
  font-size: 27px;
  font-weight: 500;
  color: #e9dfca;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
}
.training-cost__sum span {
  font-size: 35px;
  font-family: "Playfair Display", system-ui;
  font-weight: bold;
}
.training-cost__sum-border {
  padding-bottom: 30px;
  display: inline-block;
  border-bottom: 1px solid #e1a629;
}
.training-cost__btn {
  display: flex;
  justify-content: center;
}
.training-cost__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 45px;
  background: #e9dfca;
  color: #6d5b47;
  font-size: 27px;
  font-family: "Playfair Display", system-ui;
  font-weight: 500;
  border-radius: 30px;
  transition: 0.5s;
}
.training-cost__btn a:hover {
  background: #e1a629;
  color: #e9dfca;
}

.hidden {
  display: none;
}

.modal {
  width: 100%;
  max-width: 580px;
  border-radius: 20px;
  padding: 40px 30px;
  background: #e9dfca;
}
.modal--lg {
  max-width: 730px;
}
@media (max-width: 768px) {
  .modal {
    padding: 30px 20px;
  }
}
.modal__title {
  display: block;
  font-size: 18px;
  text-align: center;
  color: #393630;
  margin-bottom: 50px;
}
@media (max-width: 566px) {
  .modal__title {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.modal__title span {
  display: block;
  font-size: 37px;
  color: #e1a629;
  font-weight: 500;
  font-family: "Playfair Display", system-ui;
}
@media (max-width: 566px) {
  .modal__title span {
    font-size: 30px;
    padding-bottom: 5px;
  }
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}
.form-group.error input {
  border-color: rgb(210, 74, 88);
}
.form-group.error .error-text {
  display: block;
}
.form-group .error-text {
  display: none;
  color: rgb(210, 74, 88);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: left;
  padding-top: 5px;
}
.form-group input {
  border: 1px solid #dad0bd;
  border-radius: 12px;
  background: transparent;
  padding: 0 30px;
  width: 100%;
  height: 60px;
  font-family: "Raleway", sans-serif;
  color: #393630;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
}
.form-group input:focus {
  border-color: rgb(24, 28, 50);
}
.form-group input:user-valid {
  border-color: rgb(15, 204, 124);
}
.form-group input:user-invalid {
  border-color: rgb(210, 74, 88);
}
.form-group input::-moz-placeholder {
  color: rgb(161, 161, 169);
}
.form-group input::placeholder {
  color: rgb(161, 161, 169);
}
.form-group textarea {
  border: 1px solid #dad0bd;
  border-radius: 12px;
  background: transparent;
  padding: 15px 30px;
  width: 100%;
  height: 180px;
  font-family: "Raleway", sans-serif;
  color: #393630;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
  resize: vertical;
  min-height: 180px;
}
.form-group textarea:focus {
  border-color: rgb(24, 28, 50);
}
.form-group textarea:user-valid {
  border-color: rgb(15, 204, 124);
}
.form-group textarea:user-invalid {
  border-color: rgb(210, 74, 88);
}
.form-group textarea::-moz-placeholder {
  color: rgb(161, 161, 169);
}
.form-group textarea::placeholder {
  color: rgb(161, 161, 169);
}

.form-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.form-btn .btn {
  width: 100%;
  height: 62px;
  border-radius: 15px;
  background: #e1a629;
  font-size: 18px;
  color: #e9dfca;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  transition: 0.5s;
}
.form-btn .btn:hover {
  background: #393630;
  color: #e9dfca;
}

.test-modal__img {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.test-modal__img img {
  display: block;
  border-radius: 20px;
  height: 380px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.test-modal__title {
  display: block;
  text-align: center;
  font-size: 35px;
  color: #393630;
  font-family: "Playfair Display", system-ui;
  font-weight: 500;
  margin-bottom: 30px;
}
.test-modal__title--sm {
  font-size: 27px;
}
.test-modal__text {
  background: rgba(57, 54, 58, 0.1);
  padding: 20px;
  border-radius: 20px;
  min-height: 380px;
}
.test-modal__text p {
  font-size: 18px;
  color: #393630;
  font-weight: 500;
  line-height: 30px;
}
.test-modal .tabs {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(57, 54, 58, 0.1);
}
.test-modal .tabs a {
  display: block;
  font-size: 18px;
  color: #393630;
  font-family: "Playfair Display", system-ui;
  font-weight: 500;
  position: relative;
}
.test-modal .tabs a:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ccc;
  position: absolute;
  left: -25px;
  top: 4px;
}
.test-modal .tabs a:after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: -23px;
  background: #e1a629;
  opacity: 0;
  transition: 0.5s;
}
.test-modal .tabs a.active:after {
  opacity: 1;
}
.fadeInUp {
  animation: fadeInUp 1s;
  /* animation: [имя] [время работы] [функция анимации] [количество повторов]; */
}

@keyframes fadeInUp {
  0% {
    opacity: 0; /* Начинаем с прозрачности 0 */
    transform: translateY(50px); /* Перемещение вниз для эффекта "вверх" */
  }
  100% {
    opacity: 1; /* Конечная прозрачность 1 */
    transform: translateY(0); /* Возвращаемся на оригинальную позицию */
  }
}
.fadeInDown {
  animation: fadeInDown 1.5s;
  /* animation: [имя] [время работы] [функция анимации] [количество повторов]; */
}

@keyframes fadeInDown {
  0% {
    opacity: 0; /* Начинаем с прозрачности 0 */
    transform: translateY(-150px); /* Перемещение вниз для эффекта "вверх" */
  }
  100% {
    opacity: 1; /* Конечная прозрачность 1 */
    transform: translateY(0); /* Возвращаемся на оригинальную позицию */
  }
}/*# sourceMappingURL=styles.css.map */