@charset "UTF-8";

@font-face {
  font-family: "Century Gothic";
  src: url("src/fonts/centurygothic.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Century Gothic";
  src: url("src/fonts/centurygothic_bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}

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

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

body {
  margin: 0;
  padding: 0;
  background-color: white;
  overflow-x: hidden;
}

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

#cookie-banner h2 {
  margin: 0 0 15px;
  text-align: left;
}

#cookie-banner p {
  margin: 0 0 15px;
  text-align: left;
}

.cookie_buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.cookie_button {
  border: 2px solid #4f9f2e;
  background-color: #4f9f2e;
  color: white;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cookie_button:hover {
  color: #45a049;
  background-color: white;
}

.bold {
  font-weight: bold;
}

#main_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-left-color: #4f9f2e;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.window {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(124, 189, 182, 0.6);
  display: none;
  z-index: 9998;
}

.close {
  position: relative;
  cursor: pointer;
  width: 25px;
  height: 25px;
  margin-left: 98%;
  margin-top: 0;
}

.window_block {
  position: absolute;
  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;
}

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

.window_prize {
  font-weight: bold;
  text-align: center;
  color: #095565;
  letter-spacing: 2px;
}

.window_text {
  font-weight: normal;
  text-align: center;
  letter-spacing: 1px;
}

.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

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

.timer_add {
  margin-top: 0px;
}

.timer_number {
  background-color: #4f9f2e;
  color: white;
  border-radius: 20px;
  padding: 5px 10px;
  font-weight: bold;
}

.window_button_link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid #4f9f2e;
  background-color: #4f9f2e;
  border-radius: 15px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3 ease;
}

.window_button {
  text-align: center;
  color: white;
}

.window_button_link:hover {
  background-color: white;
}

.window_button_link:hover .window_button {
  color: #4f9f2e;
}

.main_image {
  opacity: 0;
  transition: opacity 1s ease;
}

.header {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  background-color: white;
  transition: all 0.2s ease-in-out;
  z-index: 9990;
}

.header_logo a {
  height: 100%;
  display: flex;
  justify-content: center;
}

.header--move {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
}

.header .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_social_media {
  display: none;
}

.header_social_media--activate {
  margin-top: 10px;
  top: 160px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

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

.menu_link {
  width: auto;
  color: #353535;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu_link:hover {
  color: #095565;
  background-color: #edf0f2;
}

.menu_link--active {
  color: #095565;
  background-color: #edf0f2;
  transition: all 0.3s ease;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-image: url("../icons/main_back.svg");
}

.main_course {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.course_name {
  font-weight: bold;
  color: #4f9f2e;
}

.main_button {
  width: fit-content;
  height: fit-content;
  text-decoration: none;
  font-weight: bold;
  color: white;
  z-index: 5;
  border: 2px solid #4f9f2e;
  border-radius: 15px;
  background-color: #4f9f2e;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-in-out;
  z-index: 5;
}

.main_button:hover {
  background-color: white;
  color: #4f9f2e;
}

.overview_block {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
  background-color: #095565;
}

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

.overview_block .timer_number {
  background-color: white;
  color: #095565;
}

.overview_block .timer_add {
  color: white;
}

.audience {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

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

.default_header {
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 3px;
  color: #4f9f2e;
  text-align: center;
}

.default_header_white {
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 3px;
  color: white;
  text-align: center;
}

.audience_categories {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.audience_item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.citate {
  width: 100%;
  height: auto;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.citate .black_line {
  margin: 50px 0;
  background-color: #095565;
}

.citate .main_button {
  padding: 20px 50px;
}

.citate_text {
  width: 100%;
  font-weight: bold;
  text-align: center;
}

.course_specifics {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #7cbdb6;
}

.specifics {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.specific_item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 60px;
  align-items: center;
  position: relative;
}

.specific_img {
  position: absolute;
  z-index: 1;
  width: 90%;
}

.specific_item .default_text,
.specific_item .subheader_text {
  z-index: 2;
  text-align: center;
  transition: color 0.3s ease;
}

.specific_item:hover .default_text,
.specific_item:hover .subheader_text {
  color: transparent;
}

.program_unique {
  width: 100%;
  display: flex;
  justify-content: center;
}

.unique {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.unique_header {
  text-align: center;
  letter-spacing: 3px;
}

.unique_column {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 80px;
}

.unique_item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.unique_content {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 30px;
  padding-left: 20px;
}

.doctor {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.doctor_block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 50px;
  z-index: 9;
}

.doctor_photo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: auto;
}

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

.doctor_info {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctor_header {
  font-weight: bold;
  text-align: center;
  color: #383838;
  padding-bottom: 15px;
}

.doctor_name {
  font-weight: normal;
  text-align: center;
  position: relative;
}

.doctor_link {
  position: absolute;
  cursor: pointer;
  z-index: 3;
}

.doctor_list {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #383838;
  gap: 30px;
}

.doctor_item {
  text-align: left;
}

.studying_stages {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #095565;
  gap: 90px;
}

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

.stage_item {
  width: auto;
  height: auto;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.stage_item .default_text {
  width: 90%;
  text-align: center;
}

.stage_circle {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
  background-color: white;
}

.price {
  display: flex;
  justify-content: center;
  width: 100%;
}

.price_tariff {
  width: 100%;
  height: auto;
  row-gap: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tariff {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tariff_more--active {
  overflow: hidden;
  transition: height 0.3s ease;
}

.tarff_name {
  font-weight: bold;
  letter-spacing: 3px;
}

.tariff_speciality {
  text-align: center;
  letter-spacing: 3px;
}

.padding_top {
  padding-top: 10px;
}

.black_line {
  background-color: #383838;
  height: 0.8px;
  width: 100%;
}

.tariff_info {
  width: 100%;
  padding-bottom: 30px;
}

.tariff_header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.tariff_arrow {
  position: absolute;
  transition: transform 0.4s ease;
}

.tariff_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 30px;
}

.arrow--rotated {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.tariff_button {
  margin: auto;
  width: fit-content;
  height: fit-content;
  border: none;
  border-radius: 15px;
  border: 2px solid #4f9f2e;
  background-color: #4f9f2e;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.tariff_button:hover {
  color: #4f9f2e;
  background-color: white;
  transition: all 0.1s ease-in-out;
}

.price_info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.old_price {
  text-decoration: line-through;
}

.new_price {
  color: #085465;
  font-weight: bold;
}

.contact {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 3;
}

.contact_block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
}

.address_block {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 23px;
}

.address_block .subheader_text {
  padding-bottom: 15px;
}

.address_link {
  text-decoration: none;
  color: #353535;
  font-size: 20px;
}

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

.address_button {
  width: auto;
  height: auto;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  letter-spacing: 2px;
  border: 2px solid #4f9f2e;
  background-color: #4f9f2e;
  transition: all 0.3s ease;
}

.address_button:hover {
  color: #4f9f2e;
  background-color: white;
}

.footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.footer_block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.footer_column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer_column .subheader_text {
  padding-bottom: 20px;
}

.footer_column .footer_link {
  padding-bottom: 10px;
}

footer {
  background-color: #edf0f2;
  height: auto;
  padding: 50px 0;
}

.footer .container {
  flex-direction: row;
  justify-content: space-between;
}

.footer_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-margin {
  margin: 10px 0;
}

.footer_line {
  margin: 10px 0;
  width: 70%;
  height: 1.4px;
  background-color: #095565;
}

.footer_link {
  text-decoration: none;
  color: #353535;
}

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

.footer_media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

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

.footer_structure {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  gap: 100px;
  width: auto;
}

.fast_call {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9997;
}

.fast_call_img {
  cursor: pointer;
  width: 50px;
  height: auto;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 0 5px white;
}

.fast_call:hover .fast_call_img,
.fast_call:hover .fast_call_container .fast_call_item,
.fast_call_img:hover,
.fast_call_container:hover .fast_call_img {
  animation-play-state: paused;
}

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

.fast_call_container {
  width: 220px;
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  padding-bottom: 15px;
  z-index: 10;
  animation: fadeInUp 0.25s ease forwards;
}

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

.fast_call:hover .fast_call_container,
.fast_call_img:hover + .fast_call_container {
  display: block;
}

.fast_call_item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  color: #095565;
  font-size: 14px;
  font-weight: bold;
}

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

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

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

.fast_call_text {
  width: 100%;
}

@media (min-width: 1600px) {
  .default_text {
    font-size: 20px;
  }

  #cookie-banner h2 {
    font-size: 18px;
  }

  #cookie-banner p {
    font-size: 16px;
    line-height: 1.4;
  }

  .cookie_button {
    font-size: 16px;
  }

  .window_block {
    width: auto;
    height: auto;
    padding: 30px;
  }

  .window_header {
    font-size: 32px;
  }

  .window_text {
    font-size: 20px;
  }

  .window_prize {
    font-size: 78px;
  }

  .timer_number {
    font-size: 48px;
  }

  .timer_add {
    font-size: 20px;
  }

  .window_button_link {
    width: auto;
    height: 60px;
    padding: 0 60px;
    font-size: 32px;
  }

  .arrow_block {
    width: 60px;
  }

  #specialButton {
    width: 40px;
  }

  .container {
    max-width: 1450px;
    width: 100%;
    height: 100%;
  }

  .container.padding {
    padding-top: 50px;
    padding-bottom: 50px;
    row-gap: 90px;
  }

  .header {
    height: 90px;
    padding: 0 50px;
  }

  .header_logo {
    width: auto;
    height: auto;
  }

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

  .burger_menu {
    display: none;
  }

  .menu {
    width: auto;
    height: 30px;
  }

  .menu_list {
    width: auto;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu_link {
    width: auto;
    font-size: 18px;
    padding: 10px 25px;
  }

  .main {
    padding-top: 100px;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
  }

  .main .container {
    justify-content: center;
    gap: 110px;
  }

  .default_header {
    font-size: 40px;
  }

  .default_header_white {
    font-size: 40px;
  }

  .main_course {
    width: 700px;
    height: auto;
    justify-content: center;
    gap: 60px;
  }

  .course_name {
    width: 100%;
    height: auto;
    font-size: 44px;
    letter-spacing: 2px;
  }

  .course_description {
    width: 100%;
    height: auto;
    font-size: 22px;
  }

  .main_button {
    padding: 20px 30px;
    font-size: 24px;
    letter-spacing: 3px;
  }

  .main_background {
    width: auto;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }

  .main_image {
    width: auto;
    height: 750px;
  }

  .overview_text {
    font-size: 30px;
  }

  .overview_block .timer {
    gap: 50px;
  }

  .overview_block .timer_number {
    font-size: 64px;
  }

  .overview_block .timer_add {
    font-size: 24px;
  }

  .audience_categories {
    height: auto;
  }

  .audience_item {
    width: 30%;
    gap: 30px;
  }

  .subheader_text {
    font-size: 24px;
  }

  .audience_image {
    height: 150px;
  }

  .item_width {
    width: 100%;
  }

  .custom_width1 {
    width: 360px;
  }

  .custom_width2 {
    width: 400px;
  }

  .custom_width3 {
    margin-left: 10px;
    width: 370px;
  }

  .custom_width4 {
    width: 310px;
  }

  .audience_text {
    font-size: 22px;
  }

  .citate {
    padding: 50px 250px;
  }

  .citate_text {
    font-size: 32px;
  }

  .course_specifics {
    height: auto;
  }

  .specifics {
    height: 500px;
  }

  .specific_item {
    width: 30%;
    height: 500px;
    padding: 0 20px;
  }

  .specific_item .subheader_text {
    text-align: center;
  }

  .program_unique {
    height: auto;
  }

  .unique_image {
    width: 120px;
    height: 120px;
  }

  .unique_content {
    height: 263px;
  }

  .doctor_block {
    height: auto;
  }

  .doctor_photo {
    height: auto;
    width: auto;
  }

  .doctor_image {
    height: 600px;
  }

  .doctor_info {
    width: 690px;
    gap: 50px;
  }

  .doctor_header {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .doctor_name {
    width: 690px;
    letter-spacing: 3px;
    font-size: 40px;
  }

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

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

  .first_link {
    margin-bottom: 40px;
    margin-left: 510px;
  }

  .second_link {
    margin-bottom: 40px;
    margin-left: 340px;
  }

  .third_link {
    margin-bottom: 40px;
    margin-left: 500px;
  }

  .doctor_list {
    height: auto;
    display: flex;
    flex-direction: column;
    color: #383838;
    padding-left: 50px;
  }

  .doctor_item {
    font-size: 20px;
  }

  .stage_circle {
    min-width: 350px;
    min-height: 350px;
  }

  .stage_item {
    width: 340px;
    height: auto;
  }

  .stages {
    width: 100%;
    height: auto;
    align-items: flex-start;
  }

  .price {
    height: auto;
  }

  .tariff {
    min-height: 64px;
  }

  .tariff_more--active {
    height: 140px;
    padding-left: 5px;
  }

  .tarff_name {
    font-size: 30px;
    padding-top: 15px;
  }

  .tarff_name:nth-of-type(1) {
    padding-bottom: 15px;
  }

  .tariff_speciality {
    padding-bottom: 15px;
    font-size: 22px;
  }

  .tariff_arrow {
    width: 30px;
    margin-right: -1300px;
  }

  .tariff_list {
    padding: 20px 80px;
  }

  .tariff_item {
    font-size: 20px;
  }

  .old_price {
    font-size: 24px;
  }

  .new_price {
    font-size: 48px;
    padding-bottom: 10px;
  }

  .tariff_button {
    letter-spacing: 3px;
    font-size: 28px;
    padding: 15px 150px;
  }

  .contact {
    height: auto;
  }

  .map_block {
    width: 800px;
    height: 500px;
  }

  .address_button {
    padding: 10px 60px;
    font-size: 20px;
  }
}

@media ((min-width: 1201px) and (max-width: 1599px)) {
  .default_text {
    font-size: 18px;
  }

  #cookie-banner h2 {
    font-size: 18px;
  }

  #cookie-banner p {
    font-size: 16px;
    line-height: 1.4;
  }

  .cookie_button {
    font-size: 16px;
  }

  .window_block {
    width: auto;
    height: auto;
    padding: 30px;
  }

  .window_header {
    font-size: 28px;
  }

  .window_text {
    font-size: 18px;
  }

  .window_prize {
    font-size: 70px;
  }

  .timer_number {
    font-size: 44px;
  }

  .timer_add {
    font-size: 18px;
  }

  .window_button_link {
    width: auto;
    height: auto;
    padding: 10px 60px;
    font-size: 28px;
  }

  .container {
    max-width: 1150px;
    width: 100%;
    height: 100%;
  }

  .container.padding {
    padding-top: 50px;
    padding-bottom: 50px;
    row-gap: 90px;
  }

  .header {
    height: 90px;
    padding: 0 50px;
  }

  .header_logo {
    width: auto;
    height: auto;
  }

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

  .burger_menu {
    display: none;
  }

  .menu {
    width: auto;
    height: 30px;
  }

  .menu_list {
    width: auto;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu_link {
    width: auto;
    font-size: 18px;
    padding: 10px 25px;
  }

  .main {
    padding-top: 100px;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
  }

  .main .container {
    justify-content: center;
    gap: 50px;
  }

  .default_header {
    font-size: 36px;
  }

  .default_header_white {
    font-size: 36px;
  }

  .main_course {
    width: auto;
    height: auto;
    justify-content: center;
    gap: 60px;
  }

  .course_name {
    width: 100%;
    height: auto;
    font-size: 44px;
    letter-spacing: 2px;
  }

  .course_description {
    width: 100%;
    height: auto;
    font-size: 22px;
  }

  .main_button {
    padding: 20px;
    font-size: 24px;
    letter-spacing: 3px;
  }

  .main_background {
    width: auto;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }

  .main_image {
    width: auto;
    height: 650px;
  }

  .overview_text {
    font-size: 28px;
  }

  .overview_block .timer {
    gap: 50px;
  }

  .overview_block .timer_number {
    font-size: 60px;
  }

  .overview_block .timer_add {
    font-size: 22px;
  }

  .audience_categories {
    height: auto;
  }

  .audience_item {
    width: 30%;
    gap: 30px;
  }

  .subheader_text {
    font-size: 22px;
  }

  .audience_image {
    height: 135px;
  }

  .item_width {
    width: 100%;
  }

  .citate {
    padding: 50px 80px;
  }

  .citate_text {
    font-size: 28px;
  }

  .course_specifics {
    height: auto;
  }

  .specifics {
    height: 500px;
  }

  .specific_item {
    width: 30%;
    height: 500px;
    padding: 0 20px;
  }

  .specific_item .subheader_text {
    text-align: center;
  }

  .program_unique {
    height: auto;
  }

  .unique_image {
    width: 110px;
    height: 110px;
  }

  .unique_content {
    height: 263px;
  }

  .doctor_block {
    height: auto;
  }

  .doctor_photo {
    height: auto;
    width: auto;
  }

  .doctor_image {
    height: 500px;
  }

  .doctor_info {
    width: 600px;
    gap: 30px;
  }

  .doctor_header {
    font-size: 26px;
    letter-spacing: 3px;
  }

  .doctor_name {
    width: 650px;
    letter-spacing: 3px;
    font-size: 36px;
  }

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

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

  .first_link {
    margin-bottom: 40px;
    margin-left: 470px;
  }

  .second_link {
    margin-bottom: 40px;
    margin-left: 310px;
  }

  .third_link {
    margin-bottom: 40px;
    margin-left: 460px;
  }

  .doctor_list {
    height: auto;
    display: flex;
    flex-direction: column;
    color: #383838;
    padding-left: 50px;
  }

  .doctor_item {
    font-size: 18px;
  }

  .stage_circle {
    min-width: 400px;
    min-height: 400px;
  }

  .stage_item {
    width: 340px;
    height: auto;
  }

  .stages {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 150px;
    row-gap: 80px;
  }

  .price {
    height: auto;
  }

  .tariff {
    min-height: 64px;
  }

  .tariff_more--active {
    height: 140px;
    padding-left: 5px;
  }

  .tarff_name {
    font-size: 28px;
    padding-top: 15px;
  }

  .tarff_name:nth-of-type(1) {
    padding-bottom: 15px;
  }

  .tariff_speciality {
    padding-bottom: 15px;
    font-size: 20px;
  }

  .tariff_arrow {
    width: 30px;
    margin-right: -1100px;
  }

  .tariff_list {
    padding: 20px 80px;
  }

  .tariff_item {
    font-size: 18px;
  }

  .old_price {
    font-size: 22px;
  }

  .new_price {
    font-size: 44px;
    padding-bottom: 10px;
  }

  .tariff_button {
    letter-spacing: 3px;
    font-size: 28px;
    padding: 15px 100px;
  }

  .contact {
    height: auto;
  }

  .map_block {
    width: 600px;
    height: 450px;
  }

  .address_button {
    padding: 10px 60px;
    font-size: 18px;
  }

  .address_link {
    font-size: 18px;
  }

  .footer_info {
    width: 350px;
  }

  .footer_info .logo {
    width: 100%;
  }

  .footer_structure {
    gap: 80px;
  }
}

@media ((min-width: 1025px) and (max-width: 1200px)) {
  .default_text {
    font-size: 18px;
  }

  .fast_call_img {
    width: 45px;
  }

  #cookie-banner h2 {
    font-size: 16px;
  }

  #cookie-banner p {
    font-size: 14px;
    line-height: 1.4;
  }

  .cookie_button {
    font-size: 14px;
  }

  .window_block {
    width: auto;
    height: auto;
    padding: 20px;
  }

  .window_header {
    font-size: 26px;
  }

  .window_text {
    font-size: 18px;
  }

  .window_prize {
    font-size: 54px;
  }

  .timer {
    gap: 20px;
    margin-top: -10px;
  }

  .timer_number {
    font-size: 40px;
  }

  .timer_add {
    font-size: 18px;
  }

  .window_button_link {
    width: auto;
    height: auto;
    padding: 10px 60px;
    font-size: 26px;
  }

  .container {
    max-width: 970px;
    width: 100%;
    height: 100%;
  }

  .container.padding {
    padding-top: 50px;
    padding-bottom: 50px;
    row-gap: 90px;
  }

  .header {
    height: 90px;
    padding: 0 20px;
  }

  .header_logo {
    width: auto;
    height: auto;
  }

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

  .burger_menu {
    display: none;
  }

  .menu {
    width: auto;
    height: 30px;
  }

  .menu_list {
    width: auto;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu_link {
    width: auto;
    font-size: 16px;
    padding: 10px 15px;
  }

  .main {
    padding-top: 90px;
    height: auto;
  }

  .main .container {
    justify-content: center;
    gap: 50px;
  }

  .default_header {
    font-size: 34px;
  }

  .default_header_white {
    font-size: 34px;
  }

  .main_course {
    width: auto;
    height: auto;
    justify-content: center;
    gap: 60px;
  }

  .course_name {
    width: 100%;
    height: auto;
    font-size: 40px;
    letter-spacing: 2px;
  }

  .course_description {
    width: 100%;
    height: auto;
    font-size: 20px;
  }

  .main_button {
    padding: 15px 20px;
    font-size: 22px;
    letter-spacing: 3px;
  }

  .main_background {
    width: auto;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }

  .main_image {
    width: auto;
    height: 550px;
  }

  .overview_text {
    font-size: 26px;
  }

  .overview_block .timer {
    gap: 50px;
  }

  .overview_block .timer_number {
    font-size: 48px;
  }

  .overview_block .timer_add {
    font-size: 20px;
  }

  .audience_categories {
    height: auto;
  }

  .audience_item {
    width: 30%;
    gap: 30px;
  }

  .subheader_text {
    font-size: 20px;
  }

  .audience_image {
    height: 105px;
  }

  .item_width {
    width: 100%;
  }

  .citate {
    padding: 50px 80px;
  }

  .citate_text {
    font-size: 24px;
  }

  .course_specifics {
    height: auto;
  }

  .specifics {
    height: 500px;
  }

  .specific_item {
    width: 30%;
    height: 500px;
    padding: 0 20px;
  }

  .specific_item .subheader_text {
    text-align: center;
  }

  .program_unique {
    height: auto;
  }

  .unique_image {
    width: 100px;
    height: 100px;
  }

  .unique_content {
    height: 370px;
  }

  .doctor_block {
    height: auto;
  }

  .doctor_photo {
    height: auto;
    width: auto;
  }

  .doctor_image {
    height: 450px;
  }

  .doctor_info {
    width: 450px;
    gap: 30px;
  }

  .doctor_header {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .doctor_name {
    width: 550px;
    letter-spacing: 3px;
    font-size: 30px;
  }

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

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

  .first_link {
    margin-bottom: 30px;
    margin-left: 390px;
  }

  .second_link {
    margin-bottom: 30px;
    margin-left: 260px;
  }

  .third_link {
    margin-bottom: 30px;
    margin-left: 380px;
  }

  .doctor_list {
    height: auto;
    display: flex;
    flex-direction: column;
    color: #383838;
    padding-left: 50px;
  }

  .doctor_item {
    font-size: 18px;
  }

  .stage_circle {
    min-width: 370px;
    min-height: 370px;
  }

  .stage_item {
    width: 330px;
    height: auto;
  }

  .stages {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 50px;
  }

  .price {
    height: auto;
  }

  .tariff {
    min-height: 64px;
  }

  .tariff_more--active {
    height: 140px;
    padding-left: 5px;
  }

  .tarff_name {
    font-size: 26px;
    padding-top: 15px;
  }

  .tarff_name:nth-of-type(1) {
    padding-bottom: 15px;
  }

  .tariff_speciality {
    padding-bottom: 15px;
    font-size: 20px;
  }

  .tariff_arrow {
    width: 30px;
    margin-right: -920px;
  }

  .tariff_list {
    padding: 20px 80px;
  }

  .tariff_item {
    font-size: 18px;
  }

  .old_price {
    font-size: 20px;
  }

  .new_price {
    font-size: 40px;
    padding-bottom: 10px;
  }

  .tariff_button {
    letter-spacing: 3px;
    font-size: 24px;
    padding: 15px 80px;
  }

  .contact {
    height: auto;
  }

  .map_block {
    width: 65%;
    height: 450px;
  }

  .contact_block {
    gap: 50px;
  }

  .address_block {
    width: 35%;
  }

  .address_button {
    padding: 10px 60px;
    font-size: 18px;
  }

  .address_link {
    font-size: 18px;
  }

  .footer_info {
    width: 300px;
  }

  .footer_info .logo {
    width: 100%;
  }

  .footer_structure {
    gap: 30px;
  }
}

@media ((min-width: 769px) and (max-width: 1024px)) {
  .default_text {
    font-size: 18px;
  }

  .fast_call_img {
    width: 40px;
  }

  #cookie-banner h2 {
    font-size: 16px;
  }

  #cookie-banner p {
    font-size: 14px;
    line-height: 1.4;
  }

  .cookie_button {
    font-size: 14px;
  }

  .window_block {
    width: auto;
    height: auto;
    padding: 20px;
  }

  .window_header {
    font-size: 24px;
  }

  .window_text {
    font-size: 18px;
  }

  .window_prize {
    font-size: 48px;
  }

  .timer {
    gap: 20px;
    margin-top: -10px;
  }

  .timer_number {
    font-size: 40px;
  }

  .timer_add {
    font-size: 18px;
  }

  .window_button_link {
    width: auto;
    height: auto;
    padding: 10px 60px;
    font-size: 24px;
  }

  .container {
    max-width: 710px;
    width: 100%;
    height: 100%;
  }

  .container.padding {
    padding-top: 40px;
    padding-bottom: 40px;
    row-gap: 60px;
  }

  .header {
    height: 60px;
    padding: 0 30px;
    align-items: flex-start;
  }

  .header .container {
    height: 60px;
  }

  .header_logo {
    width: auto;
    height: auto;
  }

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

  .menu {
    width: 40px;
    height: 40px;
  }

  .burger_menu {
    width: 40px;
    height: 40px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }

  .burger_menu span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #4f9f2e;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .burger_menu span:nth-child(1) {
    top: 5px;
  }
  .burger_menu span:nth-child(2),
  .burger_menu span:nth-child(3) {
    top: 18px;
  }
  .burger_menu span:nth-child(4) {
    top: 31px;
  }
  .burger_menu.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  .burger_menu.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  .burger_menu.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .burger_menu.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

  .menu_list {
    display: none;
    transition: all 0.2s ease-in-out;
  }

  .header--change {
    height: 220px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  }

  .menu_list--activate {
    top: 60px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease-in-out;
    z-index: 10;
  }

  .header_media {
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header_media_icon {
    height: 40px;
  }

  .header_image_link {
    height: 40px;
  }

  .menu_link {
    min-width: 115px;
    font-size: 14px;
  }

  .main {
    padding-top: 100px;
    height: auto;
  }

  .main .container {
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }

  .default_header {
    font-size: 32px;
  }

  .default_header_white {
    font-size: 32px;
  }

  .main_course {
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .course_name {
    width: 100%;
    height: auto;
    font-size: 36px;
    letter-spacing: 2px;
    text-align: center;
  }

  .course_description {
    width: 100%;
    height: auto;
    font-size: 20px;
    text-align: center;
  }

  .main_button {
    padding: 20px;
    font-size: 20px;
    letter-spacing: 3px;
  }

  .main_background {
    width: auto;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }

  .main_image {
    width: auto;
    height: 500px;
  }

  .overview_text {
    font-size: 24px;
  }

  .overview_block .timer {
    gap: 50px;
  }

  .overview_block .timer_number {
    font-size: 40px;
  }

  .overview_block .timer_add {
    font-size: 18px;
  }

  .audience_categories {
    height: auto;
    flex-direction: column;
    gap: 90px;
  }

  .audience_item {
    align-items: center;
    width: 100%;
    gap: 30px;
  }

  .subheader_text {
    font-size: 20px;
  }

  .audience_image {
    height: 105px;
  }

  .item_width {
    width: 100%;
  }

  .citate {
    padding: 30px 80px;
  }

  .citate_text {
    font-size: 22px;
  }

  .course_specifics {
    height: auto;
  }

  .specifics {
    height: auto;
    flex-direction: column;
    gap: 60px;
  }

  .specific_item {
    width: 100%;
    height: auto;
    padding: 30px;
    gap: 20px;
  }

  .specific_item .subheader_text {
    text-align: center;
  }

  .specific_img {
    width: auto;
    height: 90%;
  }

  .program_unique {
    height: auto;
  }

  .unique {
    flex-direction: column;
    gap: 80px;
  }

  .unique_column {
    width: 100%;
  }

  .unique_image {
    width: 110px;
    height: 110px;
  }

  .unique_content {
    height: auto;
  }

  .doctor_block {
    height: auto;
    gap: 50px;
  }

  .doctor_block:nth-of-type(1) {
    flex-direction: column-reverse;
    margin-bottom: 120px;
  }

  .doctor_block:nth-of-type(2) {
    flex-direction: column;
    margin-bottom: 120px;
  }

  .doctor_block:nth-of-type(3) {
    flex-direction: column-reverse;
  }

  .doctor_photo {
    height: auto;
    width: auto;
  }

  .doctor_image {
    height: 450px;
  }

  .doctor_info {
    width: 100%;
    gap: 30px;
  }

  .doctor_header {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .doctor_name {
    width: 500px;
    letter-spacing: 3px;
    font-size: 28px;
  }

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

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

  .first_link {
    margin-bottom: 30px;
    margin-left: 390px;
  }

  .second_link {
    margin-bottom: 30px;
    margin-left: 260px;
  }

  .third_link {
    margin-bottom: 30px;
    margin-left: 380px;
  }

  .doctor_list {
    height: auto;
    display: flex;
    flex-direction: column;
    color: #383838;
    padding-left: 50px;
  }

  .doctor_item {
    font-size: 18px;
  }

  .stage_circle {
    min-width: 370px;
    min-height: 370px;
  }

  .stage_item {
    width: 330px;
    height: auto;
  }

  .stages {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 50px;
  }

  .price {
    height: auto;
  }

  .tariff {
    min-height: 64px;
  }

  .tariff_more--active {
    height: 140px;
    padding-left: 5px;
  }

  .tarff_name {
    font-size: 24px;
    padding-top: 15px;
  }

  .tarff_name:nth-of-type(1) {
    padding-bottom: 15px;
  }

  .tariff_speciality {
    padding-bottom: 15px;
    font-size: 18px;
  }

  .tariff_arrow {
    width: 25px;
    margin-right: -670px;
  }

  .tariff_list {
    padding: 20px 80px;
  }

  .tariff_item {
    font-size: 18px;
  }

  .old_price {
    font-size: 20px;
  }

  .new_price {
    font-size: 36px;
    padding-bottom: 10px;
  }

  .tariff_button {
    letter-spacing: 3px;
    font-size: 22px;
    padding: 15px 50px;
  }

  .contact {
    height: auto;
  }

  .contact_block {
    gap: 50px;
    flex-direction: column-reverse;
    width: 100%;
  }

  .map_block {
    width: 90%;
    height: 400px;
  }

  .address_block {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .address_button {
    margin-top: 15px;
    padding: 10px 60px;
    font-size: 18px;
  }

  .address_link {
    font-size: 18px;
  }

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

  .footer_info {
    width: 100%;
    align-items: center;
  }

  .footer_info .logo {
    width: 370px;
  }

  .footer_structure {
    width: 100%;
    gap: 50px;
    justify-content: center;
  }
}

@media ((min-width: 639px) and (max-width: 768px)) {
  .default_text {
    font-size: 16px;
  }

  .fast_call_img {
    width: 35px;
  }

  #cookie-banner h2 {
    font-size: 16px;
  }

  #cookie-banner p {
    font-size: 14px;
    line-height: 1.4;
  }

  .cookie_button {
    font-size: 14px;
  }

  .window_block {
    width: auto;
    height: auto;
    padding: 20px 50px;
  }

  .window_header {
    font-size: 22px;
  }

  .window_text {
    font-size: 18px;
  }

  .window_prize {
    font-size: 36px;
  }

  .timer {
    gap: 20px;
    margin-top: -10px;
  }

  .timer_number {
    font-size: 36px;
  }

  .timer_add {
    font-size: 18px;
  }

  .window_button_link {
    width: auto;
    height: auto;
    padding: 10px 50px;
    font-size: 20px;
  }

  .container {
    max-width: 590px;
    width: 100%;
    height: 100%;
  }

  .container.padding {
    padding-top: 40px;
    padding-bottom: 40px;
    row-gap: 60px;
  }

  .header {
    height: 60px;
    padding: 0 30px;
    align-items: flex-start;
  }

  .header .container {
    height: 60px;
  }

  .header_logo {
    width: auto;
    height: auto;
  }

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

  .menu {
    width: 35px;
    height: 35px;
  }

  .burger_menu {
    width: 35px;
    height: 35px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }

  .burger_menu span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #4f9f2e;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .burger_menu span:nth-child(1) {
    top: 5px;
  }
  .burger_menu span:nth-child(2),
  .burger_menu span:nth-child(3) {
    top: 18px;
  }
  .burger_menu span:nth-child(4) {
    top: 31px;
  }
  .burger_menu.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  .burger_menu.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  .burger_menu.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .burger_menu.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

  .menu_list {
    display: none;
    transition: all 0.2s ease-in-out;
  }

  .header--change {
    height: 220px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  }

  .menu_list--activate {
    top: 60px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease-in-out;
    z-index: 10;
  }

  .header_media {
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header_media_icon {
    height: 40px;
  }

  .header_image_link {
    height: 40px;
  }

  .menu_link {
    min-width: 115px;
    font-size: 14px;
  }

  .main {
    padding-top: 80px;
    height: auto;
  }

  .main .container {
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }

  .default_header {
    font-size: 28px;
  }

  .default_header_white {
    font-size: 28px;
  }

  .main_course {
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .course_name {
    width: 100%;
    height: auto;
    font-size: 30px;
    letter-spacing: 2px;
    text-align: center;
  }

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

  .main_button {
    padding: 20px 40px;
    font-size: 18px;
    letter-spacing: 3px;
  }

  .main_background {
    width: auto;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }

  .main_image {
    width: auto;
    height: 400px;
  }

  .overview_text {
    font-size: 20px;
  }

  .overview_block .timer {
    gap: 50px;
  }

  .overview_block .timer_number {
    font-size: 36px;
  }

  .overview_block .timer_add {
    font-size: 16px;
  }

  .audience_categories {
    height: auto;
    flex-direction: column;
    gap: 90px;
  }

  .audience_item {
    align-items: center;
    width: 100%;
    gap: 30px;
  }

  .subheader_text {
    font-size: 18px;
  }

  .audience_image {
    height: 90px;
  }

  .item_width {
    width: 100%;
  }

  .citate {
    padding: 20px;
  }

  .citate_text {
    font-size: 20px;
  }

  .course_specifics {
    height: auto;
  }

  .specifics {
    height: auto;
    flex-direction: column;
    gap: 60px;
  }

  .specific_item {
    width: 100%;
    height: auto;
    padding: 30px;
    gap: 20px;
  }

  .specific_item .subheader_text {
    text-align: center;
  }

  .specific_img {
    width: auto;
    height: 90%;
  }

  .program_unique {
    height: auto;
  }

  .unique {
    flex-direction: column;
    gap: 80px;
  }

  .unique_column {
    width: 100%;
  }

  .unique_image {
    width: 95px;
    height: 95px;
  }

  .unique_content {
    height: auto;
  }

  .doctor_block {
    height: auto;
    gap: 50px;
  }

  .doctor_block:nth-of-type(1) {
    flex-direction: column-reverse;
    margin-bottom: 120px;
  }

  .doctor_block:nth-of-type(2) {
    flex-direction: column;
    margin-bottom: 120px;
  }

  .doctor_block:nth-of-type(3) {
    flex-direction: column-reverse;
  }

  .doctor_photo {
    height: auto;
    width: auto;
  }

  .doctor_image {
    height: 420px;
  }

  .doctor_info {
    width: 100%;
    gap: 30px;
  }

  .doctor_header {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .doctor_name {
    width: 450px;
    letter-spacing: 3px;
    font-size: 24px;
  }

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

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

  .first_link {
    margin-bottom: 20px;
    margin-left: 330px;
  }

  .second_link {
    margin-bottom: 20px;
    margin-left: 220px;
  }

  .third_link {
    margin-bottom: 20px;
    margin-left: 320px;
  }

  .doctor_list {
    height: auto;
    display: flex;
    flex-direction: column;
    color: #383838;
    padding-left: 50px;
  }

  .doctor_item {
    font-size: 16px;
  }

  .stage_circle {
    min-width: 320px;
    min-height: 320px;
  }

  .stage_item {
    width: 300px;
    height: auto;
  }

  .stages {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 50px;
  }

  .price {
    height: auto;
  }

  .tariff {
    min-height: 64px;
  }

  .tariff_more--active {
    height: 140px;
    padding-left: 5px;
  }

  .tarff_name {
    font-size: 22px;
    padding-top: 15px;
  }

  .tarff_name:nth-of-type(1) {
    padding-bottom: 15px;
  }

  .tariff_speciality {
    padding-bottom: 15px;
    font-size: 16px;
  }

  .tariff_arrow {
    width: 25px;
    margin-right: -550px;
  }

  .tariff_list {
    padding: 20px 80px;
  }

  .tariff_item {
    font-size: 16px;
  }

  .old_price {
    font-size: 20px;
  }

  .new_price {
    font-size: 32px;
    padding-bottom: 10px;
  }

  .tariff_button {
    letter-spacing: 3px;
    font-size: 22px;
    padding: 10px 60px;
  }

  .contact {
    height: auto;
  }

  .contact_block {
    gap: 50px;
    flex-direction: column-reverse;
    width: 100%;
  }

  .map_block {
    width: 90%;
    height: 350px;
  }

  .address_block {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .address_button {
    margin-top: 15px;
    padding: 10px 60px;
    font-size: 16px;
  }

  .address_link {
    font-size: 16px;
  }

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

  .footer_info {
    width: 100%;
    align-items: center;
  }

  .footer_info .logo {
    width: 370px;
  }

  .footer_structure {
    width: 100%;
    gap: 40px;
    justify-content: center;
  }
}

@media ((min-width: 481px) and (max-width: 638px)) {
  .default_text {
    font-size: 16px;
  }

  .fast_call_img {
    width: 35px;
  }

  #cookie-banner h2 {
    font-size: 16px;
  }

  #cookie-banner p {
    font-size: 14px;
    line-height: 1.4;
  }

  .cookie_buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .cookie_button {
    padding: 5px;
    font-size: 14px;
  }

  .window_block {
    width: auto;
    height: auto;
    padding: 20px 50px;
  }

  .window_header {
    font-size: 20px;
  }

  .window_text {
    font-size: 18px;
  }

  .window_prize {
    font-size: 30px;
  }

  .timer {
    gap: 20px;
    margin-top: -10px;
  }

  .timer_number {
    font-size: 30px;
  }

  .timer_add {
    font-size: 16px;
  }

  .window_button_link {
    width: auto;
    height: auto;
    padding: 10px 50px;
    font-size: 20px;
  }

  .container {
    max-width: 450px;
    width: 100%;
    height: 100%;
  }

  .container.padding {
    padding-top: 40px;
    padding-bottom: 40px;
    row-gap: 60px;
  }

  .header {
    height: 60px;
    padding: 0 30px;
    align-items: flex-start;
  }

  .header .container {
    height: 60px;
  }

  .header_logo {
    width: auto;
    height: auto;
  }

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

  .menu {
    width: 35px;
    height: 35px;
  }

  .burger_menu {
    width: 35px;
    height: 35px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }

  .burger_menu span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #4f9f2e;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .burger_menu span:nth-child(1) {
    top: 5px;
  }
  .burger_menu span:nth-child(2),
  .burger_menu span:nth-child(3) {
    top: 18px;
  }
  .burger_menu span:nth-child(4) {
    top: 31px;
  }
  .burger_menu.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  .burger_menu.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  .burger_menu.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .burger_menu.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

  .menu_list {
    display: none;
    transition: all 0.2s ease-in-out;
  }

  .header--change {
    height: 220px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  }

  .menu_list--activate {
    top: 60px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease-in-out;
    z-index: 10;
  }

  .header_media {
    width: 180px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header_media_icon {
    height: 35px;
  }

  .header_image_link {
    height: 35px;
  }

  .menu_link {
    min-width: 115px;
    font-size: 14px;
  }

  .main {
    padding-top: 80px;
    height: auto;
  }

  .main .container {
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }

  .default_header {
    font-size: 24px;
  }

  .default_header_white {
    font-size: 24px;
  }

  .main_course {
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .course_name {
    width: 100%;
    height: auto;
    font-size: 28px;
    letter-spacing: 2px;
    text-align: center;
  }

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

  .main_button {
    padding: 15px 40px;
    font-size: 16px;
    letter-spacing: 3px;
  }

  .main_background {
    width: auto;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }

  .main_image {
    width: auto;
    height: 380px;
  }

  .overview_text {
    padding: 0 15px;
    font-size: 18px;
  }

  .overview_block .timer {
    gap: 30px;
  }

  .overview_block .timer_number {
    font-size: 30px;
  }

  .overview_block .timer_add {
    font-size: 16px;
  }

  .audience_categories {
    height: auto;
    flex-direction: column;
    gap: 70px;
  }

  .audience_item {
    align-items: center;
    width: 100%;
    gap: 30px;
  }

  .subheader_text {
    font-size: 18px;
  }

  .audience_image {
    height: 90px;
  }

  .item_width {
    width: 100%;
  }

  .citate {
    padding: 10px;
  }

  .citate_text {
    font-size: 20px;
  }

  .course_specifics {
    height: auto;
  }

  .specifics {
    height: auto;
    flex-direction: column;
    gap: 60px;
  }

  .specific_item {
    width: 100%;
    height: auto;
    padding: 30px;
    gap: 20px;
  }

  .specific_item .subheader_text {
    text-align: center;
  }

  .specific_img {
    width: auto;
    height: 90%;
  }

  .program_unique {
    height: auto;
  }

  .unique {
    flex-direction: column;
    gap: 80px;
  }

  .unique_column {
    width: 100%;
  }

  .unique_image {
    width: 90px;
    height: 90px;
  }

  .unique_content {
    height: auto;
  }

  .doctor_block {
    height: auto;
    gap: 50px;
  }

  .doctor_block:nth-of-type(1) {
    flex-direction: column-reverse;
    margin-bottom: 120px;
  }

  .doctor_block:nth-of-type(2) {
    flex-direction: column;
    margin-bottom: 120px;
  }

  .doctor_block:nth-of-type(3) {
    flex-direction: column-reverse;
  }

  .doctor_photo {
    height: auto;
    width: auto;
  }

  .doctor_image {
    height: 400px;
  }

  .doctor_info {
    width: 100%;
    gap: 30px;
  }

  .doctor_header {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .doctor_name {
    width: 400px;
    letter-spacing: 3px;
    font-size: 22px;
  }

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

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

  .first_link {
    margin-bottom: 20px;
    margin-left: 300px;
  }

  .second_link {
    margin-bottom: 20px;
    margin-left: 200px;
  }

  .third_link {
    margin-bottom: 20px;
    margin-left: 300px;
  }

  .doctor_list {
    height: auto;
    display: flex;
    flex-direction: column;
    color: #383838;
    padding-left: 50px;
  }

  .doctor_item {
    font-size: 16px;
  }

  .stage_circle {
    min-width: 320px;
    min-height: 320px;
  }

  .stage_item {
    width: 300px;
    height: auto;
  }

  .stages {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 50px;
  }

  .price {
    height: auto;
  }

  .tariff {
    min-height: 64px;
  }

  .tariff_more--active {
    height: 140px;
    padding-left: 5px;
  }

  .tarff_name {
    font-size: 20px;
    padding-top: 15px;
  }

  .tarff_name:nth-of-type(1) {
    padding-bottom: 15px;
  }

  .tariff_speciality {
    padding-bottom: 15px;
    font-size: 16px;
  }

  .tariff_arrow {
    width: 25px;
    margin-right: -420px;
  }

  .tariff_list {
    padding: 20px 40px;
  }

  .tariff_item {
    font-size: 16px;
  }

  .old_price {
    font-size: 20px;
  }

  .new_price {
    font-size: 30px;
    padding-bottom: 10px;
  }

  .tariff_button {
    letter-spacing: 3px;
    font-size: 20px;
    padding: 10px 60px;
  }

  .contact {
    height: auto;
  }

  .contact_block {
    gap: 50px;
    flex-direction: column-reverse;
    width: 100%;
  }

  .map_block {
    width: 90%;
    height: 300px;
  }

  .address_block {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .address_button {
    margin-top: 15px;
    padding: 10px 60px;
    font-size: 16px;
  }

  .address_link {
    font-size: 16px;
  }

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

  .footer_info {
    width: 100%;
    align-items: center;
  }

  .footer_info .logo {
    width: 350px;
  }

  .footer_structure {
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer_column {
    width: 30%;
  }
}

@media (max-width: 480px) {
  .default_text {
    font-size: 16px;
  }

  .fast_call_img {
    width: 35px;
  }

  #cookie-banner h2 {
    font-size: 14px;
  }

  #cookie-banner p {
    font-size: 12px;
    line-height: 1.4;
  }

  .cookie_buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .cookie_button {
    padding: 5px;
    font-size: 14px;
  }

  .window_block {
    width: auto;
    height: auto;
    padding: 20px 50px;
  }

  .window_header {
    font-size: 20px;
  }

  .window_text {
    font-size: 16px;
  }

  .window_prize {
    font-size: 28px;
  }

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

  .timer {
    gap: 15px;
    margin-top: -10px;
  }

  .timer_number {
    font-size: 28px;
  }

  .timer_add {
    font-size: 16px;
  }

  .window_button_link {
    width: auto;
    height: auto;
    padding: 10px 30px;
    font-size: 18px;
  }

  .container {
    max-width: 380px;
    width: 100%;
    height: 100%;
  }

  .container.padding {
    padding-top: 40px;
    padding-bottom: 40px;
    row-gap: 60px;
  }

  .header {
    height: 60px;
    padding: 0 30px;
    align-items: flex-start;
  }

  .header .container {
    height: 60px;
  }

  .header_logo {
    width: auto;
    height: auto;
  }

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

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

  .burger_menu {
    width: 30px;
    height: 30px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }

  .burger_menu span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #4f9f2e;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .burger_menu span:nth-child(1) {
    top: 3px;
  }
  .burger_menu span:nth-child(2),
  .burger_menu span:nth-child(3) {
    top: 14px;
  }
  .burger_menu span:nth-child(4) {
    top: 25px;
  }
  .burger_menu.open span:nth-child(1) {
    top: 14px;
    width: 0%;
    left: 50%;
  }
  .burger_menu.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  .burger_menu.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .burger_menu.open span:nth-child(4) {
    top: 14px;
    width: 0%;
    left: 50%;
  }

  .menu_list {
    display: none;
    transition: all 0.2s ease-in-out;
  }

  .header--change {
    height: 220px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  }

  .menu_list--activate {
    top: 60px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease-in-out;
    z-index: 10;
  }

  .header_media {
    width: 180px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header_media_icon {
    height: 35px;
  }

  .header_image_link {
    height: 35px;
  }

  .menu_link {
    min-width: 115px;
    font-size: 14px;
  }

  .main {
    padding-top: 80px;
    height: auto;
  }

  .main .container {
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }

  .default_header {
    font-size: 22px;
  }

  .default_header_white {
    font-size: 22px;
  }

  .main_course {
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .course_name {
    width: 100%;
    height: auto;
    font-size: 24px;
    letter-spacing: 2px;
    text-align: center;
  }

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

  .main_button {
    padding: 10px 30px;
    font-size: 16px;
    letter-spacing: 3px;
  }

  .main_background {
    width: auto;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }

  .main_image {
    width: auto;
    height: 340px;
  }

  .overview_text {
    padding: 0 15px;
    font-size: 16px;
  }

  .overview_block .timer {
    gap: 30px;
  }

  .overview_block .timer_number {
    font-size: 30px;
  }

  .overview_block .timer_add {
    font-size: 16px;
  }

  .audience_categories {
    height: auto;
    flex-direction: column;
    gap: 70px;
  }

  .audience_item {
    align-items: center;
    width: 100%;
    gap: 30px;
  }

  .subheader_text {
    font-size: 18px;
  }

  .audience_image {
    height: 85px;
  }

  .item_width {
    width: 100%;
  }

  .citate {
    padding: 10px;
  }

  .citate_text {
    font-size: 18px;
  }

  .course_specifics {
    height: auto;
  }

  .specifics {
    height: auto;
    flex-direction: column;
    gap: 60px;
  }

  .specific_item {
    width: 100%;
    height: auto;
    padding: 30px;
    gap: 20px;
  }

  .specific_item .subheader_text {
    text-align: center;
  }

  .specific_img {
    width: auto;
    height: 90%;
  }

  .program_unique {
    height: auto;
  }

  .unique {
    flex-direction: column;
    gap: 80px;
  }

  .unique_column {
    width: 100%;
  }

  .unique_image {
    width: 85px;
    height: 85px;
  }

  .unique_content {
    height: auto;
  }

  .doctor_block {
    height: auto;
    gap: 50px;
  }

  .doctor_block:nth-of-type(1) {
    flex-direction: column-reverse;
    margin-bottom: 120px;
  }

  .doctor_block:nth-of-type(2) {
    flex-direction: column;
    margin-bottom: 120px;
  }

  .doctor_block:nth-of-type(3) {
    flex-direction: column-reverse;
  }

  .doctor_photo {
    height: auto;
    width: auto;
  }

  .doctor_image {
    height: 360px;
  }

  .doctor_info {
    width: 100%;
    gap: 30px;
  }

  .doctor_header {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .doctor_name {
    width: 400px;
    letter-spacing: 3px;
    font-size: 22px;
  }

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

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

  .first_link {
    margin-bottom: 20px;
    margin-left: 300px;
  }

  .second_link {
    margin-bottom: 20px;
    margin-left: 200px;
  }

  .third_link {
    margin-bottom: 20px;
    margin-left: 300px;
  }

  .doctor_list {
    height: auto;
    display: flex;
    flex-direction: column;
    color: #383838;
    padding-left: 50px;
  }

  .doctor_item {
    font-size: 16px;
  }

  .stage_circle {
    min-width: 320px;
    min-height: 320px;
  }

  .stage_item {
    width: 300px;
    height: auto;
  }

  .stages {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 50px;
  }

  .price {
    height: auto;
  }

  .tariff {
    min-height: 64px;
  }

  .tariff_more--active {
    height: 140px;
    padding-left: 5px;
  }

  .tarff_name {
    font-size: 18px;
    padding-top: 15px;
  }

  .tarff_name:nth-of-type(1) {
    padding-bottom: 15px;
  }

  .tariff_speciality {
    padding-bottom: 15px;
    font-size: 16px;
  }

  .tariff_arrow {
    width: 25px;
    margin-right: -350px;
  }

  .tariff_list {
    padding: 20px 40px;
  }

  .tariff_item {
    font-size: 16px;
  }

  .old_price {
    font-size: 20px;
  }

  .new_price {
    font-size: 30px;
    padding-bottom: 10px;
  }

  .tariff_button {
    letter-spacing: 3px;
    font-size: 20px;
    padding: 10px 60px;
  }

  .contact {
    height: auto;
  }

  .contact_block {
    gap: 50px;
    flex-direction: column-reverse;
    width: 100%;
  }

  .map_block {
    width: 90%;
    height: 270px;
  }

  .address_block {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .address_button {
    margin-top: 15px;
    padding: 10px 60px;
    font-size: 16px;
  }

  .address_link {
    font-size: 16px;
  }

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

  .footer_info {
    width: 100%;
    align-items: center;
  }

  .footer_info .logo {
    width: 330px;
  }

  .footer_structure {
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer_column {
    width: 30%;
  }
}
