::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #a8a8a8;
}

::-webkit-scrollbar-thumb {
  background: #2b83da;
  border-radius: 0;
}

@font-face {
  font-family: "montserrat-medium";
  src: url(/fonts/MontserratAlternates-Medium.ttf);
}
@font-face {
  font-family: "montserrat-semibold";
  src: url(/fonts/MontserratAlternates-SemiBold.ttf);
}
@font-face {
  font-family: "inter-bold";
  src: url(/fonts/Inter-Bold.otf);
}
@font-face {
  font-family: "inter-medium";
  src: url(/fonts/Inter-Medium.otf);
}
@font-face {
  font-family: "inter-regular";
  src: url(/fonts/Inter-Regular.otf);
}
@font-face {
  font-family: "inter-semibold";
  src: url(/fonts/Inter-SemiBold.otf);
}
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff;
  color: #565656;
  background-image: url(/images/backgrounds/main.jpg);
}

h1 {
  font-size: 64px;
  font-family: "montserrat-medium";
  font-weight: 500;
  line-height: 100%;
}

h2 {
  font-size: 40px;
  line-height: 100%;
}

h3 {
  font-size: 29px;
  font-family: "montserrat-medium";
  font-weight: 500;
}

h4 {
  font-family: "inter-regular";
  font-weight: 400;
  font-size: 20px;
}

h5 {
  font-family: "inter-regular";
  font-size: 15px;
  font-weight: 400;
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.75;
}

span.blue {
  font-weight: bold;
  color: #1668B8;
}
span.bold {
  font-weight: bold;
}
span.promo-s {
  position: relative;
  color: #BCBCBC;
}
span.promo-s::before {
  content: "";
  position: absolute;
  background-color: #FF0000;
  width: 100%;
  height: 2px;
  top: 50%;
}

.app {
  width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

header {
  font-family: "inter-medium";
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 50px;
}
header .navbar {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: "inter-medium";
  font-size: 18px;
  font-weight: 400;
  color: #7d7d7e;
}
header .navbar .item {
  cursor: pointer;
  padding: 10px;
  color: #7d7d7e;
  transition: 0.3s;
  opacity: 1;
}
header .navbar .item :hover {
  opacity: 0.75;
}
header .navbar .item.active {
  color: #414242;
}
header .header-buttons {
  display: flex;
  align-items: center;
  gap: 26px;
}
header .header-buttons .button-flex {
  display: flex;
  align-items: center;
  gap: 18px;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1668B8;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.burger-btn.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}
@media (max-width: 900px) {
  .burger-btn {
    display: flex;
  }
}

.mob-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}
.mob-header.active {
  transform: translateX(0);
}
.mob-header .mob-header-content {
  padding: 30px 25px;
  height: min-content;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mob-header .mob-header-content .mob-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mob-header .mob-header-content .mob-header-top .logo img {
  width: 50px;
}
.mob-header .mob-header-content .mob-header-top .mob-close-btn {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.mob-header .mob-header-content .mob-header-top .mob-close-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #1668B8;
  border-radius: 3px;
}
.mob-header .mob-header-content .mob-header-top .mob-close-btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mob-header .mob-header-content .mob-header-top .mob-close-btn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mob-header .mob-header-content .navbar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.mob-header .mob-header-content .navbar .item {
  font-family: "inter-medium";
  font-size: 20px;
  color: #7d7d7e;
  transition: 0.3s;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}
.mob-header .mob-header-content .navbar .item:hover {
  opacity: 0.75;
}
.mob-header .mob-header-content .navbar .item.active {
  color: #414242;
  font-weight: 600;
}
.mob-header .mob-header-content .mob-header-buttons {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mob-header .mob-header-content .mob-header-buttons .button-flex {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.mob-header .mob-header-content .mob-header-buttons .registration {
  width: 100%;
}
@media (max-width: 900px) {
  .mob-header {
    display: block;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body:has(.mob-header.active)::before {
  opacity: 1;
  visibility: visible;
}

button {
  outline: none;
  border: none;
  transition: 0.3s;
  cursor: pointer;
}
button.registration {
  color: #fff;
  padding: 17px 22px;
  background: #357cc2;
  border-radius: 5px;
  font-family: "montserrat-semibold";
  font-size: 16px;
  transition: 0.3s;
  border: 3px #067EF1 solid;
}
button.registration:hover {
  background: #00488c;
}
button.promo {
  color: #fff;
  padding: 13px 75px;
  background: #FF4C00;
  font-size: 18px;
  border-radius: 12px;
  transition: 0.3s;
  border: 3px #FF4C00 solid;
}
button.promo:hover {
  background: #bb4411;
}
button.icon {
  background: none;
  outline: none;
  border: 1px #235484 solid;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}

section.viewport-fade {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
section.viewport-fade.visible {
  opacity: 1;
}
section.wrapper {
  margin-top: 75px;
}
section.wrapper .wrapper-container .wrapper-item #offer-header {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}
section.wrapper .wrapper-container .wrapper-item #offer-header.fade-out {
  opacity: 0;
}
section.wrapper .wrapper-container .wrapper-item #offer-content {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}
section.wrapper .wrapper-container .wrapper-item #offer-content.fade-out {
  opacity: 0;
}
section.wrapper .wrapper-container .wrapper-item .offer-header h2 {
  font-family: "inter-regular";
  font-size: 40px;
  font-weight: 400;
  color: #727272;
}
section.wrapper .wrapper-container .wrapper-item .offer-header .buttons {
  margin-top: 38px;
  position: relative;
}
section.wrapper .wrapper-container .wrapper-item .offer-header .buttons .price {
  font-family: "montserrat-semibold";
  color: #fff;
  padding: 18px 50px;
  background: #FF4C00;
  border-radius: 12px;
  font-size: 18px;
  z-index: 2;
  height: 61px;
  transition: 0.3s;
  border: 3px #FF4C00 solid;
  position: relative;
}
section.wrapper .wrapper-container .wrapper-item .offer-header .buttons .price:hover {
  background: #bb4411;
}
section.wrapper .wrapper-container .wrapper-item .offer-header .buttons .call {
  font-family: "montserrat-semibold";
  color: #7E7E7E;
  padding: 18px 50px;
  background: none;
  border-top: 1px #BDBDBD solid;
  border-right: 1px #BDBDBD solid;
  border-bottom: 1px #BDBDBD solid;
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  z-index: -1;
  height: 61px;
  margin-left: -12px;
  position: relative;
}
section.wrapper .wrapper-container .wrapper-item .offer-header .buttons .call:hover {
  background: #DEDEDE;
}
section.wrapper .wrapper-container .wrapper-item .offer-header .buttons .call span {
  position: relative;
  right: -5px;
}
section.wrapper .wrapper-container .wrapper-item .offer-content {
  position: relative;
  color: #fff;
}
section.wrapper .wrapper-container .wrapper-item .offer-content img.wrapper-implant {
  position: absolute;
  width: 100px;
  left: -1%;
  top: -7%;
  z-index: 1;
}
section.wrapper .wrapper-container .wrapper-item .offer-content img.wrapper-doctor {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 515px;
}
section.wrapper .wrapper-container .wrapper-item .offer-content .el {
  margin-top: 70px;
  background-image: url(/images/backgrounds/line1.svg), linear-gradient(to right, #1667B6 0%, #2F89E1 50%, #1667B6 100%);
  background-position: center;
  background-size: cover;
  border-radius: 25px 25px 0 25px;
  padding: 60px;
  padding-top: 150px;
  padding-left: 100px;
  position: relative;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  mask: radial-gradient(circle 40px at 70% 0, transparent 0 39px, white 40px), linear-gradient(to right, white calc(70% - 3px), transparent calc(70% - 3px), transparent calc(70% + 3px), white calc(70% + 3px)), radial-gradient(circle 40px at 70% 100%, transparent 0 39px, white 40px);
  mask-composite: intersect;
}
section.wrapper .wrapper-container .wrapper-item .offer-content .el .round {
  position: absolute;
  left: 0;
  top: 9%;
  width: 40%;
}
section.wrapper .wrapper-container .wrapper-item .offer-content .el .round img {
  width: 100%;
}
section.wrapper .wrapper-container .wrapper-item .offer-content h4 {
  max-width: 500px;
  font-family: "inter-regular";
  font-weight: 400;
  font-size: 20px;
}
section.wrapper .wrapper-container .wrapper-item .wrapper-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
section.wrapper .wrapper-container .wrapper-item .wrapper-dots .dot {
  width: 20px;
  height: 8px;
  background: #BEBEBE;
  border-radius: 5px;
  margin-bottom: 25px;
  cursor: pointer;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, border-radius 0.3s ease, margin-right 0.3s ease;
}
section.wrapper .wrapper-container .wrapper-item .wrapper-dots .dot.active {
  background: #1171CE;
  width: 40px;
  border-radius: 20px;
  margin-right: 7px;
}
section.promo {
  margin-top: 125px;
}
section.promo .promo-scroll-container {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  /* scroll container with horizontal scrolling */
}
section.promo .promo-scroll-container .wrapper {
  display: flex;
  gap: 50px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-right: 20px;
  flex: 1;
  padding-bottom: 20px;
}
section.promo .promo-scroll-container .wrapper .item {
  border: 1px #515151 solid;
  padding: 28px;
  border-radius: 10px;
  position: relative;
  width: 440px;
  min-width: 440px;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
section.promo .promo-scroll-container .wrapper .item h3 {
  font-weight: bold;
}
section.promo .promo-scroll-container .wrapper .item h5 {
  margin-top: 50px;
  margin-bottom: 12px;
  font-family: "inter-semibold";
  font-size: 14px;
  font-weight: 400;
}
section.promo .promo-scroll-container .wrapper .item img {
  position: absolute;
  bottom: -50px;
  right: -100px;
}
section.promo .promo-scroll-container {
  /* navigation arrows with position absolute to not affect layout */
}
section.promo .promo-scroll-container .scroll-arrow {
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
  top: 45%;
  transform: translateY(-50%);
  z-index: 5;
}
section.promo .promo-scroll-container .scroll-arrow img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
section.promo .promo-scroll-container .scroll-arrow:disabled, section.promo .promo-scroll-container .scroll-arrow[style*="display: none"] {
  opacity: 0.3;
  cursor: not-allowed;
}
section.promo .promo-scroll-container .scroll-arrow:not(:disabled):hover {
  opacity: 0.8;
}
section.promo .promo-scroll-container .scroll-arrow-left {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
section.promo .promo-scroll-container .scroll-arrow-right {
  right: 0;
}
@media (max-width: 768px) {
  section.promo .promo-scroll-container .scroll-arrow {
    display: none !important;
  }
}
section.adv {
  margin-top: 125px;
}
section.adv .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}
section.adv .header .flex {
  gap: 20px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2;
}
section.adv .header .flex:hover {
  opacity: 0.75;
}
section.adv .header .flex a {
  color: #565656;
}
section.adv .header .flex span {
  font-family: "inter-regular";
  font-weight: 400;
  font-size: 18px;
}
section.adv .grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.adv .grid .flex {
  gap: 20px;
  background-image: url(/images/backgrounds/line3.svg);
  background-position: center;
  background-size: cover;
}
section.adv .grid .flex .content {
  position: relative;
  z-index: -1;
}
section.adv .grid .flex .content.blue {
  background: linear-gradient(to right, #1070CD 0%, #4098ED 50%, #1070CD 100%);
}
section.adv .grid .flex .content img.low_price {
  position: absolute;
  right: 20px;
  bottom: -15px;
}
section.adv .grid .flex .content img.oborudovanie {
  width: 350px;
  position: absolute;
  right: -30px;
  bottom: 0;
}
section.adv .grid .flex .content:first-child {
  width: 35%;
}
section.adv .grid .flex .content:last-child {
  width: 65%;
}
section.adv .grid .content {
  display: flex;
  align-items: center;
  background-color: #4098ED;
  border-radius: 25px;
  padding: 0 70px;
  justify-content: space-between;
  position: relative;
  height: 240px;
  color: #fff;
}
section.adv .grid .content.blue {
  background-image: url(/images/backgrounds/line2.svg), linear-gradient(to right, #1070CD 0%, #4098ED 50%, #1070CD 100%);
  background-position: center;
  background-size: cover;
}
section.adv .grid .content.orange {
  background: linear-gradient(to right, #FF4E02 0%, #FF8C5B 50%, #FF4E02 100%);
}
section.adv .grid .content img.render_1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
section.adv .grid .content h2 {
  font-family: "montserrat-semibold";
  margin-top: -10%;
}
section.video {
  margin-top: 125px;
}
section.video .container {
  display: flex;
  gap: 20px;
}
section.video .container .video-content {
  width: 55%;
  height: 300px;
  background-color: #0481F9;
  border-radius: 5px;
}
section.video .container .content {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.video .container .content h4 {
  font-size: 23px;
  font-family: "montserrat-medium";
  font-weight: 400;
}
section.video .container .content .double-buttons {
  display: flex;
  align-items: center;
  font-size: 15px;
}
section.video .container .content .double-buttons .record {
  color: #fff;
  padding: 10px 58px;
  border-radius: 10px;
  height: 48px;
  z-index: 2;
  cursor: pointer;
  font-family: "montserrat-semibold";
  font-size: 15px;
  background: #FF4C00;
  border: 3px #FF4C00 solid;
  transition: 0.3s;
  position: relative;
}
section.video .container .content .double-buttons .record:hover {
  background: #bb4411;
}
section.video .container .content .double-buttons .call {
  color: #7E7E7E;
  background: none;
  padding: 14px 58px;
  border-radius: 0 10px 10px 0;
  border-top: 1px #BDBDBD solid;
  border-right: 1px #BDBDBD solid;
  border-bottom: 1px #BDBDBD solid;
  height: 48px;
  margin-left: -15px;
  z-index: -1;
  cursor: pointer;
  font-family: "montserrat-semibold";
  font-size: 15px;
  position: relative;
}
section.video .container .content .double-buttons .call:hover {
  background: #DEDEDE;
}
section.video .container .content .double-buttons .call span {
  position: relative;
  right: -5px;
}
section.why {
  margin-top: 125px;
}
section.why .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}
section.why .header .flex {
  gap: 20px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2;
}
section.why .header .flex:hover {
  opacity: 0.75;
}
section.why .header .flex a {
  color: #565656;
}
section.why .header .flex span {
  font-family: "inter-regular";
  font-size: 18px;
}
section.why .grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #fff;
}
section.why .grid .flex {
  gap: 30px;
}
section.why .grid .flex .content {
  position: relative;
  border-radius: 25px;
  padding: 55px;
}
section.why .grid .flex .content.left {
  width: 45%;
  background-image: url(/images/why-we/render_1.png);
  background-size: cover;
}
section.why .grid .flex .content.right {
  width: 45%;
  background-image: url(/images/why-we/render_2.png);
  background-size: cover;
}
section.why .grid .flex .content.orange {
  width: 55%;
  background: url(/images/backgrounds/15.png), linear-gradient(to right, #FF5107 0%, #FF8855 50%, #FF5309 100%);
  background-size: cover;
}
section.why .grid .flex .content.orange img.implant {
  position: absolute;
  right: -50px;
  top: 5px;
  width: 100px;
}
section.why .grid .flex .content.blue {
  width: 55%;
  background-image: url(/images/backgrounds/star.svg);
  background: url(/images/backgrounds/5.png), linear-gradient(to right, #1070CD 0%, #4098ED 50%, #1070CD 100%);
  background-size: cover;
}
section.why .grid .flex .content.blue img.implant {
  position: absolute;
  left: -50px;
  top: 5px;
  width: 100px;
}
section.why .grid .flex .content img.star {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
}
section.why .grid .flex .content h2 {
  margin-bottom: 20px;
  font-family: "montserrat-semibold";
  font-size: 39px;
}
section.why .grid .flex .content a {
  color: #fff;
  font-family: "montserrat-semibold";
  font-size: 18px;
}
section.filials {
  display: flex;
  gap: 20px;
  margin-bottom: 200px;
}
section.filials .map {
  width: 100%;
}
section.filials .contacts {
  flex-basis: 65%;
  background: url(/images/backgrounds/line4.svg), linear-gradient(to right, #1372CF 0%, #3690E6 50%, #1372CF 100%);
  background-size: cover;
  background-position: top;
  padding: 25px;
  border-radius: 22px 22px 0 0;
  color: #fff;
  padding-top: 45px;
}
section.filials .contacts h2 {
  font-family: "montserrat-semibold";
  font-size: 36px;
  margin-bottom: 25px;
  padding: 0 20px;
}
section.filials .contacts h3 {
  font-family: "montserrat-medium";
  font-size: 18px;
  margin-bottom: 20px;
  padding: 0 20px;
}
section.filials .contacts .list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 150px;
  padding: 0 20px;
}
section.filials .contacts .list .item {
  display: flex;
  align-items: center;
  gap: 20px;
}
section.filials .contacts .list .item .white-phone {
  width: 32px;
  height: 32px;
  border: 1px #fff solid;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.filials .contacts .list .item a {
  font-family: "montserrat-semibold";
  font-size: 18px;
}
section.filials .contacts .adress-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
section.filials .contacts .adress-content .item {
  background-color: #fff;
  padding: 12px 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
section.filials .contacts .adress-content .item .header {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.filials .contacts .adress-content .item .header .status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: green;
}
section.filials .contacts .adress-content .item .header .phone {
  width: 32px;
  height: 32px;
  border: 1px #235484 solid;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.filials .contacts .adress-content .item .header h4 {
  font-family: "montserrat-semibold";
  font-size: 18px;
  color: #3A658F;
}
section.filials .contacts .adress-content .item .flex {
  font-family: "montserrat-semibold";
  font-size: 12px;
  color: #3A658F;
  gap: 15px;
}
section.filials .contacts .adress-content .item .flex .register {
  background: #0481F9;
  border-radius: 5px;
  padding: 10px 35px;
  color: #fff;
  border: 3px #0481F9 solid;
  transition: 0.3s;
}
section.filials .contacts .adress-content .item .flex .register:hover {
  background: #00488c;
}
section.price .header h4 {
  margin-top: 15px;
  color: #aeaeae;
}
section.price .price-content {
  margin-top: 50px;
}
section.price .price-content .header {
  background: linear-gradient(to right, #1272CE 0%, #3C95EA 100%);
  border-radius: 10px;
  color: #fff;
  font-size: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
}
section.price .price-content .header .logo {
  width: 42px;
  height: 42px;
}
section.price .price-content .header .arrow {
  width: 20px;
  height: 20px;
  background: red;
}
section.price .price-content .item-content {
  background-color: #F6F6F6;
}
section.price .price-content .item-content .item {
  padding: 15px 0;
  margin: auto 40px;
  font-size: 20px;
  font-family: "inter-regular";
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px #348FE5 dashed;
}

footer {
  margin-top: 175px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .grid {
  display: flex;
  gap: 100px;
}
footer .grid .item {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
footer .grid .item .flex {
  cursor: pointer;
  gap: 20px;
  transition: 0.3s;
}
footer .grid .item .flex:hover {
  opacity: 0.75;
}
footer .grid .item .flex a {
  color: #565656;
}
footer .grid .item .flex span {
  font-family: "inter-regular";
}
footer .grid .item .flex span.bold {
  font-family: "inter-bold";
}
@media (max-width: 1024px) {
  footer {
    margin-top: 120px;
    padding: 0 20px;
  }
  footer .logo img {
    width: 50px;
    height: 50px;
  }
  footer .grid {
    gap: 60px;
  }
  footer .grid .item {
    gap: 15px;
  }
  footer .grid .item .flex {
    gap: 15px;
  }
  footer .grid .item .flex span {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  footer {
    margin-top: 80px;
    flex-direction: column;
    gap: 30px;
    padding: 0 16px;
  }
  footer .logo img {
    width: 40px;
    height: 40px;
  }
  footer .grid {
    gap: 40px;
    flex-direction: column;
    width: 100%;
  }
  footer .grid .item {
    gap: 12px;
  }
  footer .grid .item .flex {
    gap: 12px;
  }
  footer .grid .item .flex span {
    font-size: 13px;
  }
}

.nav-menu .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
}
.nav-menu .header p, .nav-menu .header a {
  font-family: "inter-medium";
  color: #aeaeae;
}
.nav-menu .header p .dark, .nav-menu .header a .dark {
  color: #737373 !important;
}
.nav-menu .header .flex {
  gap: 20px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2;
}
.nav-menu .header .flex:hover {
  opacity: 0.75;
}
.nav-menu .header .flex a {
  color: #565656;
}
.nav-menu .header .flex span {
  font-family: "inter-regular";
  font-weight: 400;
  font-size: 18px;
}

.viewport-enter {
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
}

.scroll-arrow-left img, .scroll-arrow-right img {
  background: #067EF1;
  padding: 10px;
  border-radius: 0 15px 15px 0;
  border: 3px #067EF1 solid;
  transition: 0.3s;
}
.scroll-arrow-left img:hover, .scroll-arrow-right img:hover {
  background: #07335D;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 1350px) {
  .app {
    margin: 0 5%;
    width: 90%;
  }
  .price-content img {
    width: 4vw !important;
  }
  section.wrapper .offer-header h1 {
    font-size: 4vw;
  }
  section.wrapper .offer-header h2 {
    font-size: 3vw !important;
  }
  section.wrapper .offer-header .buttons .price {
    font-size: 1.6vw !important;
    width: 19.5vw;
    height: 4.5vw !important;
    padding: unset !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.wrapper .offer-header .buttons .call {
    font-size: 1.6vw !important;
    width: 19.5vw;
    height: 4.5vw !important;
    padding: unset !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.wrapper .offer-content .wrapper-doctor {
    width: 39vw !important;
  }
  section.wrapper .offer-content .wrapper-implant {
    width: 8vw !important;
    top: -5% !important;
  }
  section.wrapper .offer-content .el {
    padding-left: 7vw !important;
  }
  section.wrapper .offer-content .el h4 {
    font-size: 1.54vw !important;
    width: 40vw !important;
  }
  section.wrapper .offer-content .el .round h5 {
    font-size: 1.2vw !important;
  }
  section.promo h3 {
    font-size: 2.3vw !important;
  }
  section.promo .promo-scroll-container {
    margin-top: 3vw !important;
  }
  section.promo .promo-scroll-container .wrapper {
    gap: 3vw !important;
  }
  section.promo .promo-scroll-container .wrapper .item {
    min-width: 32vw !important;
    width: 32vw !important;
  }
  section.promo .promo-scroll-container .wrapper .item h5 {
    font-size: 13px !important;
  }
  section.promo .promo-scroll-container .wrapper .item .promo {
    width: 11.7vw !important;
    height: 3.41vw !important;
    font-size: 1.4vw !important;
    padding: unset !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.adv .header {
    margin-bottom: 3vw !important;
  }
  section.adv .header h3 {
    font-size: 2.3vw !important;
  }
  section.adv .grid .flex h2 {
    font-size: 2.96vw;
  }
  section.adv .grid .flex .low_price {
    width: 40% !important;
  }
  section.adv .grid .flex .content {
    height: 18vw !important;
    padding: 0 3vw !important;
  }
  section.adv .grid .content h3 {
    font-size: 2vw !important;
  }
  section.adv .grid .content .render_1 {
    width: 39% !important;
  }
  section.adv .grid .content.blue {
    height: 18vw !important;
  }
  section.adv .grid .content.orange img {
    width: 47% !important;
  }
  section.video .video-content {
    height: 22vw !important;
  }
  section.video .content h4 {
    font-size: 1.8vw !important;
  }
  section.video .content .double-buttons .record {
    font-size: 1.35vw !important;
    height: 4.6vw !important;
    padding: 1vw 4vw !important;
  }
  section.video .content .double-buttons .call {
    font-size: 1.35vw !important;
    height: 4.6vw !important;
    padding: 1vw 4vw !important;
  }
  section.why .header {
    margin-bottom: 3vw !important;
  }
  section.why .header h3 {
    font-size: 2.3vw !important;
  }
  section.why .grid {
    gap: 2vw !important;
  }
  section.why .grid .flex {
    gap: 2vw !important;
  }
  section.why .grid .flex .content {
    padding: 4vw;
  }
  section.why .grid .flex .content a {
    font-size: 1.4vw !important;
  }
  section.why .grid .flex .content h2 {
    font-size: 2.4vw !important;
  }
  section.why .grid .flex .content.left {
    height: 9vw !important;
  }
  section.why .grid .flex .content.right {
    height: 9vw !important;
  }
  section.why .grid .flex .content.orange {
    height: 9vw !important;
    margin-bottom: 2% !important;
  }
  section.why .grid .flex .content.orange .implant {
    width: 7.4vw !important;
    right: -8% !important;
  }
  section.why .grid .flex .content.blue {
    height: 9vw !important;
    margin-bottom: 2% !important;
  }
  section.why .grid .flex .content.blue .implant {
    width: 7.4vw !important;
    left: -8% !important;
  }
  section.why .grid .flex .content.blue .star {
    width: 13vw !important;
  }
  section.filials {
    margin-bottom: 15vw !important;
  }
  section.filials .contacts h2 {
    font-size: 2.7vw !important;
  }
  section.filials .contacts h3 {
    font-size: 1.4vw !important;
  }
  section.filials .contacts .list .item a {
    font-size: 1.4vw !important;
  }
  section.filials .contacts .adress-content {
    gap: 2vw !important;
  }
  section.filials .contacts .adress-content .item {
    padding: 1.5vw !important;
  }
  section.filials .contacts .adress-content .item .header h4 {
    font-size: 1.4vw !important;
  }
  section.filials .contacts .adress-content .item .flex .register {
    font-size: 1.2vw !important;
  }
  section.price .header {
    margin-bottom: 3vw !important;
    padding: 1.5vw !important;
  }
  section.price .header h3 {
    font-size: 2.3vw !important;
  }
}
@media (max-width: 1100px) {
  .app {
    margin: 0 3%;
    width: 94%;
  }
  header .logo img {
    width: 50px;
  }
  header .navbar {
    gap: 1vw !important;
  }
  button.registration {
    font-size: 1.5vw !important;
  }
  section.wrapper .offer-header h1 {
    font-size: 4vw;
  }
  section.wrapper .offer-header h2 {
    font-size: 3vw !important;
  }
  section.wrapper .offer-header .buttons .price {
    font-size: 1.6vw !important;
    width: 19.5vw;
    height: 4.5vw !important;
    padding: unset !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.wrapper .offer-header .buttons .call {
    font-size: 1.6vw !important;
    width: 19.5vw;
    height: 4.5vw !important;
    padding: unset !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.wrapper .offer-content .wrapper-doctor {
    width: 39vw !important;
  }
  section.wrapper .offer-content .el h4 {
    font-size: 1.54vw !important;
    width: 40vw !important;
  }
  section.promo h3 {
    font-size: 2.3vw !important;
  }
  section.promo .promo-scroll-container {
    margin-top: 3vw !important;
  }
  section.promo .promo-scroll-container .wrapper {
    gap: 3vw !important;
  }
  section.promo .promo-scroll-container .wrapper .item {
    min-width: 32vw !important;
    width: 32vw !important;
  }
  section.promo .promo-scroll-container .wrapper .item h5 {
    font-size: 13px !important;
  }
  section.promo .promo-scroll-container .wrapper .item .promo {
    width: 11.7vw !important;
    height: 3.41vw !important;
    font-size: 1.4vw !important;
    padding: unset !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.adv .header {
    margin-bottom: 8vw !important;
  }
  section.adv .header h3 {
    font-size: 2.3vw !important;
  }
  section.adv .grid .flex h2 {
    font-size: 2.96vw;
  }
  section.adv .grid .flex .low_price {
    width: 40% !important;
  }
  section.adv .grid .flex .content {
    height: 18vw !important;
    padding: 0 3vw !important;
  }
  section.adv .grid .content h3 {
    font-size: 2vw !important;
  }
  section.adv .grid .content .render_1 {
    width: 39% !important;
  }
  section.adv .grid .content.blue {
    height: 18vw !important;
  }
  section.adv .grid .content.orange img {
    width: 47% !important;
  }
  section.video .container {
    flex-direction: column;
    align-items: center;
  }
  section.video .video-content {
    width: 80% !important;
    height: 30vw !important;
  }
  section.video .content {
    width: 80% !important;
  }
  section.video .content h4 {
    font-size: 1.8vw !important;
    margin-bottom: 15px !important;
  }
  section.why .header {
    margin-bottom: 3vw !important;
  }
  section.why .header h3 {
    font-size: 2.3vw !important;
  }
  section.why .grid {
    gap: 2vw !important;
  }
  section.why .grid .flex {
    gap: 2vw !important;
  }
  section.why .grid .flex .content {
    padding: 4vw;
  }
  section.why .grid .flex .content a {
    font-size: 1.4vw !important;
  }
  section.why .grid .flex .content h2 {
    font-size: 2.4vw !important;
    margin-bottom: 1vw !important;
  }
  section.why .grid .flex .content.left {
    height: 9vw !important;
  }
  section.why .grid .flex .content.right {
    height: 9vw !important;
  }
  section.why .grid .flex .content.orange {
    height: 9vw !important;
    margin-bottom: 2% !important;
    padding-left: 6vw !important;
  }
  section.why .grid .flex .content.orange h2 {
    margin-bottom: 1.3vw !important;
  }
  section.why .grid .flex .content.orange .implant {
    width: 7.4vw !important;
    right: -5% !important;
  }
  section.why .grid .flex .content.blue {
    height: 9vw !important;
    margin-bottom: 2% !important;
    padding-left: 6vw !important;
  }
  section.why .grid .flex .content.blue .implant {
    width: 7.4vw !important;
    left: -8% !important;
  }
  section.why .grid .flex .content.blue .star {
    width: 13vw !important;
  }
  section.filials .contacts h2 {
    font-size: 2.7vw !important;
  }
  section.filials .contacts h3 {
    font-size: 1.4vw !important;
  }
  section.filials .contacts .list .item a {
    font-size: 1.4vw !important;
  }
  section.filials .contacts .adress-content {
    gap: 2vw !important;
  }
  section.filials .contacts .adress-content .item {
    padding: 1.5vw !important;
  }
  section.filials .contacts .adress-content .item .header h4 {
    font-size: 1.4vw !important;
  }
  section.filials .contacts .adress-content .item .flex .register {
    font-size: 1.2vw !important;
  }
}
@media (max-width: 900px) {
  button.registration {
    font-size: 2vw !important;
  }
  header .navbar {
    display: none;
  }
  header .header-buttons {
    display: none;
  }
  section.wrapper .wrapper-container .wrapper-item .offer-content .el {
    mask: radial-gradient(circle 40px at 70% 0, transparent 0 4vw, white calc(4vw + 1px)), linear-gradient(to right, white calc(70% - 3px), transparent calc(70% - 3px), transparent calc(70% + 3px), white calc(70% + 3px)), radial-gradient(circle 40px at 70% 100%, transparent 0 4vw, white calc(4vw + 1px));
    mask-composite: intersect;
  }
  section.filials {
    flex-direction: column;
  }
  section.filials .map {
    height: 70vw !important;
  }
  section.filials .contacts h2 {
    font-size: 4vw !important;
  }
  section.filials .contacts h3 {
    font-size: 2.3vw !important;
  }
  section.filials .contacts .list {
    margin-bottom: 5vw !important;
  }
  section.filials .contacts .list .item a {
    font-size: 2.3vw !important;
  }
  section.filials .contacts .adress-content {
    gap: 1.5vw !important;
  }
  section.filials .contacts .adress-content .item a {
    font-size: 2.7vw !important;
  }
  section.filials .contacts .adress-content .item .header h4 {
    font-size: 2vw !important;
  }
  section.filials .contacts .adress-content .item .flex .time {
    font-size: 2vw !important;
  }
  section.filials .contacts .adress-content .item .flex .register {
    font-size: 2vw !important;
  }
  section.promo .promo-scroll-container .wrapper .item h5 {
    font-size: 10px !important;
  }
}
@media (max-width: 600px) {
  .designed span {
    font-size: 13px !important;
  }
  button.registration {
    font-size: 3vw !important;
  }
  .price-content img {
    width: 6vw !important;
    margin-left: 2vw !important;
  }
  header .logo img {
    width: 10vw !important;
  }
  section {
    margin-top: 15vw !important;
  }
  section.wrapper {
    margin-top: 10vw !important;
  }
  section.wrapper .offer-header h1 {
    font-size: 7vw;
  }
  section.wrapper .offer-header h2 {
    font-size: 6vw !important;
  }
  section.wrapper .offer-header .buttons {
    margin-top: 4vw !important;
  }
  section.wrapper .offer-header .buttons .price {
    font-size: 2vw !important;
    width: 30vw;
    height: 8vw !important;
  }
  section.wrapper .offer-header .buttons .call {
    font-size: 2vw !important;
    width: 30vw;
    height: 8vw !important;
  }
  section.wrapper .offer-content .wrapper-implant {
    width: 12vw !important;
    left: -2% !important;
    top: -7% !important;
  }
  section.wrapper .offer-content .wrapper-doctor {
    width: 40vw !important;
  }
  section.wrapper .offer-content .el {
    padding: 0 !important;
    width: 100% !important;
  }
  section.wrapper .offer-content .el h4 {
    padding-left: 5vw !important;
    font-size: 2vw !important;
    width: 42vw !important;
  }
  section.wrapper .offer-content .el h4.s1 {
    margin-top: 25vw !important;
  }
  section.wrapper .offer-content .el h4.s2 {
    margin-bottom: 10vw !important;
  }
  section.promo h3 {
    font-size: 3.2vw !important;
  }
  section.promo .promo-scroll-container .wrapper .item {
    min-width: 60vw !important;
    width: 60vw !important;
    padding: 4vw;
  }
  section.promo .promo-scroll-container .wrapper .item .promo {
    width: 22vw !important;
    height: 6vw !important;
    font-size: 2.2vw !important;
    border-radius: 5px !important;
  }
  section.adv .header .flex {
    gap: 2vw !important;
  }
  section.adv .header .flex a {
    width: max-content;
  }
  section.adv .header .flex span {
    font-size: 2.5vw !important;
  }
  section.adv .header h3 {
    font-size: 3.2vw !important;
  }
  section.adv .grid {
    gap: 3vw !important;
  }
  section.adv .grid .content.blue {
    height: 22vw !important;
    padding: 0 3vw !important;
    border-radius: 15px !important;
  }
  section.adv .grid .content.blue h3 {
    font-size: 2.5vw !important;
  }
  section.adv .grid .flex {
    gap: 3vw !important;
  }
  section.adv .grid .flex .content.blue {
    height: 16vw !important;
  }
  section.adv .grid .flex .content.blue h2 {
    font-size: 3vw !important;
  }
  section.adv .grid .flex .content.orange {
    height: 16vw !important;
    border-radius: 15px !important;
  }
  section.adv .grid .flex .content.orange h2 {
    font-size: 3vw !important;
  }
  section.adv .grid .flex .content.orange .oborudovanie {
    right: 0 !important;
  }
  section.video .container {
    gap: 10px !important;
  }
  section.video .container .video-content {
    width: 100% !important;
    height: 40vw !important;
  }
  section.video .container .content {
    width: 100% !important;
  }
  section.video .container .content h4 {
    font-size: 2.5vw !important;
  }
  section.video .container .content .double-buttons .record {
    font-size: 2vw !important;
    width: 25vw !important;
    height: 7vw !important;
  }
  section.video .container .content .double-buttons .call {
    font-size: 2vw !important;
    width: 25vw !important;
    height: 7vw !important;
  }
  section.why .header .flex {
    gap: 2vw !important;
  }
  section.why .header .flex span {
    font-size: 2.5vw !important;
    width: max-content;
  }
  section.why .header h3 {
    font-size: 3.2vw !important;
  }
  section.why .grid .flex .content {
    border-radius: 15px !important;
  }
  section.why .grid .flex .content h2 {
    margin-bottom: 0.3vw !important;
  }
  section.why .grid .flex .content.orange h2 {
    margin-bottom: 0.7vw !important;
  }
  section.price .header h3 {
    font-size: 3.2vw !important;
  }
  section.price .header h4 {
    font-size: 2.7vw !important;
    margin-top: 1.5vw !important;
  }
  section.price .price-content .item-content .item {
    margin: auto 4vw !important;
  }
  section.price .price-content .item-content .item h4, section.price .price-content .item-content .item span {
    font-size: 3.4vw !important;
  }
  section.filials .contacts {
    padding: 3vw !important;
  }
  section.filials .contacts h2 {
    font-size: 5vw !important;
  }
  section.filials .contacts h3 {
    font-size: 3.3vw !important;
    margin-bottom: 10px !important;
  }
  section.filials .contacts h2, section.filials .contacts h3, section.filials .contacts .list {
    padding: 0 1vw !important;
  }
  section.filials .contacts .list .item {
    gap: 3vw !important;
  }
  section.filials .contacts .list .item a {
    font-size: 3.3vw !important;
  }
  section.filials .contacts .list .item .white-phone {
    width: 22px;
    height: 22px;
  }
  section.filials .contacts .list .item .white-phone img {
    width: 12px;
  }
  section.filials .contacts .adress-content .item {
    gap: 1vw !important;
  }
  section.filials .contacts .adress-content .item .header h4 {
    font-size: 2.7vw !important;
  }
  section.filials .contacts .adress-content .item .header .phone {
    width: 22px;
    height: 22px;
  }
  section.filials .contacts .adress-content .item .header .phone img {
    width: 12px;
  }
  section.filials .contacts .adress-content .item .flex .time {
    font-size: 2.7vw !important;
  }
  section.filials .contacts .adress-content .item .flex .register {
    font-size: 2.7vw !important;
  }
  .flex button.icon {
    width: 22px;
    height: 22px;
  }
  .flex button.icon img {
    width: 12px;
  }
  .nav-menu .header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 2vw !important;
  }
  .nav-menu .header .flex {
    gap: 2vw !important;
  }
  .nav-menu .header .flex span {
    font-size: 2.5vw !important;
    width: max-content;
  }
}
@media (max-width: 500px) {
  .designed {
    flex-direction: column;
    gap: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
