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

:root {
  --main-font: "Impact", san-serif;
  --second-font: "HelveticaNeueCyr-Roman", san-serif;
  --curent-size: 1920;
}

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

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #1d1b1b;
}

header {
  padding: calc((10 / var(--curent-size)) * 100vw) 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #1d1b1b86;
}

.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((24 / var(--curent-size)) * 100vw);
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  z-index: 999999999;
  font-family: var(--second-font);
}

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

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

.header-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.header-logo img {
  width: calc((180 / var(--curent-size)) * 100vw);
  height: calc((90 / var(--curent-size)) * 100vw);
}

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

.header-menu li a {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((18 / var(--curent-size)) * 100vw);
}

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

.header-nav a {
  display: flex;
}

.header-nav a img {
  width: calc((40 / var(--curent-size)) * 100vw);
}

#hero {
  padding-top: calc((220 / var(--curent-size)) * 100vw);
  position: relative;
  width: 100%;
  height: calc((800 / var(--curent-size)) * 100vw);
}

.hero-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-wrapper h1 {
  text-align: center;
  font-family: var(--main-font);
  font-size: calc((100 / var(--curent-size)) * 100vw);
  color: #fff;
  font-weight: 400;
  letter-spacing: calc((6 / var(--curent-size)) * 100vw);
  line-height: 140%;
}

.hero-wrapper h1 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: calc((1 / var(--curent-size)) * 100vw) #ffffff;
}

#hero:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(
    36.14% 36.88% at 50% 95.4%,
    #a23ce5 11.98%,
    #6600ff 41.15%,
    #1d1b1b 100%
  ); */
  background: radial-gradient(
    36.14% 36.88% at 50% 95.4%,
    #ff5b1c 11.98%,
    #ffc800 41.15%,
    #1d1b1b 100%
  );
  filter: blur(162.5px);
  z-index: -1;
}

.hero-wrapper p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((18 / var(--curent-size)) * 100vw);
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: calc((40 / var(--curent-size)) * 100vw);
  margin-top: calc((80 / var(--curent-size)) * 100vw);
}

.hero-btns a {
  display: flex;
  align-items: center;
  gap: calc((0 / var(--curent-size)) * 100vw);
}

.hero-btns a p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((320 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  background: #ffffff00;
  color: #ffffff;
  border-radius: calc((40 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffffff29;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-family: var(--second-font);
  transition: 0.3s ease;
}

.hero-btns a:hover p {
  background: #ffffff;
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffffff;
  transition: 0.3s ease;
  color: #000;
}

.hero-btns a img {
  width: calc((80 / var(--curent-size)) * 100vw);
}

.hero-wrapper > span {
  order: -1;
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-family: var(--second-font);
  color: #ffffff;
  padding: calc((10 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  font-style: italic;
}

.title {
  text-align: center;
  font-family: var(--main-font);
  font-size: calc((60 / var(--curent-size)) * 100vw);
  color: #fff;
  line-height: 100%;
  font-weight: 400;
  letter-spacing: calc((6 / var(--curent-size)) * 100vw);
  line-height: 140%;
}

.title span {
  color: #ffd200;
}

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

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

#stocks {
  overflow: hidden;
}

.stocks-wrapper .stocks-slider {
  width: 100%;
  overflow: visible;
}

.stock-slide {
  width: 100%;
  height: calc((600 / var(--curent-size)) * 100vw);
  position: relative;
  padding: calc((20 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.stock-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    180deg,
    rgba(29, 27, 27, 0) 0%,
    rgba(29, 27, 27, 1) 100%
  );
  pointer-events: none;
}

.stock-slide > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.stock-head {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.stock-head span {
  animation: pulsing 2s infinite;
  transition: all 0.2s;
  width: calc((140 / var(--curent-size)) * 100vw);
  height: calc((30 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  background: #ffbe00;
  border-radius: 10px;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  font-family: var(--second-font);
  text-transform: uppercase;
}

@keyframes pulsing {
  0% {
    box-shadow:
      2px 2px 5px rgba(0, 0, 0, 0.16),
      0 0 0 0 rgba(255, 255, 255, 0.5);
  }

  100% {
    box-shadow:
      2px 2px 5px rgba(0, 0, 0, 0.16),
      0 0 0 14px transparent;
  }
}

.stock-head a {
  display: flex;
}

.stock-head a img {
  width: calc((40 / var(--curent-size)) * 100vw);
}

.stock-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((20 / var(--curent-size)) * 100vw);
  z-index: 1;
}

.stock-data p {
  font-family: var(--second-font);
  font-weight: 300;
  color: #fff;
  font-size: calc((24 / var(--curent-size)) * 100vw);
}

.stock-data span {
  font-family: var(--second-font);
  font-weight: 300;
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  opacity: 0.8;
}

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

.sub-title {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((22 / var(--curent-size)) * 100vw);
}

.masters-items {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

.master-item {
  width: calc((500 / var(--curent-size)) * 100vw);
  height: calc((700 / var(--curent-size)) * 100vw);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: calc((30 / var(--curent-size)) * 100vw);
  border-radius: calc((20 / var(--curent-size)) * 100vw);
  overflow: hidden;
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffffff34;
  transition: 0.3s ease;
}

.master-item > span {
  position: absolute;
  z-index: 1;
  top: calc((22 / var(--curent-size)) * 100vw);
  right: calc((30 / var(--curent-size)) * 100vw);
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 500;
  color: #ffffff;
  font-family: var(--second-font);
  padding: calc((6 / var(--curent-size)) * 100vw)
    calc((12 / var(--curent-size)) * 100vw);
  border-radius: calc((8 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
}

.master-item:hover {
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
  transition: 0.3s ease;
}

.master-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    180deg,
    rgba(29, 27, 27, 0) 0%,
    rgba(29, 27, 27, 1) 100%
  );
  pointer-events: none;
}

.master-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(
    0deg,
    rgba(29, 27, 27, 0) 0%,
    rgba(29, 27, 27, 1) 100%
  );
  pointer-events: none;
}

.master-item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.master-data {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  z-index: 1;
  margin-top: auto;
}

.master-data > p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((24 / var(--curent-size)) * 100vw);
}

.master-data ul {
  display: flex;
  align-items: flex-start;
  width: 80%;
  gap: calc((30 / var(--curent-size)) * 100vw);
  justify-content: center;
  margin: calc((30 / var(--curent-size)) * 100vw) 0;
  list-style: none;
  justify-content: space-between;
}

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

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

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

.masters-navs {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.masters-navs a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc((34 / var(--curent-size)) * 100vw);
  font-family: var(--second-font);
  background: #ffbe00;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 500;
  color: #ffffff;
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
  height: calc((50 / var(--curent-size)) * 100vw);
  width: calc((240 / var(--curent-size)) * 100vw);
}

.masters-navs a:last-child {
  background: initial;
}

.master-status {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  width: 100%;
  position: relative;
  z-index: 1;
}

.master-status span {
  width: calc((10 / var(--curent-size)) * 100vw);
  height: calc((10 / var(--curent-size)) * 100vw);
  margin-top: 0;
  border-radius: 50%;
  background: #8ed383;
  animation: pulsing 2s infinite;
  transition: all 0.2s;
  flex-shrink: 0;
}

.master-status p {
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 500;
  color: #ffffff;
  font-family: var(--second-font);
}

.btn-all-show {
  margin-top: calc((40 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.btn-all-show a {
  font-family: var(--main-font);
  font-size: calc((55 / var(--curent-size)) * 100vw);
  font-weight: 400;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #ffbe00;
}

.btn-all-show img:first-child {
  width: calc((180 / var(--curent-size)) * 100vw);
  transform: translateX(20px);
  opacity: 0;
  transition: 0.3s ease;
}

.btn-all-show img:last-child {
  width: calc((180 / var(--curent-size)) * 100vw);
  transform: translateX(-20px);
  opacity: 0;
  transition: 0.3s ease;
}

.btn-all-show:hover img:first-child {
  transform: translateX(0);
  opacity: 1;
  transition: 0.5s ease;
}

.btn-all-show:hover img:last-child {
  transform: translateX(0);
  opacity: 1;
  transition: 0.5s ease;
}

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

.programms-items {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: calc((20 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

.programm-item {
  width: calc((500 / var(--curent-size)) * 100vw);
  height: calc((600 / var(--curent-size)) * 100vw);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: calc((30 / var(--curent-size)) * 100vw);
  border-radius: calc((20 / var(--curent-size)) * 100vw);
  overflow: hidden;
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffffff34;
  transition: 0.3s ease;
}

.programm-item:hover {
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
  transition: 0.3s ease;
}

.programm-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    180deg,
    rgba(29, 27, 27, 0) 0%,
    rgba(29, 27, 27, 1) 100%
  );
  pointer-events: none;
}

.programm-item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

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

.programms-price div {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  border-radius: 20px;
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffffff34;
  padding: calc((10 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  background: #00000032;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

.programms-price div p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((20 / var(--curent-size)) * 100vw);
}

.programm-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((10 / var(--curent-size)) * 100vw);
  position: relative;
  z-index: 1;
}

.programm-data p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((24 / var(--curent-size)) * 100vw);
}

.program-text {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((20 / var(--curent-size)) * 100vw);
  opacity: 0.7;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}

.program-text span,
.program-text p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((20 / var(--curent-size)) * 100vw);
  opacity: 0.7;
}

.programm-nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: calc((20 / var(--curent-size)) * 100vw);
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

.programm-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc((34 / var(--curent-size)) * 100vw);
  font-family: var(--second-font);
  background: #ffbe00;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 500;
  color: #ffffff;
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
  height: calc((50 / var(--curent-size)) * 100vw);
  width: calc((240 / var(--curent-size)) * 100vw);
}

.programm-nav a:first-child {
  color: #010101;
}

.programm-nav a:last-child {
  background: initial;
}

.about-img {
  width: calc((620 / var(--curent-size)) * 100vw);
  height: calc((600 / var(--curent-size)) * 100vw);
}

.about-content-data {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.about-text > p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((22 / var(--curent-size)) * 100vw);
}

.about-text > span {
  color: #fff;
  font-family: var(--main-font);
  font-size: calc((40 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: calc((1 / var(--curent-size)) * 100vw) #ffbe00;
  letter-spacing: calc((6 / var(--curent-size)) * 100vw);
}

.about-text > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: calc((30 / var(--curent-size)) * 100vw);
  margin-top: calc((20 / var(--curent-size)) * 100vw);
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.about-text > ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
  position: relative;
}

.about-text > ul li:before {
  content: "";
  position: absolute;
  top: calc((6 / var(--curent-size)) * 100vw);
  left: calc((-24 / var(--curent-size)) * 100vw);
  width: calc((12 / var(--curent-size)) * 100vw);
  height: calc((12 / var(--curent-size)) * 100vw);
  border-radius: 50%;
  background: #ffbe00;
}

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

.about-text > ul li p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((20 / var(--curent-size)) * 100vw);
  opacity: 0.8;
}

#about {
  position: relative;
  overflow: hidden;
}

#about:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(
    180deg,
    rgba(29, 27, 27, 0) 0%,
    rgba(29, 27, 27, 1) 100%
  );
  pointer-events: none;
  z-index: 2;
}

#about:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    36.14% 36.88% at 50% 95.4%,
    #ff5b1c 11.98%,
    #ffc800 41.15%,
    #1d1b1b 100%
  );
  filter: blur(162.5px);
  z-index: -1;
}

.serf-data-img > img {
  width: calc((600 / var(--curent-size)) * 100vw);
  height: calc((450 / var(--curent-size)) * 100vw);
}

.serf-data {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}

.serf-data-text {
  width: calc((800 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.serf-data-text p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((24 / var(--curent-size)) * 100vw);
}

.serf-data-text span {
  color: #fff;
  font-family: var(--main-font);
  font-size: calc((40 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: calc((1 / var(--curent-size)) * 100vw) #ffbe00;
  letter-spacing: calc((6 / var(--curent-size)) * 100vw);
}

.serf-data-text ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
  margin-top: calc((20 / var(--curent-size)) * 100vw);
  padding-left: calc((30 / var(--curent-size)) * 100vw);
}

.serf-data-text ul li {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((24 / var(--curent-size)) * 100vw);
}

.serf-data-text ul li::marker {
  color: #ffbe00;
}

.serf-data-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.serf-data-img a {
  display: flex;
  align-items: center;
}

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

.serf-data-img a p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((24 / var(--curent-size)) * 100vw);
  padding: calc((14 / var(--curent-size)) * 100vw)
    calc((32 / var(--curent-size)) * 100vw);
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  background: #ffbe00;
}

#interier {
  overflow: hidden;
  padding: calc((60 / var(--curent-size)) * 100vw) 0;
}

.interier-slider {
  width: 100%;
  overflow: visible !important;
  margin-top: calc((120 / var(--curent-size)) * 100vw) !important;
}

.interier-slider .swiper-slide {
  transition: 0.3s ease;
  opacity: 0.2;
}

.interier-slider .swiper-slide.swiper-slide-active {
  transform: scale(1.3);
  z-index: 1;
  transition: 0.3s ease;
  opacity: 1;
}

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

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

.contacts-content {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: calc((80 / var(--curent-size)) * 100vw);
  margin-top: calc((80 / var(--curent-size)) * 100vw);
}

.contacts-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc((600 / var(--curent-size)) * 100vw);
  flex-shrink: 0;
}

.contacts-info span {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((24 / var(--curent-size)) * 100vw);
  margin-bottom: calc((10 / var(--curent-size)) * 100vw);
  opacity: 0.7;
}

.contacts-info span:not(:first-child) {
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}

.contacts-info p,
.contacts-info > a {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((26 / var(--curent-size)) * 100vw);
}

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

.contacts-links a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-links a img {
  width: calc((44 / var(--curent-size)) * 100vw);
}

#map {
  width: 100%;
}

#map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(255 174 73) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.footer-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.footer-wrapper div {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.footer-wrapper div img {
  width: calc((50 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
}

.footer-wrapper div p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((26 / var(--curent-size)) * 100vw);
}

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

.footer-under p,
.footer-under a {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((16 / var(--curent-size)) * 100vw);
  opacity: 0.5;
}

#nav-toggle {
  display: none;
}

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

.single-master-slider {
  width: 100%;
  height: calc((700 / var(--curent-size)) * 100vw);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  border: calc((2 / var(--curent-size)) * 100vw) solid #ffbe00;
}

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

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

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

.single-slider-pog {
  width: 100%;
}

.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);
  border: calc((2 / var(--curent-size)) * 100vw) solid #ffffff00;
}

.single-slider-pog span.swiper-pagination-bullet-active {
  border: calc((2 / var(--curent-size)) * 100vw) solid #ffbe00;
  transition: 0.3s ease;
}

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

.single-master-data > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
}

.single-master-data > ul li {
  width: calc(100% / 4);
}

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

.single-master-data > ul li p {
  font-family: var(--second-font);
  text-align: left;
  color: #ffbe00;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.single-master-data > ul li span {
  font-family: var(--second-font);
  text-align: left;
  color: #ffffff;
  font-size: calc((28 / var(--curent-size)) * 100vw);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.single-master-data > p {
  font-family: var(--main-font);
  font-size: calc((38 / var(--curent-size)) * 100vw);
  color: #fff;
  margin-top: calc((40 / var(--curent-size)) * 100vw);
}

.single-master-data > p span {
  color: #ffbe00;
}

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

.about-master span {
  font-family: var(--main-font);
  font-size: calc((38 / var(--curent-size)) * 100vw);
  color: #fff;
}

.about-master p {
  font-family: var(--second-font);
  text-align: left;
  color: #ffffff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.6;
}

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

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

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

.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((0 / 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);
  padding: calc((2 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
}

.faq-item-head {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: calc((34 / var(--curent-size)) * 100vw);
  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;
  font-family: var(--second-font);
}

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

.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 {
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  margin-top: 0;
  font-family: var(--second-font);
  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;
}

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

.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: #ffbe00;
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  text-decoration: none;
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

.prog-text {
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

.single-master-call {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: calc((40 / var(--curent-size)) * 100vw);
  gap: calc((30 / var(--curent-size)) * 100vw);
}

.single-master-call > a {
  width: calc((320 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  background: #ffbe00;
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--second-font);
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
}

.single-master-call > p {
  font-family: var(--main-font);
  font-size: calc((38 / var(--curent-size)) * 100vw);
  color: #fff;
}

.single-master-call > p span {
  color: #ffbe00;
}

#another-masters {
  overflow: hidden;
}

.another-masters-slider {
  width: 100%;
  overflow: visible !important;
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}

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

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

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

.single-programm-wrapper > img {
  width: calc((600 / var(--curent-size)) * 100vw);
  border-radius: calc((20 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
}

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

.single-programm-item span {
  font-family: var(--main-font);
  font-size: calc((38 / var(--curent-size)) * 100vw);
  color: #fff;
}

.single-programm-item p {
  font-family: var(--second-font);
  text-align: left;
  color: #ffffff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.6;
}

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

.single-programm-price > p {
  font-family: var(--main-font);
  font-size: calc((38 / var(--curent-size)) * 100vw);
  color: #fff;
}

.single-programm-price div {
  display: flex;
  align-items: center;
  width: 100%;
}

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

.price-item div {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}

.price-item div img {
  width: calc((30 / var(--curent-size)) * 100vw);
}

.price-item div p {
  font-family: var(--second-font);
  color: #fff;
  font-size: calc((22 / var(--curent-size)) * 100vw);
}

.single-programm-item:last-child {
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}

.single-programm-item > a {
  width: calc((320 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  background: #ffbe00;
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--second-font);
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

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

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

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

.vocancy-content p {
  font-family: var(--second-font);
  text-align: left;
  color: #ffffff;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.vocancy-content a {
  display: flex;
  align-items: center;
}

.vocancy-content a p {
  padding: calc((10 / var(--curent-size)) * 100vw)
    calc((30 / var(--curent-size)) * 100vw);
  background: #ffd200;
  border-radius: calc((30 / var(--curent-size)) * 100vw);
  font-size: calc((22 / var(--curent-size)) * 100vw);
}

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

.vocancy-wrapper > img {
  width: calc((400 / var(--curent-size)) * 100vw);
  filter: hue-rotate(85deg);
}

.vocancy-data-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.vocancy-data-wrapper .title {
  text-align: left;
}

.vocancy-data-wrapper > p {
  font-family: var(--second-font);
  text-align: left;
  color: #ffffff;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}

.vocancy-data-wrapper > p span {
  color: #ffd200;
}

.voc-items {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.voc-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: #1c1e22;
  padding: calc((30 / var(--curent-size)) * 100vw);
  position: relative;
  width: calc((520 / var(--curent-size)) * 100vw);
  height: calc((280 / var(--curent-size)) * 100vw);
  border-radius: calc((10 / var(--curent-size)) * 100vw);
  margin-top: calc((60 / var(--curent-size)) * 100vw);
  counter-increment: count;
}

.voc-item:after {
  content: counter(count);
  position: absolute;
  top: calc((30 / var(--curent-size)) * 100vw);
  left: calc((30 / var(--curent-size)) * 100vw);
  font-family: var(--main-font);
  font-size: calc((60 / var(--curent-size)) * 100vw);
  color: #fff;
  line-height: 100%;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.5;
}

.voc-item p {
  font-family: var(--second-font);
  font-size: calc((28 / var(--curent-size)) * 100vw);
  color: #fff;
  line-height: 100%;
  font-weight: 400;
  line-height: 140%;
}

.voc-item img {
  position: absolute;
  top: calc((30 / var(--curent-size)) * 100vw);
  right: calc((30 / var(--curent-size)) * 100vw);
  width: calc((80 / var(--curent-size)) * 100vw);
  filter: hue-rotate(58deg) brightness(2.5);
}

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

.vocancies-item {
  display: flex;
  align-items: flex-start;
  padding: calc((30 / var(--curent-size)) * 100vw);
  background: #1c1e22;
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
  border-radius: calc((20 / var(--curent-size)) * 100vw);
  position: relative;
  height: calc((330 / var(--curent-size)) * 100vw);
  width: calc((720 / var(--curent-size)) * 100vw);
}

.vocancies-item img {
  position: absolute;
  bottom: 0;
  right: calc((40 / var(--curent-size)) * 100vw);
  width: calc((240 / var(--curent-size)) * 100vw);
}

.vocancies-item div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.vocancies-item div p {
  font-family: var(--second-font);
  font-size: calc((32 / var(--curent-size)) * 100vw);
  color: #fff;
  line-height: 100%;
  font-weight: 400;
  line-height: 140%;
}

.vocancies-item div span {
  font-family: var(--main-font);
  font-size: calc((40 / var(--curent-size)) * 100vw);
  color: #fff;
  line-height: 100%;
  font-weight: 400;
  line-height: 140%;
}

.vocancies-item div a {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc((34 / var(--curent-size)) * 100vw);
  font-family: var(--second-font);
  background: #ffbe00;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 500;
  color: #ffffff;
  border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
  height: calc((50 / var(--curent-size)) * 100vw);
  width: calc((240 / var(--curent-size)) * 100vw);
}

.form {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  margin-top: calc((50 / var(--curent-size)) * 100vw);
  flex-wrap: wrap;
}

.form > input {
  width: calc((400 / var(--curent-size)) * 100vw);
  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: calc((1200 / var(--curent-size)) * 100vw);
  gap: calc((10 / var(--curent-size)) * 100vw);
}

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

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

.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;
}

.send-btn-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}

.send-btn-wrapper button {
  width: calc((320 / var(--curent-size)) * 100vw);
  padding: 0 calc((20 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  background: #ffbe00;
  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;
}

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

.send-btn-wrapper img:first-child {
  transform: translateX(20px);
  opacity: 0;
  transition: 0.3s ease;
}

.send-btn-wrapper img:last-child {
  transform: translateX(-20px);
  opacity: 0;
  transition: 0.3s ease;
}

.send-btn-wrapper:hover img:first-child {
  transform: translateX(0);
  opacity: 1;
  transition: 0.3s ease;
}

.send-btn-wrapper:hover img:last-child {
  transform: translateX(0);
  opacity: 1;
  transition: 0.3s ease;
}

.burger-wrapper {
  display: none;
}

.category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.category-title {
  font-family: var(--main-font);
  font-size: calc((55 / var(--curent-size)) * 100vw);
  font-weight: 400;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #ffbe00;
}

.widjet {
  position: fixed;
  bottom: 0;
  right: calc((10 / var(--curent-size)) * 100vw);
  background: linear-gradient(130deg, #ffd200 0%, #5e001a 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((20 / var(--curent-size)) * 100vw);
  text-align: left;
  font-weight: 400;
  color: #fff;
  position: relative;
  line-height: 1;
  z-index: 2;
  font-family: var(--second-font);
}

.widjet img {
  transform-origin: bottom;
  position: absolute;
  bottom: 0;
  left: calc((-30 / var(--curent-size)) * 100vw);
  width: calc((100 / 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((30 / var(--curent-size)) * 100vw);
  right: calc((0 / 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: 400;
  color: #fff;
  position: relative;
  line-height: 1;
  z-index: 2;
  font-family: var(--second-font);
}

.widjet-content span {
  color: #fff;
  font-family: var(--second-font);
  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-family: var(--second-font);
  font-weight: 600;
  font-size: calc((12 / var(--curent-size)) * 100vw);
  line-height: 164%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  margin-top: auto;
}

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

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

.policy-text > h1 {
  color: #fff;
  font-family: var(--main-font);
  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(--second-font);
  font-weight: 400 !important;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  line-height: 164%;
  color: #fff;
}
.policy-text > div ol,
.policy-text > div ul {
  padding-left: 14px;
  font-weight: 400 !important;
}

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

  .container {
    width: calc((355 / var(--curent-size)) * 100vw);
  }
  .header-menu {
    display: none;
  }

  .header-logo img {
    width: calc((90 / var(--curent-size)) * 100vw);
    height: calc((45 / var(--curent-size)) * 100vw);
  }

  .header-nav a img {
    width: calc((30 / var(--curent-size)) * 100vw);
  }

  header {
    padding: calc((4 / var(--curent-size)) * 100vw) 0;
  }

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

  .hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-btns a p {
    width: calc((190 / var(--curent-size)) * 100vw);
    height: calc((40 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

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

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

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

  .hero-wrapper p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    text-align: center;
    margin-top: calc((16 / var(--curent-size)) * 100vw);
  }

  .hero-wrapper > span {
    font-size: calc((13 / var(--curent-size)) * 100vw);
    margin-bottom: calc((10 / var(--curent-size)) * 100vw);
    border: 1px solid #ffd200;
  }

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

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

  .stock-slide {
    height: calc((400 / var(--curent-size)) * 100vw);
    padding: calc((20 / var(--curent-size)) * 100vw);
    border-radius: calc((20 / var(--curent-size)) * 100vw);
    overflow: hidden;
  }

  .stock-data p {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .stock-data span {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .sub-title {
    text-align: center;
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .master-item {
    width: 100%;
    height: calc((450 / var(--curent-size)) * 100vw);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: calc((20 / var(--curent-size)) * 100vw);
    border-radius: calc((20 / var(--curent-size)) * 100vw);
    overflow: hidden;
    border: calc((1 / var(--curent-size)) * 100vw) solid #ffffff34;
    transition: 0.3s ease;
  }

  .masters-items {
    margin-top: calc((0 / var(--curent-size)) * 100vw);
  }

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

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

  .master-data ul li p {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .master-data ul {
    display: flex;
    align-items: flex-start;
    width: 90%;
    gap: calc((30 / var(--curent-size)) * 100vw);
    margin: calc((20 / var(--curent-size)) * 100vw) 0;
    list-style: none;
    justify-content: space-between;
  }

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

  .masters-navs a {
    background: #ffbe00;
    font-size: calc((16 / var(--curent-size)) * 100vw);
    height: calc((40 / var(--curent-size)) * 100vw);
    width: calc((151 / var(--curent-size)) * 100vw);
  }

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

  .btn-all-show a {
    font-size: calc((32 / var(--curent-size)) * 100vw);
  }

  .btn-all-show img:first-child,
  .btn-all-show img:last-child {
    opacity: 1;
    transform: none;
  }

  .btn-all-show {
    gap: 0;
    margin-top: 0;
  }

  .btn-all-show img {
    width: calc((56 / var(--curent-size)) * 100vw) !important;
  }

  .programms-items {
    margin-top: calc((0 / var(--curent-size)) * 100vw);
  }

  .programm-item {
    width: 100%;
    height: calc((420 / var(--curent-size)) * 100vw);
    padding: calc((20 / var(--curent-size)) * 100vw);
  }

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

  .programms-price div img {
    width: calc((16 / var(--curent-size)) * 100vw);
  }

  .programms-price div {
    gap: calc((10 / var(--curent-size)) * 100vw);
    padding: calc((6 / var(--curent-size)) * 100vw)
      calc((15 / var(--curent-size)) * 100vw);
  }

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

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

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

  .programm-nav {
    gap: calc((10 / var(--curent-size)) * 100vw);
    margin-top: calc((10 / var(--curent-size)) * 100vw);
  }

  .programm-nav a {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    height: calc((40 / var(--curent-size)) * 100vw);
    width: calc((151 / var(--curent-size)) * 100vw);
  }

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

  .about-text {
    width: 100%;
  }

  .about-img {
    width: 100%;
    height: calc((350 / var(--curent-size)) * 100vw);
  }

  .about-text > p {
    margin-top: calc((20 / var(--curent-size)) * 100vw);
    text-align: center;
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .about-text > span {
    font-size: calc((26 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }

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

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

  .serf-data {
    flex-direction: column;
    align-items: flex-start;
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

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

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

  .serf-data-text span {
    text-align: center;
    font-size: calc((26 / var(--curent-size)) * 100vw);
  }

  .serf-data-text ul li {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .serf-data-img > img {
    width: 100%;
    height: calc((250 / var(--curent-size)) * 100vw);
  }
  .serf-data-img a p {
    color: #fff;
    font-family: var(--second-font);
    font-size: calc((16 / var(--curent-size)) * 100vw);
    padding: calc((13 / var(--curent-size)) * 100vw)
      calc((21 / var(--curent-size)) * 100vw);
    border-radius: calc((20 / var(--curent-size)) * 100vw);
    background: #ffbe00;
  }

  .serf-data-img a img {
    width: calc((75 / var(--curent-size)) * 100vw);
  }

  .interier-slider {
    width: calc((240 / var(--curent-size)) * 100vw);
    margin-top: calc((70 / var(--curent-size)) * 100vw) !important;
  }

  .inter-slide {
    height: calc((240 / var(--curent-size)) * 100vw);
    width: 100%;
    border-radius: calc((20 / var(--curent-size)) * 100vw);
    overflow: hidden;
    border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
  }

  .contacts-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    flex-shrink: 0;
  }

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

  .contacts-info span {
    font-size: calc((20 / var(--curent-size)) * 100vw);
    margin-bottom: calc((10 / var(--curent-size)) * 100vw);
  }

  .contacts-info p,
  .contacts-info > a {
    font-size: calc((22 / var(--curent-size)) * 100vw);
  }

  .contacts-info span:not(:first-child) {
    margin-top: calc((26 / var(--curent-size)) * 100vw);
  }

  #map {
    width: 100%;
    height: calc((240 / var(--curent-size)) * 100vw);
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

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

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

  .footer-wrapper div p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

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

  header {
    background: #1d1b1be6;
  }

  #nav-toggle {
    display: flex;
  }

  #nav-toggle {
    background: initial;
    height: calc((24 / var(--curent-size)) * 100vw);
    width: calc((38 / var(--curent-size)) * 100vw);
    cursor: pointer;
    border: none;
    z-index: 10;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  #nav-toggle span,
  #nav-toggle span:before,
  #nav-toggle span:after {
    cursor: pointer;
    border-radius: calc((1 / var(--curent-size)) * 100vw);
    height: calc((2 / var(--curent-size)) * 100vw);
    width: calc((35 / var(--curent-size)) * 100vw);
    background: #ffd200;
    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: #fff0;
  }

  #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);
  }

  .burger-wrapper {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1d1b1bef;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    justify-content: flex-end;
    z-index: 99;
    transition: 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }

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

  .burger-content {
    width: 90%;
    padding: calc((80 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    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-end;
    list-style: none;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }

  .burger-menu li a {
    font-family: var(--main-font);
    font-size: calc((32 / var(--curent-size)) * 100vw);
    font-weight: 400;
    letter-spacing: 2.75px;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #ffbe00;
  }

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

  .single-programm-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

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

  .single-programm-wrapper > img {
    width: 100%;
  }

  .single-programm-data {
    width: 100%;
  }

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

  .single-programm-item p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    text-align: justify;
  }

  .single-programm-price div {
    flex-wrap: wrap;
  }

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

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

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

  .single-master-content {
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    gap: calc((30 / var(--curent-size)) * 100vw);
  }

  .single-master-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .master-item > span {
    position: absolute;
    z-index: 1;
    top: calc((14 / var(--curent-size)) * 100vw);
    right: calc((15 / var(--curent-size)) * 100vw);
    font-size: calc((14 / var(--curent-size)) * 100vw);
    font-weight: 500;
    color: #ffffff;
    font-family: var(--second-font);
    padding: calc((6 / var(--curent-size)) * 100vw)
      calc((12 / var(--curent-size)) * 100vw);
    border-radius: calc((8 / var(--curent-size)) * 100vw);
    border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
  }

  .single-master-slider {
    width: 100%;
    height: calc((400 / var(--curent-size)) * 100vw);
  }

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

  .single-master-data > ul li p {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }

  .single-master-data > ul li span {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }

  .single-master-data > ul li {
    width: calc(100% / 2);
  }

  .single-master-data > ul li {
    gap: calc((15 / var(--curent-size)) * 100vw);
  }

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

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

  .single-master-call {
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    gap: calc((20 / var(--curent-size)) * 100vw);
    width: 100%;
  }

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

  .single-master-call > a {
    width: 100%;
  }

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

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

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

  .prog-text p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    color: #fff;
    font-family: var(--second-font);
  }

  .masters-navs-single a {
    font-size: calc((13 / var(--curent-size)) * 100vw);
  }

  .vocancy-wrapper {
    flex-direction: column;
    align-items: center;
  }

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

  .vocancy-wrapper > img {
    width: 46%;
  }

  .vocancy-content p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .vocancy-content p br {
    display: none;
  }

  .vocancy-content a img {
    width: calc((75 / var(--curent-size)) * 100vw);
  }

  .vocancy-content a {
    margin: 0 auto;
  }

  .vocancy-content a p {
    padding: calc((10 / var(--curent-size)) * 100vw)
      calc((30 / var(--curent-size)) * 100vw);
    background: #ffd200;
    border-radius: calc((30 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .vocancy-data-wrapper > p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }

  .vocancy-data-wrapper .title br {
    display: none;
  }

  .voc-item {
    padding: calc((20 / var(--curent-size)) * 100vw);
    width: 100%;
    height: calc((200 / var(--curent-size)) * 100vw);
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }

  .voc-item p {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }

  .voc-item img {
    position: absolute;
    top: calc((20 / var(--curent-size)) * 100vw);
    right: calc((20 / var(--curent-size)) * 100vw);
    width: calc((65 / var(--curent-size)) * 100vw);
  }

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

  .vocancies-item div span {
    margin-top: calc((20 / var(--curent-size)) * 100vw);
    font-size: calc((25 / var(--curent-size)) * 100vw);
  }

  .vocancies-item img {
    position: absolute;
    bottom: 0;
    right: calc((0 / var(--curent-size)) * 100vw);
    width: calc((150 / var(--curent-size)) * 100vw);
  }

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

  .vocancies-item {
    display: flex;
    align-items: flex-start;
    padding: calc((20 / var(--curent-size)) * 100vw);
    background: #1c1e22;
    border: calc((1 / var(--curent-size)) * 100vw) solid #ffbe00;
    border-radius: calc((20 / var(--curent-size)) * 100vw);
    position: relative;
    height: calc((235 / var(--curent-size)) * 100vw);
    width: calc((720 / var(--curent-size)) * 100vw);
  }

  .vocancies-item div a {
    border-radius: calc((34 / var(--curent-size)) * 100vw);
    font-size: calc((14 / var(--curent-size)) * 100vw);

    height: calc((40 / var(--curent-size)) * 100vw);
    width: calc((175 / var(--curent-size)) * 100vw);
  }

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

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

  .form > input {
    width: 100%;
    height: calc((50 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .send-btn-wrapper {
    width: 100%;
  }

  .send-btn-wrapper button {
    width: 100%;
    height: calc((50 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }

  .send-btn-wrapper img {
    display: none;
  }

  .widjet {
    width: calc((180 / var(--curent-size)) * 100vw);
    height: calc((40 / var(--curent-size)) * 100vw);
    padding-right: calc((20 / var(--curent-size)) * 100vw);
  }

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

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

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

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

/* Performance stability additions */
#map {
  min-height: 400px;
}
#map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
img {
  max-width: 100%;
}
@media all and (max-width: 768px) {
  #hero:after,
  #about:before {
    filter: blur(90px);
  }
  #map {
    min-height: 240px;
  }
}
