*,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  background-color: #b0f6ff50;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-style: italic;
}

*::before,
*::after {
  padding: 0;
  margin: 0;
}
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.wh100 {
  height: 100%;
  width: 100%;
}
.pointer {
  cursor: pointer;
}
.reset__link {
  text-decoration: none;
  color: black;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
a:focus {
  outline: none;
}
/* ---------  Шапка  ----------  */
.header {
  z-index: 100;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: white;
  box-shadow: 0px 20px 8px 0px rgba(34, 60, 80, 0.2);
  width: 100%;
  height: 80px;
  font-size: 15px;
}

.header__inner {
  display: flex;
  align-items: center;
  height: 80px;
}
.header__item {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 0 15px;
  height: 100%;
  width: 100%;
}
.phone__and__mail {
  display: flex;
  height: 100%;
}

/*             Вскрывающееся меню           */
.menu__fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.747);
  z-index: 9;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  transition: 0.7s;
}
.hidden__menu::before {
  content: "";
  position: fixed;
  transform: translate(50%, -50%) scale(0);
  top: 0;
  right: 0;
  width: 180vw;
  height: 170vh;
  border-radius: 50%;
  background-color: #00c9ff4a;
  z-index: 99;
  transition: 0.5s;
  cursor: pointer;
}
.hidden__menu::after {
  content: "";
  position: fixed;
  transform: translate(50%, -50%) scale(0);
  top: 0;
  right: 0;
  width: 175vw;
  height: 155vh;
  border-radius: 50%;
  background-color: #00aeff;
  z-index: 999;
  transition: 0.7s;
  cursor: pointer;
}
.menu__fade.openMenu {
  visibility: visible;
  opacity: 1;
}
.hidden__menu.openMenu::after {
  transform: translate(50%, -50%) scale(1);
}
.hidden__menu.openMenu::before {
  transform: translate(50%, -50%) scale(1);
}
.close__menu {
  position: fixed;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 100%);
  transition: 0.9s all cubic-bezier(0.42, 1.04, 0.62, 1.69);
  z-index: 999;
  width: 70px;
  height: 70px;
  cursor: pointer;
}
.close__menu.openMenu {
  transform: translate(50%, -50%);
}

.menu__list {
  z-index: 9999;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translate(150%, 0);
  transition: 1.2s all cubic-bezier(0.31, 0.315, 0.16, 1.405);
  right: 0;
  top: 0;
  margin: 40px 30px 40px 0;
  visibility: hidden;
  opacity: 0;
  width: 60vw;
}

.menu__list.openMenu {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}
.list__icon {
  width: 90px;
  height: 90px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu__item {
  background: #04fffb;
  background: -webkit-linear-gradient(bottom, #04fffb, #fdfffe);
  background: -moz-linear-gradient(bottom, #04fffb, #fdfffe);
  background: linear-gradient(to top, #61fffc, #fdfffe);
  padding: 10px 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 45px;
  margin-bottom: 25px;

  font-size: 22px;
}
.current__site {
  background: #04fffb;
  background: -webkit-linear-gradient(bottom, #0d01ff, #65dbff);
  background: -moz-linear-gradient(bottom, #0d01ff, #65dbff);

  background: linear-gradient(to top, #0d01ff, #65dbff);
  color: white;
}

/*    Иконки    */
.hidden__menu {
  display: none;
}
.contact__icon {
  margin-left: 10px;
  width: 25px;
  height: 25px;
}
.header_icon {
  width: 70px;
  height: 70px;
  padding: 0;
  margin-right: 15px;
}
.header__icon {
  width: 70px;
  height: 70px;
}
.special__border {
  border-right: 1px solid;
  border-image: linear-gradient(
      180deg,
      rgba(0, 108, 255, 1) 0%,
      rgb(0, 204, 255) 50%,
      rgba(255, 255, 255, 1) 100%
    )
    1;
}
/*   Выбранный отдел    */
.selected__section {
  background-color: rgba(0, 225, 255, 0.247);
  transition: 0.7s;
}
/*      Градиентная грань     */
.vertical__gradient {
  border-right: 1px solid;
  border-image: linear-gradient(
      180deg,
      rgba(0, 108, 255, 1) 0%,
      rgb(0, 204, 255) 50%,
      rgba(255, 255, 255, 1) 100%
    )
    1;
}
.horizontal__gradient {
  border-bottom: 1px solid;
  border-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgb(0, 204, 255) 25%,
      rgba(0, 108, 255, 1) 50%,
      rgb(0, 204, 255) 75%,
      rgba(255, 255, 255, 1) 100%
    )
    1;
}

/*  Выделение раздела при наведении  */
.selected__sect {
  transition: 0.5s;
}
/*   Номер телефона и почта   */
.contacts__link {
  display: flex;
  text-decoration: none;
  color: black;
  font-family: "Noto Serif", serif;
  cursor: pointer;
}

/*    Меню услуг   */
.services {
  position: relative;
}
.services__menu {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 85px;
  left: 0;
  border: 1px solid rgba(0, 38, 255, 0.39);
  border-radius: 25px;
  background-color: white;
}
.services__item {
  padding: 20px;
  transition: 0.3s;
}
.services__item:hover {
  color: #00aeff;
}
/*      Окно контактов      */

.contacts__fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.849);
  z-index: 999;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.contacts__info {
  z-index: 9999;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  max-width: 700px;
  width: calc(50% - 16px);
  padding: 20px 40px;
  background-color: white;
  transition: all 0.8s ease;
  opacity: 0;
  visibility: hidden;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  border-radius: 15px;
  text-align: center;
}

.contacts__Peter {
  width: 100%;
  height: 100%;
  padding-bottom: 15px;
  border-bottom: 2px solid;
  border-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgb(0, 204, 255) 25%,
      rgba(0, 108, 255, 1) 50%,
      rgb(0, 204, 255) 75%,
      rgba(255, 255, 255, 1) 100%
    )
    1;
}
.Peter__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}
.note {
  color: rgb(6, 71, 146);
  margin-bottom: 25px;
}
.contacts__name {
  margin-bottom: 25px;
}

.share__container {
  margin-top: 20px;
}
.share {
  display: flex;
  justify-content: center;
  align-items: center;
}
.share__box {
  transition: 0.6s;
  width: 40px;
  height: 40px;
  margin: 5px;
}
.Omsk__header {
  font-size: 22px;
  margin: 20px 0;
}
.offer {
  display: flex;
  align-items: center;
  text-align: start;
  margin-bottom: 20px;
}
.offer img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.Omsk__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
.close__contacts {
  cursor: pointer;
  position: fixed;
  right: 8px;
  top: 8px;
}

/*    Заметка  о  выезде    */
.city {
  position: relative;
}
.city__note {
  position: absolute;
  top: 65px;
  left: 0;
  border: 2px solid rgb(0, 183, 255);
  border-radius: 25px;
  background-color: rgb(241, 255, 254);
  padding: 7px 7px;
  opacity: 0;
  visibility: hidden;
  transition: 0.7s;
}

.open {
  visibility: visible;
  opacity: 1;
}

/*             Описание           */

.description {
  max-width: 1100px;
  margin: 120px auto 50px;
  background-color: white;
  border: 1px solid rgba(54, 158, 255, 0.781);
  border-radius: 100px 15px 100px 15px;
  box-shadow: 22px 24px 7px 4px rgba(34, 60, 80, 0.2);
}
.description__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding: 20px 0;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 16%,
      rgba(0, 108, 255, 1) 48%,
      rgba(255, 255, 255, 1) 90%
    )
    1;
}
.description__text {
  max-width: 980px;
  margin: 20px auto 0;
  line-height: 130%;
}
p {
  margin-bottom: 15px;
}
.privilege {
  max-width: 980px;
  margin: 30px auto 0;
}
.privilege__header {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}
.privilege__item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.radio {
  width: 23px;
  height: 23px;
  margin-right: 10px;
}

/*           Фото    и   видео         */

.photo__video {
  max-width: 1100px;
  margin: 0 auto;
  background-color: white;
  border: 1px solid rgba(54, 158, 255, 0.781);
  border-radius: 15px;
  box-shadow: 22px 24px 7px 4px rgba(34, 60, 80, 0.2);
}
.photo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  margin: 20px 0;
  border-bottom: 2px solid;
  border-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 16%,
      rgba(0, 108, 255, 1) 48%,
      rgba(255, 255, 255, 1) 90%
    )
    1;
}
.photo__item {
  width: 330px;
  height: 230px;
  margin-bottom: 40px;
  border-radius: 15px;
  border: 1px solid rgba(128, 128, 128, 0.336);
  overflow: hidden;
  transition: 0.7s;
  cursor: pointer;
  box-shadow: 1px 6px 27px 0px rgba(0, 0, 0, 0.671);
}
.photo__item:hover {
  transform: scale(1.2);
}
.photo__fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.849);
  z-index: 999;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resizeImg {
  width: 90%;
  height: auto;
  z-index: 99999;
}
.video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}
.video iframe {
  width: 850px;
  height: 500px;
  border-radius: 15px;
}

/*                Форма              */
.form__section {
  background-color: white;
  margin: 50px auto 50px;
  border: 1px solid rgba(54, 158, 255, 0.781);
  border-radius: 100px 15px 100px 15px;
  box-shadow: 22px 24px 7px 4px rgba(34, 60, 80, 0.2);
  max-width: 1100px;
}

.hidden_adress {
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.8s;
  z-index: 10;
}
.form {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 0;
  user-select: none;
}
.wrapper {
  position: relative;
}

.form__button._sending {
  background: url("./assets/images/icons/loading.gif") center / 50px no-repeat;
}
.form__title {
  font-size: 30px;
  font-style: italic;
  padding-bottom: 30px;
  text-align: center;
}
.form__note {
  text-align: center;
  font-size: 16px;
  color: rgba(59, 59, 59, 0.842);
  margin-bottom: 20px;
}
.form__item {
  margin-bottom: 20px;
}
.form__label {
  font-size: 20px;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}
.form__input {
  height: 50px;
  padding: 0 20px;
  border-radius: 25px;
  width: 100%;
  font-size: 17px;
  font-style: italic;
  border: 2px solid #00ffe1;
  cursor: pointer;
}
.form__input:focus {
  box-shadow: 0 0 15px rgb(0, 60, 255);
  transition: 0.4s;
}
.hidden__req {
  display: none;
  color: red;
  font-weight: bold;
  font-style: italic;
  padding-bottom: 20px;
}
.form__input._error {
  box-shadow: 0 0 15px red;
}
textarea.form__input {
  min-height: 120px;
  resize: vertical;
  padding: 10px 20px;
}

.options__item {
  margin-bottom: 10px;
}
.options__input {
  display: none;
}
.options__label {
  display: flex;
  font-size: 18px;
  font-style: italic;
  line-height: 140%;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.options__label > span {
  cursor: pointer;
}
.options__input:checked + .options__label::after {
  transform: scale(1);
}
.options__label::before {
  content: "";
  align-self: flex-start;
  margin-right: 10px;
  flex: 0 0 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid black;
  border-radius: 50%;
}
.options__label::after {
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 12px;
  height: 12px;
  background-color: #60e7ff;
  border-radius: 50%;
  transform: scale(0);
}

.file {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.file__title {
  font-size: 18px;
  font-style: italic;
  font-weight: bold;
  margin-top: 40px;
}

.file__item {
  position: relative;
  display: flex;
}
.achtung {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  color: red;
}
.file__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 100%;
  opacity: 0;
  font-size: 0;
  cursor: pointer;
}
.file__button {
  display: inline-flex;
  width: 140px;
  min-height: 40px;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  background-color: hsla(187, 100%, 88%, 0.582);
  padding: 10px 15px;
  border: 1px solid rgba(0, 157, 185, 0.719);
  cursor: pointer;
  transition: 0.7s;
}

.file__preview {
  display: flex;
  flex-wrap: wrap;

  padding: 10px 0 0 0;
}
.file__preview img {
  margin: 8px;
  max-height: 100px;
  border: 1px solid rgba(128, 128, 128, 0.514);
  border-radius: 15px;
}
.form * {
  outline: none;
}
.form__button {
  width: 200px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  border-radius: 40px;
  background-color: rgb(203, 255, 251);
  border: 1px solid rgb(0, 157, 185);
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 5px rgba(0, 217, 255, 0.438);
  letter-spacing: 1px;
  position: relative;
  top: 0;
  transition: 0.8s;
}
.sended {
  text-align: center;
  width: 200px;
  display: none;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  border-radius: 40px;
  background-color: #2de2fa;
  border: 1px solid rgb(0, 157, 185);
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  box-shadow: 0 8px 5px #070c0f;
  letter-spacing: 1px;
}
.captcha {
  padding: 0 0 20px 0;
}

.content {
  margin-bottom: 50px;
}

.attention {
  margin: 40px 20px 20px;
  font-style: italic;
  color: rgb(218, 0, 0);
  font-weight: bold;
  font-size: 20px;
}
.attention__item {
  padding: 10px 40px;
  text-align: center;
}

/*            Кнопка скролла         */
#arrowTop > img {
  width: 50px;
  height: 50px;
  transition: 0.7s;
  opacity: 0.9;
}
#arrowTop {
  position: fixed;
  bottom: 10px;
  left: 10px;
  cursor: pointer;
}

/*                        Адаптивная верстка                  */

/*         Разрешение 1200px         */
@media screen and (max-width: 1200px) {
  .phone__and__mail {
    flex-direction: column;
    margin-right: 20px;
    border-right: 1px solid;
    border-image: linear-gradient(
        180deg,
        rgba(0, 108, 255, 1) 0%,
        rgb(0, 204, 255) 50%,
        rgba(255, 255, 255, 1) 100%
      )
      1;
  }
  .special__border {
    border: none;
    padding-bottom: 3px;
  }
  .contacts__info {
    top: 5%;
    width: 80%;
  }
  .description {
    max-width: 1000px;
  }
  .description__inner {
    width: 90%;
    margin: 0 auto;
  }
  .photo__item {
    width: 300px;
    height: 200px;
  }
  .privilege__text {
    width: 90%;
  }
}

/*         Разрешение 1024px         */
@media screen and (max-width: 1024px) {
  .header {
    height: 75px;
  }
  .header__inner {
    height: 75px;
  }
  .header__item {
    padding: 0 7px;
  }
  .phone__and__mail {
    border: none;
  }
  .header__icon {
    width: 65px;
    height: 65px;
    padding: 0;
  }
  .header_icon {
    width: 65px;
    height: 65px;
    padding: 0;
    margin: 0 10px;
  }
  .description {
    margin-top: 100px;
  }
  .photo {
    grid-template-columns: 1fr 1fr;
  }
  .photo__item {
    width: 90%;
    height: 260px;
  }
  .video iframe {
    width: 85%;
    height: 460px;
  }
}

/*       Разрешение 850px     */
@media screen and (max-width: 850px) {
  .header__item {
    padding: 0 15px;
  }
  .city {
    display: none;
  }

  .header_icon {
    padding: 0;
  }
  .description__header {
    margin-top: 35px;
    padding: 10px 0;
    font-size: 15px;
  }
  .photo__item {
    height: 230px;
  }
  .video iframe {
    height: 380px;
  }
  .form {
    width: 90%;
  }
  .resizeImg {
    width: 100%;
  }
}

/*         Разрешение 650px    */
@media screen and (max-width: 650px) {
  .header__inner {
    justify-content: space-evenly;
  }
  .header__item {
    justify-content: start;

    padding: 0;
  }
  .header_icon {
    margin-left: 5px;
  }
  .hidden__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }
  .menu__icon {
    width: 40px;
    height: 40px;
  }
  .selected__sect {
    display: none;
  }
  .selected__section {
    display: none;
  }
  .phone__and__mail {
    flex-direction: row;
    margin: 0;
  }
  .telephone {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid;
    border-image: linear-gradient(
        180deg,
        rgba(0, 108, 255, 1) 0%,
        rgb(0, 204, 255) 50%,
        rgba(255, 255, 255, 1) 100%
      )
      1;
  }
  .contacts__info {
    width: 90%;
  }
  .description__header {
    text-align: center;
  }
  .photo {
    grid-template-columns: 1fr;
  }
  .photo__item {
    width: 80%;
    height: 300px;
  }
  .video iframe {
    width: 95%;
  }
  .form__section {
    border-radius: 15px;
  }
  .form_link {
    margin-bottom: 30px;
  }
}

/*         Разрешение 500px    */
@media screen and (max-width: 500px) {
  .header__inner {
    justify-content: space-evenly;
  }
  .phone__and__mail {
    flex-direction: column;
  }
  .telephone {
    padding: 0;
    margin: 0;
    border-right: none;
    border-bottom: 1px solid;
    border-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgb(0, 204, 255) 25%,
        rgba(0, 108, 255, 1) 50%,
        rgb(0, 204, 255) 75%,
        rgba(255, 255, 255, 1) 100%
      )
      1;
  }
  .special__border {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .offer {
    align-items: start;
  }
  .Peter__item,
  .Omsk__item {
    flex-direction: column;
    padding-bottom: 10px;
  }
  h5 {
    margin-bottom: 5px;
  }
  .description {
    border-radius: 15px;
  }
  h1 {
    font-size: 21px;
  }
  .description__header {
    margin-top: 20px;
  }
  .privilege__item {
    align-items: flex-start;
  }
  .radio {
    margin-top: 2px;
  }
  .photo__item {
    width: 96%;
    height: 250px;
  }
  .video iframe {
    width: 97%;
    height: 260px;
  }
  .form__title {
    font-size: 26px;
    padding-bottom: 20px;
  }
  .form__label {
    font-size: 16px;
  }
  .form__input {
    height: 40px;
  }
  .list__icon {
    display: none;
  }
  .menu__item {
    font-size: 18px;
  }
}
