@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
body {
  font-family: "Roboto", sans-serif;
}

body .container {
  width: 100%;
  max-width: 1320px;
}

.logo .logo_img {
  max-width: 20px;
}

.logo a {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.header {
  padding: 15px 0;
  box-shadow: 0px 4px 20px rgba(51, 58, 74, 0.05);
}

.main_menu .menu_collapse li a {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #333a4a;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 15px 20px;
}

.main_menu .menu_collapse li a:hover {
  color: #3e64ff;
}

.main {
  background: url(../img/background-img5.jpg) no-repeat;
  background-size: cover;
}

@media (hover: none) and (pointer: coarse) {
  .main_menu .menu_collapse li a::before {
    display: none;
  }
}
.main_menu .burger_btn {
  border: none;
  position: relative;
  width: 28px;
  height: 22px;
  padding: 0;
}

.main_menu .burger_btn:focus {
  outline: none;
  box-shadow: none;
}

.main_menu .burger_btn::before {
  content: "";
  position: absolute;
  background: #444444;
  width: 100%;
  top: 0;
  height: 2px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s ease;
  transform: rotate(45deg);
}

.main_menu .burger_btn span {
  position: absolute;
  background: #444444;
  width: 100%;
  height: 2px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s ease;
}

.main_menu .burger_btn::after {
  content: "";
  position: absolute;
  background: #444444;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.5s ease;
  transform: rotate(135deg);
  top: 0;
  bottom: 0;
  margin: auto;
}

.main_menu .burger_btn.collapsed:before {
  bottom: auto;
  transform: rotate(-180deg);
}

.main_menu .burger_btn.collapsed span {
  transform: rotate(-180deg);
  visibility: visible;
}

.main_menu .burger_btn.collapsed:after {
  transform: rotate(-180deg);
  top: auto;
}

.main {
  background: #f5f6fa;
  padding: 50px 0 30px 0;
  position: relative;
}
.main .text_main {
  font-size: calc(
    14px + 4 * ((100vw - 320px) / 1000)
  );
  font-weight: 500;
  color: #4a4851;
  line-height: 24px;
}
@media screen and (min-width: 1000px) {
  .main .text_main {
    font-size: 18px;
  }
}
.main .title_main {
  font-style: normal;
  font-weight: 800;
  font-size: calc(
    35px + 29 * ((100vw - 320px) / 1000)
  );
  color: #3e64ff;
}
@media screen and (min-width: 1000px) {
  .main .title_main {
    font-size: 64px;
  }
}
.main .main_list {
  list-style: none;
  padding: 0;
}
.main .main_list li {
  position: relative;
  padding-left: 30px;
}
.main .main_list li:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #3e64ff;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.main .form_box {
  max-width: 400px;
  width: 100%;
}
.main .form_box .form_wrap {
  height: 100%;
}
.main .form_box .form_wrap .input_box input {
  border: none;
  background: transparent;
  border-bottom: 1px solid #000000;
  font-size: 16px;
  padding: 25px 0;
}
.main .form_box .form_wrap .input_box input:focus {
  outline: none;
}
.main .form_box .accept_box a {
  text-decoration: none;
  color: #3e64ff;
}
.main .form_box .btn_register {
  border: none;
  padding: 20px 0;
  background-color: #ffde00;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  border-radius: 40px;
}
.main .form_box .btn_register:hover {
  background-color: rgba(255, 222, 0, 0.7490196078);
}
.main .bottom_main_box {
  background: #ffffff;
  border-radius: 10px;
  margin: 100px auto -156px auto;
  max-width: 900px;
  width: 80%;
  padding: 50px 30px;
}
.main .bottom_main_box p {
  margin: 0;
}
.main .bottom_main_box .bottom_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main .bottom_main_box .bottom_list li .img {
  width: 100%;
  max-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #3e64ff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .bottom_main_box .bottom_list li + li .img {
  background: #ffde00;
}
.main .bottom_main_box .bottom_list li + li + li .img {
  background: #fe7f2d;
}

.about_section {
  padding: 30px 0;
  padding-top: 160px;
}
.about_section .title_section {
  font-weight: 700;
  font-size: calc(
    30px + 30 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .about_section .title_section {
    font-size: 60px;
  }
}
.about_section .title_section_second {
  font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .about_section .title_section_second {
    font-size: 44px;
  }
}
.about_section .blue {
  color: #3e64ff;
}
.about_section .text_section {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .about_section {
    padding: 50px 0;
  }
}
@media screen and (min-width: 992px) {
  .about_section {
    padding: 70px 0;
  }
  .about_section .title_section {
    line-height: 73px;
  }
  .about_section .title_section_second {
    font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
    line-height: 45px;
  }
}
@media screen and (min-width: 992px) and (min-width: 1000px) {
  .about_section .title_section_second {
    font-size: 44px;
  }
}
@media screen and (min-width: 992px) {
  .about_section ul {
    padding: 0;
    list-style: none;
  }
}
.about_section .img_section {
  max-width: 636px;
  width: 100%;
  border-radius: 8px;
}
.about_section .back_text {
  padding: 10px 30px;
  background: #f5f6fa;
  border-radius: 16px;
  margin-top: 30px;
  box-sizing: border-box;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  width: 100%;
}

.what_study_section {
  padding: 30px 0;
}
.what_study_section .title_section {
  font-weight: 700;
  font-size: calc(
    30px + 30 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .what_study_section .title_section {
    font-size: 60px;
  }
}
.what_study_section .title_section_second {
  font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .what_study_section .title_section_second {
    font-size: 44px;
  }
}
.what_study_section .blue {
  color: #3e64ff;
}
.what_study_section .text_section {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .what_study_section {
    padding: 50px 0;
  }
}
@media screen and (min-width: 992px) {
  .what_study_section {
    padding: 70px 0;
  }
  .what_study_section .title_section {
    line-height: 73px;
  }
  .what_study_section .title_section_second {
    font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
    line-height: 45px;
  }
}
@media screen and (min-width: 992px) and (min-width: 1000px) {
  .what_study_section .title_section_second {
    font-size: 44px;
  }
}
@media screen and (min-width: 992px) {
  .what_study_section ul {
    padding: 0;
    list-style: none;
  }
}
.what_study_section .item_section {
  width: 100%;
  height: 100%;
}
.what_study_section .item_section .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #3e64ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what_study_section .item_section .text_section {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #333a4a;
}

.program_course {
  padding: 30px 0;
}
.program_course .title_section {
  font-weight: 700;
  font-size: calc(
    30px + 30 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .program_course .title_section {
    font-size: 60px;
  }
}
.program_course .title_section_second {
  font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .program_course .title_section_second {
    font-size: 44px;
  }
}
.program_course .blue {
  color: #3e64ff;
}
.program_course .text_section {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .program_course {
    padding: 50px 0;
  }
}
@media screen and (min-width: 992px) {
  .program_course {
    padding: 70px 0;
  }
  .program_course .title_section {
    line-height: 73px;
  }
  .program_course .title_section_second {
    font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
    line-height: 45px;
  }
}
@media screen and (min-width: 992px) and (min-width: 1000px) {
  .program_course .title_section_second {
    font-size: 44px;
  }
}
@media screen and (min-width: 992px) {
  .program_course ul {
    padding: 0;
    list-style: none;
  }
}
.program_course .wrap_container {
  background: #3e64ff;
  padding: 60px 16px;
}
.program_course .title_section {
  color: #ffffff;
}
.program_course .item_section {
  width: 100%;
  height: 100%;
}
.program_course .item_section .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffde00;
  display: flex;
  align-items: center;
  justify-content: center;
}
.program_course .item_section .text_section {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.program_course .accordion,
.faq .accordion {
  background: transparent;
}
.program_course .accordion .accordion-item,
.program_course .accordion .accordion-button,
.faq .accordion .accordion-item,
.faq .accordion .accordion-button {
  background: transparent;
  border: none;
}
.program_course .accordion .text_section,
.faq .accordion .text_section {
  color: #ffffff;
}
.program_course .accordion .accordion-button,
.faq .accordion .accordion-button {
  padding: 20px 30px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  line-height: 21px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}
.program_course .accordion .accordion-button::after,
.faq .accordion .accordion-button::after {
  display: none;
}
.program_course .accordion .accordion-button .icon,
.faq .accordion .accordion-button .icon {
  transition: 0.3s;
}
.program_course .accordion .accordion-button:not(.collapsed) .icon,
.faq .accordion .accordion-button:not(.collapsed) .icon {
  transform: rotate(-180deg);
}

.how_going {
  background: radial-gradient(#3e64ff -101%, #ffffff 58%);
}
.how_going .item_section {
  background: #fff;
  box-shadow: 0 30px 80px rgba(51, 58, 74, 0.0588235294);
  border-radius: 16px;
  padding: 20px 20px 30px;
}
.how_going .item_section .icon {
  background: transparent;
}

.reviews {
  padding: 30px 0;
  background: #ffffff;
}
.reviews .title_section {
  font-weight: 700;
  font-size: calc(
    30px + 30 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .reviews .title_section {
    font-size: 60px;
  }
}
.reviews .title_section_second {
  font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .reviews .title_section_second {
    font-size: 44px;
  }
}
.reviews .blue {
  color: #3e64ff;
}
.reviews .text_section {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .reviews {
    padding: 50px 0;
  }
}
@media screen and (min-width: 992px) {
  .reviews {
    padding: 70px 0;
  }
  .reviews .title_section {
    line-height: 73px;
  }
  .reviews .title_section_second {
    font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
    line-height: 45px;
  }
}
@media screen and (min-width: 992px) and (min-width: 1000px) {
  .reviews .title_section_second {
    font-size: 44px;
  }
}
@media screen and (min-width: 992px) {
  .reviews ul {
    padding: 0;
    list-style: none;
  }
}
.reviews .item_section .icon {
  overflow: hidden;
}
.reviews .item_section .text_section {
  font-weight: 400;
}
.reviews .item_section .name {
  font-weight: 500;
}

.faq {
  background: #f5f6fa;
  padding: 30px 0;
}
.faq .title_section {
  font-weight: 700;
  font-size: calc(
    30px + 30 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .faq .title_section {
    font-size: 60px;
  }
}
.faq .title_section_second {
  font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .faq .title_section_second {
    font-size: 44px;
  }
}
.faq .blue {
  color: #3e64ff;
}
.faq .text_section {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 50px 0;
  }
}
@media screen and (min-width: 992px) {
  .faq {
    padding: 70px 0;
  }
  .faq .title_section {
    line-height: 73px;
  }
  .faq .title_section_second {
    font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
    line-height: 45px;
  }
}
@media screen and (min-width: 992px) and (min-width: 1000px) {
  .faq .title_section_second {
    font-size: 44px;
  }
}
@media screen and (min-width: 992px) {
  .faq ul {
    padding: 0;
    list-style: none;
  }
}
.faq .accordion {
  color: #000000;
}
.faq .accordion .text_section {
  color: #000000;
}
.faq .accordion .accordion-button {
  color: #000000;
}
.faq .accordion .accordion-button {
  color: #000000;
  background: #ffffff;
}
.faq .accordion .accordion-button:not(.collapsed) {
  color: black;
  background: #ffffff;
  box-shadow: none;
}

.footer {
  padding: 30px 0;
}
.footer .title_section {
  font-weight: 700;
  font-size: calc(
    30px + 30 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .footer .title_section {
    font-size: 60px;
  }
}
.footer .title_section_second {
  font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
  line-height: 32px;
}
@media screen and (min-width: 1000px) {
  .footer .title_section_second {
    font-size: 44px;
  }
}
.footer .blue {
  color: #3e64ff;
}
.footer .text_section {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 50px 0;
  }
}
@media screen and (min-width: 992px) {
  .footer {
    padding: 70px 0;
  }
  .footer .title_section {
    line-height: 73px;
  }
  .footer .title_section_second {
    font-size: calc(
    30px + 14 * ((100vw - 320px) / 1000)
  );
    line-height: 45px;
  }
}
@media screen and (min-width: 992px) and (min-width: 1000px) {
  .footer .title_section_second {
    font-size: 44px;
  }
}
@media screen and (min-width: 992px) {
  .footer ul {
    padding: 0;
    list-style: none;
  }
}
.footer a {
  text-decoration: none;
}
.footer .footer_menu li a {
  color: #000000;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.footer .footer_menu li a:hover {
  color: #3e64ff;
}
.footer .bottom_footer .text_section {
  font-size: 14px;
}
.footer .bottom_footer a {
  font-size: 12px;
  color: #3e64ff;
}

.cookies_accept {
  background: #3e64ff;
  color: #ffffff;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  z-index: 9999;
  left: 0;
  width: 100%;
  font-size: 14px;
}

.cookies_accept p {
  margin: 0;
}

.cookies_accept .container {
  display: flex;
  align-items: center;
}

.cookies_accept .btn_accept {
  color: #3e64ff;
  background: #ffffff;
  border: 2px solid #ffffff;
  padding: 10px 20px;
  border-radius: 10px;
}

.cookies_accept .btn_accept:hover {
  background: #3e64ff;
  color: #ffffff;
}

.cookies_accept {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.cookies_accept.hide {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .main {
    padding: 70px 0 50px 0;
  }
  .main .bottom_main_box {
    margin: 100px auto -120px auto;
  }
  .about_section {
    padding-top: 180px;
  }
  .program_course .wrap_container {
    padding: 60px 25px;
  }
}
@media screen and (min-width: 992px) {
  .main {
    padding: 90px 0 50px 0;
  }
  .program_course .wrap_container {
    padding: 60px 100px;
  }
}