@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Kyiv Type Sans';
    src: url('../fonts/KyivTypeSans.woff2') format('woff2'),
         url('../fonts/KyivTypeSans.woff') format('woff');
    font-weight: 1;
    font-style: normal;
}

@font-face {
    font-family: 'Kyiv Type Sans';
    src: url('../fonts/KyivTypeSans-Thin.woff2') format('woff2'),
         url('../fonts/KyivTypeSans-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Kyiv Type Sans';
    src: url('../fonts/KyivTypeSans-Light.woff2') format('woff2'),
         url('../fonts/KyivTypeSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Kyiv Type Sans';
    src: url('../fonts/KyivTypeSans-Regular.woff2') format('woff2'),
         url('/fonts/KyivTypeSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Kyiv Type Sans';
    src: url('../fonts/KyivTypeSans-Medium.woff2') format('woff2'),
         url('../fonts/KyivTypeSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Kyiv Type Sans';
    src: url('../fonts/KyivTypeSans-Bold.woff2') format('woff2'),
         url('../fonts/KyivTypeSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Kyiv Type Sans';
    src: url('../fonts/KyivTypeSans-Heavy.woff2') format('woff2'),
         url('../fonts/KyivTypeSans-Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Kyiv Type Sans';
    src: url('../fonts/KyivTypeSans-Black.woff2') format('woff2'),
         url('../fonts/KyivTypeSans-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

/* scrollbar */

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background-image: white;
}

body::-webkit-scrollbar-thumb {
  background-image: -webkit-linear-gradient(#0600ab62, #9603ff65); 
  border-radius: 10px;
  border: 1px solid white;
}

@media screen and (max-width: 1000px){
  body::-webkit-scrollbar {
    width: 10px;
  }
}

@media screen and (max-width: 724px){
  body::-webkit-scrollbar {
    width: 5px;
  }
  body::-webkit-scrollbar-thumb {
    background-image: -webkit-linear-gradient(#0600ab62, #9603ff65); 
    border-radius: 10px;
    border: 1px solid white;
  }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Raleway;
    font-size: 16px;
    line-height: 1.5;
    color: #1C1C1C;
    text-decoration: none;
    list-style: none;
    border: 0;
    outline: none;
    vertical-align: baseline;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

html{
    scroll-behavior: smooth;
}

body{
  background-image: linear-gradient(#E6EFFE,#F4EFF0, #FFFFFF,#F4EFF0,#FFFFFF,#E7EFFE);
}

/* header */
header{
    width: 100%;
    height: 800px;
}
@media screen and (max-width: 1000px){
  header{
    height: 483px;
  }
}

body{
  width: 100%;
}

/*navbar*/

.navbar-pc{
  display: block;
}
.navbar-phone{
  display: none;
}

.navbar{
  height: 104px;
  width: 100vw;
  position: fixed;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: all 0.2s;
  z-index: 100;
}

@media (min-width: 1px) {
  .navbar.scrolled {
    background-color: white !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  
  .btn-lesson-navbar.scrolled::before {
    background-image: var(--btn-before-gradient, linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255))) !important;
  }

}

.navbar-menu{
  height: 20px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 108px 200px 1fr 400px 1fr 200px 108px;
}

.navbar-sub{
  height: 100%;
  text-align: center;
}

.navbar-center{
  display: grid;
  grid-template-columns: auto auto 1fr;
}

/*logo*/
.logo-phone{
  display: none;
}

.logo-phone img{
  width: 115px;
}

.logo-pc img{
  margin-top: 9px;
  width: 176.76px;
}

/*lesson*/
.btn-lesson-navbar {
  padding: 10px 14.3px;
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background: linear-gradient(to right, #0600AB, #9603FF);
  cursor: pointer;
  margin-left: 10px;
  margin-right: 10px;
  transition: all 0.7s;
}

.btn-lesson-navbar::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 20px;
  background-image: var(--btn-before-gradient, linear-gradient(to right, #dfe9f8, #e5ecf7));
  transition: background-image 0.3s ease;
  transition: all 0.5s;
  z-index: -1;
}

.btn-lesson-navbar.scrolled::before {
  background-image: var(--btn-before-gradient, linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255)));
}

.btn-lesson-navbar::after {
  content: attr(data);
  font-size: 16px;
  background: linear-gradient(to right, #0600AB, #9603FF); 
  -webkit-background-clip: text;
  background-clip: text; 
  color: transparent; 
  transition: all 400ms; 
  font-size: 16px;
  font-weight: 500;
}
.btn-lesson-navbar:hover::before {
  opacity: 1%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.btn-lesson-navbar:hover::after{
  color: white;
}

/*Speaking*/

.speaking-club-a {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-left: 12px;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  margin-top: 8px;
}

.speaking-club-a p {
  font-size: 16px;
  font-weight: 600;
  font-family: Raleway;
  white-space: nowrap;
  margin-top: 2px;
  background-image: linear-gradient(to right, #0600AB, #9603FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-image 0.3s ease;
}

.speaking-club-a:not(:hover) p {
  background-image: none;
  color: currentColor; 
}

.speaking-club-a img {
  margin-top: 2px;
}

/* teacher */

.navbar-pre-right{
  display: grid;
  grid-template-columns: auto auto;
  text-align: end;
}

.navbar-pre-right p{
  font-family: Raleway;
  font-size: 16px;
  font-weight: 600;
  margin-top: 7px;
}

.navbar-pre-right img{
  margin-top: 7px;
}

.pc-teacher-btn{
  background-image: linear-gradient(to right, #0600AB, #9603FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-image 0.3s ease;
  cursor: pointer;
}

.pc-teacher-btn:not(:hover){
  background-image: none;
  color: currentColor; 
}

.phone-menu-nav-sub, .phone-menu-nav button{
  background-image: linear-gradient(to right, #0600AB, #9603FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-image 0.3s ease;
}

.phone-menu-nav-sub:not(:hover), .phone-menu-nav button:not(:hover){
  background-image: none;
  color: currentColor; 
}

/* buterbrod */

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.burger-btn {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.burger-line:nth-child(1) { top: 4px; }
.burger-line:nth-child(2) { top: 11px; }
.burger-line:nth-child(3) { top: 18px; }

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* phone full menu */

.fullscreen-menu {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(#E6EFFE, #F4EFF0);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(10px);
  z-index: 99;
  transform: translateX(100%);
  transition: transform ease-in-out 0.05s;
  overflow-y: auto;
}


.fullscreen-menu.active {
  transform: translateX(0);
}

.phone-menu-nav {
  height: 152px;
  padding-top: 120px;
  padding-left: 16px;
  margin: 0;
  gap: 16px;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  font-family: Raleway;
  font-size: 16px;
  font-weight: 600;
}

.phone-menu-nav button{
  font-family: Raleway;
  font-size: 16px;
  font-weight: 600;
  text-align: start;
}

.phone-menu-nav-tg{
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 8px;
}

.phone-menu-tg{
  margin-top: 150px;
  padding-left: 16px;
}

.body-lock {
  overflow: hidden;
}

/* phone lesson*/

.phone-menu-button{
  margin-top: 180px;
  display: grid;
  grid-template-columns: 1fr 134px 1fr;
}

.phone-menu-button-lesson{
  height: 40px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  color: #FAFAFA;
  font-size: 16px;
  font-family: Raleway;
  background: linear-gradient(var(--grad-angle), #0600AB, #9603FF);
  animation: customGradientRotate 13s linear infinite;
}

.phone-menu-button-lesson{
  color: white;
  font-size: 16px;
  font-weight: 500;
}

/* navbar-adapt */

@media screen and (max-width: 1400px){
  .navbar-menu{
    height: 40px;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 58px 200px 1fr 410px 1fr 200px 58px;
  }
}

@media screen and (max-width: 1000px){
  .phone-menu-nav{
    padding-left: 40px;
  }
  .logo-pc{
    display: none;
  }
  .logo-phone{
    display: block;
    margin-top: 5px;
  }
  .navbar-pc{
    display: none;
  }
  .navbar-phone{
    display: block;
  }
  .navbar-menu{
    height: 24px;
    margin-top: 36px;
    display: grid;
    grid-template-columns: 40px 180px 1fr 40px;
  }
  .navbar-logo{
    text-align: start;
  }
  .burger{
    text-align: end;
  }
  .navbar{
    border-radius: 0;
    height: 80px;
  }
  .phone-menu-tg{
    padding-left: 40px;
  }
  .logo-phone{
    width: 135px;
  }
}

@media screen and (max-width: 724px){
  .navbar-menu{
    grid-template-columns: 16px 1fr 24px 16px;
  }
  .phone-menu-nav{
    padding-left: 16px;
  }
  .phone-menu-tg{
    padding-left: 16px;
  }
}

/* header */

.header{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 130px 360px 244px;
  gap: 20px;
}

.header-sub{
  grid-row: 1;
}
.on-school{
  grid-row: 2;
}

.flag{
  grid-row: 3;
}

.header button{
  font-size: 24px;
  font-weight: 500;
  font-family: Raleway;
}


@media screen and (max-width: 1000px){
  .header-sub{
    grid-row: 1;
    margin-bottom: 20px;
  }
  .on-school{
    grid-row: 3;
  }
  .flag{
    grid-row: 2;
    margin-top: 40px;
  }
  .header{
    grid-template-rows: 100px 80px 244px;
  }
}
/* on school*/


.on-school{
  display: grid;
  grid-template-columns: 1fr 604px 1fr;
  margin-bottom: 70px;
  padding-right: 10px;
}

.on-school-center{
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  text-align: center;
}

.on-school-h{
  font-family: Raleway;
  font-weight: 600;
  font-size: 48px;
  color: #1C1C1C;
  margin-top: 16px;
}


.on-school-p{
  font-family: Raleway;
  font-weight: 400;
  font-size: 24px;
  color: #1C1C1C;
  white-space: nowrap;
}

.on-school-button{
  margin-top: 24px;
}

.on-school-button-btn{
  width: 253px;
  height: 54px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  color: #FAFAFA;
  font-size: 16px;
  font-family: Raleway;
  background: linear-gradient(var(--grad-angle), #0600AB, #9603FF);
  animation: customGradientRotate 13s linear infinite;
}

@property --grad-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: -90deg;
}

@keyframes customGradientRotate {
  0%, 25% {
      --grad-angle: -90deg;
  }

  25%, 50% {
      --grad-angle: 15deg;
  }

  50%, 75% {
      --grad-angle: 102deg;
  }

  75%, 100% {
      --grad-angle: 216deg;
  }
}

.on-school img{
  width: 60px;
}


@media screen and (max-width: 1000px){
  .on-school-h{
    font-size: 24px;
    margin-top: 10px;
  }
  .on-school-p{
    font-size: 16px;
  }
  .on-school img{
    width: 40px;
  }
  .on-school{
    display: grid;
    grid-template-columns: 1fr 328px 1fr;
    margin-bottom: 70px;
  }
}

/* flag */
.flag {
  margin-bottom: 40px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 392px 392px 392px 1fr;
  gap: 24px;
  height: 184px;
}

.flag-container {
  border-radius: 60px;
  background-color: #FAFAFA;
  position: relative;
  display: grid;
  grid-template-rows: 1fr 60px 47px 1fr;
  place-items: center;
  height: 184px;
  overflow: hidden;
}

/* flag-border */
.flag-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 60px;
  padding: 2px;
  background: linear-gradient(180deg, #DDDCDE, #DDDCDE, #9603FF, #0600AB);

  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: scale(0.98);
  transition: all 600ms ease-out 200ms;
}

.flag-container-img {
  opacity: 0;
  transform: translateY(10px);
  transition: all 600ms ease-out 200ms;
  z-index: 2;
}

.flag-container-p {
  opacity: 0;
  transform: translateY(10px);
  transition: all 600ms ease-out 200ms;
  z-index: 2;
}

.flag-container.animate-border::after,
.flag-container.animate-border .flag-container-img,
.flag-container.animate-border .flag-container-p {
  opacity: 1;
  transform: none;
}

.flag-container img {
  height: 60px;
  display: block;
}

.flag-container p {
  font-family: Raleway;
  font-size: 40px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

@media screen and (max-width: 1300px) {
  .flag {
    gap: 16px;
    grid-template-columns: 1fr 300px 300px 300px 1fr;
  }
}

@media screen and (max-width: 1000px) {
  .flag {
    gap: 16px;
    grid-template-columns: auto 102px 102px 102px auto;
    height: 40px;
  }
  
  .flag-container {
    height: 40px;
    grid-template-rows: 1fr 24px 14px 1fr;
  }
  
  .flag-container::after {
    padding: 1px;
  }
  
  .flag-container img {
    margin-top: 4px;
    height: 22px;
  }
  
  .flag-container p {
    font-size: 12px;
    margin-bottom: 4px;
  }
}

/* our approach */
.our-approach{
  height: 640px;
  width: 100%;
}

.our-approach-container{
  width: 787px;
  height: 402px;
}

.our-approach-container-h{
  height: 67px;
  border-bottom: 1px solid #1C1C1C;
  display: grid;
  grid-template-columns: 1fr auto;
}

.our-approach-container h2{
  font-family: Raleway;
  font-size: 40px;
  font-weight: 500;
}

.our-approach-h h1{
  font-family: 'Kyiv Type Sans';
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
}

.our-approach-container-p p{
  font-family: Raleway;
  font-size: 20px;
  font-weight: 800;
  padding-top: 20px;
}

.our-approach-container-main{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 787px 1fr;
  height: 402px;
}

.our-approach-container-p {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: 
    max-height 0.3s ease-in-out,
    opacity 0.3s ease 0.3s; 
  will-change: max-height, opacity;
}

.our-approach-container-p.active {
  max-height: 500px;
  opacity: 1;
  transition: 
    max-height 0.3s ease-in-out,
    opacity 0.3s ease; 
}

.our-approach-speaking{
  margin-bottom: 46px;
}

.our-approach-team{
  margin-bottom: 46px;
}

@media screen and (max-width: 1000px){
  .our-approach-h h1{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .our-approach{
    height: 320px;
  }
  .our-approach-container h2{
    font-size: 20px;
    padding-top: 5px;
  }

  .our-approach-container-h{
    height: 48px;
  }

  .our-approach-container-p p{
    font-size: 12px;
    padding-bottom: 8px;
  }
  .our-approach-container{
    width: 343px;
  }
  .our-approach-container-main{
    grid-template-columns: 1fr 343px 1fr;
    height: 264px;
  }
  .our-approach-speaking{
    margin-bottom: 14px;
  }

  .our-approach-team{
    margin-bottom: 14px;
  }
}


/* toggle btn */

.toggle-btn {
  width: 32px;          
  height: 32px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 15px;
}

@media screen and (max-width: 1000px){
  .toggle-btn{
    margin-top: 5px;
  }
}

.toggle-icon {
  display: block;
  width: 22px;        
  height: 22px;
  position: relative;
}

.toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #1C1C1C;
  transform: translate(-50%, -50%);
  transition: 
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #1C1C1C;
  transform: translate(-50%, -50%);
  transition: 
    opacity 0.3s ease,
    height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-btn.active .toggle-icon::before {
  width: 80%; 
}

.toggle-btn.active .toggle-icon::after {
  opacity: 0;
  height: 0%; 
}

/* trial lesson */

.trial-lesson{
  height: 678px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1224px 1fr;
}

.trial-lesson-container {
  position: relative;
  border-radius: 100px;
  border: 2px solid #DDDCDE;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease;
}

.trial-lesson-container::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  background: linear-gradient(to bottom, #DDDCDE, #DDDCDE, #9603FF, #0600AB);
  z-index: -1;
  opacity: 0; 
  transition: opacity 0.2s ease;
}

.trial-lesson-container:hover {
  border-color: transparent;
}

.trial-lesson-container:hover::before {
  opacity: 1;
}

@media screen and (max-width: 1300px){
  .trial-lesson{
    grid-template-columns: 1fr 900px 1fr;
  }
}

@media screen and (max-width: 1000px){
  .trial-lesson{
    grid-template-columns: 1fr 360px 1fr;
  }
  .trial-lesson-container{
    border: 0px;
    background-color: transparent;
    border-radius: 0;
  }
  .trial-lesson-container::before {
    border: 0px transparent;
    background: transparent;
    border-radius: 0;
  }
}

.trial-lesson-container-h h1{
  font-family: 'Kyiv Type Sans';
  font-size: 40px;
  font-weight: 500;
}

.trial-lesson-container-h img{
  margin-top: 15px;
  margin-left: 10px;
  display: block;
}

.trial-lesson-container-h{
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* trial input*/

.trial-lesson-container-input {
  display: grid;
  grid-template-columns: 1fr 424px 1fr;
  height: 330px;
  margin-bottom: 32px;
  padding-bottom: 20px;
}

.trial-lesson-container-input-cnt {
  display: grid;
  grid-template-rows: auto 1fr 1fr auto 1fr 1fr;
  position: relative;
}

.trial-lesson-container-input-cnt input {
  border: 1px solid transparent;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 400;
  font-family: Raleway;
  padding: 15px;
  color: #868588;
  height: 63px;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(to right, #0600AB, #9603FF) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-sizing: border-box;
  outline: none;
  font-family: Raleway;
  font-weight: 400;
}

.trial-lesson-container-input-cnt input:focus {
  color: #1C1C1C;
  font-family: Raleway;
  font-weight: 400;
  font-size: 20px;
}


.phone-num {
  font-family: Montserrat !important;
  font-weight: 400;
  color: #868588;
}

@media screen and (max-width: 1000px) {
  .trial-lesson-container-input {
    grid-template-columns: 1fr 279px 1fr;
  }
  .trial-lesson-container-h h1 {
    font-size: 24px;
    line-height: 35px;
  }
  .trial-lesson-container-h img {
    display: none;
  }
  .trial-lesson-container-h {
    grid-template-columns: 1fr 279px 1fr;
    text-align: center;
  }
}

.trial-input-name{
  grid-area: 2;
  margin-bottom: 16px;
}

.trial-input-email{
  grid-area: 3;
}

.trial-input-phone{
  grid-area: 5;
  margin-bottom: 16px;
}

.trial-input-telegram{
  grid-area: 6;
}

/* prompting */


.prompting-name{
  display: none;
  height: 12px;
  margin-left: 20px;
  padding: 0;
  margin-bottom: 3px;
  grid-area: 1;
}

.prompting-phone{
  display: none;
  height: 12px;
  margin-left: 20px;
  padding: 0;
  margin-bottom: 3px;
  grid-area: 4;
}

.prompting p{
  font-size: 10px;
  font-family: Raleway;
  font-weight: 600;
  color: #B41B03 !important;
}

/* radio btn*/

.trial-lesson-container-radio-main {
  display: grid;
  grid-template-columns: 1fr 325px 1fr;
  height: 51px;
  position: relative;
  margin-bottom: 32px;
}

.trial-lesson-container-radio {
  display: grid;
  grid-template-rows: 19px 24px;
  gap: 8px;
}

.trial-lesson-container-radio-p {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: start;
  font-family: Raleway;
  font-size: 16px;
  font-weight: 600;
}

.trial-lesson-container-radio-p img {
  margin-top: 5px;
  margin-right: 3px;
}

.trial-lesson-container-radio-btn {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.trial-lesson-container-radio-btn input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  margin: 0;
  position: relative;
  box-sizing: border-box;
  transition: all 0.1s ease;
}

.trial-lesson-container-radio-btn input[type="radio"]:checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #ffffff; 
  border-radius: 50%;
}

.trial-lesson-container-radio-btn input[type="radio"]:hover {
  transform: none;
  box-shadow: none;
}

.trial-lesson-container-radio-btn input[type="radio"]:checked {
  background-color: #000;
}

.trial-lesson-container-radio-btn input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
}

.trial-lesson-container-radio-btn label {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 20px;
  cursor: pointer;
}
/* config btn */

.trial-lesson-container-btn{
  display: grid;
  grid-template-columns: 1fr 222px 1fr;
  height: 54px;
}

.trial-lesson-container-btn-btn{
  height: 54px;
  width: 222px;
  border-radius: 40px;
  font-family: Raleway;
  font-size: 16px;
  color: white;
  border: none;
  background: linear-gradient(var(--grad-angle), #0600AB, #9603FF);
  animation: customGradientRotate 13s linear infinite;
  cursor: pointer;
}

.trial-lesson-container-btn-btn{
  font-size: 24px;
  font-weight: 500;
  font-family: Raleway;
}



/* price */ 

/* price h*/

.price-h h1{
  font-size: 40px;
  font-weight: 500;
  font-family: 'Kyiv Type Sans';
  margin: 56px 0px;
  text-align: center;
}

@media screen and (max-width: 1000px){
  .price-h h1{
    font-size: 24px;
    margin: 26px 0px;

  }
}


/* price-grid */

.price{
  width: 100%;
  height: auto;
  margin-bottom: 166px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  place-items: center;
}

.price-filter{
  width: 204px;
  height: 224px;
  margin-left: 108px;
  margin-right: 112px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 16px;
}
.price-blocks-main{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}


.price-block-sub{
  display: none;
}

.price-blocks{
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: auto 1fr;
  transition: margin 0.5s ease-in-out;
  margin: 0;
  overflow: hidden;
}

.price-disposable, .price-package{
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, auto);
}

.price-disposable{
  width: 1848px;
  overflow:hidden;
}

.price-package-individual,
.price-package-group,
.price-package-speaking,

.price-disposable-individual,
.price-disposable-group,
.price-disposable-speaking{
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(6, auto);
}

@media screen and (max-width: 1000px){
  .price{
    margin-bottom: 60px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .price-blocks-main{
    grid-template-columns: 1fr 288px 1fr;
  }

  .price-block-sub{
    display: block;
  }

  .price-blocks{
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .price-disposable, .price-package{
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 1fr;
  }

  .price-package-individual,
  .price-package-group,
  .price-package-speaking,

  .price-disposable-individual,
  .price-disposable-group,
  .price-disposable-speaking{
    display: grid;
    grid-template-rows: repeat(6, auto);
    grid-template-columns: 1fr;

  }

  .price-filter{
    width: 375px;
    height: 122px;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    grid-template-columns: 1fr;
    gap: 0px;
  }
}

/* left-right btn */

.price-btn-block{
  margin-left: 530px;
  width: 66px;
  height: 24px;
  margin-bottom: 20px;
  display: flex;
}


.price-btn-block {
  margin-left: 530px;
  width: 71px;
  height: 24px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  position: relative;
  width: 24px;
  height: 24px;
}

.arrow::before,
.arrow::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 11px;
  background-color: #1C1C1C;
  border-radius: 1px;
}

.prev-arrow::before {
  transform: rotate(45deg);
  top: 3px;
  left: 10px;
}

.prev-arrow::after {
  transform: rotate(-45deg);
  bottom: 3px;
  left: 10px;
}

.next-arrow::before {
  transform: rotate(-45deg);
  top: 3px;
  right: 10px;
}

.next-arrow::after {
  transform: rotate(45deg);
  bottom: 3px;
  right: 10px;
}

/* price-filter */

.price-filter-left{
  width: 8px;
  height: 100%;
  background-image: linear-gradient(to bottom, #0600AB, #9603FF);
  border-radius: 100px;
}

.price-filter-right{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 85px 1px 95px;
}

.price-filter-right-check{
  grid-area: 1;
}

.price-filter-right-border{
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right, #0600AB, #9603FF);
  border-radius: 0px;
  display: block;
  grid-area: 2;
}

.price-filter-right-btn{
  grid-area: 3;
}

.price-filter-right-btn-individual {
  position: relative;
}

.price-filter-right-btn-individual label {
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: #1C1C1C;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s ease;
  width: auto;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent !important;
}

.price-filter-right-btn-individual input{
  display: none;
}

.price-filter-right-btn-individual:not(:has(input:checked)):hover label {
  color: #0600AB;
}

.price-filter-right-btn-individual input[type="radio"]:checked + label {
  color: transparent;
  background: linear-gradient(to right, #0600AB, #9603FF) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  pointer-events: none;
}

.price-filter-right-btn-individual input[type="radio"]:checked ~ label:hover {
  background: linear-gradient(to right, #0600AB, #9603FF);
}

@media screen and (max-width: 1000px) {
  .price-filter-right-btn-individual label {
    padding: 8px 12px;
    border-radius: 4px;
  }
  
  .price-filter-right-btn-individual input[type="radio"]:checked + label {
    background: linear-gradient(to right, #0600AB, #9603FF) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
  
  .price-filter-right-btn-individual label:active {
    background-color: transparent !important;
  }
  .price-filter{
    height: 146px;
  }
}

.price-filter-right-btn-individual label:active {
  background: transparent !important;
  -webkit-tap-highlight-color: transparent !important;
}

.price-filter-right-check label{
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

.price-filter-right-check{
  display: grid;
  height: 85px;
  grid-template-rows: auto auto;
  grid-template-columns: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 10px;
  gap: 20px;
}

.price-filter-right-btn{
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: auto;
  margin-left: 8px;
  gap: 20px;
  padding-top: 20px;
}

@media screen and (max-width: 1000px){
  .price-filter-right-check{
    display: grid;
    height: 85px;
    grid-template-rows: auto;
    grid-template-columns: 160px 160px;
    padding-top: 14px;
    padding-bottom: 10px;
    margin-left: 10px;
    gap: 10px;
    padding-bottom: 6px;
  }
  .price-filter-right-btn{
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 117px 110px 110px;
    margin-left: 0px;
    padding-top: 8px;
    margin-right: 0;
    text-align: center;
    padding-bottom: 10px;
    gap: 12px;
  }

  .price-filter-left{
    display: none;
  }

  .price-filter-right{
    margin-left: 4px;
  }

  .price-filter-right{
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 8px 1fr;
    height: 122px;
  }

  .price-filter-right-border{
    height: 8px;
    width: 33%;
    margin-left: 66%;
    border-radius: 100px;
    grid-area: 2;
  }

  .price-filter-right-btn{
    grid-area: 1;
  }
  .price-filter-right-check{
    grid-area: 3;
  }
}

.price-filter-right-check-package,
.price-filter-right-check-disposable {
  position: relative;
}

.price-filter-right-check input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.price-filter-right-check label {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: #1C1C1C;
}

.price-filter-right-check label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #1C1C1C;
  border-radius: 2px;
  background-color: white;
}

.price-filter-right-check label::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  width: 4px;
  height: 10px;
  border: solid #1C1C1C;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.price-filter-right-check input[type="radio"]:checked + label::after {
  opacity: 1;
}


/* price-container */

.price-conteiner {
  height: 380px;
  width: 288px;
  border-radius: 60px;
  margin: 0px 0px;
  margin-bottom: 0px;
  margin-right: 24px;
  padding: 1px;
}

.price-conteiner {
  border: 1px solid transparent; 
  background: 
      linear-gradient(white, white) padding-box, 
      linear-gradient(to right, #0600AB, #9603FF) border-box; 
  border-radius: 60px;
}


/* price-p-container */

.price-blocks h1{
  font-size: 40px;
  font-weight: 600;
  font-family: Raleway;
  text-align: center;
  margin-top: 0;
}

.price-p-container{
  height: 210px;
  width: 220px;
  margin-left: 44px;
}

.price-p-container-sub{
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: start;
  gap: 4px;
  margin-bottom: 6px;
  font-size: 16px;
  color: #1C1C1C;
  font-family: Raleway;
  font-weight: 400;
}

.price-blocks img{
  width: 26px;
}

.price-blocks p{
  font-size: 16px;
  font-weight: 400;
  font-family: Raleway;
}

.gradient-texts{
  background: linear-gradient(to right, #0600AB, #9603FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.price-in-conteiner{
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  gap: 8px;
  margin-top: 10px;
}

.price-in-conteiner h2{
  font-size: 24px;
  font-weight: 500;
  font-family: Montserrat;
}

.price-in-conteiner h3{
  font-size: 24px;
  font-weight: 400;
  font-family: Raleway;
}

.price-conteiner-btn{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 10px;
}

.price-conteiner-btn button{
  width: 164px;
  height: 46px;
  font-size: 18px;
  font-weight: 500;
  font-family: Raleway;
  border: none;
  cursor: pointer;
  border-radius: 40px;
  color: white;
  padding-bottom: 3px;

  background: linear-gradient(var(--grad-angle), #0600AB, #9603FF);
    animation: customGradientRotate 13s linear infinite;
}

@media screen and (max-width: 1000px){
  .price-conteiner{
    margin-bottom: 24px;
    margin-right: 0px;
  }
}

/* footer */

.footer-down img{
  width: 103px;
}

.footer{
  display: grid;
  grid-template-rows: auto auto;
  font-family: Raleway;
  font-weight: 600;
  font-size: 16px;
  height: 90px;
  width: 100%;
  border-top: 1px solid;
  border-image: linear-gradient(to right, #0600AB, #9603FF);
  border-image-slice: 1;
  width: 100%;
  padding-top: 20px;
}

.footer-up{
  display: grid;
  grid-template-columns: 1fr 193px 193px 1fr;
  gap: 24px;
  place-items: start;
}

.footer a{
  font-family: Raleway;
  font-weight: 600;
  font-size: 16px;
}

.footer-down{
  text-align: center;
}

@media screen and (max-width: 1000px){
  .footer a{
    font-size: 12px;
  }
  .footer-up{
    grid-template-columns: 1fr 145px 145px 1fr;
    margin-top: 5px;
  }
  .footer-down{
    padding-bottom: 5px;
  }
}

/* modal-teacher-pc */



.modal-teacher-pc {
  display: none; 
  justify-content: center; 
  align-items: center; 
  position: fixed;
  z-index: 150;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, #0600ab15, #9603ff33);
}


.teacher-pc-modal-content {
  background-color: #FFFFFF;
  border-radius: 60px;
  width: 562px;
  height: 724px;
  text-align: center;
}

.teacher-pc-modal-content h1{
  margin-left: 126px;
}

.teacher-pc-modal-content input{
  margin-left: 75px;
}

.teacher-pc-modal-prompting-name{
  padding-left: 78px;
}
.teacher-pc-modal-prompting-phone{
  padding-left: 78px;
}

#teacherBtn-pc {
  background-color: rgba(255, 255, 255, 0) !important;
  margin-bottom: 12px;
  text-align: end;
}

/* modal-teacher-pc close */

.teacher-pc-modal-close-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  z-index: 51;
  transition: transform 0.2s ease;
}


.teacher-pc-modal-close-icon::before,
.teacher-pc-modal-close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
  transform-origin: center;
}

.teacher-pc-modal-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.teacher-pc-modal-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.teacher-pc-modal-close-icon:hover::before,
.teacher-pc-modal-close-icon:hover::after {
  background-color: #555;
}

.teacher-pc-modal-content-h{
  display: flex;
  gap: 8px;
  margin-top: 60px;
}

.teacher-pc-modal-content-h img{
  height: 24px;
  width: 24px;
  margin-top: 3px;
}

.teacher-pc-modal-content-h h1{
  font-family: Raleway;
  font-size: 24px;
  font-weight: 600;
}

.teacher-pc-modal-content-p1, .teacher-pc-modal-content-p2{
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  margin-top: 12px;
}

/* modal teacher input*/

.teacher-pc-modal-content-input-container{
  display: grid;
  grid-template-rows: auto auto auto auto auto auto;
  width: 424px;
  margin-top: 10px;
}

.teacher-pc-modal-content-input-container input{
  width: 424px;
  border-radius: 60px;
  height: 63px;
  border: 1px solid transparent;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 400;
  font-family: Raleway;
  padding: 15px;
  color: #868588;
  height: 63px;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(to right, #0600AB, #9603FF) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-sizing: border-box;
  outline: none;
  font-family: Raleway;
  font-weight: 400;
  margin-bottom: 16px;
}

.teacher-pc-modal-content-input-container input:focus{
  color: #1C1C1C;
}

.teacher-pc-modal-content-input-phone{
  font-family: Montserrat !important;
  font-size: 20px;
  font-weight: 400;

}

/* teacher-pc-modal-prompting */

.teacher-pc-modal-prompting-name{
  display: none;
  gap: 4px;
  grid-area: 1;
  margin-left: 22px;
  margin-bottom: 2px;
}

.teacher-pc-modal-prompting-phone{
  display: none;
  gap: 4px;
  grid-area: 4;
  margin-left: 22px;
  margin-bottom: 2px;
}

.teacher-pc-modal-prompting p{
  font-weight: 600;
  font-family: Raleway;
  color: #B41B03;
  font-size: 10px;
}

.teacher-pc-modal-content-input-name{
  grid-area: 2;
}
.teacher-pc-modal-content-input-email{
  grid-area: 3;
}
.teacher-pc-modal-content-input-phone{
  grid-area: 5;
}
.teacher-pc-modal-content-input-telegram{
  grid-area: 6;
}

/* teacher-pc-modal-content-btn */

.teacher-pc-modal-content-btn{
  margin-top: 20px;
}

.teacher-pc-modal-content-btn button{
  width: 222px;
  height: 54px;
  border: none;
  border-radius: 40px;
  color: #FAFAFA;
  font-family: Raleway;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(var(--grad-angle), #0600AB, #9603FF);
  animation: customGradientRotate 13s linear infinite;
}

/* modal-price-cart-pc */

.modal-price-cart-pc {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( -90deg,  #0600ab15, #9603ff33);
}


@media (max-width: 999px) {
    .modal-price-cart-pc {
        background: linear-gradient( -90deg,  #0600ab15, #9603ff33);; 
    }
}

.price-cart-pc-modal-content {
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 60px;
  width: 562px;
  height: 724px;
  background-color: #FFFFFF;
  text-align: center;
}

.modal-price-cart-pc input{
  margin-left: 73px;
}



#price-cart-pcBtn-pc{
  background-color: rgba(255, 255, 255, 0) !important;
  margin-bottom: 12px;
  text-align: end;
}

@media screen and (max-width: 1000px) {
  .price-cart-pc-modal-content {
    width: 100%;
    height: auto;
    min-height: 50vh;
    max-height: none;
    bottom: 0;
    top: auto;
    transform: translate(-50%, 100%);
    border-radius: 60px 60px 0 0;
    animation: modalAppearMobile 0.3s ease-out forwards;
    padding-bottom: 30px;
  }

  @keyframes modalAppearMobile {
    from {
      transform: translate(-50%, 100%);
    }
    to {
      transform: translate(-50%, 0);
    }
  }

  .price-cart-pc-modal-content.closing {
    animation: modalDisappearMobile 0.3s ease-out forwards;
  }

  @keyframes modalDisappearMobile {
    from {
      transform: translate(-50%, 0);
    }
    to {
      transform: translate(-50%, 100%);
    }
  }
  .modal-price-cart-pc input{
  margin-left: 5px;
  }
}


/* modal-price-cart-pc close */

.price-cart-pc-modal-close-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  z-index: 51;
  transition: transform 0.2s ease;
}


.price-cart-pc-modal-close-icon::before,
.price-cart-pc-modal-close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
  transform-origin: center;
}

.price-cart-pc-modal-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.price-cart-pc-modal-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.price-cart-pc-modal-close-icon:hover::before,
.price-cart-pc-modal-close-icon:hover::after {
  background-color: #555;
}

.price-cart-pc-modal-content-h{
  display: flex;
  gap: 8px;
  margin-top: 60px;
  width: 100%;
  place-items: center;
  justify-content: center;
  align-content: center;
}

.price-cart-pc-modal-content-h img{
  height: 24px;
  width: 24px;
  margin-top: 3px;
  text-align: start;
}

.price-cart-pc-modal-content-h h1{
  font-family: Raleway;
  font-size: 24px;
  font-weight: 600;
  text-align: end;
}

.price-cart-pc-modal-content-p1, .price-cart-pc-modal-content-p2{
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  margin-top: 12px;
}

@media screen and (max-width: 1000px){
  .price-cart-pc-modal-content-h h1{
    font-size: 20px;
  }

  .price-cart-pc-modal-content-p1, .price-cart-pc-modal-content-p2{
    font-size: 14px;
  }

  .price-cart-pc-modal-content-h img{
    margin-top: 0;
  }
}

/* modal price-cart input*/

.price-cart-pc-modal-content-input-container{
  display: grid;
  grid-template-rows: auto auto auto auto auto auto;
  width: 424px;
  margin-top: 10px;
  place-items: center;
}

.price-cart-pc-modal-content-input-container input{
  width: 424px;
  border-radius: 60px;
  height: 63px;
  border: 1px solid transparent;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 400;
  font-family: Raleway;
  padding: 15px;
  color: #868588;
  height: 63px;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(to right, #0600AB, #9603FF) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-sizing: border-box;
  outline: none;
  font-family: Raleway;
  font-weight: 400;
  margin-bottom: 16px;
}

.price-cart-pc-modal-content-input-container input:focus{
  color: #1C1C1C;
}

.price-cart-pc-modal-content-input-phone{
  font-family: Montserrat !important;
  font-size: 20px;
  font-weight: 400;

}

@media screen and (max-width: 1000px){
  .price-cart-pc-modal-content-input-container{
    width: 100%;
    justify-content: center;
    align-content: center;
    place-items: center;
  }

  .price-cart-pc-modal-content-input-container input{
    width: 350px;
    margin-bottom: 12px;
    height: 54px;
  }
  .price-cart-pc-modal-prompting-name{
    text-align: start;
  }
  .price-cart-pc-modal-prompting-phone{
    text-align: start;
  }
}

/* price-cart-pc-modal-prompting */

.price-cart-pc-modal-prompting-name{
  display: none;
  gap: 4px;
  grid-area: 1;
  margin-bottom: 2px;
  margin-right: 240px;
}

.price-cart-pc-modal-prompting-phone{
  display: none;
  gap: 4px;
  grid-area: 4;
  margin-left: 12px;
  margin-bottom: 2px;
  margin-right: 188px;
}

@media screen and (max-width: 1000px){
  .price-cart-pc-modal-prompting-name{
    margin-right: 230px;
  }
  .price-cart-pc-modal-prompting-phone{
    margin-right: 180px;
  }
}

.price-cart-pc-modal-prompting p{
  font-weight: 600;
  font-family: Raleway;
  color: #B41B03;
  font-size: 10px;
}

.price-cart-pc-modal-content-input-name{
  grid-area: 2;
}
.price-cart-pc-modal-content-input-email{
  grid-area: 3;
}
.price-cart-pc-modal-content-input-phone{
  grid-area: 5;
}
.price-cart-pc-modal-content-input-telegram{
  grid-area: 6;
}

/* price-cart-pc-modal-content-btn */

.price-cart-pc-modal-content-btn{
  margin-top: 20px;
}

.price-cart-pc-modal-content-btn button{
  width: 222px;
  height: 54px;
  border: none;
  border-radius: 40px;
  color: #FAFAFA;
  font-family: Raleway;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(var(--grad-angle), #0600AB, #9603FF);
  animation: customGradientRotate 13s linear infinite;
}

@media screen and (max-width: 1000px){
  .price-cart-pc-modal-content-btn button{
    height: 50px;
  }

  .price-cart-pc-modal-content-btn{
    margin-top: 10px;
  }
}

/* modal teacher phone */

.teacher-phone-modal-content-input-container{
  display: grid;
  grid-template-rows: auto auto auto auto auto auto;
  width: 100%;
  place-items: center;
  margin-top: 10px;
}

.teacher-phone-modal-content-input-container input{
  width: 343px;
  border-radius: 60px;
  height: 52px;
  border: 1px solid transparent;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 400;
  font-family: Raleway;
  padding: 15px;
  color: #868588;
  height: 63px;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(to right, #0600AB, #9603FF) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-sizing: border-box;
  outline: none;
  font-family: Raleway;
  font-weight: 400;
  margin-bottom: 11px;
}

.teacher-phone-modal-content-input-container input:focus{
  color: #1C1C1C;
}

.teacher-phone-modal-content-input-phone{
  font-family: Montserrat !important;
  font-size: 20px;
  font-weight: 400;
}

/* teacher-phone-modal-prompting */
.teacher-phone-modal-prompting-name{
  display: none;
  gap: 4px;
  grid-area: 1;
  margin-left: 22px;
  margin-bottom: 2px;
}

.teacher-phone-modal-prompting-phone{
  display: none;
  gap: 4px;
  grid-area: 4;
  margin-left: 22px;
  margin-bottom: 2px;
}

.teacher-phone-modal-prompting p{
  font-weight: 600;
  font-family: Raleway;
  color: #B41B03;
  font-size: 10px;
}

.teacher-phone-modal-content-input-name{
  grid-area: 2;
}
.teacher-phone-modal-content-input-email{
  grid-area: 3;
}
.teacher-phone-modal-content-input-phone{
  grid-area: 5;
}
.teacher-phone-modal-content-input-telegram{
  grid-area: 6;
}

/* teacher-phone-modal-content-btn */
.teacher-phone-modal-content-btn{
  margin-top: 16px;
}

.teacher-phone-modal-content-btn button{
  width: 222px;
  height: 52px;
  border: none;
  border-radius: 40px;
  color: #FAFAFA;
  font-family: Raleway;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(var(--grad-angle), #0600AB, #9603FF);
  animation: customGradientRotate 13s linear infinite;
}

.modal-teacher-phone {
  display: none;
  position: fixed;
  z-index: 300;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, #e6effe2c, #f4eff033);
  margin-top: 85px;
}

.teacher-phone-modal-content {
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 60px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  place-items: center;
  text-align: center;
  padding-top: 20px;
}

.teacher-phone-modal-content-h{
  display: grid;
  grid-template-columns: auto auto;
  gap: 6px;
  margin: 0;
  padding: 0;
  width: auto;
  justify-content: center;
  align-content: center;
}

.teacher-phone-modal-content-h h1{
  font-size: 22px;
  font-weight: 600;
  font-family: Raleway;
  white-space: nowrap;
  text-align: end;
}

.teacher-phone-modal-content-h img{
  margin-bottom: 6px;
  text-align: start;
}

.teacher-phone-modal-content-p1, .teacher-phone-modal-content-p2{
  font-weight: 600;
  font-size: 16px;
  font-family: Raleway;
  margin-top: 12px;
  white-space: nowrap;
}

.teacher-phone-modal-content-p2{
  margin-bottom: 16px;
}

.teacher-phone-modal-prompting-name, .teacher-phone-modal-prompting-phone{
  text-align: start;
  width: 343px;
  padding-left: 16px;
}

.price-cart-pc-modal-content-h img{
  margin-bottom: 6px;
}

/* to modal */

.success-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, #0600ab15, #9603ff33);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.success-popup-content {
  background-color: #FFFFFF;
  width: 343px;
  height: 260px;
  border-radius: 60px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  color: #1C1C1C;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10%; 
  padding-top: 10px;
}

.successPopupModal-p-img img{
  width: 16px;
  height: 16px;
}

.popup-title img{
  width: 24px;
  height: 24px;
}

.success-popup-content p{
  font-family: Raleway;
  font-size: 14px;
  font-weight: 600;
}

.popup-title-tp p{
  font-size: 24px;
}

.popup-title-tp{
  display: flex;
  justify-content: center;
  gap: 6px;
}

.popup-title-tp img{
  width: 20px;
  height: 20px;
  margin-top: 8px;
}

.success-popup-content div{
  margin-bottom: 14px;
}

.success-popup-content{
  padding-top:  18px;
}

.cooldown-popup-overlay {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, #0600ab15, #9603ff33);
  z-index: 1001;
  justify-content: center;
  align-items: center;

}

.cooldown-popup-content {
  background-color: #FFFFFF;
  width: 343px;
  height: 260px;
  border-radius: 60px;
  padding: 25px;
  text-align: center;
  color: #1C1C1C;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 14px;
}

.cooldown-popup-content p{
  font-size: 14px;
  font-family: Raleway;
  font-weight: 600;
}

.popup-title{
  display: flex;
  font-family: Raleway;
  gap: 6px;
}

.popup-title img{
  width: 20px;
  height: 20px;
  margin-top: 8px;
}

.popup-title p{
  font-size: 24px;
  font-family: Raleway;
  font-weight: 600;
}

.cooldown-popup-content div{
  margin-bottom: 12px;
}

.to-modal-2-tp p{
  font-weight: 600;
}
/* TEACHER SUCCESS */

.success-popup-overlay1 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  justify-content: center;
  align-items: center;
  background: linear-gradient( -90deg,  #0600ab15, #9603ff33);
}

.teacher-pc-success-content1 {
  background-color: #FFFFFF;
  width: 562px;
  height: 724px;
  border-radius: 60px;
  padding: 25px;
  text-align: center;
  box-shadow: none;
  color: #333;
  font-family: 'Arial', sans-serif;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.teacher-pc-success-content1 .success-popup-close-container1 {
  position: absolute;
  top: 40px;  
  right: 40px;
  z-index: 10;
}

.teacher-pc-success-content1 .success-popup-icon1 {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.teacher-pc-success-content1 .popup-title1 {
  font-size: 24px;
  font-weight: bold;
  color: black;
  margin-top: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teacher-pc-success-content1 p {
  font-size: 16px;
  line-height: 1.5;
  color: black;
}

.teacher-pc-success-content1 p:last-child {
  margin-bottom: 0;
}

.teacher-pc-success-content1 .popup-footer1 {
  font-size: 16px;
  font-weight: 600;
  font-family: Raleway;
}

.teacher-pc-success-content1 .teacher-pc-modal-close-icon1 {
  width: 14px;
  height: 14px;
  cursor: pointer;
  position: relative;
}

.teacher-pc-success-content1 .teacher-pc-modal-close-icon1::before,
.teacher-pc-success-content1 .teacher-pc-modal-close-icon1::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: black; 
  border-radius: 3px;
}

.teacher-pc-success-content1 .teacher-pc-modal-close-icon1::before {
  transform: translateY(-50%) rotate(45deg);
}

.teacher-pc-success-content1 .teacher-pc-modal-close-icon1::after {
  transform: translateY(-50%) rotate(-45deg);
}


.teacher-pc-success-content1 .teacher-pc-modal-close-icon1:hover::before,
.teacher-pc-success-content1 .teacher-pc-modal-close-icon1:hover::after {
  background-color: #616161; 
}

.teacher-pc-success2{
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}

.teacher-pc-success2 p{
  font-size: 24px;
  font-weight: 600;
  font-family: Raleway;
}

.teacher-pc-success2 img{
  max-height: 22px;
  max-width: 22px;
  margin-top: 6px;
}

.teacher-pc-success234{
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.teacher-pc-success234 p{
  font-size: 16px;
  font-weight: 600;
  font-family: Raleway;
}

.teacher-pc-success234 img{
  width: 16px;
  height: 16px;
  margin-top: 4px;
}

.teacher-pc-success233 p{
  font-size: 16px;
  font-weight: 600;
  font-family: Raleway;
}

.popup-footer1{
  font-size: 16px;
  font-weight: 600;
  font-family: Raleway;
}

.teacher-pc-success23{
  font-size: 16px;
  font-weight: 600;
  font-family: Raleway;
  margin-bottom: 10px;
}

/* teacherFormCooldownModal */

/* styles-cooldown-modal-filled.css */

.teacher-cooldown-modal__overlay {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( -90deg,  #0600ab15, #9603ff33);
  z-index: 1070; 
  justify-content: center; 
  align-items: center;   
  padding: 20px; 
  box-sizing: border-box;
  font-family: 'Arial', sans-serif; 
}

.teacher-cooldown-modal__content {
  border-radius: 60px;
  background-color: #FFFFFF; 
  width: 562px;               
  height: 724px;              
  box-shadow: none;           
  position: relative;         
  box-sizing: border-box;
  padding: 40px 30px; 
  display: flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; 
}

.teacher-cooldown-modal__close-btn-container {
  position: absolute;
  top: 29px;    
  right: 32px;   
  z-index: 10;   
}

.teacher-cooldown-modal__close-btn {
  width: 30px;   
  height: 30px;
  font-size: 37px; 
  font-weight: 400; 
  color: #000000; 
  background-color: transparent;
  border: none;
  cursor: pointer;
  line-height: 30px; 
  text-align: center;
  padding: 0;
  transition: color 0.2s ease;
}

.teacher-cooldown-modal__close-btn:hover{
  color: #616161;
}


.teacher-cooldown-modal-h {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px; 
  gap: 10px; 
}

.teacher-cooldown-modal-h__icon {
  width: 32px; 
  height: 32px;
}

.teacher-cooldown-modal-h__text {
  font-size: 24px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 0;
  font-family: Raleway;
}

.teacher-cooldown-modal-p,
.teacher-cooldown-modal-p1 {
  margin-bottom: 18px; 
}

.teacher-cooldown-modal-p p,
.teacher-cooldown-modal-p1 p {
  font-size: 18px;
  line-height: 1.6;
  color: #1C1C1C;
  margin: 0;
  font-weight: 600;
  font-family: Raleway;
}

.teacher-cooldown-modal-a {
  margin-top: 30px; 
}

.teacher-cooldown-modal-a a {
  font-size: 18px;
  color: #1C1C1C; 
  text-decoration: none;
  font-weight: 600;
  font-family: Raleway;

}

body.modal-open {
  overflow: hidden;
  padding-right: 17px;
}

/* price-cart submit*/

.prica-cart-submit1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( -90deg,  #0600ab15, #9603ff33);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

.prica-cart-submit1-container {
  background-color: white;
  padding: 40px;
  border-radius: 60px;
  text-align: center;
  width: 562px;
  height: 724px;
  position: relative; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.prica-cart-submit1-close {
  position: absolute;
  top: 40px;    
  right: 40px;   
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.prica-cart-submit1-close::before,
.prica-cart-submit1-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: black;
  border-radius: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.prica-cart-submit1-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.prica-cart-submit1-close:hover::before,
.prica-cart-submit1-close:hover::after {
  background-color: gray;
}

.prica-cart-submit1-done img{
  height: 24px;
  width: 24px;
  margin-top: 6px;
}

.prica-cart-submit1-3 img, .prica-cart-submit1-5 img{
  width: 16px;
  height: 16px;
  margin-top: 4px;
  margin-left: 8px;
}

.prica-cart-submit1-done, .prica-cart-submit1-3, .prica-cart-submit1-5{
  display: flex;
}

.prica-cart-submit1-done p{
  font-size: 24px;
  font-family: Raleway;
  font-weight: 600;
  padding-left: 8px;
}

.prica-cart-submit1-container{
  font-size: 16px;
  font-family: Raleway;
  font-weight: 600;
}
.prica-cart-submit1-done, .prica-cart-submit1-1,.prica-cart-submit1-2,.prica-cart-submit1-3,
.prica-cart-submit1-4,.prica-cart-submit1-5{
  padding-bottom: 14px;
}

@media screen and (max-width: 1000px){
  .prica-cart-submit1-done, .prica-cart-submit1-1,.prica-cart-submit1-2,.prica-cart-submit1-3,
  .prica-cart-submit1-4,.prica-cart-submit1-5{
  padding-bottom: 10px;
  }
  .prica-cart-submit1-container p{
  font-size: 12px;
  font-family: Raleway;
  font-weight: 600;
  }
  .prica-cart-submit1-done p{
  font-size: 24px;
  font-family: Raleway;
  font-weight: 600;
  padding-left: 8px;
  }
  .prica-cart-submit1-3 img, .prica-cart-submit1-5 img{
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-left: 8px;
  }
  .prica-cart-submit1-container {
    height: 280px;
    width: 343px;
  }
  .prica-cart-submit1-close{
    display: none;
  }
  .prica-cart-submit1-3 img{
    display: none;
  }

}

.prica-cart-submit {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( -90deg,  #0600ab15, #9603ff33);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

.prica-cart-submit-container {
  background-color: white;
  padding: 40px;
  border-radius: 60px;
  text-align: center;
  width: 562px;
  height: 724px;
  position: relative; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.prica-cart-submit-close {
  position: absolute;
  top: 40px;    
  right: 40px;   
  width: 14px;
  height: 14px;
  cursor: pointer;
}


.prica-cart-submit-close::before,
.prica-cart-submit-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: black;
  border-radius: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.prica-cart-submit-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.prica-cart-submit-close:hover::before,
.prica-cart-submit-close:hover::after {
  background-color: gray;
}

.prica-cart-submit-done img{
  height: 24px;
  width: 24px;
  margin-top: 6px;
}

.prica-cart-submit-3 img, .prica-cart-submit-5 img{
  width: 16px;
  height: 16px;
  margin-top: 4px;
  margin-left: 8px;
}

.prica-cart-submit-done, .prica-cart-submit-3, .prica-cart-submit-5{
  display: flex;
}

.prica-cart-submit-done p{
  font-size: 24px;
  font-family: Raleway;
  font-weight: 600;
  padding-left: 8px;
}

.prica-cart-submit-container{
  font-size: 16px;
  font-family: Raleway;
  font-weight: 600;
}
.prica-cart-submit-done, .prica-cart-submit-1,.prica-cart-submit-2,.prica-cart-submit-3,
.prica-cart-submit-4,.prica-cart-submit-5{
  padding-bottom: 14px;
}
@media screen and (max-width: 1000px){
  .prica-cart-submit-container{
    height: 228px;
    width: 343px;
  }
  .prica-cart-submit-done, .prica-cart-submit-1,.prica-cart-submit-2,.prica-cart-submit-3,
  .prica-cart-submit-4,.prica-cart-submit-5{
  padding-bottom: 10px;
  }
  .prica-cart-submit-container p{
  font-size: 12px;
  font-family: Raleway;
  font-weight: 600;
  }
  .prica-cart-submit-done p{
  font-size: 24px;
  font-family: Raleway;
  font-weight: 600;
  padding-left: 8px;
  }
  .prica-cart-submit-close{
    display: none;
  }
}