@import url("fonts.css");

body {
  font-family: "Century Gothic", sans-serif;
  font-weight: normal;
  color: #252525;
}

.b-white {
  background-color: white;
}

.b-dgreen {
  background-color: #095565;
}

.spinner_color {
  color: #095565;
}

.header {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  max-width: 100vw;
}

.logo_text {
  color: #095565;
  line-height: 17px;
  font-weight: bold;
}

.divider_header {
  color: #252525;
  text-decoration: none;
}

.window {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #095665a6;
  display: none;
  z-index: 10000;
}

.window_block {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  background-color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.close {
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.window_header,
.window_header2 {
  font-weight: bold;
  color: #095565;
  text-align: center;
}

#cookie-banner {
  position: fixed;
  background-color: white;
  bottom: 30px;
  left: 20px;
  width: 90%;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 9999;
}

.specialButton_text {
  text-decoration: none;
  color: #252525;
  cursor: pointer;
  font-size: 14px;
}

.specialButton_text:hover {
  text-decoration: underline;
}

.nav-link {
  width: 100%;
  color: #252525;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-link:hover {
  text-shadow: 0.5px 0 currentColor, -0.5px 0 currentColor;
}

.custom-dropdown {
  position: relative;
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0%;
  transform: translateY(10px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, transform 0.2s ease,
    visibility 0s linear 0.2s;
  -moz-transition: opacity 0.2s ease, transform 0.2s ease,
    visibility 0s linear 0.2s;
  -o-transition: opacity 0.2s ease, transform 0.2s ease,
    visibility 0s linear 0.2s;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  background: white;
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 3px;
  width: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.dropdown-item {
  padding: 5px 10px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #edf0f2;
}

.dropdown-item:first-of-type {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.dropdown-item:last-of-type {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.custom-dropdown:hover > .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.logo_circle {
  border: 1px solid #095565;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.logo_pic {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.logo_info {
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.logo_container {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s,
    visibility 0s linear 0.3s;
  -moz-transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s,
    visibility 0s linear 0.3s;
  -o-transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s,
    visibility 0s linear 0.3s;
  transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s,
    visibility 0s linear 0.3s;
}

.logo_info:hover .logo_circle {
  border: 1px solid #095565;
  background-color: #095565;
  border-radius: 50%;
}

.logo_info:hover .logo_pic {
  filter: brightness(0) invert(1);
}

.search {
  cursor: pointer;
}

.search:hover {
  border: 1px solid #095565;
  background-color: #095565;
  border-radius: 50%;
}

.search:hover .logo_pic {
  filter: brightness(0) invert(1);
}

.logo_info:hover .logo_info_more {
  width: auto;
  height: auto;
  padding: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  z-index: 10;
  background: white;
}

.logo_info:hover .logo_container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
  transform: translateX(-50%) translateY(0);
}

.logo_container:hover {
  opacity: 1;
  visibility: visible;
}

.logo_info_more {
  padding: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  background: white;
}

.underlogo_address {
  font-weight: bold;
  text-align: center;
}

.phone_button {
  color: #252525;
}

.phone_button2 {
  color: #095565;
}

.phone_button,
.phone_button2 {
  text-decoration: none;
  cursor: pointer;
}

.phone_button:hover,
.phone_button2:hover {
  text-decoration: underline;
}

.underlogo_block {
  gap: -15px;
}

.button {
  border-radius: 8px;
  cursor: pointer;
  background-color: #4f9f2e;
  border: 1px solid #4f9f2e;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

.button_text {
  text-decoration: none;
  color: white;
  letter-spacing: 1px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: white;
  color: #4f9f2e;
  border: 1px solid #4f9f2e;
}

.button:hover .button_text {
  color: #4f9f2e;
}

.button.btn-not-allowed {
  border: 1px solid #095565;
  background-color: #095565;
  color: white;
}

.button.btn-not-allowed:hover {
  border: 1px solid #095565;
  background-color: white;
  color: #095565;
}

.button_text.text_disabled {
  color: white;
}

.button:hover .text_disabled {
  color: #095565;
}

.mobile-burger {
  cursor: pointer;
  position: relative;
}

.mobile-burger span {
  display: block;
  position: absolute;
  width: 100%;
  background-color: #095565;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mobile-burger span {
  display: block;
  position: absolute;
  width: 100%;
  background-color: #095565;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-burger span:nth-child(1) {
  top: 0;
}
.mobile-burger span:nth-child(2) {
  top: 7.8px;
}
.mobile-burger span:nth-child(3) {
  top: 8.2px;
}
.mobile-burger span:nth-child(4) {
  top: 16px;
}

.mobile-burger.active span:nth-child(1),
.mobile-burger.active span:nth-child(4) {
  top: 8px;
  opacity: 0;
}

.mobile-burger.active span:nth-child(2) {
  transform: rotate(45deg);
}

.mobile-burger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-burger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 99%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #eee;
}

.mobile-nav-link {
  color: #252525;
  text-decoration: none;
  display: block;
  padding: 12px 20px;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.disability_sticky {
  cursor: pointer;
}

.disability_sticky:hover {
  text-decoration: underline;
}

.toggle {
  position: relative;
  cursor: pointer;
}

.toggle::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #095565;
  border-bottom: 2px solid #095565;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.toggle.open::after {
  transform: translateY(-50%) rotate(-135deg);
}

.mobile-nav-link:hover {
  background-color: #f5f5f5;
}

.mobile-nav-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}

.mobile-nav-sub li a {
  color: #252525;
  display: block;
  padding: 7px 30px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.mobile-nav-sub li a:hover {
  background-color: #edf0f2;
}

.carousel img {
  -webkit-user-drag: none;
  user-select: none;
}

.carousel_header {
  position: absolute;
  z-index: 2;
  background-color: white;
  border-radius: 15px;
}

.carousel-image1,
.carousel-image2,
.carousel-image3 {
  position: absolute;
  z-index: 1;
}

.work_hours {
  position: absolute;
  z-index: 2;
}

.work_hours_header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.work_header {
  color: white;
  text-align: center;
  font-weight: bold;
}

.work_days {
  color: #095565;
  text-align: center;
  font-weight: bold;
}

.main_slider_text,
.main_slider_header {
  color: #095565;
  font-weight: bold;
}

.carousel_button,
.custom_button,
.custom_button2 {
  cursor: pointer;
  background-color: #4f9f2e;
  border-radius: 30px;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.carousel_button,
.custom_button2 {
  position: absolute;
}

.carousel_button:hover,
.custom_button:hover,
.custom_button2:hover {
  background-color: white;
  border: 1px solid #4f9f2e;
}

.carousel_button:hover .slider_button_text,
.custom_button:hover .custom_button_text,
.custom_button2:hover .slider_button_text {
  color: #4f9f2e;
}

.button_circle {
  background-color: white;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 5;
}

.button_arrow {
  margin-left: 2px;
  z-index: 6;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.carousel_button:hover .button_circle,
.custom_button:hover .button_circle,
.custom_button2:hover .button_circle {
  background-color: #4f9f2e;
}

.carousel_button:hover .button_arrow,
.custom_button:hover .button_arrow,
.custom_button2:hover .button_arrow {
  filter: brightness(0) invert(1);
}

.carousel_desc {
  background-color: #095565;
  border-radius: 15px;
  position: absolute;
  z-index: 2;
}

.category-header {
  cursor: pointer;
  user-select: none;
  border-radius: 15px;
  background-color: #edf0f2;
}

.category-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.category-arrow.rotated {
  transform: rotate(90deg);
}

.category-content {
  display: none;
  overflow: hidden;
}

.slider_button_text,
.custom_button_text,
.carousel_desc_text {
  font-weight: bold;
  color: white;
  margin: 0;
  text-align: center;
  text-decoration: none !important;
}

.carousel_desc_text {
  line-height: 25px;
}

.carousel_text {
  font-weight: bold;
  margin: 0;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}

.complex_block,
.complex_block2 {
  height: 100%;
  z-index: 990;
}

.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  z-index: 3;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom-arrow:hover img {
  transform: scale(1.2);
}

.custom-indicators {
  position: absolute;
  bottom: -5px;
  padding-left: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.custom-indicators button {
  all: unset;
  display: inline-block;
}

.custom-indicators button:not(.active) {
  width: 12px;
  height: 12px;
  background-color: white;
  border: 1px solid #095565;
  border-radius: 50%;
}

.custom-indicators button:not(.active):hover {
  background-color: #095565;
}

.custom-indicators button.active {
  width: 40px;
  height: 4px;
  background-color: #095565;
  border: 1px solid #095565;
  border-radius: 2px;
}

.switcher_button {
  width: 100%;
  border-top: 1px solid #dadada;
  border-right: 1px solid #dadada;
  border-left: 1px solid #dadada;
  border-bottom: none;
  background-color: white;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  text-decoration: none;
  color: #095565;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.switcher_button:hover {
  width: 100%;
  border-top: 1px solid #7cbdb7;
  border-right: 1px solid #7cbdb7;
  border-left: 1px solid #7cbdb7;
  border-bottom: none;
  text-shadow: 0.5px 0 currentColor, -0.5px 0 currentColor;
}

.switcher_button.active_switch {
  background-color: #7cbdb7;
  border: 1px solid #7cbdb7;
  color: white;
  font-weight: bold;
}

.active_switch .switcher_image {
  filter: brightness(0) invert(1);
}

.switcher_block {
  border: 1px solid #dadada;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.letter {
  color: #095565;
}

.default_header {
  font-weight: bold;
  margin: 0;
}

.trust_text {
  font-size: 16px;
}

.button_page,
.button_more,
.button_search {
  border-radius: 6px;
  background-color: #ececec;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button_page {
  border: 1px solid #ececec;
}

.button_page:hover,
.button_more:hover,
.button_search:hover,
.button_page.active,
.page-chosen {
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #095565;
  text-decoration: none;
}

.button_page.active {
  cursor: default;
}

.button_page,
.button_more_text {
  color: #095565;
}

.pagination_but {
  height: 40px;
}

.button_page .button_more_img {
  padding-top: 0;
  padding-bottom: 3px;
}

.pagination_img {
  width: 11px;
}

.swiper {
  width: 100%;
  height: auto;
}

.generalSwiper {
  position: relative;
}

.swiper_arrows {
  position: absolute;
}

.general_carousel_button {
  border: none;
  border-radius: 6px;
  background-color: #ececec;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.general_carousel_button:hover img {
  transform: scale(1.4);
}

.prev_but {
  transform: rotate(180deg);
}

.item_link {
  color: #252525;
  text-decoration: none;
}

.doctor_photo,
.news_photo,
.doctor_pub_photo {
  border-radius: 15px;
  height: auto;
}

.doc_select {
  width: 45%;
}

.form-select {
  font-size: 14px;
}

.clamp-2 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.2em;
  max-height: 2.4em;
}

.clamp-3 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  line-height: 1.2em;
  max-height: 3.6em;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
  cursor: zoom-in;
}

.image-modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(52, 52, 52, 0.98);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  -moz-transition: opacity 0.5s ease, visibility 0.5s ease;
  -o-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: flex;
  max-width: 100vw;
}

.swiper-wrapper {
  max-width: 100vw !important;
}

.max-width {
  max-width: 100vw !important;
}

.row {
  max-width: 100vw !important;
}

.image-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modal-image {
  opacity: 1;
  height: 100vh;
  width: auto;
  max-width: none;
  max-height: none;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: default;
  user-select: none;
  pointer-events: auto;
  display: block;
}

#modal-image.fade-out {
  opacity: 0;
}

.modal-content img {
  max-height: 100%;
  max-width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal-header {
  position: absolute;
  top: 10px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 18px;
  z-index: 10001;
}

.modal-actions {
  width: 40px;
  height: 40px;
  background: #303031;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px 13px 10px;
  border-radius: 100%;
  cursor: pointer;
}

.modal-actions button {
  border: none;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal-actions:hover button {
  transform: scale(1.2);
}

.image-counter {
  font-size: 16px;
}

.grey-border {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.grey-border:hover {
  border-radius: 15px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 48px;
  background: none;
  border: none;
  cursor: pointer;
  user-select: none;
  z-index: 10000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-arrow-circle {
  background: #303031;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
}

.default {
  cursor: default;
}

.left-arrow .nav-arrow-circle {
  padding: 10px 12px 10px 8px;
}

.right-arrow .nav-arrow-circle {
  padding: 10px 12px 10px 8px;
  transform: scaleX(-1);
}

.nav-arrow:hover .nav-arrow-img {
  transform: scale(1.2);
}

.nav-arrow:hover .nav-arrow-img,
.nav-arrow-img:hover {
  transform: scale(1.2);
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.switcher {
  background-color: #edf0f2;
  border-radius: 6px;
  height: 50px;
}

.chosen {
  display: block !important;
}

.switch-option {
  width: 50%;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.switch-option.chosen {
  background-color: white;
  border-radius: 5px;
  border: 5px solid #edf0f2;
  text-shadow: 0.5px 0 currentColor, -0.5px 0 currentColor;
}

.switch-option:hover {
  text-shadow: 0.5px 0 currentColor, -0.5px 0 currentColor;
}

.switch_text {
  text-align: center;
}

.main_address {
  font-weight: bold;
}

.address-block,
.map-block {
  display: none;
}

.switch-option.chosen {
  display: flex !important;
}

.address-block.chosen {
  display: flex !important;
  flex-direction: column;
}

.address-block a {
  text-decoration: none;
  color: #252525;
}

.address-block a:hover {
  text-decoration: underline;
}

.address-block .button_text {
  color: white;
}

.address-block .button_text:hover {
  color: #4f9f2e;
  text-decoration: none;
}

.trust_desc {
  border: 1px solid #dadada;
  border-radius: 9px;
  height: fit-content;
  transition: height 0.3s ease;
}

.partner {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.partner:not(.clicked) {
  filter: grayscale(100%);
}

footer {
  background-color: #edf0f2;
}

.footer_header {
  font-weight: bold;
  color: #353535;
}

.footer_logo_link {
  width: fit-content;
}

.footer_img:hover {
  transform: scale(1.1);
}

.footer_line {
  height: 1px;
  background-color: #095565;
}

.footer_header {
  width: fit-content;
}

.footer_link {
  text-decoration: none;
  color: #252525;
  width: fit-content;
}

.footer_link:hover {
  text-decoration: underline;
}

.fast_call {
  position: fixed;
  z-index: 8888;
}

.fast_call_img {
  cursor: pointer;
  width: 50px;
  height: auto;
  animation: pulse 2s infinite;
  -webkit-transition: transform 0.2s ease, opacity 0.2s ease;
  -moz-transition: transform 0.2s ease, opacity 0.2s ease;
  -o-transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.fast_call_img:hover {
  transform: scale(1.1);
  opacity: 1;
  animation: none;
}

.fast_call:hover .fast_call_img {
  transform: scale(1.1);
  opacity: 1;
  animation: none;
}

.fast_call_item .dropdown-item:hover {
  color: #095565;
  text-decoration: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.85;
  }
}

.fast_call_container {
  position: absolute;
  bottom: 100%;
  right: -110px;
  padding-bottom: 15px;
  transform: translateX(-50%) translateY(10px);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s,
    visibility 0s linear 0.3s;
  -moz-transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s,
    visibility 0s linear 0.3s;
  -o-transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s,
    visibility 0s linear 0.3s;
  transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s,
    visibility 0s linear 0.3s;
}

.fast_call_block {
  background: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 10px;
}

.fast_call_item_img {
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.fast_call:hover .fast_call_container,
.fast_call_img:hover + .fast_call_container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
  transform: translateX(-50%) translateY(0);
}

.logo_container:hover {
  opacity: 1;
  visibility: visible;
}

.fast_call_item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
}

.fast_call_item .fast_call_text {
  color: #095565;
  font-weight: bold;
}

.fast_call_item:hover {
  background-color: #edf0f2;
}

.fast_call_item:hover .fast_call_text {
  text-decoration: underline;
}

.fast_call_text {
  width: 100%;
  margin: 0;
}

.breadcrumb {
  --bs-breadcrumb-divider: url("/assets/icons/breadcrumb.svg");
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: var(--bs-breadcrumb-divider);
}

.breadcrumb-item a {
  text-decoration: none;
  color: #71717a;
}

.breadcrumb-item:hover a {
  color: #252525;
}

.breadcrumb-item.active {
  color: #252525;
}

.blockquote {
  border-left: 4px solid #ccc;
  background: #f9f9f9;
  margin: 0 0 10px 0;
}

.blockquote_text {
  padding: 15px;
  margin-left: 10px;
  font-size: 14px;
  font-style: italic;
}

.price_th {
  color: #71717a !important;
  font-weight: normal;
  vertical-align: middle;
}

.table_span {
  display: block;
  font-size: 12px;
  line-height: 10px;
}

.price_text {
  font-size: 12px;
  line-height: 15px;
}

.search_public {
  border-radius: 6px;
  height: fit-content;
  border: 1px solid #edf0f2;
}

.collapse-back {
  background-color: white;
  height: fit-content;
}

.collapse {
  display: none;
  overflow-y: auto;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  transition: height 0.3s ease;
}

.search_public_arrow {
  height: 12px;
  transition: transform 0.3s ease;
  display: inline-block;
  transform-origin: center center;
}

.search_public_arrow.rotated {
  transform: rotate(90deg);
}

.public_nav {
  top: 145px;
  position: sticky;
  background-color: white;
}

.nav_public_li {
  list-style-type: none;
  height: fit-content;
}

.nav_public_link {
  position: relative;
}

.nav_public_link:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 150px;
  border-bottom: 1px solid #edf0f2;
}

.nav_public_link:hover .nav_public_li {
  background-color: #edf0f2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.price_li:not(:last-child)::after {
  right: 0px;
}

.price_li:hover {
  cursor: pointer;
  background-color: #edf0f2;
}

.price_active {
  background-color: #edf0f2;
}

.public_nav_li {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-left: 10px;
}

.public_nav_li.active {
  font-weight: bold;
  padding-left: 15px;
}

.public_nav_li.active::before {
  content: "→ ";
  left: -5px;
  position: absolute;
  color: #252525;
  padding-left: 15px;
  text-decoration: none;
  list-style-type: none;
}

.public_nav_only {
  padding-left: 15px;
}

.search_public_li {
  list-style-type: none;
}

.scroll-to-top {
  cursor: pointer;
}

.public_nav_only::before {
  content: "↑ ";
  left: -5px;
  position: absolute;
  color: #252525;
  padding-left: 15px;
  text-decoration: none;
}

.public_nav_li {
  list-style-type: none;
}

.public_nav_li .search_public_link,
.public_nav_li:hover .search_public_link,
.search_public_li .search_public_link,
.price_link,
.nav_public_link {
  text-decoration: none;
  color: #252525;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.search_public_link:hover,
.public_nav_only:hover .search_public_link {
  text-shadow: 0.5px 0 currentColor, -0.5px 0 currentColor;
}

.price_link {
  text-shadow: none !important;
}

.input_field {
  padding-left: 30px;
}

.input_field::placeholder {
  font-size: 14px;
}

.input-container {
  position: relative;
}

.input_search {
  position: absolute;
  pointer-events: none;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.collapse-button {
  border: none;
  border-radius: 5px;
  background-color: #edf0f2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pub_sticky {
  background-color: #edf0f2;
}

.search_item {
  border: 3px solid #edf0f2;
  border-radius: 6px;
  background-color: white;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.search_item .button_search {
  border: 1px solid #ececec;
}

.search_item .button_search:hover {
  border: 1px solid #095565;
}

.search_item:hover {
  cursor: pointer;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.search_item p {
  color: #252525;
  text-decoration: none;
}

.error_header {
  text-align: center;
  font-size: 64px;
}

.error_text {
  text-align: center;
  color: #868686;
  font-style: italic;
  font-size: 14px;
}

.new_price {
  text-align: left;
  color: #095565;
  font-style: italic;
}

.article-image {
  width: 45% !important;
}

.switcher_button_item {
  width: 25%;
}

.default_text a {
  color: #095565;
  text-decoration: none;
}

.default_text a:hover {
  text-decoration: underline;
}

.page_info_container {
  display: flex;
}

.doctor_photo,
.doctor_pub_photo {
  width: 100%;
  height: auto;
}

@media (min-width: 1401px) {
  .window_block {
    width: 600px;
    height: 350px;
  }

  .close {
    width: 30px;
    height: 30px;
  }

  .old_logo {
    width: 60%;
  }

  .window_header {
    font-size: 48px;
  }

  .window_header2 {
    font-size: 24px;
  }

  .book_button {
    display: none !important;
  }

  .logo {
    width: 50px;
    height: auto;
  }

  #carouselMobileIndicators {
    display: none;
  }

  .section_padding {
    margin-top: 6rem !important;
  }

  .footer_margin {
    margin-top: 2rem !important;
  }

  .footer_padding {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
  }

  .default_title {
    font-size: 26px;
  }

  .default_text {
    font-size: 16px;
  }

  #mobileMenu {
    display: none;
  }

  .logo_text {
    font-size: 14px;
    padding-left: 10px;
  }

  .nav-link,
  .button_text,
  .underlogo_address {
    font-size: 16px;
  }

  .cookie_header {
    font-size: 16px;
  }

  .cookie_text {
    font-size: 14px;
  }

  .nav-link {
    white-space: nowrap;
  }

  .logo_container {
    padding-top: 11px;
    width: 260px;
  }

  .logo_circle {
    width: 25px;
    height: 25px;
  }

  .logo_pic {
    height: 14px;
    width: 14px;
  }

  .search {
    width: 35px;
    height: 35px;
    margin-right: 16px;
  }

  .pic_2 {
    height: 15px;
    width: 15px;
  }

  .pic_3 {
    width: 20px;
    height: 20px;
  }

  .navbar-brand {
    margin-right: 16px;
  }

  .underlogo_text {
    font-size: 14px;
  }

  .navbar-nav {
    gap: 23px;
  }

  .search_content .button {
    padding: 8px 18px;
  }

  .main {
    margin-top: 100px;
  }

  .carousel_header {
    top: 375px;
    left: 100px;
  }

  .carousel_text {
    font-size: 32px;
    padding: 5px 30px;
  }

  .carousel_button {
    width: 220px;
    height: 40px;
    top: 383px;
    left: 1050px;
  }

  .work_hours {
    top: 51px;
    left: 260px;
    gap: 79px;
  }

  .work_hours_item {
    width: 397px;
    height: 288px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    background-color: white;
  }

  .work_hours_header {
    height: 71px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .work_header {
    font-size: 28px;
  }

  .work_days {
    font-size: 22px;
    margin: 10px 0 0 0;
  }

  .main_slider_text {
    font-size: 22px;
  }

  .main_slider_header {
    font-size: 48px;
  }

  .work_days.large_size {
    font-size: 42px;
    margin: -7px 0 0 0;
  }

  .custom_button {
    padding: 10px 30px;
    width: auto;
    height: 50px;
  }

  .custom_button2 {
    width: 270px;
    height: 40px;
    top: 383px;
    left: 1000px;
  }

  .carousel-image1 {
    top: 0px;
    left: 250px;
    width: auto;
    height: 600px;
  }

  .carousel-image2 {
    top: 20px;
    left: 200px;
    width: auto;
    height: 500px;
  }

  .carousel-image3 {
    top: 20px;
    right: 120px;
    width: auto;
    height: 500px;
  }

  .carousel_desc {
    top: 310px;
    left: 950px;
    width: 320px;
    height: 60px;
  }

  .custom_width {
    width: 300px;
  }

  .category-arrow {
    height: 30px;
  }

  .custom_button_text {
    font-size: 20px;
  }

  .carousel_desc_text {
    font-size: 20px;
  }

  .button_circle {
    width: 30px;
    height: 30px;
  }

  .button_arrow {
    height: 20px;
  }

  .slider_button_text {
    font-size: 22px;
  }

  .custom-arrow.left {
    left: 6.5rem;
  }

  .custom-arrow.right {
    right: 2rem;
  }

  .custom-arrow img {
    width: 50px;
    height: 50px;
  }

  .long_text_width2 {
    width: 600px;
  }

  .margining {
    margin-top: 55px;
    margin-left: 700px;
  }

  .complex_block {
    top: -45px;
    right: 150px;
    padding-top: 40px;
    gap: 25px;
  }

  .complex_block2 {
    top: -5px;
    left: 220px;
    padding-top: 40px;
    gap: 25px;
  }

  .switcher_buttons {
    gap: 20px;
  }

  .switcher_button {
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: flex-start;
  }

  .switcher_block {
    height: 402.6px;
    padding-top: 3rem !important;
  }

  .switcher_info {
    width: fit-content;
    height: auto;
    padding-left: 90px;
    gap: 1.5rem !important;
  }

  .switcher_image {
    width: 20px;
  }

  .switcher_text {
    margin: 0;
    padding-left: 15px;
    font-size: 20px;
  }

  .alphabet_list {
    width: 145px;
    padding-top: 9px;
  }

  .service_info {
    width: 240px;
    padding-top: 9px;
  }

  .letter {
    width: 20px;
    font-size: 30px;
  }

  .doctor_block .default_header {
    margin-right: 48px;
  }

  .news_block .default_header {
    margin-right: 48px;
  }

  .default_header {
    font-size: 30px;
  }

  .button_more {
    width: 90px;
    height: 45px;
  }

  .button_search {
    height: 40px;
  }

  .button_more_text {
    font-size: 18px;
  }

  .button_more_img {
    padding-top: 3px;
    width: 11px;
  }

  .swiper_arrows {
    top: -45px;
    right: 0;
  }

  .general_carousel_button {
    width: 45px;
    height: 45px;
  }

  .filters {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .doctor-border {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .doctor-border2 {
    padding-left: 0.1rem !important;
    padding-right: 0.1rem !important;
  }

  .news_photo {
    width: 100%;
    height: auto;
  }

  .item_name {
    font-size: 20px;
    height: 60px;
  }

  .item_subnames {
    height: 86px;
  }

  .nav-arrow-circle {
    width: 60px;
    height: 60px;
  }

  .switch_text {
    font-size: 14px;
  }

  .map-info {
    margin-left: 3rem !important;
  }

  .main_address {
    font-size: 24px;
    padding: 15px 0;
  }

  .info_address {
    font-size: 16px;
  }

  .button_text.address,
  .collapse-button {
    font-size: 18px;
  }

  .partner {
    height: 45px;
  }

  .video {
    width: 600px;
    height: 400px;
  }

  .fast_call_container {
    width: 210px;
  }

  .fast_call_item_img {
    width: 25px;
  }

  .footer_header {
    font-size: 20px;
  }

  .footer_link {
    font-size: 14px;
  }

  .footer_line {
    width: 230px;
  }

  .flexible-align-news,
  .flexible-align-doctors {
    align-items: center;
  }

  #news {
    width: 305px;
  }

  .fast_call {
    right: 40px;
    bottom: 40px;
  }

  .fast_call_item .fast_call_text {
    font-size: 14px;
  }

  .fast_call_img {
    width: 50px;
  }

  .doctor_name {
    font-size: 22px;
  }

  .doctor_undername {
    font-size: 18px;
  }

  .doctor_list {
    margin-left: -10px;
    margin-top: 10px;
  }

  .doctor_list .item_subname {
    font-size: 16px;
  }

  #doctor-container,
  #publication-container,
  #price-container {
    padding-left: 3rem !important;
  }

  .doc_flex {
    display: block;
  }

  .price_th,
  .price_item {
    font-size: 18px;
  }

  .swiper_none {
    display: none !important;
  }

  .footer_first_col {
    padding-left: 3rem !important;
  }

  .footer_next_col {
    padding-right: 3rem !important;
  }

  .breadcrumb-item,
  .breadcrumb-item a,
  .search_public_li,
  .price_link {
    font-size: 16px;
  }

  .pub_sticky {
    top: 145px;
    position: sticky;
    background-color: white;
  }

  .collapse-back {
    max-height: 350px;
  }

  .doc_container {
    min-height: 247.6px;
  }

  .min-height {
    min-height: 343px !important;
  }

  .new_price {
    font-size: 14px;
  }

  .nav_public_li {
    font-size: 16px;
  }

  .article_header {
    font-size: 32px;
  }

  .article_subheader {
    font-size: 28px;
  }
}

@media ((min-width: 1201px) and (max-width: 1400px)) {
  .window_block {
    width: 600px;
    height: 350px;
  }

  .close {
    width: 30px;
    height: 30px;
  }

  .old_logo {
    width: 60%;
  }

  .window_header {
    font-size: 48px;
  }

  .window_header2 {
    font-size: 24px;
  }

  .book_button {
    display: none !important;
  }

  .logo {
    width: 50px;
    height: auto;
  }

  #carouselMobileIndicators {
    display: none;
  }

  .section_padding {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .footer_margin {
    margin-top: 3rem !important;
  }

  .footer_padding {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
  }

  .default_title {
    font-size: 24px;
  }

  .default_text {
    font-size: 16px;
  }

  #mobileMenu {
    display: none;
  }

  .logo_text {
    font-size: 14px;
    padding-left: 10px;
  }

  .nav-link,
  .button_text,
  .underlogo_address {
    font-size: 15px;
  }

  .cookie_header {
    font-size: 16px;
  }

  .cookie_text {
    font-size: 14px;
  }

  .nav-link {
    white-space: nowrap;
  }

  .logo_container {
    padding-top: 11px;
    width: 260px;
  }

  .logo_circle {
    width: 23px;
    height: 23px;
  }

  .logo_pic {
    height: 12px;
    width: 12px;
  }

  .search {
    width: 30px;
    height: 30px;
    margin-right: 16px;
  }

  .pic_2 {
    height: 13px;
    width: 13px;
  }

  .pic_3 {
    width: 17px;
    height: 17px;
  }

  .navbar-brand {
    margin-right: 16px;
  }

  .underlogo_text {
    font-size: 14px;
  }

  .navbar-nav {
    gap: 10px;
  }

  .search_content .button {
    padding: 5px;
  }

  .main {
    margin-top: 100px;
  }

  .carousel_header {
    top: 310px;
    left: 100px;
  }

  .carousel_text {
    font-size: 30px;
    padding: 5px 25px;
  }

  .carousel_button {
    width: 220px;
    height: 40px;
    top: 323px;
    left: 890px;
  }

  .work_hours {
    top: 38px;
    left: 228px;
    gap: 79px;
  }

  .work_hours_item {
    width: 340px;
    height: 248px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    background-color: white;
  }

  .work_hours_header {
    height: 71px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .work_header {
    font-size: 28px;
  }

  .work_days {
    font-size: 22px;
    margin: 10px 0 0 0;
  }

  .main_slider_text {
    font-size: 20px;
  }

  .main_slider_header {
    font-size: 38px;
  }

  .work_days.large_size {
    font-size: 42px;
    margin: -7px 0 0 0;
  }

  .custom_button {
    padding: 10px 30px;
    width: auto;
    height: 50px;
  }

  .custom_button2 {
    width: 270px;
    height: 40px;
    top: 323px;
    left: 840px;
  }

  .carousel-image1 {
    top: 0px;
    left: 250px;
    width: auto;
    height: 550px;
  }

  .carousel-image2 {
    top: 20px;
    left: 200px;
    width: auto;
    height: 470px;
  }

  .carousel-image3 {
    top: 20px;
    right: 70px;
    width: auto;
    height: 470px;
  }

  .carousel_desc {
    top: 255px;
    left: 810px;
    width: 300px;
    height: 60px;
  }

  .custom_width {
    width: 300px;
  }

  .category-arrow {
    height: 30px;
  }

  .custom_button_text {
    font-size: 20px;
  }

  .carousel_desc_text {
    font-size: 18px;
  }

  .button_circle {
    width: 30px;
    height: 30px;
  }

  .button_arrow {
    height: 20px;
  }

  .slider_button_text {
    font-size: 22px;
  }

  .custom-arrow.left {
    left: 6.5rem;
  }

  .custom-arrow.right {
    right: 2rem;
  }

  .custom-arrow img {
    width: 50px;
    height: 50px;
  }

  .complex_block {
    top: -27px;
    right: 85px;
    padding-top: 30px;
    gap: 20px;
  }

  .long_text_width {
    width: 450px;
  }

  .long_text_width2 {
    width: 555px;
  }

  .margining {
    margin-top: 35px;
    margin-left: 590px;
  }

  .complex_block2 {
    top: -3px;
    left: 185px;
    padding-top: 30px;
    gap: 20px;
  }

  .switcher_buttons {
    gap: 20px;
  }

  .switcher_button {
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: flex-start;
  }

  .switcher_block {
    height: 392.1px;
    padding-top: 3rem !important;
  }

  .switcher_info {
    height: auto;
    width: fit-content;
    padding-left: 70px;
    gap: 1.5rem !important;
  }

  .switcher_image {
    width: 20px;
  }

  .switcher_text {
    margin: 0;
    padding-left: 15px;
    font-size: 20px;
  }

  .alphabet_list {
    width: 145px;
    padding-top: 9px;
  }

  .service_info {
    width: 240px;
    padding-top: 9px;
  }

  .letter {
    width: 20px;
    font-size: 30px;
  }

  .doctor_block .default_header {
    margin-right: 48px;
  }

  .news_block .default_header {
    margin-right: 48px;
  }

  .default_header {
    font-size: 30px;
  }

  .button_more {
    width: 90px;
    height: 45px;
  }

  .button_search {
    height: 40px;
  }

  .button_more_text {
    font-size: 18px;
  }

  .button_more_img {
    padding-top: 3px;
    width: 11px;
  }

  .swiper_arrows {
    top: -45px;
    right: 0;
  }

  .general_carousel_button {
    width: 45px;
    height: 45px;
  }

  .filters {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .doctor-border {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .doctor-border2 {
    padding-left: 0.3rem !important;
    padding-right: 0.3rem !important;
  }

  .news_photo {
    width: 100%;
    height: auto;
  }

  .item_name {
    font-size: 20px;
    height: 60px;
  }

  .item_subnames {
    height: 90px;
  }

  .nav-arrow-circle {
    width: 60px;
    height: 60px;
  }

  .switch_text {
    font-size: 14px;
  }

  .map-info {
    margin-left: 2.5rem !important;
  }

  .main_address {
    font-size: 24px;
    padding: 15px 0;
  }

  .info_address {
    font-size: 16px;
  }

  .button_text.address,
  .collapse-button {
    font-size: 18px;
  }

  .partner {
    height: 45px;
  }

  .video {
    width: 600px;
    height: 400px;
  }

  .input_field::placeholder {
    font-size: 12px;
  }

  .form-select {
    font-size: 12px;
  }

  .fast_call_container {
    width: 210px;
  }

  .fast_call_item_img {
    width: 25px;
  }

  .footer_header {
    font-size: 20px;
  }

  .footer_link {
    font-size: 14px;
  }

  .footer_line {
    width: 230px;
  }

  .fast_call_item .fast_call_text {
    font-size: 14px;
  }

  .flexible-align-doctors,
  .flexible-align-news {
    align-items: center;
  }

  #news {
    width: 305px;
  }

  .fast_call {
    right: 20px;
    bottom: 40px;
  }

  .fast_call_img {
    width: 40px;
  }

  .doctor_name {
    font-size: 22px;
  }

  .doctor_undername {
    font-size: 18px;
  }

  .doctor_list {
    margin-left: -10px;
    margin-top: 10px;
  }

  .doctor_list .item_subname {
    font-size: 16px;
  }

  #doctor-container,
  #publication-container,
  #price-container {
    padding-left: 3rem !important;
  }

  .doc_flex {
    display: block;
  }

  .price_th,
  .price_item {
    font-size: 16px;
  }

  .swiper_none {
    display: none !important;
  }

  .footer_first_col {
    padding-left: 3rem !important;
  }

  .footer_next_col {
    padding-right: 3rem !important;
  }

  #doc-search,
  #pub-search {
    height: 31.6px;
  }

  .breadcrumb-item,
  .breadcrumb-item a,
  .search_public_li,
  .price_link {
    font-size: 16px;
  }

  .pub_sticky {
    top: 145px;
    position: sticky;
    background-color: white;
  }

  .collapse-back {
    max-height: 350px;
  }

  .doc_container {
    min-height: 244.6px;
  }

  .min-height {
    min-height: 294px !important;
  }

  .new_price {
    font-size: 14px;
  }

  .nav_public_li {
    font-size: 16px;
  }

  .article_header {
    font-size: 32px;
  }

  .article_subheader {
    font-size: 28px;
  }
}

@media ((min-width: 993px) and (max-width: 1200px)) {
  .window_block {
    width: 550px;
    height: fit-content;
  }

  .window_content {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .close {
    width: 25px;
    height: 25px;
  }

  .old_logo {
    width: 60%;
  }

  .window_header {
    font-size: 38px;
  }

  .window_header2 {
    font-size: 24px;
  }

  .book_button {
    display: none !important;
  }

  .logo {
    width: 45px;
    height: auto;
  }

  #carouselMobileIndicators {
    display: none;
  }

  .section_padding {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .footer_margin {
    margin-top: 3rem !important;
  }

  .footer_padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .default_title {
    font-size: 22px;
  }

  .default_text {
    font-size: 16px;
  }

  #computerMenu {
    display: none;
  }

  .mobile-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 19px;
  }

  .mobile-burger span {
    height: 3px;
  }

  .mobile-menu {
    max-height: calc(100vh - 69px);
  }

  .logo_text {
    font-size: 14px;
    padding-left: 7px;
  }

  .mobile-nav-link {
    font-size: 16px;
  }

  .nav-link,
  .button_text,
  .underlogo_address,
  .mobile-dropdown-item {
    font-size: 15px;
  }

  .cookie_header {
    font-size: 14px;
  }

  .cookie_text {
    font-size: 12px;
  }

  .nav-link {
    white-space: nowrap;
  }

  .logo_container {
    padding-top: 11px;
    width: 250px;
  }

  .logo_circle {
    width: 21px;
    height: 21px;
  }

  .logo_pic {
    height: 11px;
    width: 11px;
  }

  .search {
    width: 28px;
    height: 28px;
    margin-left: 25px;
    margin-right: 16px;
  }

  .pic_2 {
    height: 12px;
    width: 12px;
  }

  .pic_3 {
    width: 18px;
    height: 18px;
  }

  .navbar-brand {
    margin-right: 16px;
  }

  .underlogo_text {
    font-size: 14px;
  }

  .navbar-nav {
    gap: 10px;
  }

  .search_content .button {
    padding: 10px 15px;
  }

  .search_content {
    flex-direction: row-reverse;
  }

  .main {
    margin-top: 100px;
  }

  .carousel_header {
    top: 250px;
    left: 100px;
  }

  .carousel_text {
    font-size: 26px;
    padding: 5px 20px;
  }

  .carousel_button {
    width: 210px;
    height: 40px;
    top: 260px;
    left: 705px;
  }

  .work_hours {
    top: 20px;
    left: 180px;
    gap: 50px;
  }

  .work_hours_item {
    width: 300px;
    height: 208px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    background-color: white;
  }

  .work_hours_header {
    height: 71px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .work_header {
    font-size: 24px;
  }

  .work_days {
    font-size: 18px;
    margin: 10px 0 0 0;
  }

  .main_slider_text {
    font-size: 16px;
  }

  .main_slider_header {
    font-size: 28px;
  }

  .work_days.large_size {
    font-size: 34px;
    margin: -7px 0 0 0;
  }

  .custom_button {
    padding: 10px 30px;
    width: auto;
    height: 45px;
  }

  .custom_button2 {
    width: 240px;
    height: 40px;
    top: 260px;
    left: 690px;
  }

  .carousel-image1 {
    top: 0px;
    left: 120px;
    width: auto;
    height: 480px;
  }

  .carousel-image2 {
    top: 20px;
    left: 160px;
    width: auto;
    height: 380px;
  }

  .carousel-image3 {
    top: 20px;
    right: 65px;
    width: auto;
    height: 380px;
  }

  .carousel_desc {
    top: 200px;
    left: 625px;
    width: 290px;
    height: 55px;
  }

  .custom_width {
    width: 300px;
  }

  .category-arrow {
    height: 30px;
  }

  .custom_button_text {
    font-size: 18px;
  }

  .carousel_desc_text {
    font-size: 18px;
  }

  .button_circle {
    width: 30px;
    height: 30px;
  }

  .button_arrow {
    height: 20px;
  }

  .slider_button_text {
    font-size: 20px;
  }

  .custom-arrow.left {
    left: 5.2rem;
  }

  .custom-arrow.right {
    right: 1.5rem;
  }

  .custom-arrow img {
    width: 40px;
    height: 40px;
  }

  .complex_block {
    top: -40px;
    right: 70px;
    padding-top: 30px;
    gap: 20px;
  }

  .long_text_width2 {
    width: 435px;
  }

  .margining {
    margin-top: 35px;
    margin-left: 470px;
  }

  .complex_block2 {
    top: -15px;
    left: 145px;
    padding-top: 30px;
    gap: 20px;
  }

  .switcher_buttons {
    gap: 20px;
  }

  .switcher_button {
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: flex-start;
  }

  .switcher_block {
    height: 392.1px;
    padding-top: 3rem !important;
  }

  .switcher_info {
    height: auto;
    width: fit-content;
    padding-left: 60px;
    gap: 1.5rem !important;
  }

  .switcher_image {
    width: 18px;
  }

  .switcher_text {
    margin: 0;
    padding-left: 15px;
    font-size: 18px;
  }

  .alphabet_list {
    width: 145px;
    padding-top: 9px;
  }

  .service_info {
    width: 240px;
    padding-top: 9px;
  }

  .letter {
    width: 20px;
    font-size: 30px;
  }

  .doctor_block .default_header {
    margin-right: 48px;
  }

  .news_block .default_header {
    margin-right: 48px;
  }

  .default_header {
    font-size: 28px;
  }

  .button_more {
    width: 90px;
    height: 45px;
  }

  .button_search {
    height: 35px;
  }

  .button_more_text {
    font-size: 16px;
  }

  .button_more_img {
    padding-top: 3px;
    width: 11px;
  }

  .swiper_arrows {
    top: -45px;
    right: 0;
  }

  .more_width {
    max-width: 240px;
  }

  .general_carousel_button {
    width: 45px;
    height: 45px;
  }

  .filters {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }

  .doctor-border {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }

  .doctor-border2 {
    padding-left: 0.1rem !important;
    padding-right: 0.1rem !important;
  }

  .news_photo {
    width: 100%;
    height: auto;
  }

  .item_name {
    font-size: 18px;
    height: 50px;
  }

  .item_subnames {
    font-size: 16px;
    height: 107px;
  }

  .modal-content {
    max-width: 100%;
  }

  .nav-arrow-circle {
    width: 60px;
    height: 60px;
  }

  .switch_text {
    font-size: 14px;
  }

  .map-info {
    margin-left: 3rem !important;
  }

  .main_address {
    font-size: 24px;
    padding: 10px 0;
  }

  .info_address {
    font-size: 16px;
  }

  .button_text.address,
  .collapse-button {
    font-size: 18px;
  }

  .partner {
    height: 45px;
  }

  .video {
    width: 600px;
    height: 400px;
  }

  .input_field::placeholder {
    font-size: 12px;
  }

  .form-select {
    font-size: 12px;
  }

  .fast_call_container {
    width: 230px;
  }

  .fast_call_item_img {
    width: 25px;
  }

  .footer_header {
    font-size: 20px;
  }

  .footer_link {
    font-size: 14px;
  }

  .footer_line {
    width: 230px;
  }

  footer .logo_text {
    font-size: 12px;
  }

  .fast_call_item .fast_call_text {
    font-size: 14px;
  }

  .flexible-align-news,
  .flexible-align-doctors {
    align-items: flex-end;
  }

  #news {
    width: 300px;
  }

  .fast_call {
    right: 20px;
    bottom: 40px;
  }

  .article_description {
    font-size: 14px;
  }

  .fast_call_img {
    width: 40px;
  }

  .doctor_name {
    font-size: 22px;
  }

  .doctor_undername {
    font-size: 18px;
  }

  .doctor_list {
    margin-left: -10px;
    margin-top: 10px;
  }

  .doctor_list .item_subname {
    font-size: 16px;
  }

  #doctor-container,
  #publication-container,
  #price-container {
    padding-left: 3rem !important;
  }

  .doc_flex {
    display: block;
  }

  .price_th,
  .price_item {
    font-size: 16px;
  }

  .swiper_none {
    display: none !important;
  }

  .footer_first_col {
    padding-left: 3rem !important;
  }

  .footer_next_col {
    padding-right: 3rem !important;
  }

  #doc-search,
  #pub-search {
    height: 31.6px;
  }

  .breadcrumb-item,
  .breadcrumb-item a,
  .search_public_li,
  .price_link {
    font-size: 16px;
  }

  .pub_sticky {
    top: 145px;
    position: sticky;
    background-color: white;
  }

  .collapse-back {
    max-height: 350px;
  }

  .doc_container {
    min-height: 244.6px;
  }

  .min-height {
    min-height: 245px !important;
  }

  .new_price {
    font-size: 14px;
  }

  .nav_public_li {
    font-size: 16px;
  }

  .article_header {
    font-size: 30px;
  }

  .article_subheader {
    font-size: 26px;
  }
}

@media ((min-width: 769px) and (max-width: 992px)) {
  .window_block {
    width: 500px;
    height: fit-content;
  }

  .window_content {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .close {
    width: 25px;
    height: 25px;
  }

  .old_logo {
    width: 60%;
  }

  .window_header {
    font-size: 32px;
  }

  .window_header2 {
    font-size: 20px;
  }

  .book_button {
    display: none !important;
  }

  .logo {
    width: 40px;
    height: auto;
  }

  #carouselMobileIndicators {
    display: none;
  }

  .section_padding {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .footer_margin {
    margin-top: 3rem !important;
  }

  .footer_padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .default_title {
    font-size: 20px;
  }

  .default_text {
    font-size: 16px;
  }

  #computerMenu {
    display: none;
  }

  .mobile-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 19px;
  }

  .mobile-burger span {
    height: 3px;
  }

  .mobile-menu {
    max-height: calc(100vh - 69px);
  }

  .logo_text {
    font-size: 12px;
    padding-left: 7px;
  }

  .mobile-nav-link {
    font-size: 16px;
  }

  .nav-link,
  .button_text,
  .underlogo_address,
  .mobile-dropdown-item {
    font-size: 14px;
  }

  .cookie_header {
    font-size: 14px;
  }

  .cookie_text {
    font-size: 12px;
  }

  .logo_container {
    padding-top: 11px;
    width: 250px;
  }

  .logo_circle {
    width: 21px;
    height: 21px;
  }

  .logo_pic {
    height: 11px;
    width: 11px;
  }

  .pic_2 {
    height: 12px;
    width: 12px;
  }

  .search {
    width: 28px;
    height: 28px;
    margin-left: 25px;
    margin-right: 16px;
  }

  .pic_3 {
    width: 18px;
    height: 18px;
  }

  .navbar-brand {
    margin-right: 14px;
  }

  .underlogo_text {
    font-size: 14px;
  }

  .navbar-nav {
    gap: 10px;
  }

  .search_content .button {
    padding: 8px 12px;
  }

  .search_content {
    flex-direction: row-reverse;
  }

  .main {
    margin-top: 100px;
  }

  .carousel_header {
    top: 190px;
    left: 85px;
  }

  .carousel_text {
    font-size: 20px;
    padding: 3px 12px;
  }

  .carousel_button {
    width: auto;
    height: auto;
    padding: 3px 12px;
    top: 195px;
    left: 500px;
  }

  .work_hours {
    top: 20px;
    left: 140px;
    gap: 30px;
  }

  .work_hours_item {
    width: 220px;
    height: 150px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    background-color: white;
  }

  .work_hours_header {
    height: 71px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .work_header {
    font-size: 20px;
  }

  .work_days {
    font-size: 16px;
    margin: 4px 0 0 0;
  }

  .main_slider_text {
    font-size: 14px;
  }

  .main_slider_header {
    font-size: 22px;
  }

  .work_days.large_size {
    font-size: 26px;
    margin: -8px 0 0 0;
  }

  .custom_button {
    width: auto;
    height: auto;
    padding: 5px 8px;
  }

  .custom_button2 {
    width: auto;
    height: auto;
    padding: 5px 8px;
    top: 190px;
    left: 470px;
  }

  .carousel-image1 {
    top: 0px;
    left: 110px;
    width: auto;
    height: 340px;
  }

  .carousel-image2 {
    top: 10px;
    left: 120px;
    width: auto;
    height: 320px;
  }

  .carousel-image3 {
    top: 10px;
    right: 30px;
    width: auto;
    height: 320px;
  }

  .carousel_desc {
    top: 153px;
    left: 418px;
    width: 260px;
    height: 40px;
  }

  .custom_width {
    width: 300px;
  }

  .category-arrow {
    height: 30px;
  }

  .custom_button_text {
    font-size: 14px;
  }

  .carousel_desc_text {
    font-size: 14px;
    line-height: 18px;
  }

  .button_circle {
    width: 25px;
    height: 25px;
  }

  .button_arrow {
    height: 16px;
  }

  .slider_button_text {
    font-size: 18px;
  }

  .custom-arrow.left {
    left: 3.5rem;
  }

  .custom-arrow.right {
    right: 1rem;
  }

  .custom-arrow img {
    width: 40px;
    height: 40px;
  }

  .complex_block {
    top: 0px;
    right: 10px;
    padding-top: 15px;
    gap: 15px;
  }

  .long_text_width2 {
    width: 275px;
  }

  .margining {
    margin-top: 0px;
    margin-left: 370px;
  }

  .complex_block2 {
    top: -8px;
    left: 120px;
    padding-top: 15px;
    gap: 20px;
  }

  .long_text_width {
    width: 330px;
  }

  .switcher_buttons {
    gap: 20px;
  }

  .switcher_button {
    padding-top: 5px;
    flex-direction: column;
    justify-content: center;
  }

  .switcher_block {
    height: 391.6px;
    padding-top: 1.5rem !important;
  }

  .switcher_info {
    height: auto;
    width: auto;
    padding-left: 50px;
    gap: 1.5rem !important;
  }

  .switcher_image {
    height: 20px;
  }

  .switcher_text {
    margin: 0;
    padding-top: 5px;
    font-size: 14px;
  }

  .alphabet_list {
    width: auto;
    padding-top: 9px;
  }

  .alphabet_list .nav-link {
    white-space: wrap;
  }

  .alphabet_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .service_info {
    width: auto;
    padding-top: 9px;
  }

  .letter {
    min-width: 20px;
    font-size: 26px;
  }

  .doctor_block .default_header {
    margin-right: 48px;
  }

  .news_block .default_header {
    margin-right: 48px;
  }

  .default_header {
    font-size: 26px;
  }

  .button_more {
    width: 90px;
    height: 45px;
  }

  .button_search {
    height: 30px;
  }

  .button_more_text {
    font-size: 16px;
  }

  .button_more_img {
    padding-top: 3px;
    width: 11px;
  }

  .swiper_arrows {
    top: -45px;
    right: 0;
  }

  .more_width {
    max-width: 235px;
  }

  .general_carousel_button {
    width: 45px;
    height: 45px;
  }

  .filters {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .doctor-border {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .doctor-border2 {
    padding-left: 0.1rem !important;
    padding-right: 0.1rem !important;
  }

  .news_photo {
    width: 100%;
    height: auto;
  }

  .item_name {
    font-size: 18px;
    height: 50px;
  }

  .item_subnames {
    font-size: 16px;
    height: 107px;
  }

  .modal-content {
    max-width: 100%;
  }

  #modal-image {
    height: auto;
    width: auto;
    max-width: 80vw;
    max-height: 90vh;
  }

  .left-arrow {
    left: 2px;
  }

  .right-arrow {
    right: 2px;
  }

  .feedback_item {
    height: 400px;
    max-height: 400px;
    overflow: hidden;
  }

  .contact_row {
    display: flex;
    justify-content: space-between;
  }

  .nav-arrow-circle {
    width: 60px;
    height: 60px;
  }

  .switch_text {
    font-size: 16px;
  }

  .main_address {
    font-size: 20px;
    padding: 10px 0;
  }

  .info_address {
    font-size: 16px;
  }

  .button_text.address,
  .collapse-button {
    font-size: 16px;
  }

  .partner {
    height: 45px;
  }

  .video {
    width: 600px;
    height: 400px;
  }

  .input_field::placeholder {
    font-size: 12px;
  }

  .form-select {
    font-size: 12px;
  }

  .fast_call_container {
    width: 230px;
  }

  .fast_call_item_img {
    width: 25px;
  }

  footer .container {
    flex-direction: column;
    gap: 50px;
  }

  .footer_col1 {
    align-items: center;
    justify-content: center;
  }

  .footer_col2 {
    align-items: flex-start;
    justify-content: center;
  }

  .footer_header {
    font-size: 18px;
  }

  .footer_link {
    font-size: 14px;
  }

  .footer_line {
    width: 150px;
  }

  .fast_call_item .fast_call_text {
    font-size: 14px;
  }

  .flexible-align-news,
  .flexible-align-doctors {
    align-items: flex-end;
  }

  #news {
    width: 180px;
  }

  .fast_call {
    right: 15px;
    bottom: 40px;
  }

  .fast_call_img {
    width: 40px;
  }

  .article_description {
    font-size: 14px;
  }

  .doctor_name {
    font-size: 18px;
  }

  .doctor_undername {
    font-size: 16px;
  }

  .doctor_list {
    margin-left: -10px;
    margin-top: 10px;
  }

  .doctor_list .item_subname {
    font-size: 16px;
  }

  #doctor-container,
  #publication-container,
  #price-container {
    padding-left: 3rem !important;
  }

  .doc_flex {
    display: block;
  }

  .price_th,
  .price_item {
    font-size: 14px;
  }

  .table-responsive {
    overflow-x: auto;
  }

  .footer_first_col {
    padding-left: 3rem !important;
  }

  .footer_next_col {
    padding-right: 3rem !important;
  }

  .breadcrumb-item,
  .breadcrumb-item a,
  .search_public_li,
  .price_link {
    font-size: 14px;
  }

  .collapse-back {
    max-height: 350px;
  }

  .doc_container {
    min-height: 289.2px;
  }

  .min-height {
    min-height: 180px !important;
  }

  .pub_sticky {
    top: 145px;
    position: sticky;
    background-color: white;
  }

  .new_price {
    font-size: 12px;
  }

  .nav_public_li {
    font-size: 14px;
  }

  .article_header {
    font-size: 24px;
  }

  .article_subheader {
    font-size: 20px;
  }
}

@media ((min-width: 577px) and (max-width: 768px)) {
  .window_block {
    width: 450px;
    height: fit-content;
  }

  .window_content {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .close {
    width: 20px;
    height: 20px;
  }

  .old_logo {
    width: 50%;
  }

  .window_header {
    font-size: 28px;
  }

  .window_header2 {
    font-size: 18px;
  }

  .book_button {
    display: none !important;
  }

  .page_info_container {
    flex-direction: column;
  }

  .logo {
    width: 35px;
    height: auto;
  }

  #carouselMobileIndicators {
    display: none;
  }

  .section_padding {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .footer_margin {
    margin-top: 2.5rem !important;
  }

  .footer_padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .default_title {
    font-size: 18px;
  }

  .default_text {
    font-size: 16px;
  }

  .logo_text {
    font-size: 11px;
    padding-left: 7px;
  }

  #computerMenu {
    display: none;
  }

  .mobile-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 19px;
  }

  .mobile-burger span {
    height: 3px;
  }

  .mobile-menu {
    max-height: calc(100vh - 69px);
  }

  .mobile-nav-link {
    font-size: 14px;
  }

  .nav-link,
  .button_text,
  .underlogo_address,
  .mobile-dropdown-item {
    font-size: 12px;
  }

  .cookie_header {
    font-size: 14px;
  }

  .cookie_text {
    font-size: 12px;
  }

  .logo_container {
    padding-top: 11px;
    width: 200px;
  }

  .logo_circle {
    width: 18px;
    height: 18px;
  }

  .logo_pic {
    height: 10px;
    width: 10px;
  }

  .pic_2 {
    height: 11px;
    width: 11px;
  }

  .search {
    width: 30px;
    height: 30px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .pic_3 {
    width: 18px;
    height: 18px;
  }

  .navbar-brand {
    margin-right: 12px;
  }

  .underlogo_text {
    font-size: 12px;
  }

  .navbar-nav {
    gap: 10px;
  }

  .search_content .button {
    padding: 8px 12px;
  }

  .search_content {
    flex-direction: row-reverse;
  }

  .main {
    margin-top: 100px;
  }

  .carousel_header {
    top: 140px;
    left: 40px;
  }

  .carousel_text {
    font-size: 15px;
    padding: 1px 5px;
  }

  .carousel_button {
    width: auto;
    height: auto;
    top: 165px;
    left: 390px;
    padding: 0 10px;
  }

  .work_hours {
    top: 12px;
    left: 115px;
    gap: 30px;
  }

  .work_hours_item {
    width: 160px;
    height: 120px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    background-color: white;
  }

  .work_hours_header {
    height: 35px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .work_header {
    font-size: 17px;
  }

  .work_days {
    font-size: 12px;
    margin: 4px 0 0 0;
  }

  .main_slider_text {
    font-size: 12px;
  }

  .main_slider_header {
    font-size: 18px;
  }

  .work_days.large_size {
    font-size: 20px;
    margin: -8px 0 0 0;
  }

  .custom_button {
    width: auto;
    height: auto;
    padding: 1px 8px;
  }

  .custom_button2 {
    width: auto;
    height: auto;
    padding: 1px 10px;
    top: 140px;
    left: 360px;
  }

  .carousel-image1 {
    top: 0px;
    left: 60px;
    width: auto;
    height: 270px;
  }

  .carousel-image2 {
    top: 10px;
    left: 60px;
    width: auto;
    height: 240px;
  }

  .carousel-image3 {
    top: 10px;
    right: 15px;
    width: auto;
    height: 240px;
  }

  .carousel_desc {
    top: 130px;
    left: 275px;
    width: 255px;
    height: auto;
  }

  .custom_width {
    width: 300px;
  }

  .category-arrow {
    height: 30px;
  }

  .custom_button_text {
    font-size: 12px;
  }

  .carousel_desc_text {
    font-size: 12px;
  }

  .button_circle {
    width: 16px;
    height: 16px;
  }

  .button_arrow {
    height: 12px;
  }

  .slider_button_text {
    font-size: 14px;
  }

  .custom-arrow.left {
    left: 2.3rem;
  }

  .custom-arrow.right {
    right: 0.3rem;
  }

  .custom-arrow img {
    width: 30px;
    height: 30px;
  }

  .complex_block {
    top: -10px;
    right: 25px;
    padding-top: 14px;
    gap: 10px;
  }

  .margining {
    margin-top: 13px;
    margin-left: 220px;
  }

  .complex_block2 {
    top: -18px;
    left: 80px;
    padding-top: 25px;
    gap: 7px;
  }

  .long_text_width,
  .long_text_width2 {
    width: 235px;
  }

  .switcher_buttons {
    gap: 20px;
  }

  .switcher_button {
    padding-top: 5px;
    flex-direction: column;
    justify-content: center;
  }

  .switcher_block {
    height: 356.6px;
    padding-top: 1.5rem !important;
  }

  .switcher_info {
    height: auto;
    width: auto;
    padding-left: 25px;
    gap: 1.5rem !important;
  }

  .switcher_image {
    height: 20px;
  }

  .switcher_text {
    margin: 0;
    padding-top: 5px;
    font-size: 14px;
  }

  .alphabet_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: auto;
    padding-top: 9px;
  }

  .alphabet_list .nav-link {
    white-space: wrap;
  }

  .service_info {
    width: auto;
    padding-top: 9px;
  }

  .letter {
    min-width: 15px;
    font-size: 20px;
  }

  .doctor_block .default_header {
    margin-right: 48px;
  }

  .news_block .default_header {
    margin-right: 48px;
  }

  .default_header {
    font-size: 22px;
  }

  .button_more {
    width: 80px;
    height: 37px;
  }

  .button_search {
    height: 30px;
  }

  .button_more_text {
    font-size: 16px;
  }

  .button_more_img {
    padding-top: 3px;
    width: 11px;
  }

  .swiper_arrows {
    top: -37px;
    right: 0;
  }

  .more_width {
    max-width: 245px;
  }

  .general_carousel_button {
    width: 37px;
    height: 37px;
  }

  .filters {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .doctor-border {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .doctor-border2 {
    padding-left: 0.1rem !important;
    padding-right: 0.1rem !important;
  }

  .news_photo {
    width: 100%;
    height: auto;
  }

  .item_name {
    font-size: 18px;
    height: 50px;
  }

  .item_subnames {
    font-size: 16px;
    height: 96px;
  }

  .modal-content {
    max-width: 100%;
  }

  #modal-image {
    height: auto;
    width: auto;
    max-width: 80vw;
    max-height: 90vh;
  }

  .left-arrow {
    left: 2px;
  }

  .right-arrow {
    right: 2px;
  }

  .feedback_item {
    height: 400px;
    max-height: 400px;
    overflow: hidden;
  }

  .contact_row {
    display: flex;
    justify-content: space-between;
  }

  .nav-arrow-circle {
    width: 40px;
    height: 40px;
  }

  .switch_text {
    font-size: 16px;
  }

  .map-block {
    height: 300px;
  }

  .address-block.chosen {
    align-items: center;
    justify-content: flex-start;
  }

  .map-info {
    margin-top: 15px;
  }

  .main_address {
    margin: auto;
    font-size: 20px;
    padding: 10px 0;
  }

  .info_address {
    font-size: 16px;
  }

  .button_text.address,
  .collapse-button {
    font-size: 16px;
  }

  .partner {
    height: 35px;
  }

  .video {
    width: 600px;
    height: 350px;
  }

  .input_field::placeholder {
    font-size: 12px;
  }

  .form-select {
    font-size: 12px;
  }

  .fast_call_container {
    width: 200px;
  }

  .fast_call_item_img {
    width: 25px;
  }

  footer .container {
    flex-direction: column;
    gap: 50px;
  }

  .footer_col1 {
    align-items: center;
    justify-content: center;
  }

  .footer_col2 {
    align-items: flex-start;
    justify-content: center;
  }

  .footer_header {
    font-size: 18px;
  }

  .footer_link {
    font-size: 14px;
  }

  .footer_line {
    width: 150px;
  }

  .fast_call_item .fast_call_text {
    font-size: 14px;
  }

  .flexible-align-news,
  .flexible-align-doctors {
    align-items: flex-end;
  }

  #news {
    width: 180px;
  }

  .fast_call {
    right: 20px;
    bottom: 40px;
  }

  .article_description {
    font-size: 12px;
  }

  .fast_call_img {
    width: 40px;
  }

  .doctor_name {
    font-size: 18px;
  }

  .doctor_undername {
    font-size: 14px;
  }

  .doctor_list {
    margin-left: -10px;
    margin-top: 10px;
  }

  .doctor_list .item_subname {
    font-size: 14px;
  }

  #doctor-container,
  #publication-container,
  #price-container {
    padding: 0 1rem !important;
  }

  .doc_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .doc_padding {
    padding: 0 25px;
  }

  .price_th,
  .price_item {
    font-size: 12px;
  }

  .footer_first_col {
    padding-left: 2rem;
  }

  .footer_next_col {
    padding-right: 1rem !important;
  }

  .doc_head {
    flex-direction: row !important;
    align-items: center !important;
    height: fit-content;
    column-gap: 15px;
  }

  .breadcrumb-item,
  .breadcrumb-item a,
  .search_public_li,
  .price_link {
    font-size: 14px;
  }

  .collapse-back {
    max-height: 350px;
  }

  .doc_container {
    min-height: 289.2px;
  }

  .min-height {
    min-height: 193px !important;
  }

  .pub_container {
    padding: 0rem 1rem !important;
  }

  .public_anchor {
    display: none;
  }

  .search_public {
    margin-top: 0.5rem !important;
  }

  .search_public_link:not(:last-child)::after {
    right: 50px !important;
  }

  .new_price {
    font-size: 12px;
  }

  .nav_public_li {
    font-size: 14px;
  }

  .article_header {
    font-size: 20px;
  }

  .article_subheader {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .breadcrumb_padding {
    padding-top: 20px;
  }

  .book_button {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 9990;
    padding: 10px 20px;
    background-color: #095565 !important;
    border: 1px solid #095565 !important;
    color: white !important;
    font-size: 14px !important;
  }

  .book_button:hover {
    background-color: white !important;
    border: 1px solid #095565 !important;
    color: #095565 !important;
  }

  .page_info_container {
    flex-direction: column;
  }

  section {
    padding: 5px;
  }

  .default_title {
    font-size: 18px;
  }

  .search_content .button {
    display: none !important;
  }

  .default_text {
    font-size: 14px;
  }

  .section_padding {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .footer_margin {
    margin-top: 3rem !important;
  }

  .footer_padding {
    padding-top: 3rem !important;
    padding-bottom: 4rem !important;
  }

  .window_block {
    width: 90%;
    height: fit-content;
  }

  .window_content {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .close {
    width: 20px;
    height: 20px;
  }

  .old_logo {
    width: 50%;
  }

  .window_header {
    font-size: 28px;
  }

  .window_header2 {
    font-size: 16px;
  }

  .logo {
    margin-left: 15px;
    width: 47px;
    height: auto;
  }

  #carouselExampleIndicators {
    display: none;
  }

  .logo_text {
    font-size: 12px;
    padding-left: 5px;
  }

  .special_text {
    display: none;
  }

  #computerMenu {
    display: none;
  }

  .mobile-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 30px;
  }

  .mobile-burger span {
    height: 4px;
  }

  .mobile-burger span:nth-child(1) {
    top: 0;
  }
  .mobile-burger span:nth-child(2) {
    top: 12px;
  }
  .mobile-burger span:nth-child(3) {
    top: 12px;
  }
  .mobile-burger span:nth-child(4) {
    top: 24px;
  }

  .mobile-burger.active span:nth-child(1),
  .mobile-burger.active span:nth-child(4) {
    top: 8px;
    opacity: 0;
  }

  .mobile-menu {
    max-height: calc(100vh - 69px);
  }

  .mobile-nav-link {
    font-size: 16px;
  }

  .nav-link,
  .button_text,
  .underlogo_address {
    font-size: 14px;
  }

  .mobile-dropdown-item {
    font-size: 14px;
  }

  .logo_container {
    transform: translateX(-43%) translateY(10px);
  }

  .logo_info:hover .logo_container {
    transform: translateX(-43%) translateY(0);
  }

  .underlogo_address {
    max-width: 150px;
  }

  .cookie_header {
    font-size: 14px;
  }

  .cookie_text {
    font-size: 12px;
  }

  .logo_container {
    padding-top: 11px;
    width: 200px;
  }

  .logo_circle {
    width: 25px;
    height: 25px;
  }

  .logo_pic {
    height: 16px;
    width: 16px;
  }

  .pic_2 {
    height: 16px;
    width: 14px;
  }

  .search {
    width: 40px;
    height: 40px;
    margin-left: 20px;
    margin-right: 15px;
  }

  .pic_3 {
    width: 20px;
    height: 20px;
  }

  .navbar-brand {
    margin-right: 15px;
  }

  .underlogo_text {
    font-size: 12px;
  }

  .navbar-nav {
    gap: 10px;
  }

  .search_content {
    flex-direction: row-reverse;
    margin-right: 20px;
  }

  .search_content .button {
    padding: 3px 5px;
  }

  .main {
    margin-top: 60px;
  }

  .switcher_buttons {
    gap: 10px;
  }

  .switcher_button {
    padding-top: 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 58.8px;
  }

  .switcher_info {
    height: auto;
    width: auto;
    padding-left: 7px;
    padding-right: 3px;
    gap: 0.3rem !important;
  }

  .switcher_image {
    height: 17px;
  }

  .switcher_text {
    margin: 0;
    height: fit-content;
    padding-top: 5px;
    font-size: 10px;
  }

  .alphabet_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: auto;
    padding-top: 9px;
  }

  .alphabet_list .nav-link {
    white-space: wrap;
  }

  .service_info {
    width: auto;
    padding-top: 9px;
  }

  .letter {
    min-width: 15px;
    font-size: 18px;
  }

  .item_name {
    padding-right: 10px !important;
  }

  .doctor_block .default_header {
    margin-right: 15px;
  }

  .news_block .default_header {
    margin-right: 15px;
  }

  .default_header {
    font-size: 18px;
  }

  .trust_text {
    font-size: 14px;
  }

  .button_more {
    width: 60px;
    height: 32px;
  }

  .button_search {
    height: 25px;
  }

  .button_more_text {
    font-size: 16px;
  }

  .button_more_img {
    padding-top: 3px;
    width: 11px;
  }

  .swiper_arrows {
    top: -32px;
    right: 0;
  }

  .more_width {
    max-width: 210px;
  }

  .general_carousel_button {
    width: 32px;
    height: 32px;
  }

  .filters {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .doctor-border {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .doctor-border2 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .news_photo {
    width: 100%;
    height: auto;
  }

  .item_name {
    font-size: 15px;
    height: 55px;
  }

  .item_subnames {
    font-size: 14px;
    height: 85px;
  }

  .modal-content {
    max-width: 100%;
  }

  #modal-image {
    height: auto;
    width: auto;
    max-width: 80vw !important;
    max-height: 85vh !important;
    padding: 5px;
  }

  .left-arrow {
    left: 1.5px;
  }

  .right-arrow {
    right: 1.5px;
  }

  .feedback_item {
    height: 300px;
    max-height: 300px;
    padding-bottom: 10px;
    overflow: hidden;
  }

  .contact_row {
    display: flex;
    justify-content: space-between;
  }

  .modal-actions {
    width: 35px;
    height: 35px;
  }

  .nav-arrow-circle {
    width: 32px;
    height: 32px;
  }

  .switch_text {
    font-size: 16px;
  }

  .map-block {
    height: 300px;
  }

  .address-block a {
    font-size: 14px;
  }

  .address-block.chosen {
    align-items: center;
    justify-content: flex-start;
  }

  .main_address {
    margin: auto;
    font-size: 16px;
    padding: 10px 0;
  }

  .info_address {
    font-size: 14px;
  }

  .button_text.address,
  .collapse-button {
    font-size: 14px;
  }

  .partner {
    height: 25px;
  }

  .video {
    width: 100%;
    height: 280px;
  }

  .input_field::placeholder {
    font-size: 12px;
  }

  .form-select {
    font-size: 12px;
  }

  .fast_call_container {
    width: 200px;
  }

  .fast_call_item_img {
    width: 21px;
  }

  footer .container {
    flex-direction: column;
    gap: 50px;
  }

  .footer_col1 {
    align-items: center;
    justify-content: center;
  }

  .footer_col1 img {
    width: 38px;
    height: 38px;
  }

  .footer_col2 {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    row-gap: 30px;
    column-gap: 15px;
    padding-left: 10px;
  }

  .footer_header {
    font-size: 16px;
  }

  .footer_link {
    font-size: 12px;
  }

  .footer_line {
    width: 150px;
  }

  .fast_call_item .fast_call_text {
    font-size: 14px;
  }

  .flexible-align-news,
  .flexible-align-doctors {
    align-items: flex-end;
  }

  #news {
    width: 160px;
  }

  .fast_call {
    right: 15px;
    bottom: 40px;
  }

  .fast_call_img {
    width: 40px;
  }

  .article_description {
    font-size: 10px;
  }

  .doctor_name {
    font-size: 14px;
  }

  .doctor_undername {
    font-size: 12px;
  }

  .doctor_list {
    margin-left: -10px;
    margin-top: 10px;
  }

  .item_subname {
    font-size: 12px;
  }

  #doctor-container,
  #publication-container,
  #price-container {
    padding: 0 1rem !important;
  }

  .doc_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .doc_padding {
    padding: 0 25px;
  }

  .price_th,
  .price_item {
    font-size: 12px;
  }

  .footer_first_col {
    padding: 0rem 1rem !important;
  }

  .footer_next_col {
    padding: 0rem 1rem !important;
  }

  .doc_head {
    flex-direction: row !important;
    align-items: center !important;
    height: fit-content;
    column-gap: 15px;
  }

  .breadcrumb-item,
  .breadcrumb-item a,
  .search_public_li,
  .price_link {
    font-size: 14px;
  }

  .collapse-back {
    max-height: 350px;
  }

  .doc_container {
    min-height: 289.2px;
  }

  .min-height {
    min-height: 138px !important;
  }

  .pub_container {
    padding: 0rem 1rem !important;
  }

  .public_anchor {
    display: none;
  }

  .search_public {
    margin-top: 0.5rem !important;
  }

  .search_public_link:not(:last-child)::after {
    right: 50px !important;
  }

  .category-header .category-arrow {
    height: 20px;
  }

  .new_price {
    font-size: 12px;
  }

  .nav_public_li {
    font-size: 14px;
  }

  .article_header {
    font-size: 18px;
  }

  .article_subheader {
    font-size: 16px;
  }
}

@media ((min-width: 481px) and (max-width: 576px)) {
  .main {
    max-width: 100vw !important;
  }

  .switcher_block {
    height: 366px;
    padding-top: 1.5rem !important;
  }

  .alphabet_list .nav-link {
    font-size: 14px;
  }

  #carouselMobileIndicators {
    position: relative;
    max-width: 480px;
    height: auto;
  }

  .carousel-indicators {
    position: absolute;
    bottom: -35px;
    padding: 0 !important;
  }

  .carousel_header {
    top: 15px;
    left: 30px;
    padding-left: 10px;
    padding-right: 10px;
    width: fit-content;
    white-space: nowrap;
  }

  .carousel_text {
    font-size: 20px;
    text-align: center;
  }

  .carousel_button {
    width: auto;
    height: auto;
    bottom: 15px;
    right: 15px;
    padding: 5px 20px;
  }

  .work_hours {
    top: 65px;
    left: 50%;
    transform: translate(-50%, 0%);
    gap: 30px;
    flex-direction: column;
  }

  .work_hours_item {
    width: 250px;
    height: auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    background-color: white;
  }

  .work_hours_header {
    height: 40px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .work_header {
    font-size: 18px;
  }

  .work_days {
    font-size: 16px;
    margin: 10px 0 0 0;
    line-height: 20px;
    height: auto;
    margin-bottom: 15px !important;
  }

  .work_days.large_size {
    font-size: 18px;
    margin: -10px 0 0 0;
    line-height: normal;
  }

  .main_slider_text {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }

  .main_slider_header {
    font-size: 24px;
    text-align: center;
    width: 100%;
  }

  .complex_block2 .main_slider_header {
    padding-top: 20px !important;
    padding-bottom: 120px !important;
  }

  .custom_button {
    width: auto;
    height: auto;
    bottom: 15px;
    right: 30px;
    padding: 5px 20px;
  }

  .custom_button2 {
    width: auto;
    height: auto;
    padding: 0 10px;
  }

  .carousel-image1 {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: auto;
  }

  .carousel-image2 {
    bottom: 0px;
    left: 30px;
    width: auto;
    height: 330px;
  }

  .carousel-image3 {
    bottom: 0px;
    right: 15px;
    width: auto;
    height: 330px;
  }

  .carousel_desc {
    padding: 5px 10px;
    top: 140px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 250px;
    height: auto;
  }

  .carousel_desc_text {
    font-size: 18px;
  }

  .custom_width {
    width: 300px;
  }

  .category-arrow {
    height: 30px;
  }

  .custom_button_text {
    font-size: 14px;
    white-space: nowrap;
  }

  .button_circle {
    width: 16px;
    height: 16px;
  }

  .button_arrow {
    height: 12px;
  }

  .slider_button_text {
    font-size: 14px;
  }

  .custom-arrow.left {
    left: 0.4rem;
  }

  .custom-arrow.right {
    right: 0.4rem;
  }

  .custom-arrow img {
    width: 40px;
    height: 40px;
  }

  .complex_block {
    top: 95px;
    left: 50%;
    transform: translate(-50%, 0%);
    height: auto !important;
  }

  .complex_block .main_slider_header {
    padding-top: 20px !important;
    padding-bottom: 120px !important;
  }

  .long_text_width2 {
    width: 180px;
    text-align: left;
  }

  .margining {
    margin-top: 60px;
    margin-left: 155px;
  }

  .margining2 {
    margin-top: 70px;
    padding-left: 15px !important;
  }

  .complex_block2 {
    top: 95px;
    left: 50%;
    transform: translate(-50%, 0%);
    height: auto !important;
  }

  .long_text_width {
    padding-bottom: 10px !important;
    padding-left: 231px !important;
    padding-right: 15px !important;
    text-align: right;
  }

  .carousel-image4 {
    width: 300px;
    left: 75px;
    bottom: 20px;
  }

  .main_carousel_block {
    top: 80px;
    width: 100%;
  }

  .margining3 {
    bottom: 15px;
  }
}

@media (max-width: 481px) {
  .main {
    max-width: 100vw !important;
  }

  .switcher_block {
    height: 325px;
    padding-top: 1.5rem !important;
  }

  .alphabet_list .nav-link {
    font-size: 11px;
    max-width: 108px;
  }

  #carouselMobileIndicators {
    position: relative;
    max-width: 480px;
    height: auto;
  }

  .carousel-indicators {
    position: absolute;
    bottom: -35px;
    padding: 0 !important;
  }

  .carousel_header {
    top: 15px;
    left: 30px;
    padding-left: 10px;
    padding-right: 10px;
    width: fit-content;
    white-space: nowrap;
  }

  .carousel_text {
    font-size: 18px;
    text-align: center;
  }

  .carousel_button {
    width: auto;
    height: auto;
    bottom: 15px;
    right: 15px;
    padding: 5px 20px;
  }

  .work_hours {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 25px;
    flex-direction: column;
  }

  .work_hours_item {
    width: 60vw;
    height: auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    background-color: white;
  }

  .work_hours_header {
    height: 6.5vh;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: 5px !important;
  }

  .work_header {
    font-size: 16px;
  }

  .work_days {
    font-size: 14px;
    line-height: 20px;
    height: auto;
    margin-bottom: 10px !important;
  }

  .work_days.large_size {
    font-size: 16px;
    margin: -10px 0 0 0;
    line-height: normal;
  }

  .main_slider_text {
    font-size: 16px;
    text-align: center;
    width: 100%;
  }

  .main_slider_header {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }

  .complex_block2 .main_slider_header {
    padding-top: 10px !important;
    padding-bottom: 30% !important;
  }

  .custom_button {
    width: auto;
    height: auto;
    bottom: 15px;
    right: 30px;
    padding: 5px 20px;
  }

  .custom_button2 {
    width: auto;
    height: auto;
    padding: 0 10px;
  }

  .carousel-image1 {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: auto;
  }

  .carousel-image2 {
    bottom: 0px;
    left: 30px;
    width: auto;
    height: 65%;
  }

  .carousel-image3 {
    bottom: 0px;
    right: 15px;
    width: auto;
    height: 65%;
  }

  .carousel_desc {
    padding: 5px;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: auto;
    height: auto;
  }

  .carousel_desc_text {
    font-size: 16px;
  }

  .custom_width {
    width: 300px;
  }

  .category-arrow {
    height: 30px;
  }

  .custom_button_text {
    font-size: 14px;
    white-space: nowrap;
  }

  .button_circle {
    width: 16px;
    height: 16px;
  }

  .button_arrow {
    height: 12px;
  }

  .slider_button_text {
    font-size: 14px;
  }

  .custom-arrow.left {
    left: 0.4rem;
  }

  .custom-arrow.right {
    right: 0.4rem;
  }

  .custom-arrow img {
    width: 35px;
    height: 35px;
  }

  .complex_block {
    width: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    height: 100% !important;
  }

  .complex_block .main_slider_header {
    padding-top: 10px !important;
    padding-bottom: 30% !important;
  }

  .long_text_width2 {
    width: 180px;
    margin-left: 30px !important;
    text-align: left;
  }

  .margining {
    margin-top: 20px !important;
    margin-left: 30px !important;
  }

  .margining2 {
    margin-left: 5% !important;
  }

  .complex_block2 {
    width: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    height: 100% !important;
  }

  .long_text_width {
    width: 180px;
    margin-left: 50% !important;
    padding-bottom: 40px !important;
    text-align: right;
  }

  .carousel-image4 {
    left: 50%;
    transform: translate(-50%, 0%);
    height: 50%;
    bottom: 10px;
  }

  .main_carousel_block {
    top: 80px;
    width: 100%;
  }

  .margining3 {
    bottom: 15px;
  }
}
