@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto_woff2/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto_woff2/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto_woff2/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0 auto;
  min-width: 320px;
}

section {
  scroll-margin-top: 60px;
  margin-bottom: 10px;
}
section:last-child {
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  margin: 40px 0 10px;
}
.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0 12px;
  background: linear-gradient(120deg, rgba(22, 145, 215, 0.9), rgba(12, 63, 95, 0.9));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.section-title h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 6px auto 0;
  background: rgb(22, 145, 215);
  border-radius: 2px;
}

.subheader {
  width: 90%;
  margin: 0 auto;
  padding: 10px 0 15px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hint {
  text-align: center;
  font-size: 1rem;
  opacity: 0.7;
}

h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  text-align: center;
  color: #000000;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

p {
  font-size: 1rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: linear-gradient(to right, rgba(22, 145, 215, 0.95), rgba(0, 97, 161, 0.95));
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.navbar_small-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.navbar_small-nav-home a img {
  height: 40px;
  width: 105px;
}
.navbar_small-nav-media {
  display: none;
  justify-content: space-around;
  align-items: center;
  width: 150px;
}
.navbar_small-nav-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transition: filter 0.25s;
}
.navbar_small-nav-media a img {
  width: 50px;
  height: 22px;
  fill: currentColor;
  color: rgb(22, 145, 215);
}
.navbar_small-nav-media a:hover {
  filter: drop-shadow(0 0px 3px #fff);
}
.navbar_small-nav-button {
  border: none;
  background: none;
}
.navbar_small-nav-burger {
  border: none;
  background: none;
  width: 32px;
  height: 28px;
  position: relative;
  cursor: pointer;
}
.navbar_small-nav #nav-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #fff;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.navbar_small-nav #nav-icon2 span:nth-child(even) {
  left: 50%;
}
.navbar_small-nav #nav-icon2 span:nth-child(odd) {
  left: 0px;
}
.navbar_small-nav #nav-icon2 span:nth-child(1),
.navbar_small-nav #nav-icon2 span:nth-child(2) {
  top: 20%;
  transform: translateY(-50%);
}
.navbar_small-nav #nav-icon2 span:nth-child(3),
.navbar_small-nav #nav-icon2 span:nth-child(4) {
  top: 50%;
  transform: translateY(-50%);
}
.navbar_small-nav #nav-icon2 span:nth-child(5),
.navbar_small-nav #nav-icon2 span:nth-child(6) {
  top: 80%;
  transform: translateY(-50%);
}
.navbar_small-nav #nav-icon2.open span:nth-child(1),
.navbar_small-nav #nav-icon2.open span:nth-child(6) {
  transform: rotate(45deg);
}
.navbar_small-nav #nav-icon2.open span:nth-child(2),
.navbar_small-nav #nav-icon2.open span:nth-child(5) {
  transform: rotate(-45deg);
}
.navbar_small-nav #nav-icon2.open span:nth-child(1) {
  left: 3px;
  top: 8px;
}
.navbar_small-nav #nav-icon2.open span:nth-child(2) {
  left: calc(50% - 3px);
  top: 8px;
}
.navbar_small-nav #nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.navbar_small-nav #nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.navbar_small-nav #nav-icon2.open span:nth-child(5) {
  left: 3px;
  top: 18px;
}
.navbar_small-nav #nav-icon2.open span:nth-child(6) {
  left: calc(50% - 3px);
  top: 18px;
}
.navbar_nav {
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background-color: #000000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
}
.navbar_nav li {
  list-style: none;
  width: 100%;
  text-align: center;
}
.navbar_nav li a {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.25s, color 0.25s;
}
.navbar_nav li a:hover {
  background-color: rgb(22, 145, 215);
  color: #fff;
}
.navbar_nav li a.active {
  color: rgb(22, 145, 215);
}
.navbar .show-menu {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: none;
  justify-content: center;
  align-items: center;
  transform: rotate(180deg);
  transition: transform 0.3s ease, background-color 0.3s ease;
  opacity: 0.9;
  z-index: 1000;
}
.back-to-top img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.back-to-top:hover {
  background-color: #dfdfdf;
  transform: translateY(-3px) rotate(180deg);
}
.back-to-top:active {
  transform: scale(0.95) rotate(180deg);
}
.back-to-top.is-visible {
  display: flex;
}

.float-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 16px;
  background-color: #1882c0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.25px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(31, 58, 95, 0.35);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1000;
}
.float-contact img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.float-contact:hover {
  background-color: #2a4f82; /* jaśniejszy granat */
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(31, 58, 95, 0.45);
}
.float-contact:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 58, 95, 0.35);
}
.float-contact.is-visible {
  display: flex;
}

.header {
  height: auto;
  max-height: 820px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.header_bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(22, 145, 215, 0.35), transparent 60%), linear-gradient(180deg, #0c3f5f, rgb(22, 145, 215));
  z-index: 1;
}
.header_shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.1));
  z-index: 2;
  pointer-events: none;
}
.header_triangle-top-left, .header_triangle-bottom-right {
  position: absolute;
  width: 0;
  height: 0;
  border: 100px transparent;
  z-index: 4;
}
.header_triangle-top-left {
  top: 0;
  left: 0;
  border-bottom: 16vw solid transparent;
  border-top: 0;
  border-left: 32vw solid #fff;
}
.header_triangle-bottom-right {
  bottom: 0;
  right: 0;
  border-top: 16vw solid transparent;
  border-bottom: 0;
  border-right: 32vw solid #fff;
}
.header_hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 480px;
  min-height: 0;
  margin: 0 auto;
  padding: 0 16px;
  z-index: 3;
}
.header_hero-text-title {
  padding: 24px 0 24px;
  text-align: center;
}
.header_hero-text-title h1 {
  font-weight: 700;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
}
.header_hero-text-title span {
  display: block;
  white-space: nowrap;
  font-size: 1rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 16px;
}
.header_hero-text-logo img {
  width: 100%;
  max-width: 360px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.35));
  opacity: 0.95;
}
.header_hero-text-motto {
  text-align: center;
  padding: 24px 0;
}
.header_hero-text-motto p {
  letter-spacing: 0.3px;
  font-weight: 500;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0.9;
}
.header_hero-text-btns {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding-bottom: 32px;
}
.header_hero-text-btns a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  background-color: #fff;
  color: rgb(22, 145, 215);
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s, background-color 0.25s;
  padding: 14px 32px;
  margin: 12px 0;
}
.header_hero-text-btns a:hover {
  color: #fff;
  background-color: rgb(22, 145, 215);
}
.header_hero-text-btns .header_hero-text-btns-services {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}
.header_hero-text-btns .header_hero-text-btns-contact {
  background: linear-gradient(135deg, #0f6fb1, rgb(22, 145, 215));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  text-decoration: none;
}
.header_hero-text-btns .header_hero-text-btns-contact:hover {
  transform: translateY(-3px);
}

main {
  max-width: 1400px;
  margin: 0 auto;
}
main .why {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
main .why_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 15px;
  width: 100%;
  max-height: calc(100vh - 150px);
}
main .why_container-item, main .why_container-text {
  box-sizing: border-box;
}
main .why_container-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  min-height: 64px;
  background-color: #fff;
  border-bottom: 1px solid rgba(22, 145, 215, 0.4);
  cursor: pointer;
}
main .why_container-item h3 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 10px;
}
main .why_container-item-btn {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgb(22, 145, 215);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s;
  cursor: pointer;
}
main .why_container-item-btn img {
  width: 20px;
  height: 20px;
}
main .why_container-item-btn:hover {
  background-color: rgba(22, 145, 215, 0.1);
}
main .why_container-item-text {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  height: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(22, 145, 215, 0), rgba(22, 145, 215, 0.05));
  border-left: 1px solid rgb(22, 145, 215);
  border-right: 1px solid rgb(22, 145, 215);
  transition: height 0.6s ease, padding 0.3s ease;
  overflow-y: auto;
}
main .why_container-item-text p,
main .why_container-item-text a {
  text-align: justify;
  line-height: 1.5;
  font-size: 0.95rem;
  padding: 10px 20px;
}
main .why_container-item-text a {
  width: 100%;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  color: rgb(22, 145, 215);
  transition: transform 0.3s;
}
main .why_container-item-text a:hover {
  transform: translateY(-4px);
}
main .why_container-item-text .small-header {
  padding-bottom: 0;
  padding-top: 15px;
}
main .why_container-item-text ul,
main .why_container-item-text ol {
  display: block;
  padding: 10px 36px;
}
main .why_container-item-text ul:last-child {
  padding-bottom: 10px;
}
main .why_container-item-text li {
  font-size: 1rem;
  margin-bottom: 6px;
  line-height: 1.4;
}
main .why_container-item-text li::marker {
  color: rgb(22, 145, 215);
}
main .why_container-item-text.active {
  padding-top: 10px;
}
main .rotate-arrow {
  transform: rotate(180deg);
}
main .about-me {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .about-me-description {
  width: 90%;
  padding: 16px;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
}
main .about-me_container {
  padding: 10px 0;
}
main .about-me_container .about-me_card {
  position: relative;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-tap-highlight-color: transparent;
}
main .about-me_container .about-me_container-photo {
  border-radius: 14px;
}
main .about-me_container .about-me_container-photo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  transition: opacity 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
main .about-me_container .about-me_overlay {
  position: absolute;
  inset: 0;
  background: #fff;
  color: #000000;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 14px;
  align-items: center;
  transition: opacity 0.4s ease;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
main .about-me_container .about-me_card.active .about-me_container-photo img {
  opacity: 0;
}
main .about-me_container .about-me_card.active .about-me_overlay {
  opacity: 1;
  pointer-events: auto;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
main .about-me_container .about-me_overlay-content {
  padding: 25px;
  overflow-y: auto;
  border-radius: 14px;
  opacity: 0;
  animation: fadeIn 0.4s ease both;
}
main .about-me_container .about-lead {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.45;
  font-size: 1.05rem;
  font-weight: 500;
  display: none;
}
main .about-me_container .about-list-title {
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}
main .about-me_container .about-list {
  text-align: left;
  padding-left: 22px;
  margin-bottom: 24px;
}
main .about-me_container .about-list li {
  margin-bottom: 8px;
  line-height: 1.4;
}
main .about-me_container .about-list li::marker {
  color: rgb(22, 145, 215);
}
main .about-me_container .about-secondary,
main .about-me_container .about-mission {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
}
main .about-me_container .about-secondary {
  opacity: 0.85;
  margin-bottom: 20px;
}
main .about-me_container .about-mission {
  line-height: 1.4;
  margin-bottom: 16px;
}
main .about-me_container .about-close {
  background: rgb(22, 145, 215);
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
  align-self: center;
}
main .about-me_container .about-close:hover {
  background: #0c3f5f;
}
main .services {
  display: flex;
  flex-direction: column;
}
main .services .services-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 900px;
  width: 100%;
  padding: 24px 0;
  margin: 0 auto;
  overflow-x: hidden;
}
main .services .services-container .services-item {
  background: #fff;
  padding: 24px 32px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 0 1 100%;
  max-width: 300px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
main .services .services-container .services-item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
main .services .services-container .services-item-title img {
  width: 30px;
  height: 30px;
}
main .services .services-container .services-item-title h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.2px;
  color: #000000;
}
main .services .services-container .services-item-description {
  font-size: 0.95rem;
  color: black;
  line-height: 1.4;
  letter-spacing: 0.2px;
  margin-top: 24px;
  transition: color 0.2s ease;
}
main .services .services-container .services-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
main .services .services-container .services-item:focus-visible {
  outline: 2px solid rgb(22, 145, 215);
  outline-offset: 4px;
}
main .services .services-container .services-text {
  position: absolute;
  inset: 0;
  opacity: 0;
  max-width: 100%;
  pointer-events: none;
  overflow: hidden;
}

.services-modal_content {
  display: none;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000000;
  overflow: auto;
}

.modal {
  background: #fff;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f5f5;
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #ddd;
}
.modal-content {
  padding: 1rem 1.5rem;
  overflow-y: auto;
  flex: 1;
}
.modal-content .services-text {
  flex-direction: column;
  width: 100%;
  background-color: #fff;
}
.modal-content .services-text p {
  text-align: justify;
  line-height: 1.5;
  font-size: 0.95rem;
  padding: 10px 20px;
}
.modal-content .services-text .small-header {
  padding-bottom: 0;
  padding-top: 15px;
}
.modal-content .services-text ul {
  display: block;
  padding: 10px 36px;
}
.modal-content .services-text ul:last-child {
  padding-bottom: 10px;
}
.modal-content .services-text li {
  font-size: 1rem;
  margin-bottom: 6px;
  line-height: 1.4;
}
.modal-content .services-text li::marker {
  color: rgb(22, 145, 215);
}
.modal-content .services-text-text.active {
  padding-top: 10px;
}
.modal-content .rotate-arrow {
  transform: rotate(180deg);
}
.modal-content .table {
  text-align: center;
  font-size: 0.8rem;
  padding: 10px 15px;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  display: block;
  flex: 1 1 100%;
  min-height: -moz-fit-content;
  min-height: fit-content;
  align-self: stretch;
}
.modal-content .table::after {
  content: "← przesuń tabelę →";
  position: sticky;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 6px 0;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  color: rgb(22, 145, 215);
  opacity: 0.8;
  text-align: center;
  pointer-events: none;
}
.modal-content table {
  display: table;
  border-collapse: collapse;
  font-size: 0.75rem;
  min-width: 520px;
}
.modal-content table th,
.modal-content table td {
  padding: 5px;
  border-bottom: 1px solid rgb(22, 145, 215);
  border-left: 1px solid rgb(22, 145, 215);
}
.modal-content table th:first-child,
.modal-content table td:first-child {
  border-left: none;
}
.modal-content .pnf-table {
  border-bottom: none;
}
.modal-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #000000;
}

.courses {
  display: flex;
  flex-direction: column;
}
.courses_gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: start;
  padding: 12px;
}
.courses_gallery > .thumb:last-child {
  grid-column: 1/-1;
  justify-self: center;
  width: 70%;
}
.courses .thumb {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.courses .thumb:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  padding: 16px;
  transition: opacity 200ms ease;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox .lightbox__stage {
  max-height: 90vh;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
}
.lightbox .lightbox__img {
  max-height: 90vh;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: transform 220ms ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.lightbox .lightbox__close,
.lightbox .lightbox__nav {
  position: absolute;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.01s ease, transform 0.01s ease;
  opacity: 0.95;
}
.lightbox .lightbox__close {
  top: 18px;
  right: 18px;
  font-size: 28px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  width: 44px;
  height: 44px;
}
.lightbox .lightbox__nav--prev {
  left: 10px;
}
.lightbox .lightbox__nav--next {
  right: 10px;
}
.lightbox .lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
}
.lightbox .lightbox__nav:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 16px;
}
.reviews .carousel-container {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.9));
  width: 100%;
  max-width: 880px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}
.reviews .carousel-container .carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.reviews .carousel-container .carousel-slide {
  position: relative;
  min-height: 260px;
  min-width: 100%;
  padding: 16px 20px 24px;
  line-height: 1.5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.reviews .carousel-container .carousel-slide p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 42ch;
  margin: 0 auto 4px;
}
.reviews .carousel-container .carousel-slide .review-name {
  margin-top: 20px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  font-weight: 600;
  align-items: center;
  opacity: 0.85;
}
.reviews .carousel-container .carousel-slide .review-name::before {
  content: "— ";
}
.reviews .carousel-container .carousel-slide .review-stars {
  margin-bottom: 12px;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #d4af37;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.reviews .carousel-container .carousel-slide::before {
  content: "“";
  font-size: 4rem;
  color: rgba(22, 145, 215, 0.15);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
}
.reviews button.prev,
.reviews button.next {
  position: absolute;
  bottom: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
}
.reviews button.prev img,
.reviews button.next img {
  transition: transform 0.2s ease;
}
.reviews button.prev {
  left: 10px;
}
.reviews button.next {
  right: 10px;
}
.reviews button.prev img:hover,
.reviews button.next img:hover {
  transform: scale(1.1);
}
.reviews .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 16px;
}
.reviews .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(22, 145, 215, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}
.reviews .carousel-dot.active {
  background: #1691d7;
  transform: scale(1.3);
}

.prices {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.prices-box {
  max-width: 320px;
}
.prices-box_gabinet, .prices-box_drive {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  position: relative;
  flex: 1;
  flex-shrink: 1;
  max-width: 320px;
  min-height: 500px;
  height: auto;
  border-radius: 24px;
  padding: 0 10px 40px 10px;
  margin: 10px 0;
  text-align: center;
  background-color: #fff;
  color: #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.prices-box_gabinet_gabinet:hover, .prices-box_gabinet_drive:hover, .prices-box_drive_gabinet:hover, .prices-box_drive_drive:hover {
  transform: translateY(-4px);
}
.prices-box_gabinet-title, .prices-box_drive-title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  height: 100%;
  min-width: 320px;
  background: linear-gradient(135deg, rgb(22, 145, 215), #1fb6ff);
  overflow: hidden;
}
.prices-box_gabinet h3, .prices-box_drive h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px;
  cursor: auto;
  z-index: 10;
}
.prices-box_gabinet img, .prices-box_drive img {
  width: 88px;
  height: 88px;
  margin: 16px 0 4px;
  opacity: 0.85;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}
.prices-box_gabinet .line, .prices-box_drive .line {
  height: 2px;
  flex-shrink: 0;
  border: none;
  width: 80%;
  margin: 16px auto;
  background: linear-gradient(to right, transparent 1%, rgb(22, 145, 215), transparent 99%);
}
.prices-box_gabinet-btn, .prices-box_drive-btn {
  margin-top: auto;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(22, 145, 215), #1fb6ff);
  box-shadow: 0 8px 20px rgba(22, 145, 215, 0.35);
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}
.prices-box_gabinet-btn:hover, .prices-box_drive-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.prices-box_gabinet-btn:active, .prices-box_drive-btn:active {
  transform: scale(0.97);
}
.prices-box_gabinet .price, .prices-box_drive .price {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: rgb(22, 145, 215);
  min-height: 116px;
  margin-top: 8px;
  padding: 10px 0;
}
.prices-box_gabinet .price span, .prices-box_drive .price span {
  color: #137cb9;
  margin-top: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.1px;
  display: block;
}
.prices-box_gabinet .note, .prices-box_drive .note {
  font-size: 0.85rem;
  color: #000000;
  text-align: left;
  margin: 12px 0 24px;
  padding: 10px 12px;
  background-color: #f0f8ff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(22, 145, 215, 0.1);
}
.prices-box_gabinet .note p, .prices-box_drive .note p {
  font-weight: 600;
  margin-bottom: 8px;
  color: #000000;
}
.prices-box_gabinet .note ul, .prices-box_drive .note ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.prices-box_gabinet .note ul li, .prices-box_drive .note ul li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  line-height: 1.4;
}
.prices-box_gabinet .note .check, .prices-box_drive .note .check {
  display: inline-block;
  width: 20px;
  margin-right: 8px;
  color: rgb(22, 145, 215);
  font-weight: bold;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.contact-box_contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 320px;
  width: 50%;
  max-width: 500px;
  padding: 20px;
}
.contact-box_contact-links .contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #f7f9fb;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.contact-box_contact-links .contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 145, 215, 0.2);
  color: rgb(22, 145, 215);
}
.contact-box_contact-links .contact-item.phone {
  border: 1px solid rgba(22, 145, 215, 0.25);
  background: linear-gradient(to right, rgba(22, 145, 215, 0.06), #f7f9fb);
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.contact-box_contact-links .phone-text {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
}
.contact-box_contact-links img {
  width: 32px;
  height: 42px;
  opacity: 0.85;
  padding: 10px 5px;
  transition: filter 0.3s;
  filter: drop-shadow(0 1px 3px rgba(255, 255, 255, 0.25));
}
.contact-box_contact-links span {
  font-size: 1.1rem;
  font-weight: 500;
}
.contact-box_contact-links .contact-note {
  font-size: 0.85rem;
  margin-top: 4px;
  color: rgb(22, 145, 215);
  opacity: 0.85;
  letter-spacing: 0.2px;
  margin-left: 44px;
}
.contact-box_places {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-top: 1px solid #ddd;
}
.contact-box_places hr {
  border: none;
  height: 1px;
  width: 80%;
  margin: 24px auto;
  background: linear-gradient(to right, transparent, rgba(22, 145, 215, 0.4), transparent);
}
.contact-box_places_drive, .contact-box_places_gabinet {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 10px;
}
.contact-box_places_gabinet-adress {
  font-size: 0.95rem;
  opacity: 0.85;
  padding: 0 10px;
}
.contact-box_places img {
  width: 36px;
  height: 36px;
}
.contact-box_places p {
  font-size: 1rem;
  color: #000000;
}
.contact-box_map {
  width: 80%;
  max-width: 800px;
  margin: 10px 0 24px;
  overflow: hidden;
}
.contact-box_map iframe {
  border-radius: 16px;
  width: 100%;
  height: 220px;
  border: none;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #0f5c8a;
  color: #fff;
  position: relative;
  padding: 60px 15px 40px;
  margin-top: 80px;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
}
.footer-img img {
  width: 80px;
  height: 80px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}
.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}
.footer-container_icons {
  display: flex;
  padding: 10px;
  gap: 12px;
}
.footer-container_icons a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}
.footer-container_icons a img {
  width: 44px;
  height: 44px;
  filter: brightness(0) invert(1);
}
.footer-container_icons a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.22);
}
.footer-container-copyright {
  font-size: 0.85rem;
  opacity: 0.85;
  text-align: center;
}

@media (min-width: 500px) {
  body main .about-me_image-container {
    max-height: 600px;
  }
  body main .about-me-text {
    max-height: 600px;
  }
}
@media (min-width: 601px) {
  body .navbar_small-nav-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    height: 36px;
    z-index: 1002;
  }
  body .navbar_small-nav-media a {
    transition: filter 0.25s;
  }
  body .navbar_small-nav-media a img {
    width: 22px;
    height: 22px;
    filter: brightness(1.2);
  }
  body .navbar_small-nav-media a:hover {
    filter: drop-shadow(0 0 4px #fff);
  }
  body .header {
    max-height: none;
  }
  body .header_hero-text {
    height: auto;
    padding: 0 36px;
  }
  body .header_hero-text-title {
    padding: 32px 0 32px;
  }
  body .header_hero-text-title span {
    font-size: 1.2rem;
  }
  body .header_hero-text-logo {
    transform: none;
  }
  body .header_hero-text-logo img {
    max-width: 420px;
  }
  body .header_hero-text-motto {
    font-size: 1.3rem;
    padding: 32px 0 40px;
  }
  body .header_hero-text-btns {
    gap: 32px;
  }
  body .header_hero-text-btns a {
    margin: 0;
  }
}
@media (min-width: 681px) {
  body .modal .table::after {
    display: none;
  }
}
@media (min-width: 768px) {
  body .navbar {
    top: 36px;
    justify-content: space-between;
  }
  body .navbar_small-nav {
    width: auto;
  }
  body .navbar_small-nav-burger {
    display: none;
  }
  body .navbar_small-nav-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    height: 36px;
    z-index: 1002;
  }
  body .navbar_nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    width: auto;
    padding: 0;
    gap: 16px;
  }
  body .navbar_nav li {
    width: auto;
  }
  body .navbar_nav li a {
    padding: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.2);
  }
  body .navbar_nav li a:hover {
    background: none;
    color: #000000;
  }
  body .navbar_nav li a.active {
    color: #000000;
  }
  body .navbar .navbar_nav-big-media {
    position: fixed;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 16px;
    background: linear-gradient(to bottom, #1a1a1a, #121212);
    z-index: 1001;
  }
  body .header {
    margin-top: 96px;
  }
  body .header_triangle-top-left {
    border-bottom: 122px solid transparent;
    border-left: 245px solid #fff;
  }
  body .header_triangle-bottom-right {
    border-top: 122px solid transparent;
    border-right: 245px solid #fff;
  }
  body .header_hero-text {
    padding: 0 56px 56px;
  }
  body .header_hero-text-title {
    padding: 36px 0 36px;
  }
  body .header_hero-text-title span {
    font-size: 1.25rem;
  }
  body .header_hero-text-logo {
    transform: none;
  }
  body .header_hero-text-logo img {
    max-width: 460px;
  }
  body .header_hero-text-motto {
    font-size: 1.35rem;
    padding: 36px 0 44px;
  }
  body .header_hero-text-btns {
    gap: 42px;
  }
  body .header_hero-text-btns a {
    margin: 0;
    font-size: 1.2rem;
    padding: 16px 36px;
  }
  body main section {
    scroll-margin-top: 96px;
  }
  body main .why {
    width: 80%;
    max-width: 1200px;
  }
  body main .about-me_container {
    padding: 32px 0;
  }
  body main .about-me_container .about-me_card {
    max-width: 560px;
    margin: 0 auto;
    border-radius: 18px;
  }
  body main .about-me_container .about-me_container-photo img {
    height: 550px;
    width: auto;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 18px;
  }
  body main .about-me_container .about-me_overlay {
    border-radius: 18px;
  }
  body main .about-me_container .about-me_overlay-content {
    max-height: 550px;
    overflow-y: auto;
  }
  body main .about-me_container .about-me_card.active .about-me_container-photo img {
    opacity: 0;
  }
  body main .about-me_container .about-me_card.active .about-me_overlay {
    opacity: 1;
  }
  body main .services-container {
    width: 80%;
    max-width: 1200px;
  }
  body main .courses_gallery {
    grid-template-columns: repeat(12, 1fr);
    justify-content: center;
    align-items: center;
  }
  body main .courses_gallery > .thumb:nth-child(1) {
    grid-column: 1/5;
  }
  body main .courses_gallery > .thumb:nth-child(2) {
    grid-column: 5/9;
  }
  body main .courses_gallery > .thumb:nth-child(3) {
    grid-column: 9/13;
  }
  body main .courses_gallery > .thumb:nth-child(4) {
    grid-column: 8/12;
    grid-row: 3/4;
  }
  body main .courses_gallery > .thumb:nth-child(5) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:nth-child(6) {
    grid-column: 3/5;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:nth-child(7) {
    grid-column: 5/7;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:nth-child(8) {
    grid-column: 7/9;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:nth-child(9) {
    grid-column: 9/11;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:nth-child(10) {
    grid-column: 11/13;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:last-child {
    grid-column: 1/7;
    grid-row: 3/4;
    max-width: 100%;
  }
  body main .reviews .carousel-container {
    width: 95%;
    padding: 8px;
  }
  body main .reviews .carousel-slide {
    padding: 24px 32px 32px;
  }
  body main .reviews .carousel-slide p {
    font-size: 1rem;
    max-width: 48ch;
  }
  body main .reviews .review-stars {
    font-size: 2rem;
  }
  body main .prices-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    max-width: 700px;
  }
  body .modal-overlay .modal-content .services-text p {
    padding: 15px 30px;
  }
  body .modal-overlay .modal-content .services-text ul {
    padding: 10px 46px;
  }
  body .modal-overlay .modal-content .table {
    max-width: 950px;
    margin: 0 auto;
  }
  body .modal-overlay .modal-content .table table {
    font-size: 0.9rem;
    min-width: 100%;
  }
  body .modal-overlay .modal-content .table table th,
  body .modal-overlay .modal-content .table table td {
    padding: 8px;
  }
  body .footer {
    padding-top: 72px;
    padding-bottom: 24px;
  }
  body .footer-container {
    gap: 12px;
  }
  body .footer-container_icons a {
    width: 48px;
    height: 48px;
  }
  body .footer-container-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  body .footer-container-copyright p + p::before {
    content: "•";
    margin: 0 6px;
    opacity: 0.6;
  }
}
@media (min-width: 900px) {
  body .navbar {
    justify-content: space-around;
  }
  body .navbar_nav {
    gap: 24px;
  }
  body .header_hero-text {
    max-width: 830px;
    padding: 0 96px 64px;
  }
  body .header_hero-text-title {
    padding: 40px 0 40px;
  }
  body .header_hero-text-title h1 {
    font-size: 3.6rem;
  }
  body .header_hero-text-title span {
    font-size: 1.3rem;
  }
  body .header_hero-text-logo img {
    max-width: 520px;
  }
  body .header_hero-text-motto {
    font-size: 1.4rem;
    max-width: 420px;
    padding: 40px 0 48px;
  }
  body .header_hero-text-btns {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
  body .header_hero-text-btns a {
    min-width: 260px;
    font-size: 1.25rem;
  }
  body main .about-me-description {
    display: none;
  }
  body main .about-me .hint {
    display: none;
  }
  body main .about-me_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
  }
  body main .about-me .about-me_card {
    display: flex;
    max-width: none;
    gap: 40px;
    align-items: stretch;
    cursor: default;
  }
  body main .about-me .about-me_container-photo img {
    border-radius: 14px;
  }
  body main .about-me .about-me_overlay {
    position: static;
    opacity: 1;
    pointer-events: auto;
    flex: 1;
    display: flex;
    align-items: center;
    border-radius: 14px;
  }
  body main .about-me .about-me_overlay-content {
    opacity: 1;
    animation: none;
    overflow: visible;
    text-align: left;
  }
  body main .about-me .about-me_card.active .about-me_container-photo img {
    opacity: 1;
  }
  body main .about-me .about-me_card.active .about-me_overlay {
    opacity: 1;
  }
  body main .about-me .about-lead {
    display: block;
  }
  body main .about-me .about-list-title {
    margin: 32px 0 12px;
  }
  body main .about-me .about-close {
    display: none;
  }
  body main .reviews .carousel-container {
    max-width: 960px;
  }
  body main .reviews .carousel-slide {
    min-height: 300px;
    padding: 32px 48px 40px;
  }
  body main .reviews .carousel-slide p {
    font-size: 1.05rem;
    max-width: 52ch;
  }
  body main .reviews button.prev,
  body main .reviews button.next {
    width: 44px;
    height: 44px;
    font-size: 2.2rem;
  }
  body main .contact-box {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    flex-wrap: wrap;
  }
  body main .contact-box_contact-links {
    justify-content: space-evenly;
    min-width: 310px;
    flex: 1 1 45%;
    max-width: none;
  }
  body main .contact-box_contact-links_item {
    max-width: 500px;
  }
  body main .contact-box_places {
    flex: 1 1 45%;
    border-top: none;
    border-left: 1px solid #ddd;
    padding-left: 24px;
  }
  body main .contact-box_map {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0;
  }
  body main .contact-box .contact-box_map iframe {
    height: 350px;
  }
  body .footer {
    padding-bottom: 48px;
  }
  body .footer-img img {
    width: 100px;
    height: 100px;
  }
  body .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body .footer-container_icons {
    gap: 24px;
  }
  body .footer-container-copyright {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  body .header {
    position: relative;
  }
  body .header_side {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 328px;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.22;
    filter: grayscale(100%);
  }
  body .header_side--left {
    left: 0;
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 100%);
    mask-image: linear-gradient(to left, transparent 0%, black 100%);
    background-image: url("../img/hero-left.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  body .header_side--right {
    right: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 100%);
    background-image: url("../img/hero-right.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
  }
  body main .reviews .carousel-container {
    max-width: 1040px;
  }
  body main .reviews .carousel-slide p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  body main .courses_gallery {
    height: 880px;
    grid-template-columns: repeat(12, 1fr);
    justify-content: center;
    align-items: center;
  }
  body main .courses_gallery > .thumb:nth-child(1) {
    grid-column: 1/4;
  }
  body main .courses_gallery > .thumb:nth-child(2) {
    grid-column: 4/7;
  }
  body main .courses_gallery > .thumb:nth-child(3) {
    grid-column: 7/10;
  }
  body main .courses_gallery > .thumb:nth-child(4) {
    grid-column: 10/13;
    grid-row: 1/2;
  }
  body main .courses_gallery > .thumb:nth-child(5) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:nth-child(6) {
    grid-column: 3/5;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:nth-child(7) {
    grid-column: 5/7;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:nth-child(8) {
    grid-column: 7/9;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:nth-child(9) {
    grid-column: 9/11;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:nth-child(10) {
    grid-column: 11/13;
    grid-row: 2/3;
  }
  body main .courses_gallery > .thumb:last-child {
    grid-column: 1/-1;
    justify-self: center;
    max-width: 30%;
  }
}
@media (min-width: 1400px) {
  body main .contact-box {
    border-radius: 14px;
  }
}/*# sourceMappingURL=style.css.map */