.page-blog {
  margin-top: 170px;
}
@media screen and (max-width: 768px) {
  .page-blog {
    margin-top: 130px;
  }
}

.wrapper-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 35px;
  grid-row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .wrapper-blog-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 10px;
  }
}

.link-blog:hover {
  text-decoration: none;
}
.link-blog img {
  height: 205px;
  width: 100%;
  border-radius: 10px;
  transition: all ease-in-out 0.2s;
}
.link-blog img:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.page-blog .category {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .page-blog .category {
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 0px 0px 15px 0px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.cat--blog {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #777;
  margin: 5px 0px;
  padding: 1px 8px;
  width: fit-content;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .cat--blog {
    font-size: 12px;
  }
}

.cat--blog-date {
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .cat--blog-date {
    font-size: 14px;
  }
}

.title-post-blog {
  font-size: 22px;
  color: #0e2697;
  margin-top: 15px;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .title-post-blog {
    font-size: 16px;
  }
}
.title-post-blog:hover {
  color: #02a8fa;
  transition: all ease-in-out 0.2s;
}

.text-blog p {
  font-size: 14px;
  color: #777;
}
@media screen and (max-width: 768px) {
  .text-blog p {
    font-size: 13px;
  }
}

.page-blog .title {
  font-size: 25px;
  color: #000;
}

.page-blog .category .col-md-4 {
  max-width: fit-content;
  padding-left: 0;
  padding-right: 0;
}
.page-blog .category .col-md-4:last-child {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .page-blog .category .col-md-4 {
    min-width: fit-content;
  }
}
.page-blog .category .col-md-4 a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #a8a8a8;
  border-radius: 3px;
  padding: 4px 11px;
}
.page-blog .category .col-md-4 a:hover {
  text-decoration: none;
}

.container_filters_blog_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .container_filters_blog_mobile {
    display: block;
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .container_filters_blog_desktop {
    display: none;
  }
}

.page-blog .active {
  background-color: #0e2697;
  color: #fff !important;
  border: none !important;
}
.page-blog .active a {
  background-color: #0e2697;
  color: #fff !important;
  border: none !important;
}

.screen-reader-text {
  display: none;
}

.page-blog .pagination {
  margin: 30px 0px;
}

.page-numbers {
  font-size: 16px;
  font-weight: bold;
  background-color: #e9ecef;
  color: #0e2697;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page-numbers {
    font-size: 14px;
    padding: 11px 18px;
  }
}
.page-numbers:hover {
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 5px;
}
.nav-links .current {
  font-size: 16px;
  font-weight: bold;
  background-color: #0e2697;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .nav-links .current {
    font-size: 14px;
    padding: 11px 18px;
  }
}
.nav-links .current:hover {
  text-decoration: none;
}
.footer {
  padding-top: 40px;
  border-top: solid 2px #ededed;
}

.footer_parts_top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer_parts_top {
    flex-direction: column;
  }
}

.footer_parts_top_left_wrapper_image {
  max-width: 200px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .footer_parts_top_left_wrapper_image {
    max-width: 155px;
    margin: 0 auto;
  }
}

.footer_parts_top_left_image_logo {
  width: 100%;
  transition: all ease-in-out 0.2s;
}
.footer_parts_top_left_image_logo:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.footer_parts_top_left_wrapper_icons {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .footer_parts_top_left_wrapper_icons {
    margin-top: 20px;
    justify-content: center;
  }
}

.footer_parts_top_wrapper_left {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .footer_parts_top_wrapper_left {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

.footer_parts_top_wrapper_right {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer_parts_top_wrapper_right {
    flex-direction: column-reverse;
  }
}

.footer_parts_top_courses_wrapper {
  display: flex;
  flex-direction: column;
  width: 200px;
  gap: 7px;
}
@media screen and (max-width: 768px) {
  .footer_parts_top_courses_wrapper {
    display: none;
  }
}

.footer_parts_top_hours_title_text {
  margin-top: 25px;
}

.footer_parts_bottom_content_wrapper {
  display: flex;
  justify-content: center;
  background-color: #f7f7f7;
  padding: 10px 0px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footer_parts_bottom_content_wrapper {
    padding: 10px 25px;
  }
}

.footer_parts_bottom_content_copyright_text {
  font-size: 14px;
  color: #000;
  margin: 0px;
}
.footer_parts_bottom_content_copyright_text span {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer_parts_bottom_content_copyright_text {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
  }
}

.footer_parts_top_courses_wrapper a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.footer_parts_top_courses_wrapper a:hover {
  color: #000;
  text-decoration: underline;
  transition: all ease-in-out 0.2s;
}
.footer_parts_top_courses_wrapper h5 {
  color: #0E2697;
  font-weight: bold;
  font-size: 16px;
}

.footer_parts_top_contact_hours_wrapper {
  display: flex;
  flex-direction: column;
  width: 250px;
  gap: 5px;
}
.footer_parts_top_contact_hours_wrapper a, .footer_parts_top_contact_hours_wrapper span {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.footer_parts_top_contact_hours_wrapper a:hover, .footer_parts_top_contact_hours_wrapper span:hover {
  color: #000;
  text-decoration: underline;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .footer_parts_top_contact_hours_wrapper a, .footer_parts_top_contact_hours_wrapper span {
    font-size: 14px;
  }
}
.footer_parts_top_contact_hours_wrapper h5 {
  color: #0E2697;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer_parts_top_contact_hours_wrapper {
    width: 100%;
    align-items: center;
    margin-top: 30px;
  }
}

.footer_parts_top_eddress_wrapper {
  display: flex;
  flex-direction: column;
  width: 290px;
  gap: 5px;
}
.footer_parts_top_eddress_wrapper span {
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer_parts_top_eddress_wrapper span {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
  }
}
.footer_parts_top_eddress_wrapper h5 {
  color: #0E2697;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer_parts_top_eddress_wrapper h5 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer_parts_top_eddress_wrapper {
    width: 100%;
    align-items: center;
  }
}

.footer_parts_top_eddress_itens {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.footer_parts_top_eddress_itens:hover {
  color: #000;
  text-decoration: underline;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .footer_parts_top_eddress_itens {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
  }
}
html {
  margin-top: 0px !important;
}

* {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  background: #fff;
  top: 0;
  z-index: 20;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.2);
}

.menu_mobile_wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .menu_mobile_wrapper {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .menu_mobile {
    max-width: 25px;
  }
}

.container_content {
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 1540px) {
  .container_content {
    max-width: 78%;
  }
}
@media screen and (max-width: 768px) {
  .container_content {
    max-width: 100%;
    padding: 0px 20px;
  }
}

.icon_facebook {
  position: relative;
  transition: all ease-in-out 0.2s;
}
.icon_facebook a {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
.icon_facebook::before {
  content: "";
  background-image: url("../../assets/images/icon_facebook.png");
  background-size: 30px;
  background-repeat: no-repeat;
  display: block;
  width: 30px;
  height: 30px;
}
.icon_facebook:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.icon_youtube {
  position: relative;
  transition: all ease-in-out 0.2s;
}
.icon_youtube a {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
.icon_youtube::before {
  content: "";
  background-image: url("../../assets/images/icon_youtube.png");
  background-size: 30px;
  background-repeat: no-repeat;
  display: block;
  width: 30px;
  height: 30px;
}
.icon_youtube:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.icon_instagram {
  position: relative;
  transition: all ease-in-out 0.2s;
}
.icon_instagram a {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
.icon_instagram::before {
  content: "";
  background-image: url("../../assets/images/icon_instagram.png");
  background-size: 30px;
  background-repeat: no-repeat;
  display: block;
  width: 30px;
  height: 30px;
}
.icon_instagram:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.icon_tiktok {
  position: relative;
  transition: all ease-in-out 0.2s;
}
.icon_tiktok a {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
.icon_tiktok::before {
  content: "";
  background-image: url("../../assets/images/icon_pinterest.png");
  background-size: 30px;
  background-repeat: no-repeat;
  display: block;
  width: 30px;
  height: 30px;
}
.icon_tiktok:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.icon_linkedin {
  position: relative;
  transition: all ease-in-out 0.2s;
}
.icon_linkedin a {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
.icon_linkedin::before {
  content: "";
  background-image: url("../../assets/images/icon_linkedin.png");
  background-size: 30px;
  background-repeat: no-repeat;
  display: block;
  width: 30px;
  height: 30px;
}
.icon_linkedin:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.icon_twitter {
  position: relative;
  transition: all ease-in-out 0.2s;
}
.icon_twitter a {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
.icon_twitter::before {
  content: "";
  background-image: url("../../assets/images/icon_twitter.png");
  background-size: 30px;
  background-repeat: no-repeat;
  display: block;
  width: 30px;
  height: 30px;
}
.icon_twitter:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.header_nav_bar_background {
  background-color: #f7f7f7;
  padding: 10px 0px;
}
@media screen and (max-width: 768px) {
  .header_nav_bar_background {
    padding: 5px 20px;
  }
}

.header_nav_bar_wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1540px) {
  .header_nav_bar_wrapper {
    max-width: 78%;
  }
}
@media screen and (max-width: 768px) {
  .header_nav_bar_wrapper {
    justify-content: end;
    max-width: 100%;
  }
}

.header_nav_bar_social {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .header_nav_bar_social {
    display: none;
  }
}

.header_nav_bar_login {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header_login {
  position: relative;
  display: flex;
  gap: 30px;
  color: #0E2697;
  font-weight: 700;
  font-size: 16px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header_login {
    font-size: 14px;
  }
}
.header_login button {
  border: none;
  background-color: #fff;
}
.header_login button:hover {
  text-decoration: underline;
  cursor: pointer;
}
.header_login button:focus {
  outline: none;
}
.header_login a {
  color: #0E2697;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.header_login a:hover {
  color: #0E2697;
  text-decoration: underline;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .header_login a {
    font-size: 14px;
  }
}
.header_login::before {
  content: "";
  background-image: url("../../assets/images/Icon-awesome-user-alt.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: 8px;
  left: -26px;
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 1400px) {
  .header_login::before {
    bottom: 7px;
  }
}
@media screen and (max-width: 768px) {
  .header_login::before {
    bottom: 6px;
    width: 13px;
    height: 13px;
    left: -23px;
  }
}

.header_register a {
  color: #0E2697;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.header_register a:hover {
  color: #0E2697;
  text-decoration: underline;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .header_register a {
    font-size: 14px;
  }
}

.header_or_text {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .header_or_text {
    font-size: 14px;
  }
}

.header_content_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}

.header_logo_wrapper {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .header_logo_wrapper {
    max-width: 155px;
  }
}

@media screen and (max-width: 768px) {
  .header_logo_link {
    display: flex;
  }
}

.header_logo {
  width: 100%;
  transition: all ease-in-out 0.2s;
}
.header_logo:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.header_menu_wrapper .menu-main-menu-container ul {
  display: flex;
  margin: 0px;
  padding: 0px;
  gap: 30px;
}
.header_menu_wrapper .menu-main-menu-container ul li a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.header_menu_wrapper .menu-main-menu-container ul li a:hover {
  text-decoration: underline;
  transition: all ease-in-out 0.2s;
}

.about_us {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .about_us {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header_menu_wrapper {
    display: none;
  }
}

.header_blog {
  font-size: 16px;
  color: #000 !important;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.header_blog:hover {
  text-decoration: underline;
  transition: all ease-in-out 0.2s;
}

.header_our_store {
  font-size: 16px;
  color: #0E2697 !important;
  font-weight: bold;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.header_our_store:hover {
  text-decoration: underline;
  transition: all ease-in-out 0.2s;
}

.menu-item {
  list-style: none;
}

.menu_mobile_open {
  display: none;
}
@media screen and (max-width: 768px) {
  .menu_mobile_open {
    background-color: #fff;
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 100%;
    transition: 0.2s;
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .open {
    left: 0%;
    transition: 0.2s;
  }
}

.menu_mobile_open_wrapper {
  padding: 20px 0px;
}
@media screen and (max-width: 768px) {
  .menu_mobile_open_wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.menu_mobile_open_content_one_wrapper_logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.menu_mobile_open_content_one_content_image {
  max-width: 150px;
}

.menu_mobile_open_content_one_content_exit {
  max-width: 26px;
}

.menu_mobile_open_image_logo,
.menu_mobile_open_image_menu_exit {
  width: 100%;
}

.menu_mobile_open_content_two_wrapper_login {
  padding: 0 20px;
}

.menu_mobile_open_content_two_wrapper_login_content {
  display: flex;
  gap: 5px;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .menu_mobile_open_content_two_wrapper_login_content {
    padding-left: 30px;
  }
}

.menu_mobile_open_content_two_login_text {
  text-decoration: none;
  color: #0E2697;
  font-weight: bold;
  font-size: 16px;
}

.menu_mobile_open_content_two_register_text {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #0E2697;
}

.menu_mobile_open_content_two_login_text_desc {
  color: #000;
  font-size: 16px;
}

.header_menu_mobile_wrapper ul {
  margin: 0;
  padding: 0;
}
.header_menu_mobile_wrapper li {
  padding: 10px 20px;
  border-top: 1px solid #D8D8D8;
}
.header_menu_mobile_wrapper li:last-child {
  border-bottom: 1px solid #D8D8D8;
}
.header_menu_mobile_wrapper a {
  display: block;
  width: 100%;
  font-size: 15px;
  text-decoration: none;
  color: #000;
}
.header_menu_mobile_wrapper .sub-menu {
  margin-top: 10px;
  display: none;
}
.header_menu_mobile_wrapper .sub-menu li {
  border: none;
  position: relative;
}
.header_menu_mobile_wrapper .sub-menu li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0e2697;
  left: 5px;
  top: 18px;
}

.menu_style_active {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .menu_mobile_open_content_four_wrapper_footer {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    position: relative;
  }
  .menu_mobile_open_content_four_wrapper_footer::before {
    content: "";
    background-image: url("../../assets/images/circuloAzul.png");
    background-size: 265px;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    bottom: -2px;
    right: -120px;
    top: 90px;
    width: 265px;
    height: 265px;
  }
}

@media screen and (max-width: 768px) {
  .menu_mobile_open_content_four_footer_information_wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  .menu_mobile_container {
    height: 100%;
  }
}

.menu_mobile_open_content_two_login_text {
  position: relative;
}
@media screen and (max-width: 768px) {
  .menu_mobile_open_content_two_login_text::before {
    content: "";
    background-image: url("../../assets/images/Icon-awesome-user-alt.png");
    background-size: 16px;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    bottom: -2px;
    left: -30px;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 768px) {
  .menu_mobile_open_content_four_footer_title_text {
    font-size: 16px;
    font-weight: bold;
    color: #0E2697;
  }
}

@media screen and (max-width: 768px) {
  .menu_mobile_open_content_four_footer_information_email,
.menu_mobile_open_content_four_footer_information_phone {
    font-size: 16px;
    color: #000;
  }
}

@media screen and (max-width: 768px) {
  .menu_mobile_open_content_four_footer_information_whatsapp {
    font-size: 16px;
    color: #000;
    position: relative;
    padding-left: 35px;
  }
  .menu_mobile_open_content_four_footer_information_whatsapp::before {
    content: "";
    background-image: url("../../assets/images/Icon-logo-whatsapp.png");
    background-size: 25px;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0px;
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width: 768px) {
  #menu-main-menu-mobile #menu-item-62 {
    position: relative;
  }
  #menu-main-menu-mobile #menu-item-62::after {
    content: "";
    background-image: url("../images/arrow_mobile_operation_bottom.png");
    background-repeat: no-repeat;
    background-size: 12px;
    position: absolute;
    width: 12px;
    height: 12px;
    right: 30px;
    top: 15px;
  }
}

.menu_mobile_style_rotate::after {
  transform: rotate(180deg);
  top: 17px !important;
}

.button_whatsapp_fixed {
  width: fit-content;
  box-shadow: 0px 0px 5px -1px;
  border-radius: 5px;
  background-color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
@media screen and (max-width: 768px) {
  .button_whatsapp_fixed {
    bottom: 20px;
  }
}

.button_whatsapp_fixed_button {
  padding: 7px 13px;
}
@media screen and (max-width: 768px) {
  .button_whatsapp_fixed_button {
    padding: 5px 9px;
  }
}

.button_whatsapp_img {
  max-width: 20px;
}

.button_whatsapp_fixed_text {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .button_whatsapp_fixed_text {
    font-size: 12px;
  }
}

.button_whatsapp_fixed_link {
  text-decoration: none;
}
.button_whatsapp_fixed_link:hover {
  text-decoration: none;
  cursor: pointer;
}
body {
  position: relative;
}

.page_register_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .page_register_wrapper {
    padding: 35px 0;
  }
}

.page_register_logo_image {
  max-width: 265px;
  transition: all ease-in-out 0.2s;
}
.page_register_logo_image:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.page_register_logo_description {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin-top: 33px;
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  .page_register_logo_description {
    font-size: 12px;
  }
}

.page_register_input_wrapper {
  display: flex;
  flex-direction: column;
}

.page_register_input_content_one_wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.page_register_input_content_two_wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.page_register_input_content_one_title,
.page_register_input_content_two_title {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .page_register_input_content_one_title,
.page_register_input_content_two_title {
    font-size: 12px;
  }
}

.page_register_input_link {
  font-size: 16px;
  color: #757575;
  transition: all ease-in-out 0.2s;
}
.page_register_input_link:hover {
  color: #757575;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.page_register_buttons_wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.register_success {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .register_success {
    font-size: 12px;
  }
}

.page_register_button_register_wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.page_register_button_register_wrapper button:hover {
  cursor: pointer;
}

.page_register_button_register {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  background-color: #0E2697;
  color: #fff;
  width: 100%;
  padding: 13px 0px;
  text-align: center;
  border-radius: 5px;
  border: none;
  transition: all ease-in-out 0.2s;
}
.page_register_button_register:hover {
  color: #fff;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .page_register_button_register {
    font-size: 12px;
  }
}

.page_register_input_one {
  padding: 12px;
  border: 1px solid #ACACAC;
  border-radius: 5px;
  font-size: 16px;
}
.page_register_input_one:focus-visible {
  outline-color: #0E2697;
}
@media screen and (max-width: 768px) {
  .page_register_input_one {
    font-size: 12px;
  }
}

.page_register_input_two {
  padding: 12px;
  border: 1px solid #ACACAC;
  border-radius: 5px;
  font-size: 16px;
}
.page_register_input_two:focus-visible {
  outline-color: #0E2697;
}
@media screen and (max-width: 768px) {
  .page_register_input_two {
    font-size: 12px;
  }
}

.page_register_background {
  content: "";
  background-image: url("../images/backgroundLogin.png");
  background-repeat: no-repeat;
  background-size: 360px;
  position: absolute;
  width: 430px;
  height: 482px;
  bottom: 0px;
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page_register_background {
    background-size: 270px;
    width: 100%;
    height: 362px;
    left: -25px;
  }
}

.page_register_content .alert {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .page_register_content .alert {
    font-size: 12px;
  }
}

.operation {
  margin-top: 180px;
}
@media screen and (max-width: 768px) {
  .operation {
    margin-top: 145px;
  }
}

.operation_part_top_content_image {
  max-width: 930px;
}
@media screen and (max-width: 1400px) {
  .operation_part_top_content_image {
    max-width: 890px;
  }
}
@media screen and (max-width: 1366px) {
  .operation_part_top_content_image {
    max-width: 790px;
  }
}
@media screen and (max-width: 768px) {
  .operation_part_top_content_image {
    display: none;
  }
}

.operation_part_top_content_image_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .operation_part_top_content_image_mobile {
    display: flex;
    width: 201px;
  }
}
@media screen and (max-width: 361px) {
  .operation_part_top_content_image_mobile {
    width: 181px;
  }
}

.operation_part_top_content_title_text {
  font-size: 33px;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .operation_part_top_content_title_text {
    font-size: 23px;
  }
}

.operation_part_top_content_wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .operation_part_top_content_wrapper {
    margin-top: 0;
  }
}

.operation_part_top_content_wrapper_image {
  display: flex;
  justify-content: center;
  margin-right: 140px;
}
@media screen and (max-width: 1400px) {
  .operation_part_top_content_wrapper_image {
    justify-content: start;
  }
}
@media screen and (max-width: 768px) {
  .operation_part_top_content_wrapper_image {
    justify-content: start;
  }
}

.operation_part_top_content_text_one {
  max-width: 160px;
  position: absolute;
  top: 125px;
  left: 20%;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}
@media screen and (max-width: 1540px) {
  .operation_part_top_content_text_one {
    left: 17%;
  }
}
@media screen and (max-width: 1400px) {
  .operation_part_top_content_text_one {
    left: 13%;
  }
}
@media screen and (max-width: 768px) {
  .operation_part_top_content_text_one {
    max-width: 160px;
    font-size: 16px;
    line-height: 26px;
    top: 50px;
    left: 93px;
  }
}
@media screen and (max-width: 394px) {
  .operation_part_top_content_text_one {
    max-width: 160px;
    font-size: 16px;
    line-height: 26px;
    top: 50px;
    left: 93px;
  }
}
@media screen and (max-width: 376px) {
  .operation_part_top_content_text_one {
    max-width: 160px;
    font-size: 14px;
    line-height: 22px;
    top: 56px;
    left: 87px;
  }
}
@media screen and (max-width: 361px) {
  .operation_part_top_content_text_one {
    max-width: 160px;
    font-size: 14px;
    line-height: 22px;
    top: 46px;
    left: 80px;
  }
}

.operation_part_top_content_text_two {
  max-width: 120px;
  position: absolute;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  top: 85px;
  right: 38%;
}
@media screen and (max-width: 1540px) {
  .operation_part_top_content_text_two {
    right: 37%;
  }
}
@media screen and (max-width: 1400px) {
  .operation_part_top_content_text_two {
    right: 38%;
  }
}
@media screen and (max-width: 768px) {
  .operation_part_top_content_text_two {
    max-width: 120px;
    font-size: 16px;
    line-height: 26px;
    top: 175px;
    right: 100px;
  }
}
@media screen and (max-width: 394px) {
  .operation_part_top_content_text_two {
    max-width: 120px;
    font-size: 16px;
    line-height: 26px;
    top: 175px;
    right: 75px;
  }
}
@media screen and (max-width: 376px) {
  .operation_part_top_content_text_two {
    max-width: 120px;
    font-size: 14px;
    line-height: 22px;
    top: 182px;
    right: 66px;
  }
}
@media screen and (max-width: 361px) {
  .operation_part_top_content_text_two {
    max-width: 120px;
    font-size: 14px;
    line-height: 22px;
    top: 158px;
    right: 61px;
  }
}

.operation_part_top_content_text_three {
  max-width: 180px;
  font-size: 20px;
  color: #000;
  font-weight: bold;
  line-height: 30px;
  position: absolute;
  top: 128px;
  right: 4%;
}
@media screen and (max-width: 1540px) {
  .operation_part_top_content_text_three {
    right: 0%;
  }
}
@media screen and (max-width: 768px) {
  .operation_part_top_content_text_three {
    max-width: 145px;
    font-size: 16px;
    line-height: 26px;
    top: 305px;
    right: 12px;
  }
}
@media screen and (max-width: 394px) {
  .operation_part_top_content_text_three {
    max-width: 145px;
    font-size: 16px;
    line-height: 26px;
    top: 305px;
    right: -12px;
  }
}
@media screen and (max-width: 376px) {
  .operation_part_top_content_text_three {
    max-width: 130px;
    font-size: 14px;
    line-height: 22px;
    top: 307px;
    right: -7px;
  }
}
@media screen and (max-width: 361px) {
  .operation_part_top_content_text_three {
    max-width: 135px;
    font-size: 14px;
    line-height: 22px;
    top: 271px;
    right: -11px;
  }
}

.operation_part_botttom_two_title_text,
.operation_part_bottom_three_title_text {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

.operation_part_bottom_three_wrapper {
  display: flex;
  flex-direction: column;
}

.operation_part_bottom_two_description_text,
.operation_part_botttom_three_description_text {
  display: flex;
  color: #000;
  font-size: 16px;
  line-height: 33px;
  margin-bottom: 10px;
}

.operation_part_bottom_three_wrapper {
  padding-bottom: 40px;
  border-bottom: solid 2px #d8d8d8;
}

.page_paid_course_description_text_one {
  display: flex;
  color: #000;
  font-size: 16px;
  line-height: 33px;
  margin-bottom: 10px;
}

.page_paid_course_title_text_two {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

.page_paid_course_description_text_two {
  display: flex;
  color: #000;
  font-size: 16px;
  line-height: 33px;
  margin-bottom: 10px;
}

.page_paid_course_parts_two_title {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  margin-bottom: 15px;
}
.page_paid_course_parts_two_title span {
  font-weight: 100;
}

.page_paid_course_carousel_title_text {
  display: flex;
  align-items: center;
  font-size: 25px;
}
.page_paid_course_carousel_title_text::before {
  content: "";
  display: flex;
  background-image: url("../images/estrelaDestaque.png");
  background-repeat: no-repeat;
  background-size: 40px;
  width: 40px;
  height: 40px;
}

.operation_description_one_title_wrapper {
  margin-top: 90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .operation_description_one_title_wrapper {
    margin-top: 60px;
  }
}

.operation_description_one_title_text {
  font-size: 24px;
  font-weight: bold;
  color: #0E2697;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .operation_description_one_title_text {
    font-size: 16px;
  }
}

.operation_description_two_title_text {
  font-size: 24px;
  font-weight: bold;
  color: #0E2697;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .operation_description_two_title_text {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .operation_description_two {
    margin-bottom: 60px;
  }
}

.operation_description_one_content_wrapper {
  padding-bottom: 20px;
  border-bottom: 2px solid #c7c7c7;
}
@media screen and (max-width: 768px) {
  .operation_description_one_content_wrapper {
    border-bottom: 0px;
    padding-bottom: 15px;
  }
}

.operation_description_two_content_wrapper {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .operation_description_two_content_wrapper {
    border-bottom: 0px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .operation_description_container_one,
.operation_description_container_two {
    border-bottom: 2px solid #d8d8d8;
  }
}

.operation_description_one_content_text,
.operation_description_two_content_text {
  color: #000;
  font-size: 16px;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .operation_description_one_content_text,
.operation_description_two_content_text {
    color: #000;
    font-size: 13px;
    line-height: 28px;
  }
}

.operation_description_two_wrapper {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .operation_description_two_wrapper {
    margin-top: 40px;
  }
}

.page_paid_course_carousel_wrapper {
  margin-bottom: 90px;
}

.operation_description_one_wrapper {
  margin-top: 50px;
}
.page_course_demonstration {
  margin-top: 215px;
}
@media screen and (max-width: 768px) {
  .page_course_demonstration {
    margin-top: 180px;
  }
}

.page_course_desmostration_wrapper {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .page_course_desmostration_wrapper {
    width: 100%;
    flex-direction: column-reverse;
    gap: 10px;
  }
}

.page_course_demostration_col_datails {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .page_course_demostration_col_datails {
    width: 100%;
  }
}

.page_course_desmonstration_col_about {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .page_course_desmonstration_col_about {
    width: 100%;
  }
}

.course_demonstration_col_details_title_text {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_details_title_text {
    display: none;
  }
}

.course_demonstration_col_details_content_top_wrapper {
  padding: 20px 90px 20px 20px;
  background-color: #F7F7F7;
  border-radius: 15px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_details_content_top_wrapper {
    display: none;
  }
}

.course_demonstration_col_details_content_top_wrapper_mobile {
  padding: 20px 90px 20px 20px;
  background-color: #F7F7F7;
  border-radius: 15px;
  margin-bottom: 45px;
  display: none;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_details_content_top_wrapper_mobile {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 0px;
    margin-bottom: 0px;
  }
}

.course_demonstration_col_details_content_wrapper_one p:nth-last-child(-n+2) {
  margin-bottom: 0px;
}

.course_demonstrations_col_details_content_topic_title_one {
  font-size: 22px;
  font-weight: bold;
  color: #0E2697;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .course_demonstrations_col_details_content_topic_title_one {
    font-size: 16px;
  }
}

.course_demonstration_col_details_content_topic_description_one {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}
.course_demonstration_col_details_content_topic_description_one span {
  font-weight: 100;
}

.course_demonstration_col_details_content_topic_description_one {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
.course_demonstration_col_details_content_topic_description_one span {
  font-weight: 100;
}

.course_demonstrations_col_details_content_topic_title_two {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.course_demonstration_col_details_content_description_two_diferent {
  display: flex;
  width: 55%;
  font-size: 16px;
  line-height: 30px;
  color: #000;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_details_content_description_two_diferent {
    width: 100%;
  }
}

.course_demonstration_col_details_content_description_two_last {
  font-size: 16px;
  line-height: 30px;
  color: #000;
}

.course_demonstration_col_details_content_description_two {
  font-size: 16px;
  line-height: 30px;
  color: #000;
  display: flex;
  margin-bottom: 30px;
}

.page_course_desmonstration_col_about_wrapper {
  box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .page_course_desmonstration_col_about_wrapper {
    box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0);
    padding: 20px 0px;
  }
}

.course_demonstration_col_about_image_wrapper {
  position: relative;
}

.course_demonstration_col_about_image_teacher {
  max-width: 195px;
  height: 195px;
  width: 100%;
  position: absolute;
  top: -60px;
  left: -45px;
  border-radius: 100%;
  border: 2px solid #1f359e;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_image_teacher {
    max-width: 140px;
    height: 140px;
    left: -15px;
  }
}

.course_demonstration_col_about_image_dish {
  max-width: 125px;
  height: 125px;
  width: 100%;
  position: absolute;
  top: 10px;
  left: 85px;
  border-radius: 100%;
  border: 2px solid #1f359e;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_image_dish {
    max-width: 85px;
    height: 85px;
    left: 75px;
    top: -7px;
  }
}

.course_demonstration_col_about_title_wrapper {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_title_wrapper {
    margin-top: 90px;
  }
}

.course_demonstration_col_about_title_text {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.course_demonstration_col_about_name_teacher_text {
  font-size: 16px;
  background-color: #112480;
  color: #fff;
  border-radius: 8px;
  width: fit-content;
  padding: 5px 20px;
  margin: 15px 0px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_name_teacher_text {
    font-size: 12px;
    margin: 0;
  }
}

.course_demonstration_col_about_quantity_classroom {
  font-size: 16px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_quantity_classroom {
    font-size: 14px;
    margin-top: 5px;
  }
}
.course_demonstration_col_about_quantity_classroom span {
  color: #0E2697;
  font-size: 20px;
  font-weight: bold;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_quantity_classroom span {
    font-size: 16px;
  }
}

.course_demonstration_col_about_hours_wrapper {
  position: relative;
  background-color: #F7F7F7;
  border-radius: 8px;
  margin-top: 30px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_hours_wrapper {
    margin-top: 15px;
  }
}

.image_clips {
  max-width: 35px;
  position: absolute;
  right: -10px;
  top: -10px;
}

.course_demonstration_col_about_hours_title_text {
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_hours_title_text {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.course_demonstration_col_about_hours_text_content_wrapper {
  display: flex;
  justify-content: space-between;
}

.course_demonstration_col_about_hours_data_wrapper {
  display: flex;
  flex-direction: column;
}

.course_demonstration_col_about_data_text {
  font-size: 16px;
  font-weight: bold;
  color: #0E2697;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_data_text {
    font-size: 12px;
  }
}

.course_demonstration_col_about_hours_text {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_hours_text {
    font-size: 12px;
  }
}

.course_demonstration_col_about_hours_data_wrapper {
  display: flex;
  flex-direction: column;
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_hours_data_wrapper {
    margin-right: 0px;
  }
}

.course_demonstration_col_about_vacancy_text {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_vacancy_text {
    font-size: 12px;
  }
}

.course_demonstration_col_about_data_vacancy_text {
  font-size: 16px;
  font-weight: bold;
  color: #0E2697;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_data_vacancy_text {
    font-size: 12px;
  }
}

.course_demonstration_col_about_button_submit_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_button_submit_wrapper {
    display: none;
  }
}

.course_demonstration_col_about_button_submit_wrapper_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_button_submit_wrapper_mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: -2px;
    right: 0;
    left: 0;
    padding: 15px 20px;
    background-color: #fff;
    z-index: 19;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.2);
  }
}

.course_demonstration_col_about_button_free_text {
  font-size: 16px;
  text-transform: uppercase;
  color: #0AB554;
}

.course_demonstration_col_about_button_register_text {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background-color: #0E2697;
  padding: 10px 50px;
  border-radius: 5px;
  transition: all ease-in-out 0.2s;
  text-decoration: none;
  border: none;
}
.course_demonstration_col_about_button_register_text:hover {
  color: #fff;
  opacity: 0.8;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  text-decoration: none;
}

.course_demonstration_col_about_teacher_buttom {
  box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_teacher_buttom {
    margin-top: 0px;
  }
}

.course_demonstration_col_about_teacher_buttom_title_text {
  font-size: 16px;
  color: #0E2697;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_teacher_buttom_title_text {
    font-size: 16px;
  }
}

.course_demonstration_col_about_teacher_buttom_image_wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.course_demonstration_col_about_teacher_buttom_image {
  max-width: 90px;
  height: 90px;
  width: 100%;
  border-radius: 100%;
  border: 2px solid #1f359e;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_teacher_buttom_image {
    max-width: 80px;
    height: 80px;
  }
}

.course_demonstration_col_about_teacher_name_text {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_teacher_name_text {
    font-size: 14px;
    margin-bottom: 0px;
  }
}

.course_demonstration_col_about_teacher_description_text {
  font-size: 14px;
  color: #000;
  line-height: 26px;
}

.page_course_demonstration_col_details_bottom {
  border: 2px solid #ececec;
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .page_course_demonstration_col_details_bottom {
    margin-top: 20px;
  }
}

.course_demonstration_col_details_bottom_topic_title_bottom {
  font-size: 16px;
  font-weight: bold;
  color: #0E2697;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_details_bottom_topic_title_bottom {
    font-size: 16px;
  }
}

.course_demonstration_col_bottom_content_topic_title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_bottom_content_topic_title {
    font-size: 14px;
  }
}

.course_demonstration_col_bottom_content_description {
  font-size: 16px;
  line-height: 28px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_bottom_content_description {
    font-size: 14px;
    line-height: 26px;
  }
}

.course_demonstration_col_bottom_content_wrapper {
  margin-top: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ececec;
}

.course_demonstration_col_bottom_content_wrapper_link {
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding-top: 10px;
  margin-top: -5px;
}

.course_demonstration_col_bottom_content_link {
  text-decoration: none;
  font-size: 16px;
  position: relative;
  color: #1492E6;
  transition: all ease-in-out 0.2s;
}
.course_demonstration_col_bottom_content_link:hover {
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
.course_demonstration_col_bottom_content_link::after {
  content: "";
  background-image: url("../../assets/images/icon-arrow-blue.png");
  background-size: 13px;
  background-repeat: no-repeat;
  position: absolute;
  width: 13px;
  height: 13px;
  top: 3px;
  right: -23px;
}

.btn_link_rotate::after {
  transform: rotate(180deg);
  top: 7px;
}

.course_demonstration_week_potential {
  margin: 90px 0px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_week_potential {
    overflow: hidden;
    margin: 40px 0px;
  }
}

.page_course_demonstration_col_details_bottom_content_wrapper {
  max-height: 270px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page_course_demonstration_col_details_bottom_content_wrapper {
    max-height: 350px;
    overflow: hidden;
  }
}

.course_demonstration_week_potential_wrapper_left {
  width: 30%;
  display: flex;
  flex-direction: column;
  padding-right: 60px;
}
@media screen and (max-width: 1540px) {
  .course_demonstration_week_potential_wrapper_left {
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .course_demonstration_week_potential_wrapper_left {
    width: 100%;
    padding-top: 40px;
    padding-right: 60px;
  }
}

.course_demonstration_week_potential_wrapper {
  display: flex;
  position: relative;
  gap: 40px;
}
@media screen and (max-width: 1400px) {
  .course_demonstration_week_potential_wrapper {
    gap: 95px;
  }
}
@media screen and (max-width: 1366px) {
  .course_demonstration_week_potential_wrapper {
    gap: 115px;
  }
}
@media screen and (max-width: 768px) {
  .course_demonstration_week_potential_wrapper {
    flex-direction: column;
    gap: 0px;
    margin-bottom: 10px;
  }
}

.course_demonstration_week_potential_content_description_wrapper {
  display: flex;
  justify-content: space-between;
}

.course_demonstration_week_potential_title_text {
  font-size: 51px;
  font-weight: bold;
  line-height: 70px;
  color: #000;
}
@media screen and (max-width: 1400px) {
  .course_demonstration_week_potential_title_text {
    font-size: 46px;
  }
}
@media screen and (max-width: 1366px) {
  .course_demonstration_week_potential_title_text {
    font-size: 44px;
    line-height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .course_demonstration_week_potential_title_text {
    font-size: 45px;
    line-height: 55px;
  }
}
@media screen and (max-width: 376px) {
  .course_demonstration_week_potential_title_text {
    font-size: 43px;
  }
}
@media screen and (max-width: 361px) {
  .course_demonstration_week_potential_title_text {
    font-size: 40px;
  }
}

.course_demonstration_week_potential_description_text {
  font-size: 16px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .course_demonstration_week_potential_description_text {
    font-size: 16px;
  }
}

.course_demonstration_week_potential_wrapper_right {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  height: fit-content;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.2);
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_week_potential_wrapper_right {
    width: 100%;
    margin-top: 20px;
  }
}

.course_demonstration_week_potential_description_item_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.course_demonstration_week_potential_description_item {
  font-size: 16px;
  color: #000;
}
.course_demonstration_week_potential_description_item::marker {
  color: #F6BB1A;
}

.course_demonstration_week_potential_link {
  color: #000;
  font-weight: bold;
  background-color: #F6BB1A;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  text-decoration: none;
  padding: 10px;
  transition: all ease-in-out 0.2s;
}
.course_demonstration_week_potential_link:hover {
  color: #000;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
  text-decoration: none;
}

.course_demonstration_week_potential_image_circle {
  max-width: 312px;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: -50px;
  left: 270px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_week_potential_image_circle {
    max-width: 258px;
    top: 0px;
    left: 250px;
  }
}

.course_demonstration_week_potential_image_magnifying_glass {
  max-width: 140px;
  width: 100%;
  position: absolute;
  transform: rotate(110deg);
  top: 190px;
  left: 230px;
}
@media screen and (max-width: 768px) {
  .course_demonstration_week_potential_image_magnifying_glass {
    max-width: 120px;
    transform: rotate(95deg);
    left: 73%;
    top: 150px;
  }
}

.course_demonstration_col_about_button_submit_content_course_wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .course_demonstration_col_about_button_submit_content_course_wrapper {
    display: flex;
    flex-direction: column;
    margin: 15px 0px;
  }
}

@media screen and (max-width: 768px) {
  .course_demonstration_col_about_button_submit_content_course_description_text {
    color: #000;
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .course_demonstration_col_about_button_submit_content_course_description_text_link_wrapper {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .couse_demonstration_col_about_button_submit_content_course_description_text_link {
    position: relative;
    font-size: 14px;
    color: #0E2697;
    font-weight: bold;
    text-decoration: underline;
  }
  .couse_demonstration_col_about_button_submit_content_course_description_text_link::after {
    content: "";
    background-image: url("../../assets/images/icon_arrow_blue_dark.png");
    background-size: 13px;
    background-repeat: no-repeat;
    position: absolute;
    width: 13px;
    height: 13px;
    top: 3px;
    right: -23px;
  }
}

@media screen and (max-width: 768px) {
  .course_demonstration_col_details_content_top_wrapper_field_text {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 0px;
    margin-top: 20px;
    margin-bottom: 0px;
    border-radius: 0px;
    height: 200px;
    overflow: hidden;
  }
  .course_demonstration_col_details_content_top_wrapper_field_text p {
    font-size: 14px;
    color: #000;
    line-height: 23px;
  }
}

@media screen and (max-width: 768px) {
  .textActive {
    height: auto;
  }
}

.btnArrowActive::after {
  transform: rotate(180deg);
  top: 6px;
}

.textCommentActive {
  height: auto;
  max-height: none;
}
@media screen and (max-width: 768px) {
  .textCommentActive {
    height: auto;
    max-height: none;
  }
}

@media screen and (max-width: 768px) {
  .course_demonstration_col_details_content_top_field_text {
    color: #000;
    font-size: 14px;
    line-height: 26px;
  }
}

@media screen and (max-width: 768px) {
  .course_demonstration_week_carousel_title_text {
    margin-top: 30px;
    color: #000;
  }
}
.page_free_course {
  margin-top: 190px;
}
@media screen and (max-width: 768px) {
  .page_free_course {
    margin-top: 150px;
  }
}

.page_free_course_filter_wrapper {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .page_free_course_filter_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.page_free_course_filter_wrapper_content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_free_course_filter_wrapper_content {
    flex-direction: column;
  }
}

.page_free_course_filter_wrapper_title_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .page_free_course_filter_wrapper_title_mobile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 768px) {
  .page_free_course_filter_wrapper_exit_button_mobile {
    max-width: 26px;
  }
}

@media screen and (max-width: 768px) {
  .page_free_course_filter_exit_button_mobile {
    width: 100%;
  }
}

.page_free_course_title_text {
  font-size: 37px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .page_free_course_title_text {
    font-size: 23px;
  }
}

.free_course_filter_content_one_title_text {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  margin-bottom: 13px;
}

.free_course_filter_content_one_buttons_wrapper {
  display: flex;
  gap: 20px;
}

.free_course_filter_content_one_button_first {
  border: solid 1px #c7c7c7;
  color: #000;
  background-color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.free_course_filter_content_one_button_first:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.free_course_filter_content_one_button_second {
  border: solid 1px #c7c7c7;
  color: #000;
  background-color: #fff;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.free_course_filter_content_one_button_second:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.course_filter_active {
  background-color: #8298FF;
  color: #fff;
  transition: all ease-in-out 0.2s;
}
.course_filter_active:hover {
  color: #fff;
  transition: all ease-in-out 0.2s;
}

.page_free_course_content_wrapper {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .page_free_course_content_wrapper {
    display: flex;
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 100%;
    background-color: #fff;
    z-index: 20;
    padding: 20px;
    transition: 0.2s;
  }
}

.filterPageOpen {
  left: 0%;
  transition: 0.2s;
}

.page_free_course_filter_content_two_wrapper_wrapper {
  display: flex;
  height: 80px;
  padding-left: 20px;
  overflow-y: scroll;
  direction: rtl;
}
.page_free_course_filter_content_two_wrapper_wrapper::-webkit-scrollbar {
  width: 5px;
}
.page_free_course_filter_content_two_wrapper_wrapper::-webkit-scrollbar-track {
  padding: 2px 0;
  border-radius: 5px;
  background-color: #e0e0e0;
}
.page_free_course_filter_content_two_wrapper_wrapper::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #0628BF;
}
@media screen and (max-width: 768px) {
  .page_free_course_filter_content_two_wrapper_wrapper {
    height: 110px;
    direction: ltr;
    padding-left: 0;
  }
}

.page_free_course_filter_content_three_wrapper_wrapper {
  display: flex;
  height: 80px;
  padding-left: 20px;
  overflow-y: scroll;
  direction: rtl;
}
.page_free_course_filter_content_three_wrapper_wrapper::-webkit-scrollbar {
  width: 5px;
}
.page_free_course_filter_content_three_wrapper_wrapper::-webkit-scrollbar-track {
  padding: 2px 0;
  border-radius: 5px;
  background-color: #e0e0e0;
}
.page_free_course_filter_content_three_wrapper_wrapper::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #0628BF;
}
@media screen and (max-width: 768px) {
  .page_free_course_filter_content_three_wrapper_wrapper {
    height: 110px;
    direction: ltr;
    padding-left: 0;
  }
}

.page_free_course_filter_content_two_title_text,
.page_free_course_filter_content_three_title_text {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.page_free_course_filter_content_two_checkbox,
.page_free_course_filter_content_three_checkbox {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.page_free_course_filter_content_two_input_wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  font-size: 14px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .page_free_course_filter_content_two_input_wrapper {
    flex-direction: row;
  }
}
.page_free_course_filter_content_two_input_wrapper label {
  transition: all ease-in-out 0.2s;
  margin-bottom: 0;
}
.page_free_course_filter_content_two_input_wrapper label:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.page_free_course_filter_content_two_wrapper,
.page_free_course_filter_content_three_wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page_free_course_filter_content_two_wrapper_title,
.page_free_course_filter_content_three_wrapper_title {
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .page_free_course_filter_content_two_wrapper_title,
.page_free_course_filter_content_three_wrapper_title {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .page_free_course_filter_content_two {
    margin-top: 25px;
  }
}

.page_free_course_title_content_wrapper_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .page_free_course_title_content_wrapper_mobile {
    display: flex;
    margin-bottom: 35px;
  }
}

.page_free_course_page_filter_wrapper_content_button_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .page_free_course_page_filter_wrapper_content_button_mobile {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .page_free_course_filter_title_text_mobile {
    font-size: 25px;
    color: #000;
    font-weight: bold;
  }
}

@media screen and (max-width: 768px) {
  .page_free_course_filter_content_one {
    padding-bottom: 25px;
    border-bottom: 2px solid #d8d8d8;
  }
}

.page_course_filter_hr {
  display: none;
}
@media screen and (max-width: 768px) {
  .page_course_filter_hr {
    display: block;
    background-color: #565656;
  }
}

@media screen and (max-width: 768px) {
  .page_free_course_page_filter_content_button_mobile {
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #0E2697;
  }
}

.page_free_course_btn_open_filter {
  display: none;
}
@media screen and (max-width: 768px) {
  .page_free_course_btn_open_filter {
    display: flex;
    font-size: 14px;
    color: #000;
    font-weight: bold;
    border: solid 1px #c7c7c7;
    background-color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 32px;
  }
}

.page_free_course .features_courses_carousel_one_wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 62px;
}
@media screen and (max-width: 768px) {
  .page_free_course .features_courses_carousel_one_wrapper {
    grid-template-columns: 1fr;
  }
}

.page_free_course .slider_features_course_one_wrapper a:hover {
  text-decoration: none !important;
}

.next_pagination_button {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  position: relative;
}
.next_pagination_button::before {
  content: "";
  background-image: url("../images/arrowPagenation.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -1px;
  left: 70px;
}

.previuos_pagination_button {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  position: relative;
  margin-left: 30px;
}
.previuos_pagination_button::before {
  content: "";
  background-image: url("../images/arrowPagenation.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -1px;
  left: -35px;
  transform: rotate(180deg);
}
.page_login_wrapper {
  width: 290px;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .page_login_wrapper {
    width: 240px;
  }
}

.page_login_logo_image {
  width: 100%;
  transition: all ease-in-out 0.2s;
}
.page_login_logo_image:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.page_login_logo_description {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin-top: 33px;
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  .page_login_logo_description {
    font-size: 12px;
  }
}

.page_login_input_wrapper {
  display: flex;
  flex-direction: column;
}

.page_login_input_content_one_wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.page_login_input_content_two_wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 7px;
}

.page_login_input_content_one_title,
.page_login_input_content_two_title {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .page_login_input_content_one_title,
.page_login_input_content_two_title {
    font-size: 12px;
  }
}

.page_login_input_link {
  font-size: 14px;
  color: #757575;
  margin-top: 10px;
  transition: all ease-in-out 0.2s;
}
.page_login_input_link:hover {
  color: #757575;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .page_login_input_link {
    font-size: 12px;
  }
}

.page_login_buttons_wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.page_login_button_login_wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.page_login_button_login {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  background-color: #0E2697;
  color: #fff;
  width: 100%;
  padding: 13px 0px;
  text-align: center;
  border-radius: 5px;
  border: none;
  transition: all ease-in-out 0.2s;
}
.page_login_button_login:hover {
  color: #fff;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page_login_button_login {
    font-size: 12px;
  }
}

.page_login_button_register {
  font-size: 14px;
  color: #000;
  font-weight: bold;
  text-align: center;
  transition: all ease-in-out 0.2s;
}
.page_login_button_register:hover {
  color: #000;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .page_login_button_register {
    font-size: 12px;
  }
}

.page_login_input_one {
  padding: 12px;
  border: 1px solid #ACACAC;
  border-radius: 5px;
  font-size: 16px;
}
.page_login_input_one:focus-visible {
  outline-color: #0E2697;
}
@media screen and (max-width: 768px) {
  .page_login_input_one {
    font-size: 12px;
  }
}

.page_login_input_two {
  padding: 12px;
  border: 1px solid #ACACAC;
  border-radius: 5px;
  font-size: 16px;
}
.page_login_input_two:focus-visible {
  outline-color: #0E2697;
}
@media screen and (max-width: 768px) {
  .page_login_input_two {
    font-size: 12px;
  }
}

.page_login_background {
  background-image: url("../images/backgroundLogin.png");
  background-repeat: no-repeat;
  background-size: 360px;
  position: absolute;
  width: 430px;
  height: 482px;
  bottom: 0px;
  left: -30px;
}
@media screen and (max-width: 768px) {
  .page_login_background {
    background-size: 270px;
    width: 100%;
    height: 362px;
    left: -25px;
  }
}
.submit_email_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit_email_image {
  width: 100%;
}

.submit_email_description_wrapper {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin-top: 33px;
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  .submit_email_description_wrapper {
    font-size: 12px;
  }
}

.submit_email_input_wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.submit_email_input_label {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .submit_email_input_label {
    font-size: 12px;
  }
}

.submit_email_input {
  padding: 12px;
  border: 1px solid #ACACAC;
  border-radius: 5px;
  font-size: 16px;
}
.submit_email_input:focus-visible {
  outline-color: #0E2697;
}
@media screen and (max-width: 768px) {
  .submit_email_input {
    font-size: 12px;
  }
}

.submit_email_button_wrapper {
  margin-top: 30px;
}

.submit_email_button {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  background-color: #0E2697;
  color: #fff;
  width: 100%;
  padding: 13px 0px;
  text-align: center;
  border-radius: 5px;
  border: none;
  transition: all ease-in-out 0.2s;
}
.submit_email_button:hover {
  color: #fff;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .submit_email_button {
    font-size: 12px;
  }
}

.submit_email_wrapper {
  width: 290px;
}
@media screen and (max-width: 768px) {
  .submit_email_wrapper {
    width: 240px;
  }
}

.page_send_email_message {
  display: flex;
  margin-top: 15px;
  font-size: 12px;
  color: #000;
  line-height: 22px;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_send_email_message {
    font-size: 12px;
  }
}

.change_password_success,
.change_password_error {
  display: flex;
  color: #000;
  font-size: 12px;
  justify-content: center;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .change_password_success,
.change_password_error {
    font-size: 12px;
  }
}
.page_home_section_main_banner {
  margin-top: 143px;
}
@media screen and (max-width: 768px) {
  .page_home_section_main_banner {
    margin-top: 113px;
  }
}

.page_home_skills_container {
  background-image: url("../../assets/images/background-h.png");
  background-size: contain;
  background-repeat: repeat-x;
  padding: 70px 0px;
  margin: 10px 0px;
}

.skills_wrapper_content {
  display: flex;
  justify-content: space-between;
}

.skills_text_title {
  font-size: 25px;
  font-weight: bold;
  color: #000;
  margin-bottom: 0px;
}

.skills_text_description {
  font-size: 16px;
  color: #000;
}

.page_home_skills_wrapper {
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .page_home_skills {
    display: none;
  }
}

.skills_wrapper_image {
  max-width: 85px;
}

.skills_image {
  width: 100%;
}

.skills_wrapper_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page_home_learning {
  margin-top: 90px;
  padding-bottom: 30px;
  position: relative;
  overflow-x: hidden;
}

.page_home_learning_wrapper_top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page_home_learning_wrapper_top {
    flex-direction: column;
  }
}

.page_home_learning_content_title_top {
  position: relative;
  width: 33%;
  padding: 50px 125px 50px 0px;
}
@media screen and (max-width: 1540px) {
  .page_home_learning_content_title_top {
    padding: 50px 65px 50px 0px;
  }
}
@media screen and (max-width: 1366px) {
  .page_home_learning_content_title_top {
    padding: 50px 45px 50px 0px;
  }
}
@media screen and (max-width: 768px) {
  .page_home_learning_content_title_top {
    width: 100%;
  }
}

.learning_content_title_top_text {
  font-size: 42px;
  font-weight: bold;
  line-height: 70px;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .learning_content_title_top_text {
    font-size: 45px;
    line-height: 55px;
    margin-top: 40px;
    margin-left: 0;
  }
}

.learning_content_title_top_image {
  max-width: 100px;
  position: absolute;
  top: 0;
  right: 35px;
}
@media screen and (max-width: 1400px) {
  .learning_content_title_top_image {
    right: -35px;
  }
}
@media screen and (max-width: 1366px) {
  .learning_content_title_top_image {
    right: -25px;
  }
}
@media screen and (max-width: 768px) {
  .learning_content_title_top_image {
    right: 5px;
    top: 20px;
  }
}

.learning_content_title_top_image_blueCircle {
  max-width: 320px;
  position: absolute;
  top: 0;
  left: -80px;
  z-index: -10;
}
@media screen and (max-width: 768px) {
  .learning_content_title_top_image_blueCircle {
    left: -110px;
  }
}

.page_home_learning_content_courses_top {
  width: 55%;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .page_home_learning_content_courses_top {
    width: 100%;
    margin-top: 40px;
  }
}

.learning_content_courses_top_wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .learning_content_courses_top_wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

.learning_content_courses_top_one_content_title_wrapper,
.learning_content_courses_top_two_content_title_wrapper,
.learning_content_courses_top_three_content_title_wrapper,
.learning_content_courses_top_four_content_title_wrapper,
.learning_content_courses_top_five_content_title_wrapper,
.learning_content_courses_top_six_content_title_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.learning_content_courses_top_one,
.learning_content_courses_top_two,
.learning_content_courses_top_three,
.learning_content_courses_top_four,
.learning_content_courses_top_five,
.learning_content_courses_top_six {
  display: flex;
  gap: 15px;
}

.learning_content_courses_top_one_image,
.learning_content_courses_top_two_image,
.learning_content_courses_top_three_image,
.learning_content_courses_top_four_image,
.learning_content_courses_top_five_image,
.learning_content_courses_top_six_image {
  max-width: 60px;
}

.learning_content_courses_top_one_content_title_text,
.learning_content_courses_top_two_content_title_text,
.learning_content_courses_top_three_content_title_text,
.learning_content_courses_top_four_content_title_text,
.learning_content_courses_top_five_content_title_text,
.learning_content_courses_top_six_content_title_text {
  margin-bottom: 0px;
  font-size: 25px;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .learning_content_courses_top_one_content_title_text,
.learning_content_courses_top_two_content_title_text,
.learning_content_courses_top_three_content_title_text,
.learning_content_courses_top_four_content_title_text,
.learning_content_courses_top_five_content_title_text,
.learning_content_courses_top_six_content_title_text {
    font-size: 20px;
  }
}
.learning_content_courses_top_one_content_title_text span,
.learning_content_courses_top_two_content_title_text span,
.learning_content_courses_top_three_content_title_text span,
.learning_content_courses_top_four_content_title_text span,
.learning_content_courses_top_five_content_title_text span,
.learning_content_courses_top_six_content_title_text span {
  font-size: 20px;
  font-weight: 100;
  color: #000;
}

.learning_content_courses_top_one_content_description_text,
.learning_content_courses_top_two_content_description_text,
.learning_content_courses_top_three_content_description_text,
.learning_content_courses_top_four_content_description_text,
.learning_content_courses_top_five_content_description_text,
.learning_content_courses_top_six_content_description_text {
  font-size: 14px;
  color: #0E2697;
}

.learning_content_top_wrapper_one,
.learning_content_top_wrapper_two {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .learning_content_top_wrapper_one,
.learning_content_top_wrapper_two {
    gap: 30px;
  }
}

.page_home_learning_wrapper_bottom {
  display: flex;
  position: relative;
  justify-content: center;
  margin-top: 130px;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .page_home_learning_wrapper_bottom {
    width: 100%;
    flex-direction: column;
    margin-top: 90px;
    gap: 0px;
  }
}

.page_home_learning_background_image_circle {
  background-image: url("../images/circuloLaranja.png");
  background-repeat: no-repeat;
  background-size: 312px;
  width: 312px;
  height: 312px;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page_home_learning_background_image_circle {
    top: -40px;
    right: -210px;
    background-size: 258px;
  }
}

.page_home_learning_bottom_content_title_wrapper {
  width: 30%;
  display: flex;
  flex-direction: column;
  margin-left: 175px;
  margin-top: 30px;
  padding: 0px 30px;
}
@media screen and (max-width: 1400px) {
  .page_home_learning_bottom_content_title_wrapper {
    padding: 0px 27px;
  }
}
@media screen and (max-width: 768px) {
  .page_home_learning_bottom_content_title_wrapper {
    width: 100%;
    margin-left: 0px;
    padding: 0px;
    padding-right: 60px;
    margin-top: 0;
  }
}

.learning_bottom_content_title_image_background_circle {
  position: absolute;
  z-index: -10;
  max-width: 312px;
  right: 500px;
  top: -55px;
}

.learning_bottom_content_title_image_background_magnifying_glass {
  position: absolute;
  max-width: 140px;
  bottom: 10px;
  left: 240px;
}
@media screen and (max-width: 1540px) {
  .learning_bottom_content_title_image_background_magnifying_glass {
    max-width: 120px;
    left: 220px;
  }
}
@media screen and (max-width: 1366px) {
  .learning_bottom_content_title_image_background_magnifying_glass {
    max-width: 110px;
  }
}
@media screen and (max-width: 768px) {
  .learning_bottom_content_title_image_background_magnifying_glass {
    max-width: 120px;
    top: 114px;
    left: 73%;
    transform: rotate(95deg);
  }
}

.learning_bottom_content_title_text {
  font-size: 42px;
  font-weight: bold;
  line-height: 60px;
}
@media screen and (max-width: 1366px) {
  .learning_bottom_content_title_text {
    font-size: 39px;
    line-height: 54px;
  }
}
@media screen and (max-width: 768px) {
  .learning_bottom_content_title_text {
    font-size: 36px;
    line-height: 55px;
  }
}
@media screen and (max-width: 376px) {
  .learning_bottom_content_title_text {
    font-size: 43px;
  }
}
@media screen and (max-width: 361px) {
  .learning_bottom_content_title_text {
    font-size: 40px;
  }
}

.learning_bottom_content_description_text {
  font-size: 16px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .learning_bottom_content_description_text {
    font-size: 16px;
  }
}

.page_home_learning_bottom_content_description_wrapper {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  height: fit-content;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.2);
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .page_home_learning_bottom_content_description_wrapper {
    width: 100%;
    margin-top: 20px;
  }
}

.learning_bottom_content_description_top_wrapper {
  display: flex;
  justify-content: space-between;
}

.learning_bottom_description_item_wrapper,
.learning_bottom_content_description_top_wrapper {
  margin-bottom: 0px;
}

.learning_bottom_description_item_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.learning_bottom_description_item {
  font-size: 16px;
  color: #000;
}
.learning_bottom_description_item::marker {
  color: #F6BB1A;
}

.learning_bottom_content_description_bottom_wrapper {
  margin-top: 10px;
}

.learning_bottom_content_description_bottom_link {
  text-decoration: none;
}
.learning_bottom_content_description_bottom_link:hover {
  text-decoration: none;
}

.learning_bottom_content_description_bottom_link_text {
  color: #000;
  font-weight: bold;
  background-color: #F6BB1A;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  padding: 10px;
  transition: all ease-in-out 0.2s;
}
.learning_bottom_content_description_bottom_link_text:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}

.page_home_youtube_container {
  margin-top: 70px;
  background-color: #f7f7f7;
  padding: 40px 0px;
}
@media screen and (max-width: 768px) {
  .page_home_youtube_container {
    margin-top: 40px;
  }
}

.youtube_title_image_wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.youtube_title_image {
  max-width: 160px;
}
@media screen and (max-width: 768px) {
  .youtube_title_image {
    max-width: 120px;
  }
}

.youtube_title_text {
  font-size: 41px;
  font-weight: bold;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .youtube_title_text {
    font-size: 20px;
  }
}

.features_course_one_title {
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .features_course_one_title {
    font-size: 24px;
  }
}

.features_course_two_title {
  display: flex;
  align-items: center;
  font-size: 25px;
}
.features_course_two_title::before {
  content: "";
  display: flex;
  background-image: url("../images/estrelaDestaque.png");
  background-repeat: no-repeat;
  background-size: 40px;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .features_course_two_title {
    font-size: 24px;
  }
}

.our_store_haluli_image_wrapper {
  max-width: 790px;
}
@media screen and (max-width: 768px) {
  .our_store_haluli_image_wrapper {
    position: absolute;
    width: 340px;
    right: -270px;
  }
}

.our_store_haluli_image {
  width: 100%;
  filter: drop-shadow(0px 19px 14px rgba(0, 0, 0, 0.2));
}

.page_home_blog_haluli {
  display: block;
}
@media screen and (max-width: 768px) {
  .page_home_blog_haluli {
    display: none;
  }
}

.page_home_blog_haluli_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .page_home_blog_haluli_mobile {
    display: block;
    padding-left: 20px;
  }
}

.page_home_blog_haluli_container {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .page_home_blog_haluli_container {
    margin-top: 70px;
  }
}

.blog_haluli_content_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .blog_haluli_content_wrapper {
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 10px;
    padding-bottom: 15px;
  }
}

.blog_haluli_link_wrapper_content {
  text-decoration: none;
}
.blog_haluli_link_wrapper_content:hover {
  text-decoration: none;
}
.blog_haluli_link_wrapper_content:last-child {
  margin-right: 20px;
}

.blog_haluli_content_one_image,
.blog_haluli_content_two_image,
.blog_haluli_content_three_image {
  width: 100%;
  height: 190px;
  border-radius: 10px;
}

.blog_haluli_content_one,
.blog_haluli_content_two,
.blog_haluli_content_three {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  transition: all ease-in-out 0.2s;
}
.blog_haluli_content_one:hover,
.blog_haluli_content_two:hover,
.blog_haluli_content_three:hover {
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 1540px) {
  .blog_haluli_content_one,
.blog_haluli_content_two,
.blog_haluli_content_three {
    max-width: 390px;
  }
}
@media screen and (max-width: 1400px) {
  .blog_haluli_content_one,
.blog_haluli_content_two,
.blog_haluli_content_three {
    max-width: 350px;
  }
}
@media screen and (max-width: 1366px) {
  .blog_haluli_content_one,
.blog_haluli_content_two,
.blog_haluli_content_three {
    max-width: 340px;
  }
}
@media screen and (max-width: 768px) {
  .blog_haluli_content_one,
.blog_haluli_content_two,
.blog_haluli_content_three {
    min-width: 300px;
  }
}

.blog_haluli_title_text {
  font-size: 25px;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .blog_haluli_title_text {
    font-size: 16px;
  }
}

.blog_haluli_content_one_title,
.blog_haluli_content_two_title,
.blog_haluli_content_three_title {
  width: 75%;
  font-size: 20px;
  line-height: 25px;
  color: #0e2697;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .blog_haluli_content_one_title,
.blog_haluli_content_two_title,
.blog_haluli_content_three_title {
    width: 100%;
    font-size: 16px;
  }
}

.blog_haluli_content_one_data,
.blog_haluli_content_two_data,
.blog_haluli_content_three_data {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .blog_haluli_content_one_data,
.blog_haluli_content_two_data,
.blog_haluli_content_three_data {
    font-size: 14px;
  }
}

.blog_haluli_content_one_description,
.blog_haluli_content_two_description,
.blog_haluli_content_three_description {
  font-size: 14px;
  color: #000;
  line-height: 24px;
  margin-bottom: 10px;
}

.blog_haluli_content_one_link,
.blog_haluli_content_two_link,
.blog_haluli_content_three_link {
  font-size: 14px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .blog_haluli_content_one_link,
.blog_haluli_content_two_link,
.blog_haluli_content_three_link {
    font-size: 16px;
    margin-top: 10px;
    text-decoration: underline;
  }
}

.blog_haluli_link_wrapper {
  margin: 20px 0px;
}
@media screen and (max-width: 768px) {
  .blog_haluli_link_wrapper {
    margin: 10px 0px;
  }
}

.blog_haluli_link_text {
  font-size: 20px;
  color: #000;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .blog_haluli_link_text {
    font-size: 16px;
    text-decoration: underline;
  }
}

.page_home_our_store_haluli {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .page_home_our_store_haluli {
    overflow: hidden;
    margin-top: 70px;
  }
}

.our_store_haluli_content_wrapper {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .our_store_haluli_content_wrapper {
    justify-content: start;
    width: fit-content;
  }
}

.our_store_haluli_title_wrapper {
  width: 30%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .our_store_haluli_title_wrapper {
    width: 80%;
    justify-content: start;
  }
}

.our_store_haluli_title_content_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 69%;
}

.our_store_haluli_title_text {
  line-height: 65px;
  margin-bottom: 25px;
  font-size: 42px;
  font-weight: bold;
}
@media screen and (max-width: 1366px) {
  .our_store_haluli_title_text {
    font-size: 40px;
    line-height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .our_store_haluli_title_text {
    font-size: 30px;
    line-height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .our_store_haluli_content_image_wrapper {
    position: relative;
  }
}

.our_store_haluli_link {
  background-color: #0E2697;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  padding: 11px;
  transition: all ease-in-out 0.2s;
}
.our_store_haluli_link:hover {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}

.our_store_haluli_container {
  margin-bottom: 90px;
}

.owl-item {
  position: relative;
}

.slider_features_course_main_image_week {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -70px;
  left: -7px;
  width: 125px;
  height: 125px;
  border-radius: 100%;
  border: 2px solid #1f359e;
}

.slider_features_course_secondary_image_week {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -20px;
  left: 82px;
  width: 75px;
  height: 75px;
  border-radius: 100%;
  border: 2px solid #1f359e;
}

.slider_features_course_content_wrapper_week {
  margin-top: 75px;
  box-shadow: 1px 1px 9px 0px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  padding: 15px;
  position: relative;
  transition: all ease-in-out 0.2s;
}
.slider_features_course_content_wrapper_week:hover {
  box-shadow: 1px 1px 9px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}

.slider_features_course_title_content_wrapper_week {
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .owl-nav {
    margin: 5px !important;
  }
}
.owl-nav .owl-prev {
  width: 40px;
  height: 40px;
  box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.2);
  border-radius: 100% !important;
  position: absolute;
  top: 45%;
  left: -47px;
  background-color: #fff;
  transition: all ease-in-out 0.2s;
}
.owl-nav .owl-prev:hover {
  background-color: #fff !important;
  box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.3);
  transition: all ease-in-out 0.2s;
}
.owl-nav .owl-prev:focus {
  outline: none;
}
.owl-nav .owl-prev span {
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: -5px;
  left: 14px;
  color: #0E2697;
}
@media screen and (max-width: 768px) {
  .owl-nav .owl-prev {
    display: none !important;
  }
}
.owl-nav .owl-next {
  width: 40px;
  height: 40px;
  box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.2);
  border-radius: 100% !important;
  position: absolute;
  top: 45%;
  right: -52px;
  background-color: #fff !important;
  transition: all ease-in-out 0.2s;
}
.owl-nav .owl-next:hover {
  background-color: #fff !important;
  box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.3);
  transition: all ease-in-out 0.2s;
}
.owl-nav .owl-next:focus {
  outline: none;
}
.owl-nav .owl-next span {
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: -5px;
  left: 15px;
  color: #0E2697;
}
@media screen and (max-width: 768px) {
  .owl-nav .owl-next {
    position: absolute !important;
    right: 0px !important;
    z-index: 11;
  }
}
@media screen and (max-width: 768px) {
  .owl-nav {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 20px;
  }
}

.owl-stage {
  padding: 7px 0;
  display: flex;
  gap: 10px;
  margin-left: 10px;
}

.slider_features_course_title_text_week {
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
}

.slider_features_course_name_teacher_text_week {
  font-size: 14px;
  color: #fff;
  background-color: #112480;
  padding: 5px 13px;
  border-radius: 8px;
}

.slider_features_course_about_date_text_wrapper_content_week {
  display: flex;
  gap: 15px;
}

.slider_features_course_about_hours_wrapper_content_data {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: #f1f1f1;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
}

.slider_features_course_about_button_submit_wrapper_week {
  display: flex;
  flex-direction: column;
}

.slider_features_course_about_value_text {
  font-size: 16px;
  color: #0AB554;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .slider_features_course_about_value_text {
    font-size: 17px;
  }
}

.slider_features_course_about_button_submit_text_week {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #0E2697;
  text-align: center;
  border-radius: 4px;
  padding: 8px 0px;
  border: none;
  transition: all ease-in-out 0.2s;
}
.slider_features_course_about_button_submit_text_week:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}

.slider_features_course_about_available_wrapper_week {
  margin-top: 20px;
}

.features_courses_carousel_one_wrapper {
  position: relative;
}

.slider_features_course_about_available_text_week {
  font-size: 14px;
  color: #000;
}

.slider_features_course_about_available_quantity_text_week {
  font-size: 14px;
  font-weight: bold;
  color: #0E2697;
}

.slider_features_course_about_date_text_number_week {
  font-size: 14px;
  color: #0E2697;
  font-weight: bold;
}

.slider_features_course_about_hours_text_week {
  font-size: 14px;
  color: #000;
  font-weight: bold;
}

.page_home_section_main_banner .page_home_container .home_main_banner .owl-nav .owl-prev {
  left: 10px;
  top: 40%;
  background-color: #fff !important;
}
@media screen and (max-width: 768px) {
  .page_home_section_main_banner .page_home_container .home_main_banner .owl-nav .owl-prev {
    display: block !important;
  }
}
.page_home_section_main_banner .page_home_container .home_main_banner .owl-nav .owl-next {
  right: 10px !important;
  top: 40%;
  background-color: #fff !important;
}
.page_home_section_main_banner .page_home_container .home_main_banner .owl-stage-outer .owl-stage .owl-item img {
  min-height: 290px;
}
@media screen and (max-width: 768px) {
  .page_home_section_main_banner .page_home_container .home_main_banner .owl-stage-outer .owl-stage {
    padding-right: 10px;
  }
}

.slider_features_course_main_image_week_highlight {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 188px;
  border-radius: 7px 7px 0px 0px;
}

.slider_features_course_content_wrapper_week_highlight {
  margin-top: 139px;
  padding: 15px;
  border-radius: 7px;
  box-shadow: 1px 1px 9px 0px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  #highlight-courses-carousel {
    position: relative;
  }
  #highlight-courses-carousel::before {
    content: "";
    background-image: url("../images/sombraSlider.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 26%;
    height: 480px;
    bottom: 3px;
    top: 0px;
    right: -2px;
    z-index: 5;
  }
}

@media screen and (max-width: 768px) {
  #weekly-courses-carousel {
    position: relative;
  }
  #weekly-courses-carousel::before {
    content: "";
    background-image: url("../images/sombraSlider.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 26%;
    height: 480px;
    bottom: 3px;
    top: 0px;
    right: -2px;
    z-index: 5;
  }
}

.slider_features_course_one_wrapper {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .slider_features_course_one_wrapper {
    margin-top: 30px;
  }
}

.banner_mobile {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .banner_mobile {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .banner_desktop {
    display: none !important;
  }
}

.youtube_carousel_wrapper {
  display: flex;
  justify-content: center;
}

.slider_features_course_wrapper_cards_link {
  text-decoration: none;
}
.slider_features_course_wrapper_cards_link:hover {
  text-decoration: none;
}

.modal-content {
  border-radius: 10px !important;
}

.modal-dialog {
  margin: 11.75rem auto !important;
  position: relative;
}
@media screen and (max-width: 768px) {
  .modal-dialog {
    width: 90% !important;
  }
}

.modal-header {
  border: none !important;
}
@media screen and (max-width: 768px) {
  .modal-header {
    padding: 1rem 1rem 0.3rem 1rem;
  }
}
.modal-header .close {
  opacity: 1 !important;
  transition: all ease-in-out 0.2s;
}
.modal-header .close:hover {
  opacity: 0.8 !important;
  transition: all ease-in-out 0.2s;
}

.modal-footer {
  border: none !important;
  justify-content: space-between !important;
  padding: 0 1rem 1rem 1rem !important;
  flex-wrap: wrap;
}
.modal-footer .btn-secondary {
  width: 40%;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  padding: 12px 0px;
  border-radius: 4px;
  transition: all ease-in-out 0.2s;
}
.modal-footer .btn-secondary:hover {
  background-color: #fff;
  color: #000;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .modal-footer .btn-secondary {
    font-size: 14px;
  }
}
.modal-footer .btn-primary {
  width: 50%;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #0E2697;
  border: none;
  border-radius: 4px;
  padding: 12px 0px;
  transition: all ease-in-out 0.2s;
}
.modal-footer .btn-primary:hover {
  background-color: #0E2697;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .modal-footer .btn-primary {
    font-size: 14px;
  }
}

.modal-title {
  font-size: 25px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .modal-title {
    font-size: 20px;
  }
}

.modal_body_user_name_wrapper {
  display: flex;
  flex-direction: column;
}

.modal_user_name {
  font-size: 16px;
  color: #000;
}
.modal_user_name span {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .modal_user_name {
    font-size: 14px;
  }
}

.modal_user_name_description {
  font-size: 16px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .modal_user_name_description {
    font-size: 14px;
  }
}

.modal_body_course_content_wrapper {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0px;
}
@media screen and (max-width: 768px) {
  .modal_body_course_content_wrapper {
    margin-bottom: 0 !important;
  }
}

.modal_course_content_name {
  font-size: 16px;
  color: #0E2697;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .modal_course_content_name {
    font-size: 14px;
  }
}

.modal_body_course_content_descriptions {
  display: flex;
  justify-content: space-between;
}

.modal_body_course_content_data_start,
.modal_body_course_content_data_finish {
  font-size: 16px;
  color: #000;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .modal_body_course_content_data_start,
.modal_body_course_content_data_finish {
    font-size: 12px;
  }
}

.modal_body_course_content_hour_start {
  font-size: 16px;
  color: #000;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .modal_body_course_content_hour_start {
    font-size: 12px;
  }
}

.modal_icon_closed {
  content: "";
  background-image: url("../images/exitMenuMobile.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 15px;
  right: 15px;
}

.page_teacher {
  margin: 190px 0px 50px 0px;
}
@media screen and (max-width: 768px) {
  .page_teacher {
    margin: 150px 0px 50px 0px;
  }
}

.page_teacher_title_text {
  display: flex;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .page_teacher_title_text {
    margin-bottom: 40px;
  }
}

.page_teacher_cards_content {
  display: flex;
  flex-direction: column;
  max-width: 415px;
  padding: 15px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.1);
}

.page_teacher_card_name {
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.page_teacher_card_quatity_classes {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #8D8D8D;
  margin-bottom: 5px;
}

.page_teacher_card_description {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: #5A5A5A;
  margin-bottom: 10px;
  height: 65px;
  overflow: hidden;
}

.page_teacher_card_button_wrapper {
  display: flex;
}

.page_teacher_card_button {
  width: 100%;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  padding: 7px;
  text-align: center;
  border-radius: 6px;
  background-color: #0E2697;
  transition: all ease-in-out 0.2s;
}
.page_teacher_card_button:hover {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}

.page_teacher_wrapper_cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 43px;
}
@media screen and (max-width: 768px) {
  .page_teacher_wrapper_cards {
    grid-template-columns: 1fr;
    grid-row-gap: 23px;
  }
}

.page_teacher_card_image_wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.page_teacher_card_image {
  background-size: cover;
  background-repeat: no-repeat;
  width: 85px;
  height: 85px;
  border-radius: 100%;
  border: 2px solid #1f359e;
}

.page_teacher_images_background_one {
  content: "";
  background-image: url("../images/VectorLateral.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 135px;
  height: 165px;
  left: 2%;
  top: 20%;
  transform: rotate(-19deg);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page_teacher_images_background_one {
    display: none;
  }
}

.page_teacher_images_background_two {
  content: "";
  background-image: url("../images/VectorLateral.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 135px;
  height: 165px;
  right: 2%;
  top: 15%;
  transform: rotate(1deg);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page_teacher_images_background_two {
    display: none;
  }
}

.page_teacher_images_background_three {
  content: "";
  background-image: url("../images/VectorLateral.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 135px;
  height: 165px;
  right: 3%;
  top: 55%;
  transform: rotate(-35deg);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page_teacher_images_background_three {
    display: none;
  }
}

.site-main-blog {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  margin-top: 180px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .site-main-blog {
    flex-direction: column-reverse;
    margin-top: 140px;
    margin-bottom: 30px;
  }
}

.entry-title {
  display: flex;
  justify-content: start;
  font-size: 40px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .entry-title {
    font-size: 30px;
  }
}

.post-thumbnail {
  display: flex;
  justify-content: center;
}

.post_categories_entry_wrapper {
  width: 25%;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .post_categories_entry_wrapper {
    width: 100%;
    padding: 0px 20px;
  }
}
.post_categories_entry_wrapper .category {
  display: flex;
  flex-direction: column;
}
.post_categories_entry_wrapper .category .col-md-4 {
  max-width: 100%;
  padding: 0;
  border-top: solid 1px #6c6c6c;
}
.post_categories_entry_wrapper .category .col-md-4 a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0px;
}
@media screen and (max-width: 768px) {
  .post_categories_entry_wrapper .category .col-md-4 a {
    font-size: 12px;
  }
}
.post_categories_entry_wrapper .category .col-md-4 a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.post_categories_entry_title_text {
  font-size: 25px;
  color: #fc0;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .post_categories_entry_title_text {
    font-size: 18px;
  }
  .post_categories_entry_title_text::after {
    content: "";
    background-image: url("../images/arrowBlogMenu.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -1px;
    right: 0px;
  }
}

@media screen and (max-width: 768px) {
  .categories_entry_arrow_active::after {
    transform: rotate(180deg);
  }
}

.post_content_entry_wrapper {
  width: 75%;
  padding-right: 45px;
}
@media screen and (max-width: 768px) {
  .post_content_entry_wrapper {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.post_content_entry_wrapper p {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

.cat--blog-date-single {
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .cat--blog-date-single {
    font-size: 12px;
  }
}

.cat--blog-single {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #777;
  margin: 5px 0px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .cat--blog-single {
    font-size: 12px;
    margin-bottom: 15px;
  }
}

.entry-content p {
  color: #777;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .entry-content p {
    font-size: 14px;
  }
}
.entry-content p a {
  color: #fc0;
}

.post_categories_entry_content_wrapper {
  background-color: #2d136d;
  padding: 20px;
  border-radius: 7px;
  box-shadow: 1px 1px 11px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .post_categories_entry_content_wrapper {
    height: 50px;
    overflow: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
}

@media screen and (max-width: 768px) {
  .openCategory {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .entry-header {
    margin-top: 20px;
  }
}

.submit_email_modal {
  margin: 0 auto !important;
  padding-top: 10px;
  font-size: 14px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .submit_email_modal {
    font-size: 12px;
  }
}
.page_teacher_about_container {
  margin-top: 190px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .page_teacher_about_container {
    margin-top: 140px;
    margin-bottom: 0;
  }
}

.page_teacher_content_top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top {
    flex-direction: column;
  }
}

.page_teacher_content_top_left {
  max-width: 735px;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_left {
    background-color: #f7f7f7;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
  }
}

.page_teacher_content_top_left_wrapper_image_in_name {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_left_wrapper_image_in_name {
    gap: 20px;
  }
}

.page_teacher_content_top_left_image {
  background-repeat: no-repeat;
  background-size: contain;
  width: 142px;
  height: 142px;
  border-radius: 100%;
  border: solid 2px #0e2697;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_left_image {
    width: 82px;
    height: 82px;
  }
}

.page_teacher_content_top_left_name {
  margin-bottom: 0px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_left_name {
    font-size: 16px;
  }
}

.page_teacher_content_top_left_wrapper_description {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_left_wrapper_description {
    margin-top: 10px;
  }
}

.page_teacher_content_top_left_description {
  color: #000;
  font-size: 16px;
  line-height: 33px;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_left_description {
    font-size: 14px;
    margin: 0px;
    line-height: 26px;
  }
}

.page_teacher_content_top_right_courses_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  background-color: #f7f7f7;
  max-height: 751px;
  min-height: auto;
  width: 505px;
  overflow-y: scroll;
}
.page_teacher_content_top_right_courses_wrapper::-webkit-scrollbar {
  width: 5px;
}
.page_teacher_content_top_right_courses_wrapper::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #e0e0e0;
}
@media screen and (max-width: 1400px) {
  .page_teacher_content_top_right_courses_wrapper {
    width: 445px;
  }
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_wrapper {
    flex-direction: row;
    background-color: #fff;
    overflow: hidden;
    overflow-x: scroll;
    padding: 10px 0px;
    gap: 15px;
    height: auto;
    width: 100%;
  }
  .page_teacher_content_top_right_courses_wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .page_teacher_content_top_right_courses_wrapper::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #fff;
  }
}

.page_teacher_content_top_right_courses_wrapper_card {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  max-width: 460px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_wrapper_card {
    min-width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 3px;
    margin-bottom: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  }
  .page_teacher_content_top_right_courses_wrapper_card:last-child {
    margin-right: 3px;
  }
}

.page_teacher_content_top_right_courses_name_text {
  font-size: 17px;
  font-weight: 600;
  padding-left: 90px;
  padding-right: 20px;
  margin-bottom: 20px;
  position: relative;
}
.page_teacher_content_top_right_courses_name_text::after {
  content: "";
  background-image: url("../images/vector.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  top: -4px;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_name_text {
    padding-left: 75px;
    padding-right: 15px;
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 10px;
  }
}

.page_teacher_content_top_right_title_content {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_title_content {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.page_teacher_content_bottom_title {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_bottom_title {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 30px;
    display: none;
  }
}

.page_teacher_content_bottom_title_mobile {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  display: none;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_bottom_title_mobile {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}

.page_teacher_content_top_right_course_image_primary {
  background-repeat: no-repeat;
  background-size: contain;
  width: 70px;
  height: 70px;
  position: absolute;
  border-radius: 100%;
  border: solid 1px #0e2697;
  top: 6px;
  left: 4px;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_course_image_primary {
    width: 55px;
    height: 55px;
    top: 11px;
    left: 11px;
    border: solid 1px #0e2697;
  }
}

.page_teacher_content_top_right_course_image_secondary {
  background-repeat: no-repeat;
  background-size: contain;
  width: 45px;
  height: 45px;
  position: absolute;
  border-radius: 100%;
  border: solid 1px #0e2697;
  top: 40px;
  left: 48px;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_course_image_secondary {
    width: 35px;
    height: 35px;
    top: 39px;
    left: 42px;
    border: solid 1px #0e2697;
  }
}

.page_teacher_content_top_right_courses_content_wrapper {
  padding-left: 90px;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_content_wrapper {
    padding-left: 0;
  }
}

.page_teacher_content_top_right_courses_content_text_hours_wrapper {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_content_text_hours_wrapper {
    margin-bottom: 0px;
  }
}

.page_teacher_content_top_right_courses_content_text_hours_text_title {
  font-size: 13px;
  color: #000;
}

.page_teacher_content_top_right_courses_content_text_hours_content_one_text {
  font-size: 13px;
  color: #0e2697;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_content_text_hours_content_one_text {
    font-size: 12px;
  }
}

.page_teacher_content_top_right_courses_content_text_hours_content_two_text {
  font-size: 13px;
  color: #000;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_content_text_hours_content_two_text {
    font-size: 12px;
  }
}

.page_teacher_content_top_right_courses_content_text_hours_content_wrapper_wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_content_text_hours_content_wrapper_wrapper {
    margin-top: -4px;
  }
}

.page_teacher_content_top_right_courses_content_text_vacancies_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 4px;
}

.page_teacher_content_top_right_courses_content_text_vacancies_content_text {
  font-size: 13px;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_content_text_vacancies_content_text {
    font-size: 12px;
  }
}

.page_teacher_content_top_right_courses_content_text_vacancies_content_text_quantity {
  font-size: 13px;
  font-weight: bold;
  color: #0e2697;
}

.page_teacher_content_top_right_courses_button_wrapper {
  margin-top: 10px;
}

.page_teacher_content_top_right_courses_button_link {
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background-color: #0e2697;
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 5px;
  padding: 6px 0px;
  transition: all ease-in-out 0.2s;
  border: none !important;
}
.page_teacher_content_top_right_courses_button_link:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: all ease-in-out 0.2s;
  border: none !important;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_button_link {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_content_text_hours_content_two_wrapper {
    margin-top: -7px;
  }
}

.other_teacher_slider_cards_wrapper {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  padding: 15px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.1);
}

.other_teacher_slider_cards_name {
  display: flex;
  justify-content: center;
  font-size: 16px;
  color: #000;
  font-weight: bold;
}

.other_teacher_slider_cards_image_wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.other_teacher_slider_cards_image {
  background-size: contain;
  background-repeat: no-repeat;
  width: 85px;
  height: 85px;
  border-radius: 100%;
  border: 2px solid #1f359e;
}
@media screen and (max-width: 768px) {
  .other_teacher_slider_cards_image {
    width: 70px;
    height: 70px;
  }
}

.other_teacher_slider_cards_classes_quantity {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #8D8D8D;
  margin-bottom: 5px;
}

.other_teacher_slider_cards_description {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: #5A5A5A;
  margin-bottom: 10px;
  height: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.other_teacher_slider_cards_link {
  width: 100%;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  padding: 7px;
  text-align: center;
  border-radius: 6px;
  background-color: #0E2697;
  transition: all ease-in-out 0.2s;
}
.other_teacher_slider_cards_link:hover {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .other_teacher_slider_cards_link {
    font-size: 14px;
  }
}

.other_teacher_slider_content_wrapper .owl-prev,
.other_teacher_slider_content_wrapper .owl-next {
  top: 35% !important;
}
@media screen and (max-width: 768px) {
  .other_teacher_slider_content_wrapper .owl-prev,
.other_teacher_slider_content_wrapper .owl-next {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .other_teacher_slider_content_wrapper .owl-dots {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .page_teacher_content_slider_wrapper {
    display: none;
  }
}

.page_teacher_content_slider_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_slider_mobile {
    display: block;
    padding-left: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .other_teacher_slider_wrapper_slider_mobile {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    overflow: hidden;
    overflow-x: scroll;
    padding: 10px 0px;
    gap: 15px;
  }
  .other_teacher_slider_wrapper_slider_mobile::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .other_teacher_slider_wrapper_slider_mobile::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .other_teacher_slider_cards_wrapper_slider_mobile {
    min-width: 85%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 20px;
    margin-left: 3px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
  }
  .other_teacher_slider_cards_wrapper_slider_mobile:last-child {
    margin-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .page_teacher_content_top_right {
    display: none;
  }
}

.page_teacher_content_top_right_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_mobile {
    display: block !important;
    padding-left: 20px;
  }
}

.page_teacher_content_top_right_courses_wrapper_card_mobile {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  max-width: 460px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page_teacher_content_top_right_courses_wrapper_card_mobile {
    min-width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 3px;
    margin-bottom: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  }
  .page_teacher_content_top_right_courses_wrapper_card_mobile:last-child {
    margin-right: 10px;
  }
}

.taxonomy_course_teacher_message {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #000;
}