@charset "UTF-8";
:root {
  --transition-delay: 0.5s;
  --transition-delay-txt: 0.2s;
}

:root {
  --transition-delay: 0.5s;
  --transition-delay-txt: 0.2s;
}

.header {
  padding: 0;
  width: 100vw;
  height: 55px;
  box-sizing: border-box;
  background-color: #152064;
  transition: opacity var(--transition-delay) ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header_wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  place-items: center;
  justify-content: space-between;
  padding: 0 10px;
}
.header_logo {
  display: flex;
  flex-direction: row;
}
.header_logo_cat {
  width: 55px;
  height: 50px;
}
.header_logo_name {
  width: 100px;
  height: auto;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .header_logo_cat {
    width: 70px;
    height: 60px;
  }
  .header_logo_name {
    width: 150px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .header_logo_cat {
    width: 80px;
    height: 70px;
  }
  .header_logo_name {
    width: 200px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .header_logo_cat {
    width: 90px;
    height: 80px;
  }
  .header_logo_name {
    width: 250px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .header_logo_cat {
    width: 100px;
    height: 90px;
  }
  .header_logo_name {
    width: 300px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .header_logo_cat {
    width: 110px;
    height: 100px;
  }
  .header_logo_name {
    width: 350px;
  }
}
@media (min-width: 2560px) {
  .header_logo_cat {
    width: 120px;
    height: 110px;
  }
  .header_logo_name {
    width: 400px;
  }
}
.header_nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 5% 0 0;
}
.header_nav_list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
}
.header_nav_item {
  margin: 0 10px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.header_nav_item_link {
  position: relative;
  display: inline-block;
  color: white;
  transition: color var(--transition-delay-txt) ease-out;
}
.header_nav_item_link::after, .header_nav_item_link::before {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: #A8DADC;
  transition: width var(--transition-delay-txt) ease-out;
}
.header_nav_item_link::before {
  position: absolute;
  bottom: 0;
  right: 0;
}
.header_nav_item_link:hover {
  color: #4C7CC1;
}
.header_nav_item_link:hover::before {
  width: 100%;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .header {
    height: 70px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .header {
    height: 80px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .header {
    height: 90px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .header {
    height: 120px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .header {
    height: 120px;
  }
}
@media (min-width: 2560px) {
  .header {
    height: 170px;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .burger {
    width: 35px;
    height: 30px;
  }
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white; /* Білий колір для бургер-меню */
  border-radius: 5px;
}

/* Модальне вікно */
.menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.97); /* Початково трохи зменшене */
  transition: all var(--transition-delay) ease-out;
  z-index: 1000;
}

.menu.active {
  display: flex;
  opacity: 1;
  transform: scale(1); /* Плавне розширення */
}

.menu_content {
  background-color: white; /* Білий фон для модального вікна */
  right: 20px;
  top: 60px;
  padding: 15px 5px;
  width: 137px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  animation: fadeIn var(--transition-delay) ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu_close {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 25px;
  cursor: pointer;
}

.menu_nav_list {
  list-style: none;
  padding: 0;
}

.menu_nav_item {
  margin: 5px;
  padding: 9px;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}
.menu_nav_item_link {
  color: black;
}

@media (max-width: 1023px) {
  .header_nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}
:root {
  --transition-delay: 0.5s;
  --transition-delay-txt: 0.2s;
}

:root {
  --transition-delay: 0.5s;
  --transition-delay-txt: 0.2s;
}

:root {
  --transition-delay: 0.5s;
  --transition-delay-txt: 0.2s;
}

:root {
  --transition-delay: 0.5s;
  --transition-delay-txt: 0.2s;
}

@media (min-width: 640px) and (max-width: 1023px) {
  h1,
  .title-h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  h1,
  .title-h1 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  h1,
  .title-h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  h1,
  .title-h1 {
    font-size: 2.25rem;
  }
}
@media (min-width: 2560px) {
  h1,
  .title-h1 {
    font-size: 2.5rem;
  }
}

.header_nav_item_link {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 1rem;
  line-height: 40px;
  color: #fff;
  text-align: center;
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .header_nav_item_link {
    font-size: 1.25rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .header_nav_item_link {
    font-size: 1.5rem;
  }
}
@media (min-width: 2560px) {
  .header_nav_item_link {
    font-size: 1.75rem;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .menu_nav_item_link {
    font-size: 1.25rem;
  }
}
.about_us {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 22px;
  color: #000;
}
.about_us-descriptions {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 22px;
  color: #981518;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .about_us-title {
    font-size: 2.75rem;
  }
  .about_us-descriptions {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .about_us-title {
    font-size: 2.25rem;
  }
  .about_us-descriptions {
    font-size: 1.75rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .about_us-title {
    font-size: 3.5rem;
  }
  .about_us-descriptions {
    font-size: 2rem;
  }
}
@media (min-width: 2560px) {
  .about_us-title {
    font-size: 3.5rem;
  }
  .about_us-descriptions {
    font-size: 2.25rem;
  }
}

.free_lesson {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 22px;
  color: #000;
}
.free_lesson-descriptions {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #000;
}
.free_lesson-link {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1rem;
  color: #fff;
  text-align: center;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .free_lesson-title {
    font-size: 2rem;
  }
  .free_lesson-descriptions {
    font-size: 1rem;
  }
  .free_lesson-link {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .free_lesson-title {
    font-size: 2.25rem;
  }
  .free_lesson-descriptions {
    font-size: 1.25rem;
  }
  .free_lesson-link {
    font-size: 1.5rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .free_lesson-title {
    font-size: 2rem;
  }
  .free_lesson-descriptions {
    font-size: 1rem;
  }
  .free_lesson-link {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .free_lesson-title {
    font-size: 2.25rem;
  }
  .free_lesson-descriptions {
    font-size: 1.25rem;
  }
  .free_lesson-link {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 2560px) {
  .free_lesson-title {
    font-size: 2.5rem;
  }
  .free_lesson-descriptions {
    font-size: 1.5rem;
  }
  .free_lesson-link {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

form input:focus,
form textarea:focus {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
}
form .form-button_href {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  color: #f5f5f5;
}

.studying {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 22px;
  color: #000;
}
.studying h3 {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 22px;
  color: #444;
}
.studying p {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #666;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .studying h3 {
    font-size: 1.5rem;
    line-height: 28px;
  }
  .studying p {
    font-size: 1rem;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .studying h3 {
    font-size: 1.75rem;
    line-height: 30px;
  }
  .studying p {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .studying h3 {
    font-size: 2rem;
    line-height: 36px;
  }
  .studying p {
    font-size: 1.5rem;
    line-height: 2;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .studying h3 {
    font-size: 2rem;
    line-height: 40px;
  }
  .studying p {
    font-size: 1.5rem;
    line-height: 2.2;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .studying h3 {
    font-size: 2.5rem;
    line-height: 44px;
  }
  .studying p {
    font-size: 2rem;
    line-height: 2.5;
  }
}
@media (min-width: 2560px) {
  .studying h3 {
    font-size: 2.5rem;
    line-height: 44px;
  }
  .studying p {
    font-size: 2rem;
    line-height: 2.5;
  }
}

.price_of_Lesson {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  color: #000000;
}
.price_of_Lesson .container_of_card-individualLesson_title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  color: white;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .price_of_Lesson .container_of_card-individualLesson_title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .price_of_Lesson .container_of_card-individualLesson_title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .price_of_Lesson .container_of_card-individualLesson_title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .price_of_Lesson .container_of_card-individualLesson_title {
    font-size: 2rem;
  }
}
@media (min-width: 2560px) {
  .price_of_Lesson .container_of_card-individualLesson_title {
    font-size: 2.25rem;
  }
}
.price_of_Lesson .container_of_card-individualLesson_price {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.57rem;
  color: white;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .price_of_Lesson .container_of_card-individualLesson_price {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .price_of_Lesson .container_of_card-individualLesson_price {
    font-size: 0.875rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .price_of_Lesson .container_of_card-individualLesson_price {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .price_of_Lesson .container_of_card-individualLesson_price {
    font-size: 1.125rem;
  }
}
@media (min-width: 2560px) {
  .price_of_Lesson .container_of_card-individualLesson_price {
    font-size: 1.25rem;
  }
}
.price_of_Lesson .container_of_card-individualLesson_price span {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  color: white;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .price_of_Lesson .container_of_card-individualLesson_price span {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .price_of_Lesson .container_of_card-individualLesson_price span {
    font-size: 1.125rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .price_of_Lesson .container_of_card-individualLesson_price span {
    font-size: 1.25rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .price_of_Lesson .container_of_card-individualLesson_price span {
    font-size: 1.375rem;
  }
}
@media (min-width: 2560px) {
  .price_of_Lesson .container_of_card-individualLesson_price span {
    font-size: 1.5rem;
  }
}
.price_of_Lesson .container_of_card-individualLesson_price small {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.57rem;
  color: #b3b3b3;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .price_of_Lesson .container_of_card-individualLesson_price small {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .price_of_Lesson .container_of_card-individualLesson_price small {
    font-size: 0.875rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .price_of_Lesson .container_of_card-individualLesson_price small {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .price_of_Lesson .container_of_card-individualLesson_price small {
    font-size: 1.125rem;
  }
}
@media (min-width: 2560px) {
  .price_of_Lesson .container_of_card-individualLesson_price small {
    font-size: 1.25rem;
  }
}
.price_of_Lesson .container_of_card-duetLesson_title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  color: white;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .price_of_Lesson .container_of_card-duetLesson_title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .price_of_Lesson .container_of_card-duetLesson_title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .price_of_Lesson .container_of_card-duetLesson_title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .price_of_Lesson .container_of_card-duetLesson_title {
    font-size: 2rem;
  }
}
@media (min-width: 2560px) {
  .price_of_Lesson .container_of_card-duetLesson_title {
    font-size: 2.25rem;
  }
}
.price_of_Lesson .container_of_card-duetLesson_price {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.57rem;
  color: white;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .price_of_Lesson .container_of_card-duetLesson_price {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .price_of_Lesson .container_of_card-duetLesson_price {
    font-size: 0.875rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .price_of_Lesson .container_of_card-duetLesson_price {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .price_of_Lesson .container_of_card-duetLesson_price {
    font-size: 1.125rem;
  }
}
@media (min-width: 2560px) {
  .price_of_Lesson .container_of_card-duetLesson_price {
    font-size: 1.25rem;
  }
}
.price_of_Lesson .container_of_card-duetLesson_price span {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  color: white;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .price_of_Lesson .container_of_card-duetLesson_price span {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .price_of_Lesson .container_of_card-duetLesson_price span {
    font-size: 1.125rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .price_of_Lesson .container_of_card-duetLesson_price span {
    font-size: 1.25rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .price_of_Lesson .container_of_card-duetLesson_price span {
    font-size: 1.375rem;
  }
}
@media (min-width: 2560px) {
  .price_of_Lesson .container_of_card-duetLesson_price span {
    font-size: 1.5rem;
  }
}
.price_of_Lesson .container_of_card-duetLesson_price small {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.57rem;
  color: #b3b3b3;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .price_of_Lesson .container_of_card-duetLesson_price small {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .price_of_Lesson .container_of_card-duetLesson_price small {
    font-size: 0.875rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .price_of_Lesson .container_of_card-duetLesson_price small {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .price_of_Lesson .container_of_card-duetLesson_price small {
    font-size: 1.125rem;
  }
}
@media (min-width: 2560px) {
  .price_of_Lesson .container_of_card-duetLesson_price small {
    font-size: 1.25rem;
  }
}

.our_benefits {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1rem;
  color: #000000;
}
.our_benefits-list-item-title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 30px;
  color: #fff;
}
.our_benefits .box_benefits-item {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1rem;
  color: #000000;
}
.our_benefits .box_benefits .items {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 19px;
  color: #fff;
}

.question-title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1rem;
  color: #000000;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .question-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .question-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .question-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .question-title {
    font-size: 2rem;
  }
}
@media (min-width: 2560px) {
  .question-title {
    font-size: 2.25rem;
  }
}
.question-descriptions {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 20px;
  color: #000000;
}
.question-button-link {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 22px;
  color: #fff;
}

.vacancy_of_teacher-title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 19px;
  color: #ffffff;
  text-align: center;
}
.vacancy_of_teacher-descriptions {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 15px;
  color: #ffffff;
}
.vacancy_of_teacher-button-link {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 22px;
  color: #ffffff;
  text-align: center;
}

.footer_logo_descriptions {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 30px;
  color: #fff;
}
.footer_nav-title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 30px;
  color: #fff;
}
.footer_nav_item-title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 30px;
  color: #fff;
}
.footer_socials-title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 30px;
  color: #fff;
}
.footer_contact-title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 30px;
  color: #fff;
}
.footer_contact_item_link {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 1rem;
  line-height: 30px;
  color: #fff;
}

:root {
  --transition-delay: 0.5s;
  --transition-delay-txt: 0.2s;
}

:root {
  --transition-delay: 0.5s;
  --transition-delay-txt: 0.2s;
}

#studying,
#free_lesson,
#price {
  scroll-margin-top: 55px;
}
@media (min-width: 640px) and (max-width: 1023px) {
  #studying,
  #free_lesson,
  #price {
    scroll-margin-top: 70px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #studying,
  #free_lesson,
  #price {
    scroll-margin-top: 80px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  #studying,
  #free_lesson,
  #price {
    scroll-margin-top: 90px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #studying,
  #free_lesson,
  #price {
    scroll-margin-top: 120px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #studying,
  #free_lesson,
  #price {
    scroll-margin-top: 120px;
  }
}
@media (min-width: 2560px) {
  #studying,
  #free_lesson,
  #price {
    scroll-margin-top: 170px;
  }
}

.about_us {
  margin: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-image: url(../images/american_flag.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about_us-title {
  width: auto;
  display: inline-block;
  margin: 20px auto auto auto;
  text-align: center;
  width: 50%;
  padding: 10% 0 5% 0;
}
.about_us-descriptions {
  display: inline-block;
  justify-content: flex-start;
  margin: 0;
  padding: 0 2%;
}
.about_us-descriptions:last-child {
  padding-bottom: 47px;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .about_us-title {
    width: 100%;
  }
  .about_us-descriptions {
    padding: 0 10%;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .about_us {
    gap: 30px;
  }
  .about_us-title {
    width: 100%;
  }
  .about_us-descriptions {
    padding: 0 10%;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .about_us {
    gap: 40px;
  }
  .about_us-title {
    width: 100%;
  }
  .about_us-descriptions {
    padding: 0 10%;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .about_us {
    gap: 50px;
  }
  .about_us-title {
    width: 100%;
  }
  .about_us-descriptions {
    padding: 0 10%;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .about_us {
    gap: 60px;
  }
  .about_us-title {
    width: 100%;
  }
  .about_us-descriptions {
    padding: 0 10%;
  }
}
@media (min-width: 2560px) {
  .about_us {
    gap: 70px;
  }
  .about_us-title {
    width: 100%;
  }
  .about_us-descriptions {
    padding: 0 10%;
  }
}

.free_lesson {
  padding: 0;
  background-color: #fff;
  margin: 30% 0;
  overflow: visible;
  padding-top: 10px;
}
.free_lesson-container {
  display: flex;
  flex-direction: column;
  place-items: center;
  align-self: center;
  margin: 0 auto;
  width: 280px;
  height: auto;
  padding: 9px 0;
}
.free_lesson-title {
  padding: 0 0 17px;
}
.free_lesson-descriptions {
  margin: 0 0 21px;
}
.free_lesson-link {
  align-self: flex-end;
  background-color: #152064;
  border-radius: 3px;
  padding: 10px 18px;
  transition: transform var(--transition-delay) ease-in-out, background-color var(--transition-delay-txt) ease-in-out, color var(--transition-delay-txt) ease-in-out;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .free_lesson-container {
    width: 400px;
  }
  .free_lesson-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .free_lesson-container {
    width: 600px;
  }
  .free_lesson-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .free_lesson {
    margin: 20% 0;
  }
  .free_lesson-container {
    width: 800px;
  }
  .free_lesson-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .free_lesson {
    margin: 10% 0;
  }
  .free_lesson-container {
    width: 1000px;
  }
  .free_lesson-title {
    margin: 0 0 25px;
  }
  .free_lesson-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .free_lesson {
    margin: 10% 0;
  }
  .free_lesson-container {
    width: 1200px;
  }
  .free_lesson-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 2560px) {
  .free_lesson {
    margin: 10% 0;
  }
  .free_lesson-container {
    width: 1400px;
  }
  .free_lesson-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}

.studying {
  display: flex;
  justify-content: center;
  place-items: center;
  text-align: center;
  margin: 50px 20px;
}
.studying-wrap {
  width: 100%;
}
.studying-title {
  text-align: center;
  margin: 0 0 20px;
}
.studying-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 20px;
}
.studying-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-delay) ease-in-out;
}
.studying-item h3 {
  margin-bottom: 15px;
}
.studying-item img {
  width: 50px;
  height: auto;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .studying-item img {
    width: 70px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .studying-item img {
    width: 90px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .studying-item img {
    width: 110px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .studying-item img {
    width: 130px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .studying-item img {
    width: 150px;
  }
}
@media (min-width: 2560px) {
  .studying-item img {
    width: 170px;
  }
}
.studying-item:first-child {
  border-top: none;
}
.studying-item:last-child {
  border-bottom: none;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .studying {
    margin: 100px 0;
  }
  .studying-wrap {
    max-width: 800px;
  }
  .studying-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .studying {
    margin: 100px 0;
  }
  .studying-wrap {
    max-width: 1000px;
  }
  .studying-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .studying-item:hover {
    transform: scale(1.03);
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .studying {
    margin: 100px 0;
  }
  .studying-wrap {
    max-width: 1200px;
  }
  .studying-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .studying-item:hover {
    transform: scale(1.03);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .studying {
    margin: 250px 0;
  }
  .studying-wrap {
    max-width: 1400px;
  }
  .studying-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .studying-item:hover {
    transform: scale(1.03);
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .studying {
    margin: 350px 0;
  }
  .studying-wrap {
    max-width: 1600px;
  }
  .studying-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .studying-item:hover {
    transform: scale(1.03);
  }
}
@media (min-width: 2560px) {
  .studying {
    margin: 450px 0;
  }
  .studying-wrap {
    max-width: 1800px;
  }
  .studying-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .studying-item:hover {
    transform: scale(1.03);
  }
}

.price_of_Lesson {
  margin: 95px 0;
  padding: 0;
  background-image: url(../images/american_flag.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.price_of_Lesson .wrap_price_of_Lesson {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price_of_Lesson-title {
  width: 100%;
  margin: 5% auto;
  text-align: center;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .price_of_Lesson-title {
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .price_of_Lesson-title {
    margin: 0 auto;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .price_of_Lesson-title {
    margin: 0 auto;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .price_of_Lesson-title {
    margin: 5% auto 0 auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .price_of_Lesson-title {
    margin: 0 auto;
  }
}
@media (min-width: 2560px) {
  .price_of_Lesson-title {
    margin: 0 auto;
  }
}
.price_of_Lesson .container_of_card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 10% 0;
}
.price_of_Lesson .container_of_card-individualLesson {
  background-color: #152064;
  width: 200px;
  border: 3px solid #ffffff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 0 14px;
}
.price_of_Lesson .container_of_card-individualLesson_title {
  margin: 17px auto 20px 14px;
}
.price_of_Lesson .container_of_card-individualLesson_price {
  height: auto;
  padding: 0 0 20px 70px;
  margin: 0;
}
.price_of_Lesson .container_of_card-duetLesson {
  background-color: #152064;
  width: 200px;
  border: 3px solid #ffffff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 0 14px;
}
.price_of_Lesson .container_of_card-duetLesson_title {
  margin: 17px auto 20px 14px;
}
.price_of_Lesson .container_of_card-duetLesson_price {
  height: auto;
  padding: 0 0 20px 70px;
  margin: 0;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .price_of_Lesson .container_of_card {
    flex-direction: row;
    place-items: center;
    gap: 30px;
  }
  .price_of_Lesson .container_of_card-individualLesson {
    width: 300px;
  }
  .price_of_Lesson .container_of_card-individualLesson_title {
    width: 50%;
  }
  .price_of_Lesson .container_of_card-individualLesson_price {
    padding: 0 0 20px 145px;
  }
  .price_of_Lesson .container_of_card-duetLesson {
    margin: 20% 0 0 0;
    width: 300px;
  }
  .price_of_Lesson .container_of_card-duetLesson_title {
    width: 40%;
  }
  .price_of_Lesson .container_of_card-duetLesson_price {
    padding: 0 0 20px 145px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .price_of_Lesson .container_of_card {
    flex-direction: row;
    place-items: center;
    gap: 30px;
  }
  .price_of_Lesson .container_of_card-individualLesson {
    width: 300px;
  }
  .price_of_Lesson .container_of_card-individualLesson_title {
    width: 50%;
  }
  .price_of_Lesson .container_of_card-individualLesson_price {
    padding: 0 0 20px 125px;
  }
  .price_of_Lesson .container_of_card-duetLesson {
    margin: 20% 0 0 0;
    width: 300px;
  }
  .price_of_Lesson .container_of_card-duetLesson_title {
    width: 50%;
  }
  .price_of_Lesson .container_of_card-duetLesson_price {
    padding: 0 0 20px 125px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .price_of_Lesson .container_of_card {
    flex-direction: row;
    place-items: center;
    gap: 30px;
  }
  .price_of_Lesson .container_of_card-individualLesson {
    width: 400px;
    height: 160px;
  }
  .price_of_Lesson .container_of_card-individualLesson_price {
    padding: 10% 0 0 200px;
  }
  .price_of_Lesson .container_of_card-duetLesson {
    margin: 20% 0 0 0;
    width: 400px;
    height: 160px;
  }
  .price_of_Lesson .container_of_card-duetLesson_price {
    padding: 10% 0 0 200px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .price_of_Lesson .container_of_card {
    flex-direction: row;
    place-items: center;
    gap: 30px;
  }
  .price_of_Lesson .container_of_card-individualLesson {
    width: 400px;
    height: 200px;
  }
  .price_of_Lesson .container_of_card-individualLesson_price {
    padding: 15% 0 0 180px;
  }
  .price_of_Lesson .container_of_card-duetLesson {
    margin: 20% 0 0 0;
    width: 400px;
    height: 200px;
  }
  .price_of_Lesson .container_of_card-duetLesson_price {
    padding: 15% 0 0 180px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .price_of_Lesson .container_of_card {
    flex-direction: row;
    place-items: center;
    gap: 30px;
  }
  .price_of_Lesson .container_of_card-individualLesson {
    width: 400px;
    height: 200px;
  }
  .price_of_Lesson .container_of_card-individualLesson_price {
    padding: 25% 0 0 250px;
  }
  .price_of_Lesson .container_of_card-duetLesson {
    margin: 20% 0 0 0;
    width: 400px;
    height: 200px;
  }
  .price_of_Lesson .container_of_card-duetLesson_price {
    padding: 25% 0 0 250px;
  }
}
@media (min-width: 2560px) {
  .price_of_Lesson .container_of_card {
    flex-direction: row;
    place-items: center;
    gap: 30px;
  }
  .price_of_Lesson .container_of_card-individualLesson {
    width: 400px;
    height: 200px;
  }
  .price_of_Lesson .container_of_card-individualLesson_price {
    padding: 15% 0 0 180px;
  }
  .price_of_Lesson .container_of_card-duetLesson {
    margin: 20% 0 0 0;
    width: 400px;
    height: 200px;
  }
  .price_of_Lesson .container_of_card-duetLesson_price {
    padding: 15% 0 0 160px;
  }
}

.our_benefits {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.our_benefits .benefits-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.our_benefits-title {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our_benefits .box_benefits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
}
.our_benefits .box_benefits-item {
  width: 85%;
  background: #ffffff;
  border-radius: 5px;
  padding: 15px 15px;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .our_benefits .benefits-wrapper {
    flex-direction: column;
  }
  .our_benefits .box_benefits-item {
    width: 70%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .our_benefits .benefits-wrapper {
    flex-direction: row;
  }
  .our_benefits .our_benefits-title {
    text-align: center;
    margin: 0 auto;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
  }
  .our_benefits .box_benefits-item {
    width: 70%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 40px;
    transition: all var(--transition-delay) ease-in-out;
  }
  .our_benefits .box_benefits-item::before {
    content: "➔";
    margin-left: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
  }
  .our_benefits .box_benefits-item:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .our_benefits .benefits-wrapper {
    flex-direction: row;
  }
  .our_benefits .our_benefits-title {
    text-align: center;
    margin: 0 auto;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
  }
  .our_benefits .box_benefits-item {
    width: 50%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 50px;
    transition: all var(--transition-delay) ease-in-out;
  }
  .our_benefits .box_benefits-item::before {
    content: "➔";
    position: absolute;
    margin-left: 10px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
  }
  .our_benefits .box_benefits-item:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .our_benefits .benefits-wrapper {
    flex-direction: row;
  }
  .our_benefits .our_benefits-title {
    text-align: center;
    margin: 0 auto;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 150px;
  }
  .our_benefits .box_benefits-item {
    width: 50%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 60px;
    transition: all var(--transition-delay) ease-in-out;
  }
  .our_benefits .box_benefits-item::before {
    content: "➔";
    position: absolute;
    margin-left: 10px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
  }
  .our_benefits .box_benefits-item:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .our_benefits .benefits-wrapper {
    flex-direction: row;
  }
  .our_benefits .our_benefits-title {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 250px;
  }
  .our_benefits .box_benefits-item {
    width: 50%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 70px;
    transition: all var(--transition-delay) ease-in-out;
  }
  .our_benefits .box_benefits-item::before {
    content: "➔";
    position: absolute;
    margin-left: 10px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
  }
  .our_benefits .box_benefits-item:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 2560px) {
  .our_benefits .benefits-wrapper {
    flex-direction: row;
  }
  .our_benefits .our_benefits-title {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 350px;
  }
  .our_benefits .box_benefits-item {
    width: 50%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 60px;
    transition: all var(--transition-delay) ease-in-out;
  }
  .our_benefits .box_benefits-item::before {
    content: "➔";
    position: absolute;
    margin-left: 10px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
  }
  .our_benefits .box_benefits-item:hover {
    transform: scale(1.1);
  }
}

.wrap_our_benefits-list {
  gap: 20px;
  padding: 40px 20px;
}

.our_benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our_benefits-list-item {
  background-color: #8d1616;
  color: white;
  padding: 20px;
  margin: 30px 0;
  border-radius: 10px;
  width: 300px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  transform: rotate(5deg);
  transition: transform 0.3s ease-in-out;
  position: relative;
}
.our_benefits-list-item-img {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  left: 10px;
  transform: rotate(-5deg);
}
.our_benefits-list-item-title {
  margin: 20px 0 10px;
  padding-left: 50px;
  transform: rotate(-5deg);
}
.our_benefits-list .items {
  margin-left: 20px;
  transform: rotate(-5deg);
}

@media (min-width: 640px) and (max-width: 1023px) {
  .wrap_our_benefits-list {
    padding: 40px 40px;
  }
  .our_benefits-list {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
  .our_benefits-list-item {
    width: 400px;
    height: 200px;
    flex-direction: row;
  }
  .our_benefits-list-item-img {
    width: 50px;
    height: 50px;
  }
  .our_benefits-list-item-title {
    margin: 20px 0 10px;
    padding-left: 60px;
  }
  .our_benefits-list-item-descriptions {
    margin-left: 30px;
  }
  .our_benefits-list-item:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .wrap_our_benefits-list {
    padding: 40px 40px;
  }
  .our_benefits-list {
    flex-direction: row;
    gap: 50px;
    justify-content: center;
  }
  .our_benefits-list-item {
    width: 400px;
    height: 230px;
    flex-direction: row;
  }
  .our_benefits-list-item-img {
    width: 50px;
    height: 50px;
  }
  .our_benefits-list-item-title {
    margin: 20px 0 10px;
    padding-left: 60px;
  }
  .our_benefits-list-item-descriptions {
    margin-left: 30px;
  }
  .our_benefits-list-item:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .wrap_our_benefits-list {
    padding: 40px 60px;
  }
  .our_benefits-list {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
  .our_benefits-list-item {
    width: 500px;
    height: 200px;
    flex-direction: row;
  }
  .our_benefits-list-item-img {
    width: 50px;
    height: 50px;
  }
  .our_benefits-list-item-title {
    margin: 20px 0 10px;
    padding-left: 60px;
  }
  .our_benefits-list-item-descriptions {
    margin-left: 30px;
  }
  .our_benefits-list-item:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .wrap_our_benefits-list {
    padding: 40px 80px;
  }
  .our_benefits-list {
    flex-direction: row;
    gap: 150px;
    justify-content: center;
  }
  .our_benefits-list-item {
    width: 400px;
    height: 200px;
    flex-direction: row;
  }
  .our_benefits-list-item-img {
    width: 50px;
    height: 50px;
  }
  .our_benefits-list-item-title {
    margin: 20px 0 10px;
    padding-left: 60px;
  }
  .our_benefits-list-item-descriptions {
    margin-left: 30px;
  }
  .our_benefits-list-item:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .wrap_our_benefits-list {
    padding: 40px 120px;
  }
  .our_benefits-list {
    flex-direction: row;
    gap: 200px;
    justify-content: center;
  }
  .our_benefits-list-item {
    width: 500px;
    height: 250px;
    flex-direction: row;
  }
  .our_benefits-list-item-img {
    width: 60px;
    height: 60px;
  }
  .our_benefits-list-item-title {
    margin: 20px 0 10px;
    padding-left: 70px;
  }
  .our_benefits-list-item-descriptions {
    margin-left: 30px;
  }
  .our_benefits-list-item:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 2560px) {
  .wrap_our_benefits-list {
    padding: 40px 160px;
  }
  .our_benefits-list {
    flex-direction: row;
    gap: 250px;
    justify-content: center;
  }
  .our_benefits-list-item {
    width: 600px;
    height: 300px;
    flex-direction: row;
  }
  .our_benefits-list-item-img {
    width: 70px;
    height: 70px;
  }
  .our_benefits-list-item-title {
    margin: 20px 0 10px;
    padding-left: 80px;
  }
  .our_benefits-list-item-descriptions {
    margin-left: 30px;
  }
  .our_benefits-list-item:hover {
    transform: scale(1.1);
  }
}
.question {
  background-color: #fff;
  padding: 20px 40px;
}
.question-wrapper {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  justify-content: center;
}
.question-title {
  white-space: nowrap;
  margin: 0;
}
.question-descriptions {
  margin: 10px 0 0 0;
}
.question-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.question-button-link {
  background-color: #283272;
  border-radius: 5px;
  padding: 5px 10px;
  transition: transform var(--transition-delay) ease-in-out, background-color var(--transition-delay-txt) ease-in-out, color var(--transition-delay-txt) ease-in-out;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .question {
    padding: 20px 40px;
  }
  .question-wrapper {
    max-width: 800px;
  }
  .question-button {
    margin-right: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .question {
    padding: 20px 40px;
  }
  .question-wrapper {
    max-width: 800px;
  }
  .question-button {
    margin-right: 0;
  }
  .question-button-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .question-wrapper {
    max-width: 1000px;
  }
  .question-button {
    margin-right: 0;
  }
  .question-button-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .question-wrapper {
    max-width: 1200px;
  }
  .question-button {
    margin-right: 0;
  }
  .question-button-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .question-wrapper {
    max-width: 1200px;
  }
  .question-button {
    margin-right: 0;
  }
  .question-button-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 2560px) {
  .question-wrapper {
    max-width: 1400px;
  }
  .question-button {
    margin-right: 0;
  }
  .question-button-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}

/*.feedback {
  width: 300px;
  overflow: hidden;
  position: relative;
  padding: 20px;
  border-radius: 10px;

  &-title {
    margin: 150px 0 23px 0;
  }

  &-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: max-content;
    align-items: stretch;
    height: 100%;
    animation: scroll 200s linear infinite;
  }

  &-item {
    min-width: 300px;
    height: 400px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
}*/
.vacancy_of_teacher {
  position: relative;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: rgba(147, 0, 0, 0.6);
  margin: 120px 0;
}
.vacancy_of_teacher-wrap {
  background: #930000;
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  max-height: 180px;
  width: 90%;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.vacancy_of_teacher-title {
  color: #fff;
  margin: 60px 0 0;
}
.vacancy_of_teacher-descriptions {
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
}
.vacancy_of_teacher-button {
  text-align: right;
  margin: 10px 0 0;
}
.vacancy_of_teacher-button-link {
  display: inline-block;
  background-color: #152064;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color var(--transition-delay) ease-in-out, transform var(--transition-delay-txt) ease-in-out;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .vacancy_of_teacher-wrap {
    max-width: 800px;
    max-height: 200px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .vacancy_of_teacher-wrap {
    max-width: 800px;
  }
  .vacancy_of_teacher-button {
    margin: 0;
  }
  .vacancy_of_teacher-button-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .vacancy_of_teacher-wrap {
    max-width: 1000px;
    max-height: 200px;
    padding: 60px;
  }
  .vacancy_of_teacher-button-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .vacancy_of_teacher-wrap {
    max-width: 1200px;
    max-height: 200px;
    padding: 60px;
  }
  .vacancy_of_teacher-button {
    margin: 30px 0 0;
  }
  .vacancy_of_teacher-button-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .vacancy_of_teacher-wrap {
    max-width: 1200px;
    max-height: 200px;
    padding: 60px;
  }
  .vacancy_of_teacher-button {
    margin: 30px 0 0;
  }
  .vacancy_of_teacher-button-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}
@media (min-width: 2560px) {
  .vacancy_of_teacher-wrap {
    max-width: 1400px;
    max-height: 200px;
    padding: 60px;
  }
  .vacancy_of_teacher-button {
    margin: 30px 0 0;
  }
  .vacancy_of_teacher-button-link:hover {
    transform: scale(1.1);
    background-color: #5E71DC;
    color: #fff;
  }
}

.footer {
  background-color: #152064;
  padding: 10px 41px;
}
.footer_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.footer_logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
}
.footer_logo_descriptions {
  margin-top: -5%;
  margin-left: 22%;
}
.footer_nav {
  margin-top: 25px;
}
.footer_nav-title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 30px;
  color: #fff;
  margin: 0 0 10px 0;
  padding: 0;
}
.footer_nav_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  margin: 0;
  list-style: none;
  width: 100%;
}
.footer_nav_item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer_nav_item-title {
  margin: 0;
}
.footer_socials {
  margin-bottom: 20px;
}
.footer_socials-title {
  margin-bottom: 10px;
}
.footer_socials_list {
  display: flex;
  gap: 15px;
  padding: 0;
  list-style: none;
}
.footer_socials_item {
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}
.footer_socials_item-img {
  min-width: 25px;
  min-height: 25px;
}
.footer_contact {
  margin-bottom: 20px;
}
.footer_contact-title {
  margin-bottom: 10px;
}
.footer_contact_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.footer_contact_item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer_contact_item-img {
  width: 25px;
  height: 25px;
}
.footer_contact_item_contact_item_link {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .footer {
    padding: 20px;
  }
  .footer_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    row-gap: 20px;
  }
  .footer_nav {
    max-width: 250px;
    flex: 1 1 250px;
  }
  .footer_nav_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer_socials_list {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer_contact_list {
    align-items: center;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .footer_wrap {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    row-gap: 30px;
  }
  .footer_nav {
    max-width: 300px;
    flex: 1 1 300px;
  }
  .footer_nav_list {
    gap: 10px;
    justify-content: center;
  }
  .footer_logo, .footer_socials, .footer_contact {
    min-width: 220px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .footer_wrap {
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    row-gap: 40px;
    margin: 10px 0 0 0;
  }
  .footer_nav {
    max-width: 350px;
    flex: 1 1 350px;
  }
  .footer_nav_list {
    gap: 20px;
    justify-content: center;
  }
  .footer_logo, .footer_socials, .footer_contact {
    min-width: 250px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .footer_wrap {
    flex-direction: row;
    justify-content: center;
    gap: 120px;
    row-gap: 50px;
    margin: 20px 0 0 0;
  }
  .footer_nav {
    max-width: 400px;
    flex: 1 1 400px;
  }
  .footer_nav_list {
    gap: 20px;
    justify-content: center;
  }
  .footer_logo, .footer_socials, .footer_contact {
    min-width: 300px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .footer_wrap {
    flex-direction: row;
    justify-content: center;
    gap: 180px;
    row-gap: 60px;
    margin: 25px 0 0 0;
  }
  .footer_nav {
    max-width: 500px;
    flex: 1 1 500px;
  }
  .footer_nav_list {
    gap: 60px;
    justify-content: center;
  }
  .footer_logo, .footer_socials, .footer_contact {
    min-width: 350px;
  }
}
@media (min-width: 2560px) {
  .footer_wrap {
    flex-direction: row;
    justify-content: center;
    gap: 250px;
    row-gap: 80px;
    margin: 30px 0 0 0;
  }
  .footer_nav {
    max-width: 650px;
    flex: 1 1 650px;
  }
  .footer_nav_list {
    gap: 30px;
    justify-content: center;
  }
  .footer_logo, .footer_socials, .footer_contact {
    min-width: 400px;
  }
}

.call-button {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #930000;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  animation: fadeInButton 1.5s ease-in-out infinite;
}

@keyframes fadeInButton {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.window-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  /* Кнопка закриття */
}
.window-modal-content {
  background: #fff;
  padding: 20px;
  width: 350px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
.window-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.window-modal form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.window-modal input,
.window-modal textarea,
.window-modal select { /* Додаємо стилізацію для select */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 16px;
  margin: 0 auto;
  width: 272px;
  min-width: 240px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  resize: vertical;
}
.window-modal select {
  appearance: none; /* Видаляємо стандартний стиль браузера */
  background: url('data:image/svg+xml;utf8,<svg fill="%23333" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center;
  background-size: 16px;
  padding-right: 36px; /* Додаємо відступ для стрілки */
}
.window-modal select:focus {
  border-color: #152064;
  outline: none;
  box-shadow: 0 0 5px rgba(21, 32, 100, 0.5);
}
.window-modal .form-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px;
  gap: 8px;
  margin: 0 auto;
  width: 272px;
  height: 40px;
  background: #152064;
  border: 1px solid #2c2c2c;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.window-modal .form-button:hover {
  background: #1b2a80;
  transform: scale(1.05);
}
.window-modal .form-button:active {
  transform: scale(0.98);
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 16px;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: #ccd5ef;
}

@media (min-width: 1280px) and (max-width: 1439px) {
  body {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  body {
    padding-top: 120px;
  }
}
@media (min-width: 2560px) {
  body {
    padding-top: 160px;
  }
}
a {
  text-decoration: none;
}

h1,
p {
  max-width: fit-content;
  display: inline-block;
}

/*# sourceMappingURL=main.css.map */
