/*!***********************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-5.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-5.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-5.use[3]!./src/styles/styles.scss ***!
  \***********************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/** Все просто пишем цифры без приписки px */
/* Сюда пишем какой размер у нашего html */
:root {
  --color-white: #fff;
  --color-black: #2f3030;
  --color-black-second: #382a23;
  --color-white-dark: #d9d9d9;
  --color-gray-80: rgba(75, 75, 75, 0.8);
  --color-gray-50: rgba(47, 48, 48, 0.5);
  --color-green-dark: #305a4b;
  --color-green: #45806c;
  --container-width: toRem(1300);
  --container-limitation: toRem(40);
  --section-bottom: toRem(80);
  --padding-scroll: toRem(140);
  --header-size: toRem(100);
  --shadow-main: 0 4px 20px 9px rgba(47, 48, 48, 0.05);
  --effect-transition: all 0.5s;
  --font-size-def: 1px;
}

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

.html-init {
  scroll-padding-top: var(--padding-scroll);
  scroll-behavior: smooth;
  font-size: var(--font-size-def);
  font-size: 0.0625vw;
}
@media screen and (min-width: 1921px) {
  .html-init {
    font-size: 1.25px;
  }
}
@media screen and (max-width: 1366px) {
  .html-init {
    font-size: 0.0732064422vw;
  }
}
@media screen and (max-width: 1280px) {
  .html-init {
    font-size: 0.078125vw;
  }
}
@media screen and (max-width: 850px) {
  .html-init {
    font-size: 0.25vw;
  }
}

.body-init {
  font-family: var(--font-default);
  color: var(--color-black);
  font-size: 16rem;
}
@media screen and (min-width: toRem(851)) {
  .body-init {
    display: flex;
    flex-flow: column;
  }
}
.body-init.body-block {
  overflow: hidden;
}

.html-init,
.body-init {
  scrollbar-gutter: stable;
}

.pict,
.icon {
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

.hide {
  display: none !important;
}

.main-new {
  padding-top: 70px;
}
.main-new h1 {
  margin: 0;
}

.burger {
  background: transparent;
  border: none;
  cursor: pointer;
}
.burger:before, .burger:after, .burger span {
  background: var(--color-black);
  content: "";
  display: block;
  height: 3px;
  border-radius: 3px;
  margin: 6px 0;
  width: 29px;
}
.burger:before, .burger:after {
  margin: 0;
}
.burger-btn {
  display: none;
  height: auto;
  gap: 10px;
  align-items: center;
}
.burger-btn__title {
  font-size: 20px;
  font-weight: 700;
  line-height: var(--font-line-height-main);
}

.footer {
  margin-top: auto;
}

.typo h1,
.typo h2,
.typo h3,
.typo h4,
.typo h5,
.typo h6,
.typo p {
  margin-bottom: 0.5em;
}
.typo ul li,
.typo ol li {
  margin-bottom: 0.5em;
}
.typo table th,
.typo table td {
  padding-bottom: 0.5em;
}
.typo img {
  max-width: 100%;
  height: auto;
}

.btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 0 0.1rem;
  border-radius: 60px;
  color: var(--color-white);
  font-family: var(--font-default, inherit);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
}
.btn_record {
  background: var(--color-green) !important;
  border-radius: 77px !important;
  padding-inline: 25px;
  line-height: 50px;
}
.btn_video {
  border: 1px solid var(--color-green) !important;
  border-radius: 77px !important;
  line-height: 48px;
  color: var(--color-green) !important;
}
@media (hover: hover) {
  .btn_video:hover {
    background: transparent !important;
  }
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr [main] minmax(min(var(--container-width), 100% - 2.5rem), 1fr) [endmain] 1fr;
  margin-inline: 20px;
}
.wrapper section:not(.full-page, .main-right) {
  grid-column: main/endmain;
}

.wrapper-inner {
  max-width: var(--container-width);
  width: calc(100% - var(--container-limitation));
  margin: 0 auto;
}

.full-page {
  grid-column: 1/-1;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.top-space {
  height: var(--header-size);
}
@media screen and (min-width: 1024px) {
  .top-space {
    display: none;
  }
}

.main-right {
  grid-column: main/-1;
  width: calc(100% + 1.125rem);
}
@media screen and (min-width: 768) {
  .main-right {
    width: calc(100% + 3.125rem);
  }
}

.container-cookie-modal {
  /* Переменные для настройки */
  --color-modal-bg: #fff;
  --color-modal-shadow: rgba(0, 0, 0, 0.15);
  --color-modal-text: #000;
  --color-modal-text-link: #01ac6a;
  --color-btn-bg: #01ac6a;
  --color-modal-btn-text: #fff;
  /* ------------------------ */
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--color-modal-bg, inherit);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  max-width: 475px;
  width: 100%;
  box-shadow: 0 0 20.2px -1px var(--color-modal-shadow);
  padding: 30px 40px;
  z-index: 10000000000;
  display: grid;
  gap: 15px;
  color: var(--color-modal-text);
}
.container-cookie-modal__text {
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 130%;
}
.container-cookie-modal__text a {
  color: var(--color-modal-text-link, inherit);
}
.container-cookie-modal__buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.container-cookie-modal__buttons .btn {
  /*flex-grow: 1;*/
  padding: 6px;
  width: 50%;
  min-height: 46px;
  background: var(--color-btn-bg);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-align: center;
  color: var(--color-modal-btn-text, inherit);
  line-height: 100%;
  text-decoration: none;
}

.doctor-details__body {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.doctor-details__block {
  display: flex;
  flex-flow: column;
  gap: 25px;
  box-shadow: var(--shadow-main);
  background: var(--color-white);
  border-radius: 5px;
  overflow: clip;
  padding-bottom: 25px;
  width: min(380px, 100%);
  flex-shrink: 0;
}
.doctor-details__image {
  height: 510px;
}
.doctor-details__widget {
  margin-inline: auto;
  width: 270px;
  height: 85px;
}
.doctor-details__name {
  font-weight: 700;
  font-size: 32px;
  /* line-height: 42px; */
  line-height: 1.3;
  color: var(--color-black);
}
.doctor-details__job {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55556;
  color: var(--color-black-second);
}
.doctor-details__descr {
  display: flex;
  flex-flow: column;
  gap: 40px;
  border-radius: 5px;
  box-shadow: var(--shadow-main);
  background: var(--color-white);
  padding: 40px;
}
.doctor-details__info {
  display: flex;
  flex-flow: column;
  gap: 30px;
  width: 100%;
}
.doctor-details__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 60px;
  width: min(580px, 100%);
}
.doctor-details__item {
  display: grid;
  grid-template-columns: 170px 85px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.doctor-details__item-title, .doctor-details__item-text {
  font-size: 18px;
}
.doctor-details__item-title {
  font-weight: 400;
  color: var(--color-gray-80);
}
.doctor-details__item-text {
  font-weight: 700;
  color: var(--color-green-dark);
}
.doctor-details__footer {
  padding-top: 15px;
  margin-top: 10px;
  border-top: 1px solid var(--color-white-dark);
}
.doctor-details__footer-text {
  font-weight: 400;
  font-size: 14px;
  color: var(--color-gray-50);
}

@media screen and (max-width: 850px) {
  .burger-btn {
    display: block;
  }
  .burger.close {
    position: relative;
  }
  .burger.close span {
    display: none;
  }
  .burger.close:before {
    position: relative;
    transform: rotate(45deg);
    top: 0;
  }
  .burger.close:after {
    position: relative;
    transform: rotate(-45deg);
    bottom: 3px;
  }
  .mob-header {
    display: block;
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 100dvh;
    padding: 180px 20px 0;
    background: linear-gradient(to top, var(--color-white), var(--color-white));
  }
  .mob-header .header-nav {
    display: flex;
    flex-flow: column;
    row-gap: 20px;
    margin-bottom: 80px;
  }
  .mob-header .header-nav__link {
    font-size: 22px;
    font-weight: 600;
  }
  .mob-header .title-link {
    margin-bottom: 46px;
    justify-content: center;
    color: var(--color-red);
    font-size: 20px;
    font-weight: 700;
    line-height: var(--font-line-height-main);
  }
  .mob-header .contacts-block__button {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 850px) {
  .container-cookie-modal {
    width: 100vw;
    margin-inline: calc(-50vw + 50%);
    inset: auto 0 0 0;
  }
  .container-cookie-modal__buttons {
    flex-flow: column;
    align-items: flex-start;
  }
}
