:root {

  --platinum-silver: #E5E4E2;
  --charcoal-black: #1C1C1C;
  --black-0: #000000;
  --electric-pink: #FF007F;
  --neon-orange: #FF6600;
  --white-0: #FFFFFF;
  --midnight-purple: #121018;
  --cloud-gray: #F3F3F3;
  --stone-gray: #E5E5E5;
  --gray94: #f0f0f0;
  --gray20: #333333;
}

/* Cormorant Garamond Regular */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Regular.woff2') format('woff2'),
       url('../fonts/CormorantGaramond-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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


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

/* PT Serif Italic (400) */
@font-face {
  font-family: 'PT Serif';
  src: url('../fonts/PTSerif-Italic.woff2') format('woff2'),
       url('../fonts/PTSerif-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}



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

body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
}






/* ----ОБВЕРТКА ФОН---  */

.hero-wrapper {
  background-color: var(--cloud-gray);
  padding: 0;
}

.hero-inner-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  background-image: url('../images/background-hero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-section {
  padding: 40px 20px; 
}

/*   ------HEADER------- */

.header {
  position: relative;
  z-index: 1;
}

.notification-bar {
  width: 100%;
  height: 60px;
  background-color: var(--electric-pink);
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.notification-bar.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

/* ✅ ДОБАВЛЕНО */
.notification-inner {
  max-width: 1400px;             
  margin: 0 auto;
  height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 20px;                
  box-sizing: border-box;
}




.notification-left,
.notification-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.notification-icon {
  width: 26px;
  height: 26px;
}

.notification-text {

  font-family: 'Lato', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  color: var(--white-0);
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

/*   -----MENU----MENU----MENU-------  */

.main-menu {
  width: 100%;

  height: 100px;
  background: linear-gradient(to right, #000000 0%, #1c1c1c 62%);
  box-sizing: border-box;
  margin-top: 60px; 
}

/* ✅ ДОБАВЛЕНО */
.menu-inner {
  max-width: 1400px;         
  margin: 0 auto;
  height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 20px;             
  box-sizing: border-box;
}



.menu-left,
.menu-center,
.menu-right {
  display: flex;
  align-items: center;
}



.logo-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
}

.menu-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: opacity 2s ease-out;
  border-radius: 0px;
  cursor: pointer;
}

.logo-wrapper:hover .menu-logo {
  border-radius: 60px;
}



.hover-logo {
  opacity: 0;
  border-radius: 0px;
  transition: opacity 2s ease-out, border-radius 2s ease-out;
}


.logo-wrapper:hover .hover-logo {
  opacity: 1;
  border-radius: 60px;
}

.logo-wrapper:hover .default-logo {
  opacity: 0;
}






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


.menu-item {
  font-family: 'Lato', sans-serif;

  font-size: clamp(1rem, 2vw, 1.375rem);
  color: var(--platinum-silver);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.6s ease-out, border-color 0.6s ease-out;
}

.menu-item:hover {
  color: var(--white-0);
  border-bottom: 2px solid #FFFFFF;
}

.menu-right {
  gap: 20px;
}

.icon-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  display: inline-block;
}

.social-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: opacity 0.6s ease-out;
}

.hover-icon {
  opacity: 0;
}

.icon-wrapper:hover .hover-icon {
  opacity: 1;
}

.icon-wrapper:hover .default-icon {
  opacity: 0;
}




/*    ------------------HERO---------------HERO----------------------------   */





.hero-upper,
.hero-lower {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-upper {
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px 60px;
  align-items: center;
  margin-bottom: 40px;
}

.hero-lower {
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-title,
.hero-description {
  background-color: rgba(28, 28, 28, 0.7);
  border-radius: 5px;
  padding: 10px 50px;
  display: inline-block; 
  color: var(--white-0);

}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 6.75rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--white-0);
  text-transform: uppercase;
}

.hero-subtitle {
  display: block; 
font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.hero-description {
font-family: 'Lora', serif;

  color: var(--white-0);
  max-width: 1000px;  
  line-height: 1.4;
    display: flex;
  flex-direction: column;
  gap: 24px;

}

.description-line1 {
 font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 10px;
  margin: 0; 
  text-align: left;
  text-transform: uppercase;
}

.description-line2, .description-line3 {
 font-size: clamp(1.1rem, 1.4vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 8px;
  margin: 0;
  text-align: left;
}

.services-wrapper {
  background-color: var(--cloud-gray);
  padding: 0 20px;
}

.services-inner-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  background-image: url('../images/background-services.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-section {
  padding: 20px 0;
}




.services-cards-wrapper {
  width: 100%;
  margin-top: 20px;
  padding: 40px 20px; 
  background: linear-gradient(
    to right,
    rgba(225, 220, 218, 0.7) 0%,
    rgba(235, 213, 205, 0.7) 50%,
    rgba(214, 223, 237, 0.7) 100%
  );
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}

.services-cards-outer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 120px;
  box-sizing: border-box;
}

.services-cards-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}




.service-card {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service-card a {
  margin-top: auto;
}

.card-color-1 {
  background-color: #BBAFAA;
}

.card-color-2 {
  background-color: #A27C6F;
}

.card-color-3 {
  background-color: #BCC7DC;
}

.service-card img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.service-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.95rem, 1.9vw, 1rem); 
  font-weight: 700;
  color: var(--white-0);
  text-align: center;
}

.service-btn {
  width: 210px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--electric-pink);
  color: var(--white-0);
  box-shadow: none;      
  border: none;          
  outline: none;         
  -webkit-appearance: none;
  appearance: none;
  font-family: 'Lato', sans-serif;
  font-weight: 500; 
  font-size: clamp(0.8rem, 0.95vw, 1.09rem);
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 300ms ease-out; 
}

.service-btn:hover {
   background-color: var(--neon-orange);
  border: 3px solid var(--electric-pink);
}

.services-info-strip {
  width: 100%;
max-width: 1400px;
  height: 180px;
  padding: 0 20px;
  margin: 30px auto 0; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.8); 
}

.info-item {
  display: flex;
  align-items: center;	
  gap: 5px; 
}

.services-info-strip img {
  width: 70px;
  height: 70px;
}



.info-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: left;
}

.info-title {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(0.975rem, 1.625vw, 1.22rem);
  color: var(--charcoal-black);
}

.info-subtext {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(0.8125rem, 1.4625vw, 1.015rem);
  color: var(--charcoal-black);
}

.services-cta {
  margin-top: 60px;
  padding-bottom: 70px;
  display: flex;    
  justify-content: center; 
    position: relative;
  
}

.cta-button {
  width: 600px;
  height: 60px;
  border-radius: 25px;
  background-color: var(--electric-pink);
  color: var(--white-0);
  border: none;
  font-family: 'Lato', sans-serif;
font-weight: 500;
font-size: clamp(1.1rem, 1.3vw, 1.5rem);
text-transform: uppercase;
  cursor: pointer;
 transition: all 300ms ease-out;
}

.cta-button:hover {
  background-color: var(--neon-orange);
  border: 3px solid var(--electric-pink);
}

.advantages-wrapper {
  background-color: var(--cloud-gray);
  padding: 0 20px;
}

.advantages-inner-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  background-image: url('../images/background-advantages.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.advantages-section {	
  padding: 80px 20px;
  box-sizing: border-box;
    text-align: center;
}


.advantages-title {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: clamp(1.22rem, 3.05vw, 2.44rem);
  font-weight: 400;
  color: var(--white-0);
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  padding: 5px 15px;
  margin-bottom: 30px;
  
}



.advantages-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(6, auto);
  column-gap: 80px;
  row-gap: 20px;
  position: relative;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  box-sizing: border-box;
  width: 100%;
  max-width: unset; 
}


.advantages-list .advantage-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.advantages-list .advantage-item:nth-child(2) {
  grid-column: 2;
  grid-row: 2 / 4;
}

.advantages-list .advantage-item:nth-child(3) {
  grid-column: 1;
  grid-row: 3 / 5;
}

.advantages-list .advantage-item:nth-child(4) {
  grid-column: 2;
  grid-row: 4 / 6;
}

.advantages-list .advantage-item:nth-child(5) {
  grid-column: 1;
  grid-row: 5 / 7;
}


.advantage-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.advantage-text {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(0.8125rem, 1.625vw, 1.015rem);
  text-align: left;
  color: #ffffff;
  max-width: 620px;
  line-height: 1.4;
}

/*       ----TEACHERS-----     */


.teachers-wrapper {
  background-color: var(--cloud-gray);
  padding: 0 20px;
}

.teachers-inner-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  background-image: url("../images/background-teachers.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}



.teachers-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
    position: relative;
}

.teachers-image-block {
  flex-shrink: 0;
}

.teacher-main-image {
  width: 390px;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.teachers-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px; 
}

.teachers-title-block {
  display: flex;
  flex-direction: column;
  align-items: center; 
   
  margin-bottom: 40px; 
}

.teachers-title {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.875rem);
  text-transform: uppercase;
  color: var(--charcoal-black);
  text-align: center;
}


.teachers-title-2 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.875rem);
  color: var(--charcoal-black);
  text-align: center;
}


.teachers-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  text-transform: uppercase;
  color: var(--charcoal-black);
  text-align: center;
}

.teachers-quotes {
  display: flex;
  flex-direction: column;
  gap: 70px; 
}

.teacher-quote {
  display: flex;
  flex-direction: column;
}

.teacher-name {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.4vw, 0.9375rem);
  text-transform: uppercase;
  color: var(--charcoal-black);
  margin-bottom: 10px; 
}

.quote-text {
  font-family: 'PT Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.4vw, 0.9375rem);
  color: var(--charcoal-black);
   line-height: 1.4;
  margin-bottom: 0; 
}

.quote-sign {
  font-family: 'Lora', serif;
  font-weight: 400;
 font-size: clamp(0.9rem, 1.4vw, 0.9375rem);
  color: var(--charcoal-black);
}

.teachers-quotes,
.teacher-quote,
.teacher-name,
.quote-text,
.quote-sign {
  text-align: left;
}

.teachers-cta-btn {
  margin-top: 40px;
  padding: 16px 40px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.3vw, 1.5rem);
text-transform: uppercase;
 text-align: center;
  color: var(--white-0);
  background-color: var(--electric-pink);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.teachers-cta-btn:hover {
    background-color: var(--neon-orange);
  border: 3px solid var(--electric-pink);
}


/*   -------FOOTER---------     */

.footer {
}

.footer-top {
	width: 100%;
	height: 180px;
	background-color: var(--black-0);
	box-sizing: border-box;
}

.footer-top-inner {
  max-width: 1400px;           
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}




.footer-logo-menu {
  display: flex;
  align-items: center;
  gap: 60px;
}

.footer-logo {
  width: 100px;
  height: 100px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 15px; 
}

.footer-menu li a {
  font-family: 'Lato', sans-serif;
   font-size: clamp(0.95rem, 1.1vw, 1.125rem);
  text-transform: uppercase;
  color: var(--platinum-silver);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.6s ease-out, border-color 0.6s ease-out;
}

.footer-menu li a:hover {
  color: var(--white-0);
  border-bottom: 2px solid #FFFFFF;
}



.footer-club-name {
display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  margin-left: auto;
}

.footer-club-title {
  font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--platinum-silver);
  text-transform: uppercase;
}






.footer-club-subtitle {
  font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.125rem, 2.5vw, 1.5rem); 
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--platinum-silver);
}


.footer-middle {
	width: 100%;
	height: 100px;
	box-sizing: border-box;
	background-color: var(--electric-pink);
	
	
}

.footer-middle-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
    display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;


}

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

.footer-phone-item {
  display: flex;
  align-items: center;
  height: 90px;
}

.footer-phone-icon {
  width: 50px;
  height: 50px;
  margin-right: 20px; 
}

.footer-phone-text {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);  
  font-weight: 400;
  color: var(--white-0);
  text-transform: none;
  line-height: 1;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.footer-socials {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.footer-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
}

.footer-social-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.6s ease-out;
}

.footer-hover-icon {
  opacity: 0;
}

.footer-icon-wrapper:hover .footer-default-icon {
  opacity: 0;
}

.footer-icon-wrapper:hover .footer-hover-icon {
  opacity: 1;
}


.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 20px; 
}

.footer-contact-pair {
  display: flex;
  align-items: center;
  gap: 20px; 
}

.footer-icon-small {
  width: 26px;
  height: 26px;
}

.footer-contact-text-small {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  color: var(--white-0);
}

.footer-bottom {
	width: 100%;
	height: 50px;
	background-color: var(--black-0);
	box-sizing: border-box;
	
}

.footer-bottom-inner {
max-width: 1400px;
  margin: 0 auto;
  height: 100%;
    display: flex;
  align-items: flex-start;
  padding: 15px 20px;
  box-sizing: border-box;
	
}

.footer-credit {
	font-family: 'Lato', sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 1.125rem);  
  font-weight: 400;
  color: var(--white-0);
	
}
  
  
  
  
 
 
  /* ОКНО ДЛЯ ФОРМЫ */
 
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

/* Контейнер формы */
.modal-content {
  background-color: var(--white-0);
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  font-family: 'Lato', sans-serif;
}

/* Крестик закрытия */
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* Стиль формы */
.sign-up-form input,
.sign-up-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: inherit;
}

.sign-up-form button.submit-btn {
  width: 100%;
  padding: 10px;
  background-color: var(--electric-pink);
  color: var(--white-0);
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sign-up-form button.submit-btn:hover {
  background-color: var(--neon-orange);
}

@media (max-width: 800px) {
  .notification-bar {
    position: static;
  }

  .main-menu {
    margin-top: 0 !important; 
  }
}

@media (max-width: 768px) {
  .notification-bar {
    height: 40px;
  }

  .notification-icon {
    width: 18px;
    height: 18px;
  }

  .notification-text {
    font-size: 0.8rem;
  }

.main-menu {
    height: auto;
  }

  .logo-wrapper {
    width: 70px;
    height: 70px;
  }

  .menu-logo {
    width: 70px;
    height: 70px;
  }


    .menu-inner {
    flex-wrap: nowrap;   
    align-items: center;
    justify-content: space-between;
  }
  
   .menu-left,
  .menu-right {
    flex: 0 0 auto;
  }

 .menu-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;              
    max-height: 120px;   
    overflow: hidden;  
  }


  .menu-item {
    font-size: 0.8rem;
  }

  .menu-right {
    gap: 10px;
  }

  .icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 450px) {
	
	.notification-bar {
  height: auto;       
  padding: 6px 0;      
}
	
  .notification-inner {
    flex-direction: column;
    align-items: center;
    gap: 4px; 
    padding: 6px 10px; 
  }

  .notification-left,
  .notification-right {
    justify-content: center;
  }

  .notification-text {
    font-size: 0.75rem;
    text-align: center;
  }
  


}

@media (max-width: 768px) {
  .hero-upper,
  .hero-lower {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-title,
  .hero-description {
    padding: 10px 15px;
    text-align: center;
  }

  .description-line1,
  .description-line2,
  .description-line3 {
    text-align: center;
	line-height: 1.3;
  }
}

@media (max-width: 448px) {
  .hero-heading {
    font-size: clamp(2rem, 6vw, 3.5rem);
    letter-spacing: 0.12em;
  }

  .hero-subtitle {
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  }

  .hero-description {
    gap: 14px;
    padding: 10px 16px;
  }

  .description-line1,
  .description-line2,
  .description-line3 {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .hero-title,
  .hero-description {
    padding: 8px 16px;
  }
}

@media (max-width: 900px) {
  .services-cards-wrapper {
    height: auto; 
    padding: 20px 0;
  }

  .services-cards-inner {
    gap: 16px;
    padding: 0 10px;
  }

  .service-card {
    padding: 12px;
    height: auto;
  }

  .service-card img {
    width: 160px;
    height: 160px;
  }

  .service-card h3 {
    font-size: 0.9rem;
  }

  .service-btn {
    width: 160px;
  }
}

@media (max-width: 670px) {
  .services-cards-wrapper {
    height: auto;
    padding: 15px 10px;
  }

  .services-cards-inner {
    gap: 12px;
    padding: 0;
  }

  .service-card {
    height: 240px;
    padding: 6px;
  }

  .service-card img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
  }

  .service-card h3 {
    font-size: clamp(0.75rem, 1.3vw, 0.9rem);
    margin: 0;
  }

  .service-btn {
    width: 120px;
    height: 32px;
    font-size: 0.7rem;
    border-width: 2px;
  }
}


@media (max-width: 500px) {
  .services-cards-wrapper {
    height: auto;
    padding: 10px 5px;
  }

  .services-cards-inner {
    gap: 8px;
    padding: 0;
  }

  .service-card {
    height: 200px;
    padding: 4px;
  }

  .service-card img {
    width: 100px;
    height: 100px;
    border-radius: 6px;
  }

  .service-card h3 {
    font-size: clamp(0.65rem, 1.1vw, 0.85rem);
    margin: 0;
  }

  .service-btn {
    width: 100px;
    height: 28px;
    font-size: 0.65rem;
    border-width: 2px;
  }
}


@media (max-width: 900px) {
  .services-info-strip {
    height: auto;
    gap: 20px;
    padding: 10px 15px;
  }

  .info-item {
    gap: 10px;
  }

  .services-info-strip img {
    width: 55px;
    height: 55px;
  }

  .info-title {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
  }

  .info-subtext {
    font-size: clamp(0.75rem, 1.25vw, 0.9rem);
  }
}


@media (max-width: 670px) {
	
  .services-info-strip {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 20px;
  }

  .services-info-strip img {
    width: 45px;
    height: 45px;
  }

  .info-title {
    font-size: 0.9rem;
  }

  .info-subtext {
    font-size: 0.75rem;
  }
}

@media (max-width: 500px) {
  .services-info-strip {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 20px;
  }

  .info-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .services-info-strip img {
    width: 40px;
    height: 40px;
  }

  .info-title {
    font-size: 0.85rem;
  }

  .info-subtext {
    font-size: 0.7rem;
  }
}

@media (max-width: 900px) {
	
	.services-cta {
  margin-top: 40px; 
  padding-bottom: 40px;
  
}
	
  .cta-button {
    width: 500px;
    height: 55px;
    font-size: clamp(1rem, 1.2vw, 1.3rem);
  }
}

@media (max-width: 670px) {
	
		.services-cta {
  margin-top: 35px; 
  padding-bottom: 35px;
  
}
  .cta-button {
    width: 400px;
    height: 50px;
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
  }
}

@media (max-width: 500px) {
	
			.services-cta {
  margin-top: 25px; 
  padding-bottom: 25px;
  
}
	
  .cta-button {
    width: 320px;
    height: 45px;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
  }
}



@media (max-width: 1100px) {
  .advantages-list {
    display: block; 
  }
  
    .advantages-section {
    padding-top: 50px; 
	padding-bottom: 50px;
  }
  
  .advantage-item {
    width: 100%;
    max-width: none;
    margin-bottom: 20px; 
    grid-column: unset !important;
    grid-row: unset !important;
  }
  
  .advantage-icon {
    width: 50px;
    height: 50px;
  }

  .advantage-text {
    font-size: clamp(0.75rem, 1.4vw, 0.9rem);
    max-width: 100%;
  }

  .advantage-heading {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }

  .advantages-title {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    padding: 4px 12px;
  }
}

@media (max-width: 800px) {
  .advantages-section {
    padding-top: 45px; 
	padding-bottom: 45px;
  }

  .advantages-title {
    font-size: clamp(0.95rem, 2.2vw, 1.5rem);
    padding: 3px 10px;
    margin-bottom: 20px;
  }

  .advantage-item {
    padding: 12px;
    gap: 12px;
  }

  .advantage-icon {
    width: 45px;
    height: 45px;
  }

  .advantage-text {
    font-size: clamp(0.7rem, 1.25vw, 0.85rem);
  }

  .advantage-heading {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
  }
}

@media (max-width: 600px) {
  .advantages-section {
    padding-top: 40px;
	padding-bottom: 40px;
  }

  .advantages-title {
    font-size: clamp(0.85rem, 2vw, 1.3rem);
    padding: 2px 8px;
    margin-bottom: 15px;
  }

  .advantage-item {
    padding: 10px;
    gap: 10px;
  }

  .advantage-icon {
    width: 40px;
    height: 40px;
  }

  .advantage-text {
    font-size: clamp(0.65rem, 1.1vw, 0.8rem);
  }

  .advantage-heading {
    font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  }
}


@media (max-width: 450px) {
  .advantages-section {
    padding-top: 30px;
	padding-bottom: 30px;
  }

  .advantages-title {
    font-size: clamp(0.75rem, 1.8vw, 1.1rem);
    padding: 2px 6px;
    margin-bottom: 10px;
  }

  .advantage-item {
    padding: 8px;
    gap: 8px;
  }

  .advantage-icon {
    width: 35px;
    height: 35px;
  }

  .advantage-text {
    font-size: clamp(0.6rem, 1vw, 0.75rem);
    line-height: 1.3;
  }

  .advantage-heading {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  }
}

@media (max-width: 1000px) {
  .teachers-section {
    padding: 30px 15px;
  }

  .teacher-main-image {
    width: 320px;
    height: auto;
  }

  .teachers-text-block {
    padding-left: 40px;
  }

  .teachers-title,
  .teachers-title-2 {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
  }

  .teachers-subtitle {
    font-size: clamp(1.3rem, 2.8vw, 2rem);
  }

  .teacher-name,
  .quote-text,
  .quote-sign {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  }

  .teachers-cta-btn {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    padding: 12px 32px;
    margin-top: 30px;
  }

  .teachers-quotes {
    gap: 50px;
  }
}

@media (max-width: 800px) {
  .teacher-main-image {
    width: 280px;
  }

  .teachers-text-block {
    padding-left: 30px;
  }

  .teachers-title,
  .teachers-title-2 {
    font-size: clamp(0.95rem, 1.7vw, 1.25rem);
  }

  .teachers-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  }

  .teacher-name,
  .quote-text,
  .quote-sign {
    font-size: clamp(0.82rem, 1.4vw, 0.9rem);
  }

  .teachers-cta-btn {
    font-size: 1rem;
    padding: 10px 28px;
  }

  .teachers-quotes {
    gap: 40px;
  }
}


@media (max-width: 720px) {
  .teachers-section {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .teachers-image-block {
    margin-bottom: 30px;
  }

  .teacher-main-image {
    width: 90%;
    height: auto;
    max-width: 340px;
  }

  .teachers-text-block {
    padding-left: 0;
    width: 100%;
    max-width: 500px;
  }

  .teachers-title-block {
    margin-bottom: 30px;
  }

  .teachers-title,
  .teachers-title-2 {
    font-size: 1.2rem;
  }

  .teachers-subtitle {
    font-size: 1.8rem;
  }

  .teacher-name,
  .quote-text,
  .quote-sign {
    font-size: 0.95rem;
  }

  .teachers-quotes {
    gap: 25px;
  }

  .teachers-cta-btn {
    margin-top: 30px;
    font-size: 1rem;
    padding: 12px 32px;
  }
}

@media (max-width: 600px) {
  .teacher-main-image {
    width: 85%;
    max-width: 300px;
  }

  .teachers-title {
    font-size: 1rem;
  }

  .teachers-title-2 {
    font-size: 1rem;
  }

  .teachers-subtitle {
    font-size: 1.4rem;
  }

  .teacher-name,
  .quote-text,
  .quote-sign {
    font-size: 0.85rem;
  }

  .teachers-text-block {
    padding: 0;
    max-width: 460px;
  }

  .teachers-quotes {
    gap: 20px;
  }

  .teachers-cta-btn {
    font-size: 0.95rem;
    padding: 10px 28px;
    margin-top: 25px;
  }
}

@media (max-width: 800px) {
  .footer-middle-inner {
    padding: 0 15px;
  }

  .footer-phone-icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }

  .footer-phone-text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  }

  .footer-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .footer-contact-group {
    gap: 15px;
  }

  .footer-icon-small {
    width: 20px;
    height: 20px;
  }

  .footer-contact-text-small {
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  }

  .footer-socials {
    gap: 20px;
  }
}


@media (max-width: 630px) {
 
  .footer-top {
    height: 140px;
  }

  .footer-logo-menu {
    gap: 30px;
  }

  .menu-logo {
    width: 70px;
    height: 70px;
  }

	.footer-menu  {
	gap: 10px;
	
	}

  .footer-menu li a {
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    
  }

  .footer-club-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  }

  .footer-club-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }


  .footer-middle {
    height: 90px;
  }

  .footer-phone-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .footer-phone-text {
    font-size: clamp(1rem, 2vw, 1.3rem);
  }

  .footer-icon-wrapper {
    width: 38px;
    height: 38px;
  }

  .footer-socials {
    gap: 10px;
  }

  .footer-icon-small {
    width: 18px;
    height: 18px;
  }

  .footer-contact-text-small {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
  }

  .footer-contact-group {
    gap: 12px;
  }

  .footer-contact-pair {
    gap: 12px;
  }
}

@media (max-width: 550px) {
	
	  .footer-top {
    height: auto;
    padding-bottom: 10px;
  }
	
  .footer-top-inner {
    flex-direction: column;
    align-items: center; 
    gap: 10px;
    padding: 5px;
    height: auto;
  }

  .footer-logo-menu {
    flex-direction: row;
    align-items: center;
    justify-content: center; 
    gap: 30px;
  }

  .footer-menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-menu li a {
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  }

  .logo-wrapper img {
    width: 70px;
    height: 70px;
  }

  .footer-club-name {
    align-items: center;
    text-align: center;
    margin-left: 0;
    width: 100%;
  }

  .footer-club-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .footer-club-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  
  .footer-middle {
  height: auto;
  padding: 10px 0;
}

.footer-middle-inner {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  height: auto;
}

.footer-contacts {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.footer-phone-item {
  justify-content: center;
  height: auto;
}

.footer-phone-icon {
  width: 25px;
  height: 25px;
  margin-right: 12px;
}

.footer-phone-text {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.footer-socials {
  gap: 25px;
}

.footer-icon-wrapper {
  width: 40px;
  height: 40px;
}

.footer-contact-group {
  gap: 15px;
  align-items: center;
}

.footer-contact-pair {
  gap: 12px;
  justify-content: center;
  text-align: center;
}

.footer-icon-small {
  width: 20px;
  height: 20px;
}

.footer-contact-text-small {
  font-size: clamp(0.9rem, 2.8vw, 1.1rem);
}

  
  
}

