@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --curent-size: 1920;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  font-family: "Montserrat", sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body {
  background: #111111;
}

header {
  position: fixed;
  top: calc((20 / var(--curent-size)) * 100vw);
  left: 0;
  width: 100%;
  z-index: 999;
}

.container {
  width: calc((1600 / var(--curent-size)) * 100vw);
  margin: 0 auto;
}

section:not(#hero) {
  padding-top: calc((90 / var(--curent-size)) * 100vw);
}

#masters-page {
  padding-top: calc((160 / var(--curent-size)) * 100vw) !important;
}

#another-masters {
  overflow: hidden;
}

#another-programms {
  overflow: hidden;
}

#programms-page {
  padding-top: calc((160 / var(--curent-size)) * 100vw) !important;
}

#stocks-page {
  padding-top: calc((160 / var(--curent-size)) * 100vw) !important;
}

#vocancy {
  padding-top: calc((160 / var(--curent-size)) * 100vw) !important;
}

.policy-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.policy-text > h1 {
  color: #fff;
  font-size: calc((32 / var(--curent-size)) * 100vw);
  margin-bottom: calc((30 / var(--curent-size)) * 100vw);
}

.policy-text > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.policy-text > div p,
.policy-text > div span,
.policy-text > div {
  font-family: var(--third-font);
  font-weight: 600;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  line-height: 164%;
  color: #fff;
}

.header-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  border-radius: calc((20 / var(--curent-size)) * 100vw);
  padding: calc((10 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  background-color: rgba(32, 32, 32, 0.3);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: calc((1 / var(--curent-size)) * 100vw) solid rgba(255, 255, 255, 0.05);
}
.header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.header-menu li a {
  color: #f0f0f0;
  font-weight: 400;
  display: block;
  text-decoration: none;
  font-size: calc((22 / var(--curent-size)) * 100vw);
}

.header-links {
  display: flex;
  align-items: center;
  gap: calc((22 / var(--curent-size)) * 100vw);
}

.header-links > a {
  color: #fff;
  text-decoration: none;
  font-size: calc((20 / var(--curent-size)) * 100vw);
}

.header-links-btns {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.header-links-btns div {
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    145deg,
    rgb(255 255 255 / 24%) 68.5%,
    #f59642 100%
  );
  width: calc((50 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  padding: 1px;
}

.header-links-btns div a {
  background: #161214;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
  height: 100%;
  display: block;
  padding: calc((8 / var(--curent-size)) * 100vw);
}

.header-links-btns div a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo {
  display: flex;
}

.logo img {
  width: calc((120 / var(--curent-size)) * 100vw);
}

#hero {
  width: 100%;
  height: calc((900 / var(--curent-size)) * 100vw);
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

#hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc((200 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0) 0%,
    rgba(17, 17, 17, 1) 69%
  );
}

#hero .container {
  height: 100%;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  /* padding-bottom: calc((220 / var(--curent-size)) * 100vw); */
}

.hero-wrapper > h1 {
  color: #fff;
  font-size: calc((70 / var(--curent-size)) * 100vw);
  font-weight: 600;
}

.hero-wrapper > p {
  margin-top: calc((24 / var(--curent-size)) * 100vw);
  max-width: calc((600 / var(--curent-size)) * 100vw);
  color: #aaa3a8;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-weight: 400;
}

.hero-links {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
  margin-bottom: calc((100 / var(--curent-size)) * 100vw);
}

.hero-links a {
  width: calc((320 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  background: #f59642;
  color: #ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: calc((20 / var(--curent-size)) * 100vw);
}

.hero-wrapper > img {
  position: absolute;
  bottom: 0;
  right: calc((120 / var(--curent-size)) * 100vw);
  width: calc((600 / var(--curent-size)) * 100vw);
}

.baner-slider {
  width: 100%;
  overflow: visible !important;
}

.baner-slide {
  height: calc((300 / var(--curent-size)) * 100vw);
  overflow: hidden;
  position: relative;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    145deg,
    rgb(129 187 255 / 24%) 68.5%,
    #f59642 100%
  );
  padding: calc((2 / var(--curent-size)) * 100vw);
}

.stocks-items {
  display: flex;
  align-items: stretch;
  width: 100%;
  list-style: none;
  flex-wrap: wrap;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.baner-slide-item {
  height: calc((600 / var(--curent-size)) * 100vw);
  width: calc((513 / var(--curent-size)) * 100vw);
}

.baner-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.baner-slide > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
  padding: calc((2 / var(--curent-size)) * 100vw);
}

.baner-slide-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: calc((16 / var(--curent-size)) * 100vw);
}

.baner-slide-data > p {
  margin-top: auto;
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
}

.baner-slide-data > span {
  margin-top: calc((10 / var(--curent-size)) * 100vw);
  color: #9c9c9c;
  font-size: calc((18 / var(--curent-size)) * 100vw);
}

.baner-slide-data > div {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}

.baner-slide-data > div > div {
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    145deg,
    rgb(129 187 255 / 24%) 68.5%,
    #f59642 100%
  );
  width: fit-content;
  height: calc((30 / var(--curent-size)) * 100vw);
  padding: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.baner-slide-data > div > div span {
  padding: 0 calc((10 / var(--curent-size)) * 100vw);
  color: #fff;
  width: 100%;
  height: 100%;
  background: #000;
  text-align: center;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
  line-height: 1.5;
  font-size: calc((16 / var(--curent-size)) * 100vw);
}

.baner-slide-data > div > a {
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    145deg,
    rgb(129 187 255 / 24%) 68.5%,
    #f59642 100%
  );
  width: calc((50 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  padding: 1px;
}

.baner-slide-data > div > a div {
  background: #161214;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
  height: 100%;
  display: block;
  padding: calc((8 / var(--curent-size)) * 100vw);
}

.baner-slide-data > div > a div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title {
  color: #fff;
  font-size: calc((42 / var(--curent-size)) * 100vw);
  font-weight: 600;
}

.masters-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.masters-wrapper > p {
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  text-align: center;
}

.masters-wrapper > a {
  margin: 0 auto;
}

.masters-head {
  display: flex;
  align-items: flex-end;
  gap: calc((20 / var(--curent-size)) * 100vw);
  width: 100%;
}

.masters-head span {
  color: #f59642;
  line-height: 1.8;
  font-size: calc((18 / var(--curent-size)) * 100vw);
}

.master-items {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
  gap: calc((24 / var(--curent-size)) * 100vw);
  list-style: none;
}

.hidden {
  display: none;
}

.master-item {
  width: calc((382 / var(--curent-size)) * 100vw);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.master-item > img {
  width: 100%;
  object-fit: cover;
  height: calc((380 / var(--curent-size)) * 100vw);
}

.master-item-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background: #1c1c1c;
  padding: calc((20 / var(--curent-size)) * 100vw);
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.master-item-data > div {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.master-item-data > div p {
  color: #f59642;
  font-size: calc((22 / var(--curent-size)) * 100vw);
}

.master-item-data > div a {
  line-height: 1;
  color: #fff;
  width: calc((140 / var(--curent-size)) * 100vw);
  height: calc((40 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: calc((1 / var(--curent-size)) * 100vw) solid #f59642;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
}

.master-item-data > div a:hover {
  background: #f59642;
}

.master-item-data ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  list-style: none;
}

.master-item-data ul li {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.master-item-data ul li img {
  width: calc((20 / var(--curent-size)) * 100vw);
}

.master-item-data ul li span {
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
}

.master-item-head {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: calc((20 / var(--curent-size)) * 100vw);
}

.master-work {
  background: #0000009c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  padding: calc((4 / var(--curent-size)) * 100vw)
    calc((10 / var(--curent-size)) * 100vw);
}

.master-work span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.master-work span img {
  width: calc((20 / var(--curent-size)) * 100vw);
  filter: hue-rotate(110deg);
}

.master-work p {
  color: #fff;
}

.call-btn {
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    145deg,
    rgb(129 187 255 / 24%) 68.5%,
    #f59642 100%
  );
  width: calc((50 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  padding: calc((1 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-btn div {
  background: #161214;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc((8 / var(--curent-size)) * 100vw);
}

.call-btn div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn {
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  width: fit-content;
  height: calc((60 / var(--curent-size)) * 100vw);
  padding: calc((2 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
  overflow: hidden;
  position: relative;
}

.btn.reverse span {
  background: #1e1e1e;
}

.btn.noreverse span {
  background: initial;
}

.btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f59642;
  z-index: -1;
}

.btn span {
  padding: calc((2 / var(--curent-size)) * 100vw)
    calc((50 / var(--curent-size)) * 100vw);
  background: #111111;
  height: 100%;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
}

.btn:hover span {
  background: initial;
  transition: 0.3s ease;
}

.programms-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((50 / var(--curent-size)) * 100vw);
}

.programms-wrapper > a {
  margin: 0 auto;
}

.programms-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.programms-head p {
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  opacity: 0.8;
  font-weight: 350;
}

.programms-items {
  display: flex;
  align-items: flex-start;
  width: 100%;
  list-style: none;
  gap: calc((30 / var(--curent-size)) * 100vw);
  flex-wrap: wrap;
}

.programm-item {
  width: calc((513 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border-radius: calc((20 / var(--curent-size)) * 100vw);
}

.programm-item > img {
  width: 100%;
  object-fit: cover;
  height: calc((320 / var(--curent-size)) * 100vw);
}

.programm-item-data {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #1e1e1e;
  padding: calc((20 / var(--curent-size)) * 100vw);
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.programm-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.programm-data a {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  text-decoration: none;
  transition: 0.3s ease;
}

.programm-data a p {
  color: #fff;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
}

.programm-data a svg {
  width: calc((18 / var(--curent-size)) * 100vw);
  height: calc((18 / var(--curent-size)) * 100vw);
}

.programm-data a svg path {
  transition: 0.3s ease;
}

.programm-item:hover .programm-data a {
  gap: calc((20 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
  color: #f59642;
}

.programm-item:hover .programm-data a p {
  transition: 0.3s ease;
  color: #f59642;
}

.programm-item:hover .programm-data a svg path {
  transition: 0.3s ease;
  stroke: #f59642;
}

.short-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

.short-text p,
.short-text span,
.short-text {
  color: #fff;
  opacity: 0.6;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 250;
}

.programm-price-time {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.programm-price-time p {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.programm-price-time p img {
  width: calc((24 / var(--curent-size)) * 100vw);
}

.programm-price-time p span {
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
}

.programms-btns {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.sertificate-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((50 / var(--curent-size)) * 100vw);
  position: relative;
}

.serf-form {
  width: 100%;
  height: fit-content;
  padding: calc((30 / var(--curent-size)) * 100vw);
  border-radius: calc((20 / var(--curent-size)) * 100vw);
  background: #1e1e1e;
  position: relative;
}

.serf-form > p {
  color: #fff;
  font-size: calc((24 / var(--curent-size)) * 100vw);
}

.form {
  width: calc((500 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
  margin-top: calc((50 / var(--curent-size)) * 100vw);
}

.form > input {
  width: 100%;
  padding: 0 calc((20 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  background: #2b2b2b;
  border: calc((2 / var(--curent-size)) * 100vw) solid initial;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  outline: none;
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 200;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.checkbox-wrapper p {
  color: #fff;
  font-size: calc((15 / var(--curent-size)) * 100vw);
}

.checkbox-wrapper p a {
  color: #fff;
}

.checkbox {
  width: calc((18 / var(--curent-size)) * 100vw);
  height: calc((18 / var(--curent-size)) * 100vw);
  border-radius: calc((4 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #fff;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.checkbox.clicked:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/check.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.checkbox input {
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
}

.form > button {
  width: 100%;
  padding: 0 calc((20 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  background: #f59642;
  border: calc((2 / var(--curent-size)) * 100vw) solid initial;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  outline: none;
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: calc((10 / var(--curent-size)) * 100vw);
}

.message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000097;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  z-index: 999999999;
}

.message.open {
  opacity: 1;
  visibility: visible;
}

.form > button:hover {
  opacity: 1;
  transition: 0.3s ease;
}

.serf-img {
  position: absolute;
  top: 55%;
  right: calc((180 / var(--curent-size)) * 100vw);
  transform: translate(0, -50%);
  width: calc((500 / var(--curent-size)) * 100vw);
  height: auto;
}

.interier-slider {
  width: 100%;
  margin: 0 !important;
  overflow: hidden;
  border-radius: calc((20 / var(--curent-size)) * 100vw);
}

.interier-slide {
  width: 100%;
  height: 100%;
}

.interier-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-interier {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((800 / var(--curent-size)) * 100vw);
  gap: calc((20 / var(--curent-size)) * 100vw);
  flex-shrink: 0;
}

.interier-pogination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.interier-pogination span {
  background: #f59642;
  width: calc((20 / var(--curent-size)) * 100vw);
  height: calc((10 / var(--curent-size)) * 100vw);
  border-radius: 10px;
}

.about-content {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
  gap: calc((60 / var(--curent-size)) * 100vw);
}

.about-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((50 / var(--curent-size)) * 100vw);
}

.about-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.about-text > p {
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 400;
  opacity: 0.7;
}

.about-text a {
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 400;
}

.about-text > h5 {
  color: #fff;
  font-size: calc((32 / var(--curent-size)) * 100vw);
  font-weight: 400;
}

.about-text ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: calc((10 / var(--curent-size)) * 100vw);
  padding-left: calc((30 / var(--curent-size)) * 100vw);
}

.about-text ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.about-text ul li:after {
  content: "";
  position: absolute;
  top: calc((10 / var(--curent-size)) * 100vw);
  left: calc((-24 / var(--curent-size)) * 100vw);
  width: calc((8 / var(--curent-size)) * 100vw);
  height: calc((8 / var(--curent-size)) * 100vw);
  border-radius: 50%;
  background: #f59642;
}

.about-text ul li p {
  color: #fff;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  font-weight: 600;
}

.about-text ul li span {
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
}

/*  */

.faq-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: calc((20 / var(--curent-size)) * 100vw);
  width: 100%;
  margin-top: calc((50 / var(--curent-size)) * 100vw);
}

.faq-item {
  border-radius: calc((0 / var(--curent-size)) * 100vw);
  padding: calc((20 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw);
  cursor: pointer;
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.3s ease;
  width: 100%;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    145deg,
    rgb(129 187 255 / 24%) 68.5%,
    #f59642 100%
  );
  padding: calc((2 / var(--curent-size)) * 100vw);
}

.faq-item-head {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 34px;
  background: #161214;
  padding: 0 calc((20 / var(--curent-size)) * 100vw);
  border-radius: calc((8 / var(--curent-size)) * 100vw);
}

.faq-item-head p {
  font-weight: 500;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  line-height: 100%;
  color: #fff;
}

.faq-item-head span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((60 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  border-radius: 50%;
  border: calc((0.5 / var(--curent-size)) * 100vw) solid var(--belyy);
}

.faq-item-head span svg {
  width: calc((24 / var(--curent-size)) * 100vw);
  height: calc((24 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
  transform: rotate(90deg);
}

.answer {
  background: #161214;
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  margin-top: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
  padding: 0 calc((20 / var(--curent-size)) * 100vw);
  transition: 0.3s ease;
}

.faq-item.active {
  grid-template-rows: auto 1fr;
}

.faq-item.active .answer {
  visibility: visible;
  transition: 0.3s linear;
  border-radius: 0 0 calc((8 / var(--curent-size)) * 100vw)
    calc((8 / var(--curent-size)) * 100vw);
  padding: calc((20 / var(--curent-size)) * 100vw);
}

.faq-item.active .faq-item-head {
  border-radius: calc((8 / var(--curent-size)) * 100vw)
    calc((8 / var(--curent-size)) * 100vw) 0 0;
}

.faq-item.active .faq-item-head span svg {
  transform: rotate(-90deg);
  transition: 0.3s ease;
}

footer {
  margin-top: calc((80 / var(--curent-size)) * 100vw);
  background-color: #1e1e1e;
  padding: calc((120 / var(--curent-size)) * 100vw) 0
    calc((60 / var(--curent-size)) * 100vw) 0;
  width: 100%;
}

.footer-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: calc((80 / var(--curent-size)) * 100vw);
  justify-content: space-between;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

.footer-links div {
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    145deg,
    rgb(255 255 255 / 24%) 68.5%,
    #f59642 100%
  );
  width: calc((50 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  padding: 1px;
}

.footer-links div a {
  background: #1e1e1e;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
  height: 100%;
  display: block;
  padding: calc((8 / var(--curent-size)) * 100vw);
}

.footer-links div a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-data span {
  color: #f59642;
}

.footer-data > a {
  font-size: calc((32 / var(--curent-size)) * 100vw);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  margin: calc((20 / var(--curent-size)) * 100vw) 0;
}

.footer-data > address {
  color: #fff;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  opacity: 0.7;
}

.footer-under {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: calc((120 / var(--curent-size)) * 100vw);
  position: relative;
}

.footer-under a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-decoration: none;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  opacity: 0.7;
}

.footer-under p {
  color: #ffffff;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  opacity: 0.7;
}

#map {
  width: calc((900 / var(--curent-size)) * 100vw);
  height: calc((400 / var(--curent-size)) * 100vw);
  overflow: hidden;
  border-radius: calc((20 / var(--curent-size)) * 100vw);
}

#map iframe {
  width: 100%;
  height: 100%;
}

#nav-toggle {
  background: initial;
  cursor: pointer;
  border: none;
  z-index: 10;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;

  border-radius: calc((10 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    145deg,
    rgb(129 187 255 / 24%) 68.5%,
    #f59642 100%
  );
  width: calc((50 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  padding: 1px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: calc((1 / var(--curent-size)) * 100vw);
  height: calc((1 / var(--curent-size)) * 100vw);
  width: calc((24 / var(--curent-size)) * 100vw);
  background: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  content: "";
  border-radius: calc((20 / var(--curent-size)) * 100vw);
}

#nav-toggle span {
  width: calc((24 / var(--curent-size)) * 100vw);
  position: relative;
  top: 0;
  right: 0;
  border-radius: calc((20 / var(--curent-size)) * 100vw);
}

#nav-toggle span:before {
  top: calc((-10 / var(--curent-size)) * 100vw);
}

#nav-toggle span:after {
  top: calc((10 / var(--curent-size)) * 100vw);
}

#nav-toggle span {
  transition: all 0.2s ease-in-out;
}

#nav-toggle span:before,
#nav-toggle span:after {
  transition: all 0.3s ease-in-out;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(-45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-135deg);
}

.tabs-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.tabs-list li {
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    145deg,
    rgb(129 187 255 / 24%) 68.5%,
    #f59642 100%
  );
  width: calc((220 / var(--curent-size)) * 100vw);
  height: calc((40 / var(--curent-size)) * 100vw);
  padding: 1px;
  cursor: pointer;
}

.tabs-list li.active span {
  background: initial;
  transition: 0.3s ease;
}

.tabs-list li:hover span {
  background: initial;
}

.tabs-list li span {
  background: #161214;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
  height: 100%;
  display: block;
  padding: calc((8 / var(--curent-size)) * 100vw);
  color: #fff;
  text-align: center;
  transition: 0.3s ease;
}

.widjet {
  position: fixed;
  bottom: 0;
  right: calc((10 / var(--curent-size)) * 100vw);
  background: linear-gradient(130deg, #f59642 0%, #27001f 100%);
  border-radius: 16px 16px 0 0;
  width: calc((304 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: calc((30 / var(--curent-size)) * 100vw);
  z-index: 999;
  cursor: pointer;
  transition: 0.3s linear;
}

.widjet.open {
  width: calc((355 / var(--curent-size)) * 100vw);
  height: calc((200 / var(--curent-size)) * 100vw);
  transition: 0.3s linear;
  overflow: hidden;
}

.widjet > p {
  font-size: calc((24 / var(--curent-size)) * 100vw);
  text-align: left;
  font-weight: 400;
  color: #fff;
  position: relative;
  line-height: 1;
  z-index: 2;
  margin: 0 !important;
}

.girl-w {
  transform-origin: bottom;
  position: absolute;
  bottom: 0;
  left: calc((0 / var(--curent-size)) * 100vw);
  width: calc((80 / var(--curent-size)) * 100vw);
}

.girl-w {
  transition: 0.3s linear;
  opacity: 1;
}

.hidden {
  transform-origin: bottom;
  transform: scale(0);
  opacity: 0;
  transition: 0.3s linear;
}

.widjet-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: calc((20 / var(--curent-size)) * 100vw);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}

.widjet-content.show {
  opacity: 1;
  visibility: visible;
  transition: 0.3s linear;
}

.widjet-content button {
  background: initial;
  border: none;
  cursor: pointer;
  position: absolute;
  top: calc((14 / var(--curent-size)) * 100vw);
  right: calc((14 / var(--curent-size)) * 100vw);
}

.widjet-content button img {
  width: calc((20 / var(--curent-size)) * 100vw);
  height: calc((20 / var(--curent-size)) * 100vw);
}

.widjet-content p {
  font-size: calc((20 / var(--curent-size)) * 100vw);
  text-align: left;
  font-weight: 700;
  color: #fff;
  position: relative;
  line-height: 1;
  z-index: 2;
}

.widjet-content span {
  color: #fff;

  font-size: calc((12 / var(--curent-size)) * 100vw);
  margin-top: calc((10 / var(--curent-size)) * 100vw);
  width: calc((200 / var(--curent-size)) * 100vw);
}

.widjet-content a {
  background: linear-gradient(90deg, #111 0%);
  padding: calc((10 / var(--curent-size)) * 100vw) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((180 / var(--curent-size)) * 100vw);
  font-weight: 600;
  font-size: calc((12 / var(--curent-size)) * 100vw);
  line-height: 164%;
  text-align: center;
  color: #ffffffff;
  text-decoration: none;
  border-radius: 20px;
  margin-top: auto;
}

.girl-w-w {
  position: absolute;
  bottom: 0 !important;
  left: 58% !important;
  width: calc((150 / var(--curent-size)) * 100vw) !important;
}

.single-master-slider {
  width: calc((750 / var(--curent-size)) * 100vw);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
}

.single-master-imgs {
  display: flex;
  align-items: flex-start;
  width: calc((800 / var(--curent-size)) * 100vw);
  gap: calc((20 / var(--curent-size)) * 100vw);
  position: sticky;
  top: calc((120 / var(--curent-size)) * 100vw);
  left: 0;
}

.single-slider-pog {
  width: calc((100 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.single-slider-pog span {
  width: calc((100 / var(--curent-size)) * 100vw);
  height: calc((100 / var(--curent-size)) * 100vw);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  margin: 0 !important;
}

.single-master-slider {
  width: calc((680 / var(--curent-size)) * 100vw);
  height: calc((700 / var(--curent-size)) * 100vw);
  margin: 0 !important;
  flex-shrink: 0;
}

.single-master-slide {
  width: 100%;
  height: 100%;
}

.single-master-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-master-data-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: calc((60 / var(--curent-size)) * 100vw);
  position: relative;
}

.seo-text {
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  opacity: 0.7;
}

.single-master-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((50 / var(--curent-size)) * 100vw);
}

.single-master-data > h2 {
  color: #fff;
  font-size: calc((40 / var(--curent-size)) * 100vw);
}

.single-master-parametres {
  display: flex;
  align-items: flex-start;
  width: 100%;
  list-style: none;
  flex-wrap: wrap;
  gap: calc((20 / var(--curent-size)) * 100vw) 0;
}

.single-master-parametres li {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.single-master-parametres li p {
  color: #fff;
  opacity: 0.5;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-weight: 400;
}

.single-master-parametres li span {
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-weight: 400;
}

.single-master-data > a {
  width: 100%;
  height: calc((60 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  background: #f59642;
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  text-decoration: none;
}

.about-single-master {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
  width: 100%;
}

.about-single-master p {
  color: #fff;
  font-weight: 500;
  font-size: calc((32 / var(--curent-size)) * 100vw);
}

.ya-taxi-widget {
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

.about-single-master div p,
.about-single-master div span,
.about-single-master div {
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  opacity: 0.8;
  font-weight: 400;
}

.single-master-programm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.single-master-programm > p {
  color: #fff;
  font-weight: 500;
  font-size: calc((32 / var(--curent-size)) * 100vw);
}

.prog-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.prog-text p,
.prog-text span,
.prog-text {
  color: #fff;
  opacity: 0.7;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 400;
}

.answer > a {
  width: calc((300 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f59642;
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  text-decoration: none;
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

.prog-price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: calc((50 / var(--curent-size)) * 100vw);
}

.prog-price-item p {
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 400;
}

.another-masters {
  margin-top: calc((90 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.another-programms-wrapper {
  margin-top: calc((90 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.another-masters-slider {
  width: 100%;
  overflow: visible;
}

.another-programms-slider {
  width: 100%;
  overflow: visible;
}

.single-programms-content {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: calc((60 / var(--curent-size)) * 100vw);
  margin-top: calc((60 / var(--curent-size)) * 100vw);
  position: relative;
}

.single-programms-content > img {
  width: calc((800 / var(--curent-size)) * 100vw);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  flex-shrink: 0;
  position: sticky;
  top: calc((120 / var(--curent-size)) * 100vw);
}
.single-programms-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((50 / var(--curent-size)) * 100vw);
}

.single-programm-price {
  width: 100%;
  background: #1e1e1e;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  padding: calc((20 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.single-programm-price div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.single-programm-price div p {
  font-size: calc((30 / var(--curent-size)) * 100vw);
  color: #fff;
  font-weight: 600;
}

.single-programm-price div span {
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
}

.single-programm-price > a {
  width: calc((200 / var(--curent-size)) * 100vw);
  background: #f59642;
  height: auto;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc((24 / var(--curent-size)) * 100vw);
}

.single-programm-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.single-programm-list > p {
  color: #fff;
  font-weight: 500;
  font-size: calc((32 / var(--curent-size)) * 100vw);
}

.single-programm-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((50 / var(--curent-size)) * 100vw);
}

.single-programm-text > p {
  color: #fff;
  font-weight: 500;
  font-size: calc((32 / var(--curent-size)) * 100vw);
}

.single-programm-text div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.single-programm-text div,
.single-programm-text div p,
.single-programm-text div span,
.single-programm-text div ul li,
.single-programm-text div ol li {
  color: #fff;
  font-weight: 400;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  opacity: 0.7;
}

.single-programm-text div ul,
.single-programm-text div ol {
  padding-left: calc((20 / var(--curent-size)) * 100vw);
}

.recommed-masters {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((50 / var(--curent-size)) * 100vw);
}

.recommed-masters > p {
  color: #fff;
  font-weight: 500;
  font-size: calc((32 / var(--curent-size)) * 100vw);
}

.recomend-masters {
  display: flex;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
  width: 100%;
}

.answer-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.answer-text ol,
.answer-text ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: calc((20 / var(--curent-size)) * 100vw);
}

.answer-text > a {
  width: calc((320 / var(--curent-size)) * 100vw);
  background: #f59642;
  height: auto;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  margin-top: calc((40 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
}

.form-vocancy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((40 / var(--curent-size)) * 100vw);
  margin-top: calc((120 / var(--curent-size)) * 100vw);
}

.form-vocancy-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  position: relative;
  background: #1e1e1e;
  border-radius: calc((20 / var(--curent-size)) * 100vw);
  width: calc((1200 / var(--curent-size)) * 100vw);
  margin: 0 auto;
  padding: calc((30 / var(--curent-size)) * 100vw);
}

.form-vocancy-content > p {
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
}

.form-vocancy > span {
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
}

.voc-img {
  width: calc((300 / var(--curent-size)) * 100vw);
  position: absolute;
  bottom: 0;
  right: calc((120 / var(--curent-size)) * 100vw);
}

.header-mobile-phone {
  display: none;
}

.burger-wrapper {
  display: none;
}

.ptogram-cat {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: calc((40 / var(--curent-size)) * 100vw);
}

.cat-name {
  width: calc((350 / var(--curent-size)) * 100vw);
  background: #2b2b2b;
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  overflow: hidden;
}

.cat-name a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
  text-decoration: none;
}

.cat-name a img {
  width: 100%;
  height: calc((220 / var(--curent-size)) * 100vw);
}

.cat-name a p {
  padding: calc((0 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
}

.vocany-wrapper > p {
  font-size: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

@media all and (max-width: 768px) {
  :root {
    --curent-size: 375;
  }

  .vocany-wrapper > p {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .container {
    width: calc((350 / var(--curent-size)) * 100vw);
  }

  .ptogram-cat {
    flex-wrap: wrap;
  }

  .header-links-btns div {
    width: calc((40 / var(--curent-size)) * 100vw);
    height: calc((40 / var(--curent-size)) * 100vw);
  }

  #nav-toggle {
    width: calc((40 / var(--curent-size)) * 100vw);
    height: calc((40 / var(--curent-size)) * 100vw);
  }

  .widjet {
    width: calc((180 / var(--curent-size)) * 100vw);
    height: calc((40 / var(--curent-size)) * 100vw);
    padding-right: calc((20 / var(--curent-size)) * 100vw);
  }
  .girl-w-w {
    position: absolute;
    bottom: 0 !important;
    left: 55% !important;
    width: calc((155 / var(--curent-size)) * 100vw) !important;
    z-index: -1;
  }

  .girl-w {
    transform-origin: bottom;
    position: absolute;
    bottom: 0;
    left: calc((0 / var(--curent-size)) * 100vw);
    width: calc((60 / var(--curent-size)) * 100vw);
  }

  .widjet-content > p {
    margin: 0 !important;
  }

  .widjet-title br,
  .widjet-content p br {
    display: block !important;
  }

  .widjet > p {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  #nav-toggle {
    display: flex;
  }

  .header-menu {
    display: none;
  }

  .header-links > a {
    display: none;
  }

  .logo img {
    width: calc((110 / var(--curent-size)) * 100vw);
  }

  .header-links {
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .header-wrapper {
    border-radius: calc((10 / var(--curent-size)) * 100vw);
    padding: calc((4 / var(--curent-size)) * 100vw)
      calc((10 / var(--curent-size)) * 100vw);
  }

  .header-mobile-phone {
    display: flex;
  }

  .hero-wrapper > h1 {
    font-size: calc((24 / var(--curent-size)) * 100vw);
  }

  .hero-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: calc((10 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    margin-bottom: calc((100 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper > p {
    margin-top: calc((24 / var(--curent-size)) * 100vw);
    max-width: calc((600 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper > img {
    position: absolute;
    bottom: none;
    top: calc((45 / var(--curent-size)) * 100vw);
    right: none;
    left: 24%;
    transform: translate(-10%, 0);
    width: calc((490 / var(--curent-size)) * 100vw);
    z-index: 0;
  }

  .hero-links {
    width: 64%;
    position: relative;
    z-index: 1;
  }

  .hero-links a {
    width: 100%;
    height: calc((50 / var(--curent-size)) * 100vw);
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  #hero {
    height: calc((758 / var(--curent-size)) * 100vw);
    background-image: url(../img/bg-m.jpg);
    position: relative;
  }

  .hero-wrapper {
    justify-content: flex-start;
    padding-top: calc((60 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper > p {
    margin-top: calc((24 / var(--curent-size)) * 100vw);
    max-width: calc((250 / var(--curent-size)) * 100vw);
    font-size: calc((15 / var(--curent-size)) * 100vw);
  }

  header {
    top: calc((10 / var(--curent-size)) * 100vw);
  }

  .header-wrapper {
    background-color: rgb(32 32 32 / 77%);
  }

  .title {
    font-size: calc((26 / var(--curent-size)) * 100vw);
  }

  .masters-head {
    align-items: flex-start;
    flex-direction: column;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  section:not(#hero) {
    padding-top: calc((80 / var(--curent-size)) * 100vw);
  }

  .masters-wrapper {
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .master-item-data > div p {
    font-size: calc((22 / var(--curent-size)) * 100vw);
  }

  .master-item > img {
    height: calc((280 / var(--curent-size)) * 100vw);
  }

  .btn {
    height: calc((50 / var(--curent-size)) * 100vw);
  }

  .programms-head p {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .programms-wrapper {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .programms-btns {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .programm-item > img {
    height: calc((270 / var(--curent-size)) * 100vw);
  }

  .programm-data a p {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .short-text p,
  .short-text span,
  .short-text {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .programm-price-time {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: calc((6 / var(--curent-size)) * 100vw);
  }

  .programm-price-time p img {
    width: calc((20 / var(--curent-size)) * 100vw);
  }

  .programm-price-time p span {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .btn {
    width: 100%;
  }
  .btn span {
    width: 100%;
  }

  .serf-img {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
  }

  .serf-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: fit-content;
    padding: calc((20 / var(--curent-size)) * 100vw);
    border-radius: calc((20 / var(--curent-size)) * 100vw);
    background: #1e1e1e;
    position: relative;
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc((5 / var(--curent-size)) * 100vw);
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }

  .serf-form > p {
    text-align: center;
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .form > input {
    width: 100%;
    padding: 0 calc((14 / var(--curent-size)) * 100vw);
    height: calc((50 / var(--curent-size)) * 100vw);
    background: #2b2b2b;
    border: calc((2 / var(--curent-size)) * 100vw) solid initial;
    border-radius: calc((10 / var(--curent-size)) * 100vw);
    outline: none;
    color: #fff;
    font-size: calc((15 / var(--curent-size)) * 100vw);
    font-weight: 200;
  }

  .form > button {
    height: calc((50 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
    margin-top: calc((10 / var(--curent-size)) * 100vw);
  }

  .checkbox-wrapper p {
    font-size: calc((10 / var(--curent-size)) * 100vw);
  }

  .checkbox-wrapper {
    margin-top: calc((10 / var(--curent-size)) * 100vw);
  }
  .sertificate-wrapper {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .about-interier {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: calc((20 / var(--curent-size)) * 100vw);
    flex-shrink: 0;
  }

  .about-wrapper {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .about-text > p {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .about-text > h5 {
    font-size: calc((22 / var(--curent-size)) * 100vw);
  }

  .about-text ul li p {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .about-text ul li span {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .faq-item-head p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .faq-item-head {
    padding: 0 calc((10 / var(--curent-size)) * 100vw);
  }

  .answer {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    padding: 0 calc((10 / var(--curent-size)) * 100vw);
  }

  .faq-item.active .answer {
    visibility: visible;
    transition: 0.3s linear;
    border-radius: 0 0 calc((8 / var(--curent-size)) * 100vw)
      calc((8 / var(--curent-size)) * 100vw);
    padding: calc((10 / var(--curent-size)) * 100vw);
  }

  .faq-items {
    gap: calc((5 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }

  .footer-wrapper {
    gap: calc((40 / var(--curent-size)) * 100vw);
    flex-wrap: wrap;
  }

  .footer-under {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: calc((40 / var(--curent-size)) * 100vw);
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .footer-under a {
    position: static;
    transform: none;
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .footer-under p {
    color: #ffffff;
    font-size: calc((14 / var(--curent-size)) * 100vw);
    opacity: 0.7;
  }

  footer {
    margin-top: calc((80 / var(--curent-size)) * 100vw);
    padding: calc((40 / var(--curent-size)) * 100vw) 0
      calc((30 / var(--curent-size)) * 100vw) 0;
  }

  .footer-data > a {
    font-size: calc((20 / var(--curent-size)) * 100vw);
    margin: calc((20 / var(--curent-size)) * 100vw) 0;
  }

  #map {
    width: 100%;
    height: calc((300 / var(--curent-size)) * 100vw);
    overflow: hidden;
    border-radius: calc((20 / var(--curent-size)) * 100vw);
  }

  .footer-data > address {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .burger-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a0;
    z-index: 99;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }

  .burger-wrapper.open {
    transition: 0.3s ease;
    opacity: 1;
    visibility: visible;
  }

  .burger-content {
    padding: calc((90 / var(--curent-size)) * 100vw)
      calc((30 / var(--curent-size)) * 100vw)
      calc((30 / var(--curent-size)) * 100vw)
      calc((30 / var(--curent-size)) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #111;
    width: 90%;
    transform: translateX(100%);
    transition: 0.3s ease;
  }

  .burger-content.open {
    transform: translateX(0%);
    transition: 0.3s ease;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style: none;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .burger-menu li a {
    color: #fff;
    font-size: calc((18 / var(--curent-size)) * 100vw);
    text-decoration: none;
  }

  .tabs-list {
    flex-wrap: wrap;
  }

  #programms-page {
    padding-top: calc((60 / var(--curent-size)) * 100vw) !important;
  }

  #masters-page {
    padding-top: calc((60 / var(--curent-size)) * 100vw) !important;
  }

  #stocks-page {
    padding-top: calc((60 / var(--curent-size)) * 100vw) !important;
  }

  #vocancy {
    padding-top: calc((60 / var(--curent-size)) * 100vw) !important;
  }

  .tabs-list li {
    width: 100%;
  }

  .tabs-list {
    width: 100%;
  }

  .baner-slide-item {
    height: calc((340 / var(--curent-size)) * 100vw);
    width: 100%;
  }

  .stocks-items {
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .voc-img {
    width: calc((170 / var(--curent-size)) * 100vw);
    position: static;
    bottom: 0;
    right: calc((120 / var(--curent-size)) * 100vw);
    margin: 0 auto;
  }

  .form-vocancy-content {
    width: 100%;
    padding: calc((20 / var(--curent-size)) * 100vw);
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .form-vocancy-content > p {
    font-size: calc((17 / var(--curent-size)) * 100vw);
    color: #fff;
    text-align: center;
  }

  .form-vocancy {
    gap: calc((40 / var(--curent-size)) * 100vw);
    margin-top: calc((60 / var(--curent-size)) * 100vw);
  }

  .single-programms-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    gap: calc((30 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    position: relative;
  }

  .single-programms-content > img {
    width: 100%;
    position: static;
  }

  .form-vocancy > span {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  #masters .master-item:last-child {
    display: none;
  }

  .seo-text {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .masters-wrapper > p {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .single-programm-price div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: calc((10 / var(--curent-size)) * 100vw);
    width: 100%;
    flex-wrap: wrap;
  }

  .single-programm-price div p {
    font-size: calc((22 / var(--curent-size)) * 100vw);
  }

  .single-programm-price {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-programm-price > a {
    width: 100%;
    height: calc((50 / var(--curent-size)) * 100vw);
  }

  .single-programm-text div,
  .single-programm-text div p,
  .single-programm-text div span,
  .single-programm-text div ul li,
  .single-programm-text div ol li {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .single-programm-text {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .recomend-masters {
    flex-direction: column;
  }

  .recomend-masters .master-item {
    width: 100%;
    border-radius: calc((10 / var(--curent-size)) * 100vw);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .another-programms-slider .programm-item {
    width: 100%;
  }

  .another-programms-wrapper {
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }

  .single-master-data-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    gap: calc((30 / var(--curent-size)) * 100vw);
    position: relative;
  }

  .single-master-imgs {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
    width: 100%;
    gap: calc((10 / var(--curent-size)) * 100vw);
    position: static;
    top: calc((120 / var(--curent-size)) * 100vw);
    left: 0;
  }

  .single-slider-pog {
    flex-direction: row;
  }

  .single-master-slider {
    width: 100%;
    height: calc((300 / var(--curent-size)) * 100vw);
    margin: 0 !important;
    flex-shrink: 0;
  }

  .single-slider-pog span {
    width: calc((70 / var(--curent-size)) * 100vw);
    height: calc((70 / var(--curent-size)) * 100vw);
  }

  .single-master-data > h2 {
    font-size: calc((30 / var(--curent-size)) * 100vw);
  }

  .single-master-parametres li p,
  .single-master-parametres li span {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .single-master-data > a {
    height: calc((50 / var(--curent-size)) * 100vw);
  }

  .about-single-master p {
    font-size: calc((24 / var(--curent-size)) * 100vw);
  }

  .about-single-master div p,
  .about-single-master div span,
  .about-single-master div {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .single-master-programm > p {
    font-size: calc((24 / var(--curent-size)) * 100vw);
  }

  .another-masters {
    margin-top: calc((20 / var(--curent-size)) * 100vw);
    gap: calc((20 / var(--curent-size)) * 100vw);
  }

  .another-masters-slider .master-item {
    width: 100%;
  }

  .master-item {
    width: 100%;
  }

  .master-items .master-item:nth-child(4) {
    display: none;
  }

  .policy-text > div p,
  .policy-text > div span,
  .policy-text > div {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .policy-text > div ol,
  .policy-text > div ul {
    padding-left: calc((16 / var(--curent-size)) * 100vw);
  }

  .policy-text > h1 {
    color: #fff;
    font-size: calc((24 / var(--curent-size)) * 100vw);
    margin-bottom: calc((30 / var(--curent-size)) * 100vw);
  }
}
