:root {
  --main-font: "Montserrat", sans-serif;
  --yellow: #FDD600;
  --dark: #454545;
  --transition: .25s ease;
}

h1, .h1 h2,
.h2 {
  font-weight: 700;
}

h1, .h1 {
  font-size: 50px;
  line-height: 60px;
}

h2, .h2 {
  font-size: 45px;
  line-height: 55px;
}

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

.page {
  scroll-behavior: smooth;
  scrollbar-color: var(--yellow) var(--dark);
  scrollbar-width: thin;
}

.page__body {
  font-family: var(--main-font);
  font-size: 16px;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #F8F8F8;
}
.page__body::-webkit-scrollbar {
  -webkit-appearance: none;
}
.page__body::-webkit-scrollbar:vertical {
  width: 14px;
}
.page__body::-webkit-scrollbar-thumb {
  background-color: var(--yellow);
  border: 3px solid var(--dark);
  height: 75px;
  border-radius: 10px;
}
.page__body::-webkit-scrollbar-track {
  background: var(--dark);
}

.page-footer {
  margin-top: auto;
}

img {
  max-width: 100%;
  height: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

img, svg, iframe {
  vertical-align: top;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

::-moz-selection {
  background-color: var(--yellow);
  color: #000;
}

::selection {
  background-color: var(--yellow);
  color: #000;
}

.Typewriter__cursor {
  font-weight: 400;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.btn-reset {
  padding: 0;
  margin: 0;
  background: 0;
  border: 0;
  color: inherit;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.link-reset {
  text-decoration: none;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.input-reset {
  padding: 0;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border-radius: 0;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.btn {
  border-radius: 30px;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 22px;
  background-color: var(--yellow);
  cursor: pointer;
  color: var(--dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  border: 3px solid var(--yellow);
  font-weight: 700;
  color: #000;
}
.btn--line {
  background-color: #fff;
  height: 45px;
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
}
.btn--line.active {
  background-color: var(--yellow);
  color: #000;
  pointer-events: none;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease;
}
.btn:hover {
  color: #fff;
}
.btn:hover::after {
  transform: none;
}
.btn--white::after {
  background-color: #fff;
}
.btn--white:hover {
  color: #000;
}
.btn--big {
  height: 60px;
}
.btn--blink::before {
  margin-left: -30px;
  content: "";
  width: 30px;
  height: 300px;
  background: #fff;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  position: absolute;
  left: -40px;
  top: -150px;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  transition: all 0.1s;
  -webkit-animation-name: slideme;
          animation-name: slideme;
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  transform: rotate(45deg);
  z-index: -1;
}
.btn:focus {
  box-shadow: 0 0 0 3px #757575;
  outline: none;
}
.btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.input {
  background-color: #EEEEEE;
  border-radius: 34px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  height: 60px;
  width: 100%;
  transition: var(--transition);
}
.input::-moz-placeholder {
  color: #9D9D9D;
}
.input:-ms-input-placeholder {
  color: #9D9D9D;
}
.input::placeholder {
  color: #9D9D9D;
}
.input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #A28B0D;
}

.radio__btn {
  border-radius: 34px;
  height: 60px;
  width: 100%;
  background: #FFFFFF;
  border: 2px solid #9D9D9D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #9D9D9D;
  cursor: pointer;
  transition: var(--transition);
}
.radio svg {
  margin-top: -1px;
  margin-right: 5px;
}
.radio path {
  transition: var(--transition);
}
.radio input:checked + .radio__btn {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: #000;
}
.radio input:checked + .radio__btn path {
  fill: #000;
}

@-webkit-keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0px;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}

@keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0px;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}
.page-header {
  padding-top: 30px;
  padding-bottom: 30px;
}
.page-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 50;
}

video {
  object-fit: cover;
  height: 100%;
  width: 100%;

  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
}




.screen .container {
  position: relative;
  z-index: 10;
}

.telegram {
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.telegram path {
  transition: var(--transition);
}
.telegram__text {
  margin-left: 10px;
}
.telegram:hover, .telegram:focus {
  color: #6BB8FF;
}
.telegram:hover path, .telegram:focus path {
  fill: #6BB8FF;
}

.phone {
  text-align: center;
}
.phone__days {
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.phone__num {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  transition: var(--transition);
}
.phone__num:hover, .phone__num:focus {
  color: var(--yellow);
}

.lang {
  --width: 49px;
  height: 55px;
  border: 3px solid #282828;
  background-color: #282828;
  border-radius: 43px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lang--uz .lang__link:hover ~ .lang__circle {
  transform: translateX(calc(-1 * var(--width)));
}
.lang--uz .lang__circle {
  left: auto;
  right: 0;
}
.lang__circle {
  content: "";
  position: absolute;
  width: var(--width);
  height: var(--width);
  border: 3px solid var(--yellow);
  background-color: var(--dark);
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: -1;
  transition: var(--transition);
}
.lang__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--width);
  width: var(--width);
  border-radius: 50%;
  color: #fff;
}
.lang__link--current {
  pointer-events: none;
}

.bar {
  display: none;
}
.page-footer {
  background-color: var(--dark);
  padding-top: 60px;
  padding-bottom: 60px;
}
.page-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-footer__menu {
  display: flex;
}
.page-footer__menu li:not(:last-child) {
  margin-right: 40px;
}
.page-footer__menu a {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #BEBEBE;
  text-decoration: none;
  transition: var(--transition);
}
.page-footer__menu a:hover, .page-footer__menu a:focus {
  color: var(--yellow);
}
.page-footer .copyright {
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: #838383;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.page-footer .copyright p {
  margin: 0;
}
.page-footer .copyright a {
  color: var(--yellow);
  text-decoration: none;
}

.screen {
  background: #000000b5;
  color: #fff;
  padding-top: 160px;
  padding-bottom: 200px;
  min-height: calc(100vh - 115px);
  display: flex;
  overflow: hidden;
  position: relative;
}
.screen__title {
  font-weight: 700;
  margin-top: 0;
}
.screen__text {
  margin: 0;
  font-weight: 300;
  font-size: 25px;
  line-height: 30px;
  margin-top: 30px;
}
.screen__btn {
  margin-top: 60px;
  font-weight: 700;
  color: #000;
  padding-left: 40px;
  padding-right: 40px;
  text-transform: uppercase;
}

.pluses {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.pluses__container {
  box-shadow: 0px 4px 10px #E4E2E2;
  background-color: #fff;
  border-radius: 39px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pluses__title {
  position: relative;
  font-weight: 400;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 45px;
}
.pluses__title b {
  font-weight: 700;
}
.pluses__title::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(253, 214, 0, 0.53);
  height: 38px;
  width: 70%;
  border-radius: 2px;
  z-index: -1;
}
.pluses__grid {
  display: grid;
  grid-template-columns: repeat(4, 180px);
  gap: 35px;
  justify-content: space-between;
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.pluses .plus {
  margin: 0;
  text-align: center;
}
.pluses .plus__img {
  margin-bottom: 25px;
}
.pluses .plus__title {
  font-weight: 600;
  line-height: 20px;
  color: #000000;
}

.objects {
  padding-top: 80px;
  padding-bottom: 80px;
}
.objects__title {
  margin-bottom: 45px;
  font-weight: 400;
  text-align: center;
}
.objects__wrap {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 70px 30px;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
}
.objects__btns {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  grid-auto-rows: 45px;
  gap: 15px;
}
.objects__btns .btn {
  padding: 0 10px;
  width: 100%;
  text-align: center;
}
.objects svg {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
.objects svg path {
  fill-opacity: 0.3;
  fill: var(--yellow);
  stroke: black;
  cursor: pointer;
  transition: var(--transition);
}
.objects svg path:hover {
  fill-opacity: 0.85;
}
.objects svg path.active {
  fill-opacity: 1;
}
.objects__info {
  max-width: 300px;
  width: 100%;
}
.objects__box {
  padding: 10px;
  background: #FFFFFF;
  box-shadow: 0px 0px 14px #EEEEEE;
  border-radius: 5px;
  display: none;
}
.objects__box h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}
.objects__box strong {
  font-weight: 500;
  font-size: 20px;
  line-height: 16px;
  color: #000000;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.objects__box strong > span {
  background: #fdd600;
  border-radius: 20px;
  padding: 4px 15px;
  color: #282828;
  display: inline-block;
  margin-top: 8px;
}
.objects__box > span {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  margin-top: 40px;
}
.objects__box p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0;
}
.objects__box p + p {
  margin-top: 20px;
}

#qwiz {
  padding-left: 20px;
  padding-right: 20px;
  display: none;
}

.qwiz {
  padding-top: 80px;
  padding-bottom: 115px;
  margin-left: 50px;
  margin-right: 50px;
}
.qwiz__title {
  margin-bottom: 45px;
  margin-top: 0;
  font-weight: 400;
  text-align: center;
}
.qwiz__title b {
  font-weight: 700;
}
.qwiz__top {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}
.qwiz__progress {
  background-color: #FFFFFF;
  border-radius: 49px;
  overflow: hidden;
  height: 55px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 1;
}
.qwiz__progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--progress);
  background-color: var(--yellow);
  border-radius: 49px;
  transition: 1s ease;
  z-index: -1;
}
.qwiz__steps {
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  flex-shrink: 0;
  margin-left: 20px;
}
.qwiz__steps::first-letter {
  color: var(--yellow);
}
.qwiz__subtitle {
  text-align: center;
  display: block;
}
.qwiz__wrap {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 15px #E3E3E3;
  border-radius: 49px;
  padding-top: 70px;
  padding-bottom: 70px;
  margin-top: 45px;
  margin-left: auto;
  margin-right: auto;
}
.qwiz__wrap.active {
  -webkit-animation: fullWidth 1s ease both;
          animation: fullWidth 1s ease both;
}
.qwiz__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 35px 30px;
}
.qwiz__grid--2 {
  grid-template-columns: repeat(2, 370px);
}
.qwiz__btn {
  font-weight: 700;
  max-width: 370px;
  width: 100%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
.qwiz-item {
  cursor: pointer;
}
.qwiz-item:focus-within .qwiz-item__img, .qwiz-item:focus-visible .qwiz-item__img, .qwiz-item:focus .qwiz-item__img {
  border-color: var(--yellow);
}
.qwiz-item__img {
  border-radius: 15px;
}
.qwiz-item__check {
  --radius: 3px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  transition: var(--transition);
}
.qwiz-item__check:focus-within, .qwiz-item__check:focus-visible, .qwiz-item__check:focus {
  box-shadow: 0 0 0 3px #757575;
}
.qwiz-item__check--circle {
  --radius: 50%;
}
.qwiz-item__input {
  outline: none;
}
.qwiz-item__input:checked + .qwiz-item__field::after {
  transform: scale(1);
}
.qwiz-item__field {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #F3F3F3;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  position: relative;
}
.qwiz-item__field::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -16px;
  margin-left: -16px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: url(../img/check.svg) no-repeat center, var(--yellow);
  transition: var(--transition);
  transform: scale(0);
}
.qwiz-item__title {
  display: block;
  text-align: center;
  margin-top: 10px;
}
.qwiz-step {
  display: none;
}
.qwiz-step.current {
  display: grid;
  -webkit-animation: fadeIn 1s both ease;
          animation: fadeIn 1s both ease;
}
.qwiz__form {
  max-width: 440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 100%;
  gap: 35px;
  position: relative;
}
.qwiz__form .btn {
  width: 100%;
}
.qwiz__status {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background-color: var(--yellow);
  z-index: 2;
  border-radius: 6px;
  text-align: center;
  padding: 50px 30px;
  transition: var(--transition);
  display: none;
}
.qwiz__status svg {
  width: 60px;
  height: 60px;
}
.qwiz__status p {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  margin-top: 25px;
  margin-bottom: 0;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fullWidth {
  from {
    max-width: 100%;
  }
  to {
    max-width: 1170px;
  }
}
@keyframes fullWidth {
  from {
    max-width: 100%;
  }
  to {
    max-width: 1170px;
  }
}
.form {
  padding-top: 90px;
  padding-bottom: 90px;
  background: url(../img/form.jpg) no-repeat center/cover;
}
.form__title {
  font-weight: 400;
  text-align: center;
  color: #FFFFFF;
  margin-top: 0;
}
.form__title b {
  font-weight: 700;
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}
.form__radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form__btn {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-top: 35px;
}

.contacts {
  padding-top: 90px;
  padding-bottom: 90px;
}
.contacts__title {
  font-weight: 400;
  text-align: center;
  margin-bottom: 45px;
  margin-top: 40px;
}
.contacts__title b {
  font-weight: 700;
}
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 35px;
}
.contacts .map {
  height: 340px;
  overflow: hidden;
  border-radius: 15px;
}
.contacts__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.contacts__tel span {
  display: block;
  font-weight: 500;
  font-size: 11px;
  line-height: 12px;
  color: #000000;
  margin-bottom: 5px;
}
.contacts__tel a {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
  transition: var(--transition);
}
.contacts__tel a:hover, .contacts__tel a:focus {
  color: var(--yellow);
}
.contacts__tel .telegram {
  margin-top: 15px;
}
.contacts__tel .telegram path {
  fill: #6BB8FF;
}
.contacts__tel .telegram__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.contacts__item strong {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 15px;
  display: block;
}
.contacts__item p, .contacts__item a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  text-decoration: none;
  color: #111010;
}
.contacts__item a {
  transition: var(--transition);
}
.contacts__item a:hover, .contacts__item a:focus {
  color: var(--yellow);
}

.gallery {
  padding-bottom: 90px;
  scroll-margin-top: 50px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 30px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.35s;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
}
.gallery-item:nth-child(2) {
  grid-row: span 2;
}

#spotlight,
.spl-next,
.spl-prev {
  background-color: var(--dark);
}

@media (max-width: 1199px) {
  h2, .h2 {
    font-size: 36px;
    line-height: 46px;
  }
  .page-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .page-header .btn {
    height: 50px;
  }

  .logo img {
    max-width: 180px;
  }
  .page-footer__menu a {
    font-size: 14px;
  }
  .page-footer__menu li:not(:last-child) {
    margin-right: 25px;
  }
  .objects__wrap {
    flex-wrap: wrap;
  }
  .objects__btns {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    width: 100%;
    gap: 10px;
    order: 1;
    margin-bottom: 30px;
  }
  .objects svg {
    order: 2;
  }
  .objects__info {
    order: 3;
  }
  .qwiz {
    margin-left: 15px;
    margin-right: 15px;
  }
  .qwiz__steps {
    font-size: 30px;
    line-height: 40px;
  }
  .gallery__grid {
    gap: 15px;
  }
}

@media (max-width: 991px) {
  h1, .h1 {
    font-size: 35px;
    line-height: 45px;
  }
  h2, .h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .page-header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .page-header .btn {
    display: none;
  }
  .page-footer__row {
    display: block;
    text-align: center;
  }
  .page-footer__menu {
    display: block;
    margin-top: 50px;
  }
  .page-footer__menu li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-footer .btn {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-footer .copyright {
    display: block;
    text-align: center;
    margin-top: 45px;
  }
  .page-footer .copyright p + p {
    margin-top: 20px;
  }
  .screen {
    height: calc(100vh - 85px);
  }
  .screen__text {
    font-size: 20px;
    line-height: 25px;
  }
  .screen__btn {
    margin-top: 40px;
  }
  .pluses__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .objects svg {
    max-width: 330px;
  }
  .objects__wrap {
    padding: 30px;
  }
  .qwiz__grid {
    gap: 20px;
  }
  .qwiz__grid--2 {
    grid-template-columns: repeat(2, 345px);
  }
  .qwiz__btn {
    max-width: 345px;
  }
  .qwiz__form {
    max-width: 400px;
  }
  .qwiz__form .btn {
    font-size: 18px;
  }
  .qwiz-item__title {
    font-size: 14px;
  }
  .form {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .form__grid {
    gap: 20px;
  }
  .form .radio__btn {
    font-size: 14px;
  }
  .form__btn {
    margin-top: 20px;
  }
  .contacts {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .contacts__grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .contacts__col {
    display: grid;
    gap: 30px;
    text-align: center;
    justify-content: center;
  }
  .gallery__grid {
    gap: 10px;
    grid-template-rows: repeat(2, 200px);
  }
}

@media (max-width: 767px) {
  h1, .h1 {
    font-size: 32px;
    line-height: 36px;
  }
  h2, .h2 {
    font-size: 22px;
    line-height: 28px;
  }
  .page-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .telegram__text {
    display: none;
  }

  .lang {
    --width: 35px;
    height: 45px;
    border-width: 5px;
  }
  .lang__link {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
  }
  .screen {
    height: calc(100vh - 65px);
    text-align: center;
  }
  .screen__text {
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
  }
  .screen__btn {
    margin-left: auto;
    margin-right: auto;
    text-transform: unset;
  }
  .pluses__title::after {
    height: 17px;
    border-radius: 2px;
  }
  .objects {
    padding-top: 0;
    padding-bottom: 0;
  }
  .objects__wrap {
    padding: 35px 15px;
  }
  .objects svg {
    order: 2;
    max-width: 310px;
    margin-bottom: 30px;
  }
  .objects__info {
    max-width: 100%;
  }
  .objects__btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .form {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .form__grid {
    grid-template-columns: 100%;
    gap: 30px;
  }
  .form__btn {
    margin-top: 30px;
    max-width: 100%;
  }
  .form__title {
    margin-bottom: 45px;
  }
  .contacts__tel .telegram__text {
    font-size: 14px;
  }
  .contacts .telegram {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
  .contacts__item strong {
    font-size: 20px;
  }
  .contacts .map {
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 0;
  }
  .contacts__col {
    padding: 0;
  }
  .gallery {
    padding-bottom: 55px;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 150px);
    gap: 8px;
  }
}
.screen__title span {
  background: #fdd600;
  border-radius: 20px;
  padding: 0px 15px;
  color: #282828;
  display: inline-block;
  margin-top: 8px;
}

.screen {
  margin-top: -115px;
  padding-top: 260px;
}

.typeText {
  display: flex;
  margin-top: 70px;
}

.type_img {
  width: 30%;
}

.type_title {
  font-size: 22px;
  font-weight: 600;
  padding-top: 10px;
}

.type_img img {
  width: 70%;
  border-radius: 10px;
}


@media (max-width: 575px) {
  .type_img {
    width: 50%;
  }
  .type_title {
    font-size: 15px;
    font-weight: 600;
    padding-top: 10px;
  }
  .type_img img {
    width: 90%;
    border-radius: 10px;
  }
  .page-header .telegram,
.page-header .phone {
    display: none;
  }

  .bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    width: 100%;
    height: 50px;
    z-index: 10000;
  }
  .bar__link {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
  }
  .bar__link svg {
    margin-right: 10px;
  }
  .bar__link:nth-child(1) {
    background-color: #31B5FF;
    color: #fff;
  }
  .bar__link:nth-child(2) {
    background-color: var(--yellow);
    color: #323232;
  }
  .bar--blink2 {
    position: relative;
    overflow: hidden;
  }
  .bar--blink2::before {
    z-index: 7;
  }
  .pluses {
    margin-top: 0;
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .pluses__title::after {
    height: 17px;
    border-radius: 2px;
  }
  .pluses__container {
    box-shadow: none;
    background-color: transparent;
    padding: 0;
  }
  .pluses__grid {
    gap: 30px;
  }
  .pluses .plus__title {
    font-size: 16px;
  }
  .plus p {
    font-size: 15px;
  }
  .objects__box {
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .qwiz {
    padding-top: 55px;
    padding-bottom: 55px;
    margin-left: 0;
    margin-right: 0;
  }
  .qwiz .container {
    padding-left: 0;
    padding-right: 0;
  }
  .qwiz__title {
    margin-bottom: 16px;
  }
  .qwiz__title br {
    display: none;
  }
  .qwiz__top {
    flex-direction: column-reverse;
  }
  .qwiz__steps {
    margin-left: 0;
    margin-bottom: 16px;
  }
  .qwiz__grid {
    gap: 30px 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .qwiz__grid.qwiz-step--3 .qwiz-item:last-child {
    grid-column: span 2;
  }
  .qwiz__btn {
    max-width: 250px;
  }
  .qwiz__progress {
    border-radius: 0;
  }
  .qwiz__progress::before {
    border-radius: 0;
  }
  .qwiz__wrap {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    background-color: unset;
  }
  .qwiz__subtitle {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .qwiz-item__img {
    border-radius: 0;
    border: 0;
    max-height: 190px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .qwiz__form {
    padding-left: 15px;
    padding-right: 15px;
  }
  .objects__btns {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .lang__link:hover ~ .lang__circle {
    transform: translateX(var(--width));
  }
}