@font-face {
  font-family: "Raleway";
  font-display: swap;
  src: url("../fonts/Raleway-Regular.woff") format("woff"), url("../fonts/Raleway-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  font-display: swap;
  src: url("../fonts/Raleway-Light.woff") format("woff"), url("../fonts/Raleway-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  font-display: swap;
  src: url("../fonts/Raleway-SemiBold.woff") format("woff"), url("../fonts/Raleway-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay";
  font-display: swap;
  src: url("../fonts/ClashDisplay-Light.woff") format("woff"), url("../fonts/ClashDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay";
  font-display: swap;
  src: url("../fonts/ClashDisplay-Regular.woff") format("woff"), url("../fonts/ClashDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

body,
body * {
  margin: 0;
  padding: 0;
  vertical-align: top;
  box-sizing: border-box;
}

html {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 400;
  scroll-behavior: smooth;
  color: #6C6666;
}

h1 {
  font-size: 3.65em;
  color: #1A2E42;
  font-family: 'ClashDisplay';
  font-weight: 300;
}

h2 {
  font-size: 2.3em;
  color: #1A2E42;
  font-family: 'ClashDisplay';
  font-weight: 400;
}

h3 {
  font-size: 1.75em;
  color: #1A2E42;
  font-family: 'ClashDisplay';
  font-weight: 300;
}

h4 {
  font-size: 1.5em;
  color: #1A2E42;
  font-family: 'ClashDisplay';
  font-weight: 400;
}

h5 {
  font-size: 1.25em;
  color: #1A2E42;
  font-weight: 600;
}

h6 {
  font-size: 1em;
  font-weight: 400;
  color: #1A2E42;
  font-family: 'ClashDisplay';
}

body.modalIsOpen {
  overflow-y: hidden;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

p span {
  font-weight: 600;
}

p.blue {
  color: #1A2E42;
}

a {
  text-decoration: none;
  font-size: 0.85em;
  font-weight: 300;
  color: #0D1721;
}

header {
  width: 100%;
  height: 100px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

header .desktop-header-links-wrapper {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 12fr 5fr;
  gap: 30px;
  height: 100%;
  align-items: center;
}

header .desktop-header-links-wrapper .logo-block {
  text-align: center;
}

header .desktop-header-links-wrapper .logo-block img {
  width: 200px;
}

header .desktop-header-links-wrapper ul.links-list {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
}

header .desktop-header-links-wrapper .registration-link-wrapper {
  text-align: center;
}

header .desktop-header-links-wrapper .registration-link-wrapper a#desktop-registration-for-consultation {
  background-color: #C6D5E4;
  color: #1A2E42;
  font-weight: 600;
  padding: 15px;
  border-radius: 15px;
}

section.index-hero {
  width: 85%;
  margin: 0 auto;
  margin-top: 100px;
  height: 750px;
  border-radius: 55px;
  overflow: hidden;
}

section.index-hero .hero-background {
  width: 100%;
  height: 100%;
  background-image: url("../img/banner.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

section.index-hero .hero-background .hero-info-wrapper {
  width: 45%;
  height: 100%;
  padding: 20px 0 20px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.index-hero .hero-background .hero-info-wrapper .paragraph-wrapper {
  margin: 40px 0;
}

section.index-hero .hero-background .hero-info-wrapper .paragraph-wrapper p {
  color: #1A2E42;
  font-size: 1.15em;
}

section.index-hero .hero-background .hero-info-wrapper .hero-link-wrapper {
  margin-top: 20px;
}

section.index-hero .hero-background .hero-info-wrapper .hero-link-wrapper a {
  background-color: #1A2E42;
  color: #fff;
  padding: 20px 50px;
  font-family: 'ClashDisplay';
  font-weight: 400;
  border-radius: 20px;
  font-size: 1em;
}

section.why-matters-not-late {
  width: 85%;
  margin: 0 auto;
  padding: 50px 0;
}

section.why-matters-not-late .matters-not-late-block {
  width: 82%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-auto-rows: 450px;
  gap: 20px;
}

section.why-matters-not-late .matters-not-late-block .info-side {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.why-matters-not-late .matters-not-late-block .info-side p {
  padding-top: 20px;
}

 .screenshot-side {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

 .screenshot-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: none;
}
 .screenshot-side svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section.why-matters-not-late .afraid-restore-teeth-block {
  width: 82%;
  margin: 0 auto;
  margin-top: 100px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  gap: 20px;
}

section.why-matters-not-late .afraid-restore-teeth-block .image-side {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

section.why-matters-not-late .afraid-restore-teeth-block .image-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: none;
}

section.why-matters-not-late .afraid-restore-teeth-block .description-side {
  padding-left: 10%;
}

section.why-matters-not-late .afraid-restore-teeth-block .description-side ul.list-block {
  list-style-type: none;
  margin-top: 20px;
}

section.why-matters-not-late .afraid-restore-teeth-block .description-side ul.list-block li {
  padding-left: 40px;
  position: relative;
  margin: 10px 0;
}

section.why-matters-not-late .afraid-restore-teeth-block .description-side ul.list-block li span {
  font-weight: 600;
}

section.why-matters-not-late .afraid-restore-teeth-block .description-side ul.list-block li .list-type {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: #C6D5E4;
}

section.why-matters-not-late .afraid-restore-teeth-block .description-side ul.list-block li .list-type .type-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

section.why-matters-not-late .afraid-restore-teeth-block .description-side ul.list-block li .list-type .type-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section.sedation-what-is-it {
  width: 85%;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
}

section.sedation-what-is-it .sedation-desc-wrapper {
  width: 82%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-auto-rows: 450px;
  gap: 20px;
}

section.sedation-what-is-it .sedation-desc-wrapper .sedation-desc-text-side {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.sedation-what-is-it .sedation-desc-wrapper .sedation-desc-text-side .text-wrapper {
  margin-top: 30px;
}

section.sedation-what-is-it .sedation-desc-wrapper .sedation-desc-text-side .text-wrapper p {
  padding-top: 10px;
}

section.sedation-what-is-it .sedation-desc-wrapper .sedation-screenshot-side {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

section.sedation-what-is-it .sedation-desc-wrapper .sedation-screenshot-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: none;
}

section.sedation-what-is-it .sedation-desc-wrapper .sedation-screenshot-side svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section.sedation-what-is-it .section-include {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

section.how-it-goes {
  width: 85%;
  margin: 0 auto;
  background-color: #E8EEF4;
  border-radius: 50px;
}

section.how-it-goes .how-it-goes-wrapper {
  width: 82%;
  margin: 0 auto;
  padding: 100px 0;
}

section.how-it-goes .title-block p {
  padding-top: 10px;
}

section.how-it-goes .steps-blocks-wrapper {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 20px 1fr 20px 1fr;
  gap: 20px;
}

section.how-it-goes .steps-blocks-wrapper .step-block .image-wrapper {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

section.how-it-goes .steps-blocks-wrapper .step-block .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transform: none;
}

section.how-it-goes .steps-blocks-wrapper .step-block .desc-wrapper {
  margin-top: 10px;
}

section.how-it-goes .steps-blocks-wrapper .step-block .desc-wrapper p {
  padding-top: 20px;
}

section.how-it-goes .steps-blocks-wrapper .arrow-block {
  align-self: center;
  justify-self: center;
}

section.how-much {
  width: 85%;
  margin: 0 auto;
  padding: 100px 0;
}

section.how-much .how-much-wrapper {
  width: 82%;
  margin: 0 auto;
}

section.how-much .how-much-wrapper .title-block p {
  padding-top: 20px;
}

section.how-much .prices-blocks-wrapper {
  margin-top: 40px;
}

section.how-much .prices-blocks-wrapper .one-price-block {
  margin-top: 20px;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-head {
  width: 100%;
  padding: 30px 5%;
  background-color: #E8EEF4;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 60px;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-head .plus-wrapper {
  width: 60px;
  height: 60px;
  background-color: #1A2E42;
  border-radius: 50%;
  position: relative;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-head .plus-wrapper .vertical-dash {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 35%;
  background-color: #fff;
  border-radius: 1px;
  transition: .7s all;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-head .plus-wrapper .horizontal-dash {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 35%;
  background-color: #fff;
  border-radius: 1px;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-head .plus-wrapper.active .vertical-dash {
  transform: translate(-50%, -50%) rotate(90deg);
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body {
  background-color: #F5F9FC;
  margin-top: -20px;
  padding: 75px 5%;
  position: relative;
  z-index: 1;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  display: none;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body.active {
  display: block;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .title-wrapper {
  text-align: center;
}

 .implantation-info-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  grid-auto-rows: 260px;
  align-items: center;
  margin-top: 40px;
}

 .implantation-info-wrapper .info-desc-side .info-title {
  font-weight: 600;
  font-size: 1.25em;
}

 .implantation-info-wrapper .info-desc-side ul {
  margin-top: 20px;
  list-style-type: none;
}

 .implantation-info-wrapper .info-desc-side ul li span {
  font-weight: 600;
}

 .info-screenshot-side {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

 .info-screenshot-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: none;
}

 .info-screenshot-side svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .logo-wrapper {
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 20px;
  height: 100px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  text-align: center;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .logo-wrapper img {
  width: 70%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .price-size {
  background-color: #E8EEF4;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  padding: 30px 10px;
  text-align: center;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  min-height: 220px;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .price-size.unset {
  min-height: unset;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .price-size .price-name {
  font-size: 1.25em;
  padding-top: 20px;
  position: relative;
  z-index: 3;
  color: #1A2E42;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .price-size .price-size-size {
  font-size: 1.25em;
  padding-top: 15px;
  font-weight: 600;
  color: #1A2E42;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .price-size .old-price {
  font-size: 1.25em;
  padding-top: 20px;
  position: relative;
  z-index: 3;
  color: #770d0d;
  text-decoration: line-through;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .price-size .old-price span {
  font-weight: 600;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .price-size .price-now {
  font-size: 1.25em;
  padding-top: 20px;
  position: relative;
  z-index: 3;
  color: #1A2E42;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .price-size .price-now span {
  font-weight: 600;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .price-size .save-money {
  font-size: 1em;
  padding-top: 10px;
  position: relative;
  z-index: 3;
  color: #1A2E42;
  font-weight: 600;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body p.txt-after-table {
  padding-top: 10px;
  padding-left: 20px;
  color: #1A2E42;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .registration-link-wrapper {
  margin-top: 50px;
  text-align: center;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .registration-link-wrapper .link-block {
  margin-top: 40px;
}

section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .registration-link-wrapper .link-block a {
  color: #fff;
  font-family: 'ClashDisplay';
  font-weight: 400;
  background-color: #1A2E42;
  padding: 15px 50px;
  border-radius: 20px;
}

section.doctors-performing-procedure {
  width: 85%;
  margin: 0 auto;
  position: relative;
}

section.doctors-performing-procedure .doctors-list-wrapper {
  width: 82%;
  margin: 0 auto;
  padding: 100px 0;
}

section.doctors-performing-procedure .doctors-list-wrapper .doctors-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

section.doctors-performing-procedure .doctors-list-wrapper .doctors-list .doctor-block .image-wrapper {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

section.doctors-performing-procedure .doctors-list-wrapper .doctors-list .doctor-block .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transform: none;
}

section.doctors-performing-procedure .doctors-list-wrapper .doctors-list .doctor-block .doctor-name-block {
  padding: 20px 0;
  position: relative;
  min-height: 120px;
}

section.doctors-performing-procedure .doctors-list-wrapper .doctors-list .doctor-block .doctor-name-block p {
  padding-top: 10px;
}

section.doctors-performing-procedure .doctors-list-wrapper .doctors-list .doctor-block .doctor-name-block:after {
  position: absolute;
  content: '';
  width: 20%;
  height: 2px;
  border-radius: 1px;
  background-color: #1A2E42;
  left: 0;
  bottom: 0;
}

section.doctors-performing-procedure .doctors-list-wrapper .doctors-list .doctor-block .doctor-info-block {
  margin-top: 20px;
}

section.doctors-performing-procedure .doctor-section-include {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

section.registration-form {
  width: 85%;
  margin: 0 auto;
  background-color: #E8EEF4;
  border-radius: 50px;
}

section.registration-form .registration-form-wrapper {
  width: 82%;
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

section.registration-form .registration-form-wrapper .phone-registration-side .link-block {
  margin-top: 50px;
}

section.registration-form .registration-form-wrapper .phone-registration-side .link-block a {
  font-family: 'ClashDisplay';
  font-weight: 400;
  font-size: 1.5em;
}

section.registration-form .registration-form-wrapper .internet-registration-form form {
  margin-top: 50px;
}

section.registration-form .registration-form-wrapper .internet-registration-form form .one-form {
  width: 70%;
}

section.registration-form .registration-form-wrapper .internet-registration-form form .one-form:not(:first-of-type) {
  margin-top: 20px;
  margin-bottom: 50px;
}

section.registration-form .registration-form-wrapper .internet-registration-form form .one-form input {
  width: 100%;
  background-color: unset;
  border: none;
  border-bottom: 1px solid #6C6666;
  padding: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #1A2E42;
}

section.registration-form .registration-form-wrapper .internet-registration-form form .one-form input.error {
  background-color: rgba(255, 0, 0, 0.2);
}

section.registration-form .registration-form-wrapper .internet-registration-form form .select-form {
  margin-top: 20px;
  width: 60%;
  display: flex;
  flex-direction: column;
}

section.registration-form .registration-form-wrapper .internet-registration-form form .select-form select {
  margin-top: 10px;
  background-color: #fff;
  padding: 10px 25px;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #1A2E42;
  border-radius: 20px;
}

section.registration-form .registration-form-wrapper .internet-registration-form form .submit-block {
  margin-top: 50px;
}

section.registration-form .registration-form-wrapper .internet-registration-form form .submit-block button {
  background-color: #1A2E42;
  padding: 15px 40px;
  border: none;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
}

section.registration-form .registration-form-wrapper .internet-registration-form form #registration-error-box {
  padding: 10px 0;
  font-style: italic;
  color: red;
}

section.registration-form .registration-form-wrapper .internet-registration-form form .status {
  padding: 10px 0;
  font-style: italic;
  color: #1A2E42;
  font-weight: 600;
}

footer {
  margin-top: 75px;
  background-color: #E8EEF4;
}

footer .footer-info-wrapper {
  width: 85%;
  margin: 0 auto;
  padding: 50px 0;
}

footer .footer-info-wrapper .top-footer-side {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 3fr;
  gap: 20px;
}

footer .footer-info-wrapper .top-footer-side .logo-side .logo-wrapper {
  width: 60%;
  min-width: 175px;
}

footer .footer-info-wrapper .top-footer-side .logo-side .logo-wrapper img {
  width: 100%;
}

footer .footer-info-wrapper .top-footer-side .logo-side p {
  width: 70%;
  padding-top: 30px;
}

footer .footer-info-wrapper .top-footer-side .contacts-side ul.contacts-list {
  margin-top: 30px;
  list-style-type: none;
}

footer .footer-info-wrapper .top-footer-side .contacts-side ul.contacts-list li {
  margin: 7px 0;
}

footer .footer-info-wrapper .top-footer-side .contacts-side ul.contacts-list li a {
  font-size: 0.9em;
  color: #1A2E42;
}

footer .footer-info-wrapper .top-footer-side .working-time-side .working-hour-wrapper {
  margin-top: 30px;
}

footer .footer-info-wrapper .top-footer-side .working-time-side .working-hour-wrapper .working-hour-block {
  margin: 7px 0;
  display: grid;
  grid-template-columns: 20% 1fr;
  align-items: center;
  gap: 20px;
}

footer .footer-info-wrapper .top-footer-side .working-time-side .working-hour-wrapper .working-hour-block .days {
  font-size: 0.9em;
  font-weight: 600;
  color: #1A2E42;
}

footer .footer-info-wrapper .top-footer-side .working-time-side .working-hour-wrapper .working-hour-block .hours {
  font-size: 0.9em;
  color: #1A2E42;
}

footer .footer-info-wrapper .top-footer-side .map-side .google-maps-wrapper {
  width: 100%;
  height: 270px;
}

footer .footer-info-wrapper .top-footer-side .map-side .google-maps-wrapper iframe {
  width: 100%;
  height: 100%;
}

footer .footer-info-wrapper .bottom-side {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

footer .footer-info-wrapper .bottom-side p a {
  font-size: 1em;
  color: #6C6666;
  text-decoration: underline;
}

.modal-video {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

.modal-video .modal-dialog {
  margin: 50px auto;
  padding: 20px;
  width: 70%;
  z-index: 200;
}

.modal-video .modal-dialog .modal-close {
  margin-top: -50px;
  margin-right: -5%;
  color: #fff;
  float: right;
  top: 10px;
  cursor: pointer;
  font-size: 50px;
}

@media (max-width: 1470px) {
  html {
    font-size: 18px;
  }
}

@media (max-width: 1320px) {
  header .desktop-header-links-wrapper {
    width: 90%;
  }

  section.index-hero {
    width: 90%;
  }

  section.why-matters-not-late {
    width: 90%;
  }

  section.sedation-what-is-it {
    width: 90%;
  }

  section.how-it-goes {
    width: 90%;
  }

  section.how-much {
    width: 90%;
  }

  section.doctors-performing-procedure {
    width: 90%;
  }

  section.registration-form {
    width: 90%;
  }

  footer .footer-info-wrapper {
    width: 90%;
  }
}

@media (max-width: 1240px) {
  header .desktop-header-links-wrapper {
    grid-template-columns: 3fr 12fr 5fr;
  }

  header .desktop-header-links-wrapper .logo-block img {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: 17px;
  }
}

@media (max-width: 1080px) {
  header .desktop-header-links-wrapper {
    display: flex;
    justify-content: space-between;
  }

  header .desktop-header-links-wrapper .logo-block img {
    width: 200px;
  }

  header .desktop-header-links-wrapper ul.links-list {
    display: none;
  }

  header .desktop-header-links-wrapper .registration-link-wrapper a#desktop-registration-for-consultation {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  section.why-matters-not-late .matters-not-late-block .info-side {
    width: 100%;
  }

  section.sedation-what-is-it .sedation-desc-wrapper .sedation-desc-text-side {
    width: 100%;
  }
}

@media (max-width: 1070px) {
  section.doctors-performing-procedure .doctors-list-wrapper .doctors-list .doctor-block .image-wrapper {
    height: 350px;
  }
}

@media (max-width: 1054px) {
  section.index-hero .hero-background .hero-info-wrapper {
    padding: 20px 0 20px 2%;
  }
}

@media (max-width: 1024px) {
  header .desktop-header-links-wrapper {
    width: 92%;
  }

  section.index-hero {
    width: 92%;
  }

  section.why-matters-not-late {
    width: 92%;
  }

  section.why-matters-not-late {
    padding: 25px 0;
  }

  section.why-matters-not-late .matters-not-late-block {
    width: 85%;
  }

  section.why-matters-not-late .afraid-restore-teeth-block {
    width: 85%;
  }

  section.why-matters-not-late .afraid-restore-teeth-block {
    margin-top: 30px;
  }

  section.sedation-what-is-it {
    width: 92%;
  }

  section.sedation-what-is-it {
    padding: 25px 0;
  }

  section.sedation-what-is-it .sedation-desc-wrapper {
    width: 85%;
  }

  section.how-it-goes {
    width: 92%;
  }

  section.how-it-goes .how-it-goes-wrapper {
    width: 85%;
  }

  section.how-it-goes .how-it-goes-wrapper {
    padding: 25px 0;
  }

  section.how-much {
    width: 92%;
  }

  section.how-much {
    padding: 25px 0;
  }

  section.how-much .how-much-wrapper {
    width: 85%;
  }

  section.how-much .prices-blocks-wrapper .one-price-block .price-block-body {
    padding: 45px 3%;
  }

  section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper {
    margin-top: 25px;
  }

  section.doctors-performing-procedure {
    width: 92%;
  }

  section.doctors-performing-procedure .doctors-list-wrapper {
    width: 85%;
  }

  section.doctors-performing-procedure .doctors-list-wrapper {
    padding: 45px 0;
  }

  section.doctors-performing-procedure .doctors-list-wrapper .doctors-list {
    gap: 10px;
  }

  section.registration-form {
    width: 92%;
  }

  section.registration-form .registration-form-wrapper {
    width: 85%;
  }

  section.registration-form .registration-form-wrapper {
    gap: 20px;
    padding: 25px 0;
  }

  section.registration-form .registration-form-wrapper .internet-registration-form form .one-form {
    width: 100%;
  }

  section.registration-form .registration-form-wrapper .internet-registration-form form .select-form {
    width: 100%;
  }

  footer .footer-info-wrapper {
    width: 92%;
  }

  footer .footer-info-wrapper {
    padding: 25px 0;
  }

  footer .footer-info-wrapper .top-footer-side {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  footer .footer-info-wrapper .top-footer-side .logo-side p {
    width: 100%;
  }
}

@media (max-width: 1014px) {
  section.index-hero .hero-background .hero-info-wrapper {
    width: 40%;
  }
}

@media (max-width: 1000px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 970px) {
  section.index-hero .hero-background .hero-info-wrapper {
    width: 35%;
  }
}

@media (max-width: 960px) {
  section.how-it-goes .steps-blocks-wrapper .step-block .image-wrapper {
    height: 175px;
  }
}

@media (max-width: 900px) {
  section.doctors-performing-procedure .doctors-list-wrapper .doctors-list .doctor-block .image-wrapper {
    height: 250px;
  }
}

@media (max-width: 880px) {
  section.why-matters-not-late .matters-not-late-block {
    grid-auto-rows: 350px;
  }
}

@media (max-width: 860px) {
  section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .logo-wrapper {
    height: 75px;
  }
}

@media (max-width: 800px) {
  section.why-matters-not-late .afraid-restore-teeth-block {
    grid-template-columns: 1fr;
  }

  section.why-matters-not-late .afraid-restore-teeth-block .image-side {
    height: 320px;
  }

  section.why-matters-not-late .afraid-restore-teeth-block .description-side {
    padding-left: 0;
  }

  section.sedation-what-is-it .sedation-desc-wrapper {
    grid-template-columns: 1fr;
    grid-auto-rows: unset;
  }

  section.sedation-what-is-it .sedation-desc-wrapper .sedation-desc-text-side .text-wrapper {
    margin-top: 10px;
  }

  section.sedation-what-is-it .sedation-desc-wrapper .sedation-screenshot-side {
    height: 350px;
  }
}

@media (max-width: 790px) {
  section.index-hero .hero-background {
    background-image: url("../img/banner-mobile.jpg");
    background-position: center;
    background-attachment: unset;
  }

  section.index-hero .hero-background .hero-info-wrapper {
    width: 100%;
    height: unset;
    padding: 20px 2% 0 2%;
  }

  section.index-hero .hero-background .hero-info-wrapper h1 {
    font-size: 3em;
  }

  section.index-hero .hero-background .hero-info-wrapper .paragraph-wrapper {
    margin: 20px 0;
  }

  section.index-hero .hero-background .hero-info-wrapper .paragraph-wrapper p {
    font-size: 1em;
  }

  section.index-hero .hero-background .hero-info-wrapper .hero-link-wrapper a {
    padding: 10px 35px;
  }
}

@media (max-width: 780px) {
  .implantation-info-wrapper {
    grid-auto-rows: 200px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  header .desktop-header-links-wrapper {
    width: 94%;
  }

  section.index-hero {
    width: 94%;
  }

  section.why-matters-not-late {
    width: 94%;
  }

  section.why-matters-not-late .matters-not-late-block {
    width: 90%;
  }

  section.why-matters-not-late .afraid-restore-teeth-block {
    width: 90%;
  }

  section.sedation-what-is-it {
    width: 94%;
  }

  section.sedation-what-is-it .sedation-desc-wrapper {
    width: 90%;
  }

  section.how-it-goes {
    width: 94%;
  }

  section.how-it-goes .how-it-goes-wrapper {
    width: 90%;
  }

  section.how-much {
    width: 94%;
  }

  section.how-much .how-much-wrapper {
    width: 90%;
  }

  section.doctors-performing-procedure {
    width: 94%;
  }

  section.doctors-performing-procedure .doctors-list-wrapper {
    width: 90%;
  }

  section.registration-form {
    width: 94%;
  }

  section.registration-form .registration-form-wrapper {
    width: 90%;
  }

  footer .footer-info-wrapper {
    width: 94%;
  }
}

@media (max-width: 750px) {
  html {
    font-size: 15px;
  }

  section.how-much .prices-blocks-wrapper .one-price-block .price-block-head {
    padding: 15px 2%;
    grid-template-columns: 1fr 40px;
  }

  section.how-much .prices-blocks-wrapper .one-price-block .price-block-head .plus-wrapper {
    width: 40px;
    height: 40px;
  }

  section.how-much .prices-blocks-wrapper .one-price-block .price-block-head .plus-wrapper .vertical-dash {
    height: 60%;
  }

  section.how-much .prices-blocks-wrapper .one-price-block .price-block-head .plus-wrapper .horizontal-dash {
    width: 60%;
  }
}

@media (max-width: 680px) {
  section.index-hero {
    border-radius: 20px;
  }

  section.how-it-goes {
    border-radius: 20px;
  }

  section.doctors-performing-procedure .doctors-list-wrapper .doctors-list {
    grid-template-columns: 1fr;
  }

  section.doctors-performing-procedure .doctors-list-wrapper .doctors-list .doctor-block .image-wrapper {
    height: 350px;
  }

  section.doctors-performing-procedure .doctors-list-wrapper .doctors-list .doctor-block .doctor-name-block {
    min-height: unset;
  }

  section.registration-form {
    border-radius: 20px;
  }

  section.registration-form .registration-form-wrapper {
    grid-template-columns: 1fr;
  }

  section.registration-form .registration-form-wrapper .phone-registration-side .link-block {
    margin-top: 10px;
  }

  section.registration-form .registration-form-wrapper .internet-registration-form form {
    margin-top: 10px;
  }

  section.registration-form .registration-form-wrapper .internet-registration-form form .one-form:not(:first-of-type) {
    margin-top: 10px;
    margin-bottom: 25px;
  }
}

@media (max-width: 650px) {
  section.how-it-goes .steps-blocks-wrapper {
    grid-template-columns: 1fr;
  }

  section.how-it-goes .steps-blocks-wrapper .step-block .image-wrapper {
    height: 300px;
  }

  section.how-it-goes .steps-blocks-wrapper .arrow-block svg {
    transform: rotate(90deg);
  }
}

@media (max-width: 580px) {
  footer .footer-info-wrapper .top-footer-side .logo-side {
    grid-column: 1/3;
  }

  footer .footer-info-wrapper .top-footer-side .map-side {
    grid-column: 1/3;
  }
}

@media (max-width: 530px) {
  .implantation-info-wrapper {
    grid-template-columns: 1fr;
    grid-auto-rows: unset;
  }

   .info-screenshot-side {
    height: 250px;
  }
}

@media (max-width: 520px) {
  section.why-matters-not-late .matters-not-late-block {
    grid-template-columns: 1fr;
    grid-auto-rows: unset;
  }

  /*-section.why-matters-not-late .matters-not-late-block .screenshot-side {
    height: 300px;
  }*/

  section.sedation-what-is-it .sedation-desc-wrapper .sedation-screenshot-side {
    height: 300px;
  }

  section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper {
    grid-template-columns: 1fr;
  }

  section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .logo-wrapper {
    height: 90px;
  }

  section.how-much .prices-blocks-wrapper .one-price-block .price-block-body .implants-prices-wrapper .implant-block .price-size {
    padding: 10px;
    min-height: unset;
  }
}

@media (max-width: 480px) {
  header .desktop-header-links-wrapper {
    width: 96%;
  }

  header .desktop-header-links-wrapper .logo-block img {
    width: 150px;
  }

  section.index-hero {
    width: 96%;
  }

  section.why-matters-not-late {
    width: 96%;
  }

  section.why-matters-not-late .matters-not-late-block {
    width: 95%;
  }

  section.why-matters-not-late .afraid-restore-teeth-block {
    width: 95%;
  }

  section.sedation-what-is-it {
    width: 96%;
  }

  section.sedation-what-is-it .sedation-desc-wrapper {
    width: 95%;
  }

  section.how-it-goes {
    width: 96%;
  }

  section.how-it-goes .how-it-goes-wrapper {
    width: 95%;
  }

  section.how-much {
    width: 96%;
  }

  section.how-much .how-much-wrapper {
    width: 95%;
  }

  section.doctors-performing-procedure {
    width: 96%;
  }

  section.doctors-performing-procedure .doctors-list-wrapper {
    width: 95%;
  }

  section.registration-form {
    width: 96%;
  }

  section.registration-form .registration-form-wrapper {
    width: 95%;
  }

  footer .footer-info-wrapper {
    width: 96%;
  }
}

@media (max-width: 440px) {
  section.doctors-performing-procedure .doctors-list-wrapper .doctors-list .doctor-block .image-wrapper {
    height: 250px;
  }
}

@media (max-width: 420px) {
  section.index-hero .hero-background .hero-info-wrapper .paragraph-wrapper {
    margin: 10px 0;
  }

  section.index-hero .hero-background .hero-info-wrapper .hero-link-wrapper {
    margin-top: 10px;
  }
}

@media (max-width: 380px) {
  header .desktop-header-links-wrapper .registration-link-wrapper a#desktop-registration-for-consultation {
    padding: 8px;
  }

  .info-screenshot-side {
    height: 175px;
  }
}

@media (max-width: 360px) {
  header .desktop-header-links-wrapper .registration-link-wrapper {
    display: none;
  }
}