/* media queries */
/* device */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

:root {
  --height_header: 100px;
}
@media (max-width: 767px) {
  :root {
    --height_header: 70px;
  }
}

@font-face {
  font-family: "SVN-Gilroy Light";
  font-style: normal;
  font-weight: normal;
  src: url(/fonts/SVNGilroy_Light.ttf);
}
@font-face {
  font-family: "SVN-Gilroy Medium";
  font-style: normal;
  font-weight: normal;
  src: url(/fonts/SVN-Gilroy_Medium.otf);
}
@font-face {
  font-family: "SVN-Gilroy SemiBold";
  font-style: normal;
  font-weight: normal;
  src: url(/fonts/SVN-Gilroy_Bold.ttf);
}
@font-face {
  font-family: "SVN-Gilroy Bold";
  font-style: normal;
  font-weight: normal;
  src: url(/fonts/SVN-Gilroy-XBold.ttf);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #000000;
  transition: 0.25s linear;
}

a:hover, a:active, a:focus {
  color: #FFDD5B;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title_primary {
  overflow-wrap: break-word;
  color: #000000;
  font-family: "SVN-Gilroy Light";
  font-weight: 400;
}

body, html {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  line-height: 1.5;
  color: #686663;
  font-family: "SVN-Gilroy Medium";
  position: relative;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

section {
  padding: 60px 0;
}
@media (max-width: 1100px) {
  section {
    padding: 60px 0;
  }
}

.text_center {
  text-align: center;
}

.btn_primary {
  border-radius: 8px;
}
.btn_primary a, .btn_primary button {
  font-family: "SVN-Gilroy Bold";
  border-radius: inherit;
  background: #FFDD5B;
  color: #000;
  padding: 8px 24px;
  font-size: 16px;
  text-transform: uppercase;
  border: 0.75px solid #000000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: all 0.25s linear;
}
.btn_primary a .icon, .btn_primary button .icon {
  width: 30px;
  height: 30px;
  position: relative;
  transition: all 0.25s linear;
}
.btn_primary a:hover, .btn_primary button:hover {
  background: #FAA819;
  border-color: #FAA819;
}
.btn_primary a:hover .icon, .btn_primary button:hover .icon {
  transform: translateX(10px);
}

.btn_viewmore {
  width: 50px;
  height: 50px;
  padding: 13px;
  background: #FFDD5B;
  border-radius: 8px;
  border: 0.75px solid #000000;
  transition: all 0.25s linear;
  display: inline-block;
}
.btn_viewmore img {
  width: 100%;
  object-fit: contain;
}

.btn_viewmore:hover {
  background: #FAA819;
}

main {
  position: relative;
}

.text-center {
  text-align: center;
}

.section_heading {
  position: relative;
  display: inline-block;
  margin: auto;
  width: 100%;
}
.section_heading .title {
  font-size: 45px;
  font-family: "SVN-Gilroy Bold";
  color: #000;
  line-height: 1.3;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 650px) {
  .section_heading .title {
    font-size: 30px;
  }
}
@media (max-width: 567px) {
  .section_heading .title {
    font-size: 32px;
  }
}
.section_heading .sub {
  color: #FAA819;
  text-transform: capitalize;
  font-size: 25px;
  display: inline-block;
  margin-bottom: 10px;
  font-family: "SVN-Gilroy Bold";
}

.swiper-button-next, .swiper-button-prev {
  width: 50px !important;
  height: 53px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  position: absolute;
  top: 58%;
  transition: all 0.25s linear;
  filter: brightness(1.5) drop-shadow(0 0 6px wheat) saturate(2);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  filter: brightness(1.5) drop-shadow(0 0 26px wheat) saturate(2);
}

.scroll-up {
  position: fixed;
  right: 10px;
  bottom: 100px;
  z-index: 999;
}

.scroll-up a.page-scroll {
  transition: all 0.25s linear;
}
.scroll-up a.page-scroll img {
  width: 40px;
  height: 40px;
  position: relative;
  transform: rotate(-90deg);
  object-fit: contain;
  transition: all 0.25s linear;
}

.scroll-up a.page-scroll:hover img {
  filter: brightness(2) saturate(2) drop-shadow(0 0 20px wheat);
}

.toolbar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 66px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(126.3deg, rgba(255, 255, 255, 0.85) 62%, rgba(255, 255, 255, 0.646) 127.91%);
  box-shadow: 8px 12px 32px rgba(12, 15, 134, 0.1);
  backdrop-filter: blur(50px);
  z-index: 999;
}
.toolbar .item {
  padding: 5px 0;
}
.toolbar .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 6px;
  transition: all 0.25s linear;
  padding: 5px;
  min-width: 55px;
}
.toolbar .item a img {
  width: 22px;
  height: 22px;
  object-fit: cover;
}
.toolbar .item a span {
  font-size: 10px;
  font-family: "SVN-Gilroy Light";
}
.toolbar .item a:hover {
  background-color: #F8F2E6;
  color: #000;
}

.zalo {
  position: fixed;
  right: 10px;
  bottom: 30px;
  display: inline-block;
  border-radius: 100rem;
  background: #FFFFFF;
  box-shadow: 8px 12px 32px rgba(12, 15, 134, 0.1);
  backdrop-filter: blur(107.5px);
  z-index: 999;
}
.zalo a {
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.zalo a img {
  max-width: 55px;
}

::-webkit-scrollbar {
  width: 7px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10rem;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::selection {
  background: #FFDD5B;
  color: #0C0C24;
  -webkit-text-fill-color: #0C0C24;
}

::-webkit-scrollbar-thumb:hover {
  background: #FAA819;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  text-align: center;
  background-color: #fff;
  border-bottom: 2px solid #C8BFBB;
}
.header_wrapper {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: var(--height_header);
  padding-top: 10px;
  padding-bottom: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
}
@media (max-width: 767px) {
  .header_wrapper {
    height: var(--height_header);
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header .logo {
  height: 100%;
  display: inline-block;
  width: 110px;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.header .logo img {
  object-fit: contain;
  width: auto;
  height: 100%;
}
.header .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}
.header .actions .btn_register {
  color: #FAA819;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "SVN-Gilroy Bold";
}
.header .actions .btn_register a {
  color: inherit;
}
.header .actions .btn_register:hover {
  color: #3C1E1F;
}
.header .actions .dropdown_menu {
  background: #FFFFFF;
  border: 0.75px solid #000000;
  border-radius: 8px;
  padding: 10px 15px;
  min-width: fit-content;
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  transition: all 0.25s linear;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.header .actions .dropdown_menu .dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .actions .dropdown_menu .dropdown .dropdown_item a {
  padding: 10px 15px;
  border-radius: 8px;
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  text-align: left;
}
.header .actions .dropdown_menu .dropdown .dropdown_item:hover {
  background-color: #F8F2E6;
}
.header .actions .dropdown_menu.active {
  opacity: 1;
  z-index: 100;
  visibility: visible;
}
.header .actions::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background-color: #686663;
}

.btn_toggle_menu {
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.btn_toggle_menu span {
  pointer-events: none;
  display: block;
  position: relative;
  width: 27px;
  height: 2px;
  background-color: #020202;
  transition: all 0.25s linear;
}
.btn_toggle_menu span:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  left: 0;
  top: -10px;
  background-color: inherit;
  transition: all 0.25s linear;
}
.btn_toggle_menu span:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  right: 0;
  top: 10px;
  background-color: inherit;
  transition: all 0.25s linear;
}

.btn_toggle_menu:hover span:before {
  width: 27px;
}
.btn_toggle_menu:hover span:after {
  width: 27px;
}

.header_mobile .logo {
  z-index: 2;
  max-width: 162px;
}
.header_mobile .btn_toggle_menu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  height: 60px;
  cursor: pointer;
  z-index: 9999;
}
.header_mobile .wrap_menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 100%;
  background-color: #fff;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 20px;
  padding-top: 95px;
  z-index: 1;
  transition: all 0.25s linear;
}
.header_mobile .wrap_menu .menu_list, .header_mobile .wrap_menu .menu_list2 {
  flex-direction: column;
  align-items: start;
  width: 100%;
  max-width: 400px;
  position: relative;
}
.header_mobile .wrap_menu .menu_list .menu_item, .header_mobile .wrap_menu .menu_list2 .menu_item {
  width: 100%;
}
.header_mobile .wrap_menu .menu_list .menu_item a, .header_mobile .wrap_menu .menu_list2 .menu_item a {
  padding: 12px 0;
  display: block;
}
.header_mobile .wrap_menu .menu_list2 {
  margin-top: 20px;
  padding-top: 20px;
}
.header_mobile .wrap_menu .menu_list2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  background-color: #686663;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.header_mobile .wrap_menu.active {
  left: 0;
}
.header_mobile .actions {
  padding-top: 30px;
  margin-bottom: 30px;
}
.header_mobile .actions::before {
  display: none;
}
.header_mobile .menu_list {
  text-align: left;
}

.menu_list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 50px;
}
@media (max-width: 1500px) {
  .menu_list {
    gap: 0 40px;
  }
}
.menu_list .menu_item {
  position: relative;
}
.menu_list .menu_item .menu_link {
  text-decoration: none;
  color: #14171F;
  text-transform: uppercase;
  font-family: "SVN-Gilroy Bold";
  font-weight: 800;
  font-size: 16px;
  padding: 20px 0;
  position: relative;
}
@media (max-width: 1500px) {
  .menu_list .menu_item .menu_link {
    font-size: 14px;
  }
}
.menu_list .menu_item.active * {
  color: #FAA819;
  font-weight: 600;
}
.menu_list .menu_item.active .menu_link::before {
  opacity: 0.9;
}
.menu_list .menu_item:hover .menu_link {
  color: #FAA819;
}
.menu_list .menu_item:hover .menu_link::before {
  opacity: 0.9;
}

.btn_toggle_menu.active span {
  background-color: transparent;
}
.btn_toggle_menu.active span:before {
  width: 27px;
  transform: translateY(10px) rotate(45deg);
  background-color: #686663;
}
.btn_toggle_menu.active span:after {
  transform: translateY(-10px) rotate(-45deg);
  width: 27px;
  background-color: #686663;
}

@media (max-width: 1100px) {
  .header_desktop {
    display: none;
  }
}

.header_mobile {
  display: none;
}
@media (max-width: 1100px) {
  .header_mobile {
    display: block;
  }
}

.frame_bottom {
  position: absolute;
  width: 86%;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  filter: brightness(0.9) saturate(1.2);
}
@media (max-width: 1500px) {
  .frame_bottom {
    bottom: -17%;
  }
}
@media (max-width: 1100px) {
  .frame_bottom {
    bottom: -14%;
  }
}
@media (max-width: 650px) {
  .frame_bottom {
    bottom: -10%;
  }
}

.hero {
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  background-image: url(/images/img_home/hero/bg_squares.svg);
  background-repeat: repeat;
  background-size: contain;
  background-position: center;
  top: 23px;
}
@media (max-width: 1100px) {
  .hero {
    top: 0;
  }
}
.hero .line {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1100px) {
  .hero .line {
    max-width: 50%;
  }
}
.hero .circle_decor {
  position: absolute;
  bottom: 10%;
  left: 20%;
}
@media (max-width: 1100px) {
  .hero .circle_decor {
    max-width: 50%;
  }
}
.hero .container {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.hero .container .hero_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: inherit;
  position: relative;
  top: 140px;
}
@media (max-width: 1100px) {
  .hero .container .hero_content {
    top: var(--height_header);
  }
}
.hero .container .hero_content .part {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}
@media (max-width: 1100px) {
  .hero .container .hero_content .part {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.hero .container .hero_content .part:first-child {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .hero .container .hero_content .part:first-child {
    top: 30px;
  }
}
.hero .container .hero_content .part:first-child .sub {
  font-family: "SVN-Gilroy semiBold";
  padding: 8px 20px;
  background-color: #FFDD5B;
  color: #3C1E1F;
  font-style: normal;
  font-weight: 800;
  font-size: 25px;
  line-height: 1;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  border-radius: 8px;
  margin-bottom: 20px;
}
.hero .container .hero_content .part:first-child .sub:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid #FFDD5B;
  bottom: -10px;
  left: 10px;
  transform: rotate(-45deg);
}
.hero .container .hero_content .part:first-child .title_primary {
  font-family: "SVN-Gilroy Bold";
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 540px;
  text-shadow: 1px 1px 0px #FFDD5B;
  margin-bottom: 100px;
}
@media (max-width: 1100px) {
  .hero .container .hero_content .part:first-child .title_primary {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.hero .container .hero_content .part:first-child .title_primary strong {
  text-transform: uppercase;
  font-size: inherit;
}
.hero .container .part:nth-child(2) img.desk {
  transform: scale(1.2);
}
@media (max-width: 1100px) {
  .hero .container .part:nth-child(2) img.desk {
    transform: scale(1);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .hero .container .part:nth-child(2) img.desk {
    display: none;
  }
}
.hero .container .part:nth-child(2) img.mob {
  display: none;
  transform: scale(1.2);
}
@media (max-width: 767px) {
  .hero .container .part:nth-child(2) img.mob {
    display: block;
  }
}
.hero .container .part3 {
  display: none;
  min-height: 300px;
  margin-top: 100px;
}
@media (max-width: 1100px) {
  .hero .container .part3 {
    display: block;
  }
}
@media (max-width: 567px) {
  .hero .container .part3 {
    margin-top: 80px;
  }
}
@media (max-width: 1100px) {
  .hero .container .part3 .slider_events.mob {
    display: block;
  }
}

.slider_events {
  position: relative;
  width: 100%;
}
.slider_events .title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  font-family: "SVN-Gilroy Bold";
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .slider_events .title {
    font-size: 24px;
  }
}
.slider_events .wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.slider_events .wrap::before {
  content: "";
  position: absolute;
  width: 35%;
  height: 100%;
  background: linear-gradient(270deg, #F7F5EF 8.53%, rgba(247, 245, 239, 0) 100%);
  z-index: 9;
  pointer-events: none;
  right: 0;
  bottom: 0;
}
.slider_events .swiper_slide_hrc {
  max-width: 500px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .slider_events .swiper_slide_hrc {
    max-width: 650px;
  }
}
.slider_events .swiper_slide_hrc .img_featured {
  width: 220px;
  height: 130px;
  border: 0.75px solid #000;
  border-radius: 7px;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .slider_events.desk {
    display: none;
  }
}

.slider_events .swiper-button-next:after, .slider_events .swiper-button-prev:after {
  font-size: 0;
  color: black;
}
.slider_events .swiper-button-next, .slider_events .swiper-button-prev {
  right: 0;
  top: -35px;
}
@media (max-width: 1100px) {
  .slider_events .swiper-button-next, .slider_events .swiper-button-prev {
    top: -25px;
  }
}
.slider_events .swiper-button-prev {
  right: 70px;
  left: unset !important;
}
.slider_events .swiper-button-prev {
  background-image: url("/images/iconsvg/left.svg") !important;
  width: 30px !important;
}
@media (max-width: 1100px) {
  .slider_events .swiper-button-prev {
    width: 22px !important;
  }
}
.slider_events .swiper-button-next {
  background-image: url("/images/iconsvg/right.svg") !important;
  width: 30px !important;
}
@media (max-width: 1100px) {
  .slider_events .swiper-button-next {
    width: 22px !important;
  }
}

.courses .swiper_courses {
  overflow: hidden;
  padding: 50px 5px 0px 5px;
}
.courses .swiper_courses .course {
  background: #FFFFFF;
  border: 0.75px solid #000000;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.courses .swiper_courses .course .img_featured {
  position: relative;
  top: -45px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 0.75px solid #000000;
  border-radius: 8px;
}
@media (max-width: 650px) {
  .courses .swiper_courses .course .img_featured {
    height: auto;
  }
}
.courses .swiper_courses .course .content {
  margin-top: -25px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.courses .swiper_courses .course .content .title {
  font-size: 28px;
  color: #000;
  margin-bottom: 17px;
  font-family: "SVN-Gilroy SemiBold";
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  flex-shrink: 0;
  position: relative;
  padding-left: 23px;
}
@media (max-width: 767px) {
  .courses .swiper_courses .course .content .title {
    font-size: 24px;
  }
}
.courses .swiper_courses .course .content .title:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100rem;
  background-color: #FAA819;
  left: 0;
  top: 18px;
}
.courses .swiper_courses .course .content .wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.courses .swiper_courses .course .content .boxed {
  max-height: 110px;
  overflow-y: scroll;
}
.courses .swiper_courses .course .content .desc {
  flex: 1;
  font-family: "SVN-Gilroy Medium";
  font-size: 18px;
}
.courses .swiper_courses .course .content .content_bottom {
  flex-shrink: 0;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-family: "SVN-Gilroy Bold";
  width: 100%;
}
.courses .swiper_courses .course .content .content_bottom .vote {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}

.courses_content {
  position: relative;
}
.courses_content .swiper-slide:nth-child(odd) {
  margin-top: 30px;
}
.courses_content .swiper-button-next, .courses_content .swiper-button-prev {
  top: -20px;
}
@media (max-width: 450px) {
  .courses_content .swiper-button-next, .courses_content .swiper-button-prev {
    top: 0;
  }
}
.courses_content .swiper-button-next {
  background-image: url(/images/iconsvg/right.svg) !important;
  width: 30px !important;
}
@media (max-width: 767px) {
  .courses_content .swiper-button-next {
    width: 22px !important;
  }
}
.courses_content .swiper-button-prev {
  background-image: url(/images/iconsvg/left.svg) !important;
  width: 30px !important;
  right: 100px;
  left: unset;
}
@media (max-width: 767px) {
  .courses_content .swiper-button-prev {
    right: 70px;
    width: 22px !important;
  }
}
.courses_content .swiper-button-next:after, .courses_content .swiper-button-prev:after {
  font-size: 0;
  color: black;
}

.about_us {
  background-color: #F8F2E6;
}
.about_us .wrapper_about {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.about_us .part:first-child {
  flex: 0 0 calc(40% - 30px);
  max-width: 40%;
}
@media (max-width: 991px) {
  .about_us .part:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.about_us .part:first-child .desc {
  font-size: 18px;
  margin-bottom: 55px;
  max-width: 385px;
}
.about_us .part:last-child {
  flex: 0 0 calc(60% - 30px);
  max-width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .about_us .part:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.about_us .part:last-child .wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about_us .part:last-child .wrap .item {
  max-width: 354px;
  padding: 20px;
  border: 0.75px solid #000000;
  background-color: #fff;
  border-radius: 8px;
}
.about_us .part:last-child .wrap .item .icon {
  width: 75px;
  height: 75px;
  border-radius: 100rem;
  background-color: #FFDD5B;
  padding: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -35px;
}
.about_us .part:last-child .wrap .item .title {
  font-size: 28px;
  margin-bottom: 15px;
  font-family: "SVN-Gilroy Bold";
  position: relative;
  padding-left: 23px;
}
@media (max-width: 767px) {
  .about_us .part:last-child .wrap .item .title {
    font-size: 24px;
  }
}
.about_us .part:last-child .wrap .item .title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: 17px;
  background-color: #FAA819;
  border-radius: 100rem;
}

.teachers {
  position: relative;
}
.teachers .decor {
  position: absolute;
  width: 270px;
  height: auto;
  bottom: 0;
  right: 0;
}
.teachers .teachers_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.teachers .teachers_wrapper .part:first-child {
  flex: 0 0 calc(25% - 30px);
  max-width: 25%;
}
.teachers .teachers_wrapper .part:first-child .desc {
  max-width: 300px;
  margin-bottom: 57px;
}
@media (max-width: 1100px) {
  .teachers .teachers_wrapper .part:first-child .desc {
    max-width: 600px;
  }
}
@media (max-width: 1100px) {
  .teachers .teachers_wrapper .part:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.teachers .teachers_wrapper .part:last-child {
  flex: 0 0 calc(75% - 30px);
  max-width: 75%;
}
@media (max-width: 1100px) {
  .teachers .teachers_wrapper .part:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.teachers .wrap {
  position: relative;
}
.teachers .swiper_teachers {
  overflow: hidden;
  padding-top: 137px;
}
@media (max-width: 1100px) {
  .teachers .swiper_teachers {
    padding-top: 0;
  }
}
.teachers .swiper_teachers .swiper-wrapper {
  padding-bottom: 25px;
}
.teachers .swiper_teachers .teacher {
  height: 420px;
  padding: 20px;
  border-radius: 8px 8px 8px 8px;
  border: 0.75px solid #000000;
  background-color: #fff;
  transition: all 0.25s linear;
}
@media (max-width: 1100px) {
  .teachers .swiper_teachers .teacher {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .teachers .swiper_teachers .teacher {
    height: auto;
  }
}
.teachers .swiper_teachers .teacher .img_featured {
  width: 100%;
}
.teachers .swiper_teachers .teacher .title {
  font-size: 28px;
  font-family: "SVN-Gilroy SemiBold";
  margin-top: 25px;
  margin-bottom: 15px;
  padding-left: 23px;
  position: relative;
}
@media (max-width: 767px) {
  .teachers .swiper_teachers .teacher .title {
    font-size: 24px;
  }
}
.teachers .swiper_teachers .teacher .title:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100rem;
  background-color: #FAA819;
  left: 0;
  top: 18px;
}
.teachers .swiper_teachers .teacher .content {
  transition: all 0.25s linear;
  position: relative;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .teachers .swiper_teachers .teacher .content {
    opacity: 1;
    visibility: visible;
    transform: unset;
  }
}
.teachers .swiper_teachers .teacher .content .desc {
  font-family: "SVN-Gilroy Medium";
  padding-left: 20px;
  margin-bottom: -20px;
  font-size: 18px;
  color: #000;
  max-height: 85px;
  overflow-y: hidden;
}
.teachers .swiper_teachers .teacher .content .content_bottom {
  position: relative;
  bottom: -30px;
}
@media (max-width: 767px) {
  .teachers .swiper_teachers .teacher .content .content_bottom {
    bottom: -43px;
  }
}
.teachers .swiper_teachers .teacher .content .content_bottom .btn_primary a {
  padding: 10px 24px;
}
.teachers .swiper_teachers .teacher:hover {
  height: 532px;
  background-color: #FFDD5B;
  border-radius: 8px 8px 68px 8px;
}
.teachers .swiper_teachers .teacher:hover .content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .teachers .swiper_teachers .teacher:hover {
    height: auto;
  }
}
.teachers .swiper_teachers .swiper-slide-active .teacher {
  height: 532px;
  background-color: #FFDD5B;
  border-radius: 8px 8px 68px 8px;
}
@media (max-width: 1100px) {
  .teachers .swiper_teachers .swiper-slide-active .teacher {
    height: 595px;
  }
}
@media (max-width: 767px) {
  .teachers .swiper_teachers .swiper-slide-active .teacher {
    height: auto;
  }
}
.teachers .swiper_teachers .swiper-slide-active .teacher .content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.teachers .swiper_teachers .swiper-slide {
  transition: all 0.2s linear;
}
@media (max-width: 567px) {
  .teachers .swiper_teachers .swiper-slide {
    opacity: 0.5;
  }
}
@media (max-width: 567px) {
  .teachers .swiper_teachers .swiper-slide.swiper-slide-active {
    opacity: 1;
  }
}
.teachers .swiper_teachers .swiper-button-next, .teachers .swiper_teachers .swiper-button-prev {
  top: 75px;
}
@media (max-width: 1100px) {
  .teachers .swiper_teachers .swiper-button-next, .teachers .swiper_teachers .swiper-button-prev {
    top: -50px;
  }
}
@media (max-width: 567px) {
  .teachers .swiper_teachers .swiper-button-next, .teachers .swiper_teachers .swiper-button-prev {
    display: none;
  }
}
.teachers .swiper_teachers .swiper-button-next {
  background-image: url(/images/iconsvg/right.svg) !important;
  width: 30px !important;
}
.teachers .swiper_teachers .swiper-button-prev {
  background-image: url(/images/iconsvg/left.svg) !important;
  width: 30px !important;
  right: 100px;
  left: unset;
}
.teachers .swiper_teachers .swiper-button-next:after, .teachers .swiper_teachers .swiper-button-prev:after {
  font-size: 0;
  color: black;
}

.students {
  background-color: #F7F5EF;
}
.students .wrap {
  position: relative;
}
.students .wrap::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  background: linear-gradient(270deg, rgba(247, 245, 239, 0.5294117647) 8.53%, rgba(247, 245, 239, 0) 100%);
  z-index: 9;
  pointer-events: none;
  right: 0;
  bottom: 0;
}
.students .swiper_students {
  overflow: hidden;
}
.students .swiper_students .swiper-slide {
  transition: all 0.2s linear;
}
@media (max-width: 567px) {
  .students .swiper_students .swiper-slide {
    opacity: 0.5;
  }
}
@media (max-width: 567px) {
  .students .swiper_students .swiper-slide.swiper-slide-active {
    opacity: 1;
  }
}
.students .swiper_students .student {
  background-color: transparent;
}
@media (max-width: 567px) {
  .students .swiper_students .student {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.students .swiper_students .student .boxed {
  display: inline-block;
  padding: 5px;
  background-color: #FFDD5B;
  border-radius: 8px;
}
.students .swiper_students .student .img_featured {
  background-color: #FFDD5B;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #000;
  position: relative;
}
.students .swiper_students .student .horizontal {
  width: 100%;
  height: 213px;
}
.students .swiper_students .student .vertical {
  width: 210px;
  height: 272px;
}
.students .swiper_students .student .content {
  padding: 20px;
  margin-top: 20px;
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  max-width: 360px;
}
.students .swiper_students .student .content .title {
  font-size: 28px;
  font-family: "SVN-Gilroy SemiBold";
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .students .swiper_students .student .content .title {
    font-size: 24px;
  }
}
.students .swiper_students .student .content .title:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #FAA819;
  border-radius: 100rem;
  left: 0;
  top: 18px;
}
.students .swiper_students .student .content .info {
  list-style: none;
}
.students .swiper_students .student .content .info li {
  margin-bottom: 5px;
  color: #000;
}
.students .swiper_students .student .content::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
  top: -12px;
  left: 10px;
  transform: rotate(-135deg);
}
.students .swiper_students .swiper-button-next, .students .swiper_students .swiper-button-prev {
  top: -50px;
}
@media (max-width: 567px) {
  .students .swiper_students .swiper-button-next, .students .swiper_students .swiper-button-prev {
    display: none;
  }
}
.students .swiper_students .swiper-button-next {
  background-image: url(/images/iconsvg/right.svg) !important;
  width: 30px !important;
}
.students .swiper_students .swiper-button-prev {
  background-image: url(/images/iconsvg/left.svg) !important;
  width: 30px !important;
  right: 100px;
  left: unset;
}
.students .swiper_students .swiper-button-next:after, .students .swiper_students .swiper-button-prev:after {
  font-size: 0;
  color: black;
}

.testimo {
  background-color: #FFDD5B;
  position: relative;
  padding-bottom: 0;
}
.testimo .line_left {
  position: absolute;
  max-width: 400px;
  left: 0;
  top: 30px;
  height: auto;
  pointer-events: none;
}
.testimo .line_right {
  position: absolute;
  max-width: 400px;
  top: 30px;
  right: 0;
  height: auto;
  pointer-events: none;
}
.testimo .wrap_slide {
  position: relative;
}
.testimo .wrap_slide::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  background: linear-gradient(270deg, rgba(253, 213, 97, 0.9019607843) 8.53%, rgba(247, 245, 239, 0) 100%);
  z-index: 9;
  pointer-events: none;
  right: -10px;
  bottom: 0;
}
.testimo .swiper_testimo {
  overflow: hidden;
  padding: 0 5px;
}
.testimo .swiper_testimo .swiper-slide {
  background-color: #FFDD5B;
  padding: 20px;
  background: #FFFFFF;
  border: 0.75px solid #000000;
  border-radius: 8px;
}
.testimo .swiper_testimo .swiper-slide .head {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
.testimo .swiper_testimo .swiper-slide .head .avatar {
  width: 50px;
  height: 50px;
  border-radius: 100rem;
}
.testimo .swiper_testimo .swiper-slide .head .avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.testimo .swiper_testimo .swiper-slide .head .info .name {
  font-size: 28px;
  font-family: "SVN-Gilroy SemiBold";
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
@media (max-width: 767px) {
  .testimo .swiper_testimo .swiper-slide .head .info .name {
    font-size: 24px;
  }
}
.testimo .swiper_testimo .swiper-slide .head .info .name a {
  outline: none;
  cursor: unset;
}
.testimo .swiper_testimo .swiper-slide .head .info .name a:hover {
  color: inherit;
}
.testimo .swiper_testimo .swiper-slide .head .info .course {
  color: #FAA819;
  font-family: "SVN-Gilroy SemiBold";
  font-size: 18px;
}
.testimo .swiper_testimo .swiper-slide .boxed {
  overflow-y: scroll;
  max-height: 159px;
}
.testimo .swiper_testimo .swiper-slide .boxed .desc {
  font-family: "SVN-Gilroy Medium";
  font-size: 18px;
  margin-top: 24px;
}
.testimo .swiper_testimo .swiper-pagination {
  top: 105%;
}
.testimo .swiper_testimo .swiper-pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid black;
}
.testimo .swiper_testimo .swiper-pagination .swiper-pagination-bullet-active {
  background: black;
}
.testimo .swiper_testimo .swiper-button-next, .testimo .swiper_testimo .swiper-button-prev {
  top: -40px;
}
.testimo .swiper_testimo .swiper-button-next {
  background-image: url(/images/iconsvg/right.svg) !important;
  width: 30px !important;
}
@media (max-width: 767px) {
  .testimo .swiper_testimo .swiper-button-next {
    width: 22px !important;
  }
}
.testimo .swiper_testimo .swiper-button-prev {
  background-image: url(/images/iconsvg/left.svg) !important;
  width: 30px !important;
  right: 100px;
  left: unset;
}
@media (max-width: 767px) {
  .testimo .swiper_testimo .swiper-button-prev {
    right: 70px;
    width: 22px !important;
  }
}
.testimo .swiper_testimo .swiper-button-next:after, .testimo .swiper_testimo .swiper-button-prev:after {
  font-size: 0;
  color: black;
}
.testimo .totals {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  padding: 38px 56px;
  border-radius: 15px;
  width: 100%;
  left: 0;
  z-index: 10;
  box-shadow: 8px 12px 32px rgba(12, 15, 134, 0.1);
  position: relative;
}
@media (max-width: 1100px) {
  .testimo .totals {
    position: relative;
    bottom: unset;
    margin-top: 50px;
    margin-bottom: 30px;
    gap: 30px;
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .testimo .totals {
    padding: 30px 0;
  }
}
.testimo .totals .item {
  flex: 0 0 25%;
  max-width: 25%;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #000;
  padding: 0 40px;
  z-index: 1;
}
@media (max-width: 1100px) {
  .testimo .totals .item {
    flex: 0 0 calc(50% - 30px);
    max-width: 50%;
    padding: 40px 40px;
  }
}
@media (max-width: 767px) {
  .testimo .totals .item {
    justify-content: center;
    align-items: center;
    text-emphasis: center;
    padding: 20px;
  }
}
@media (max-width: 650px) {
  .testimo .totals .item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.testimo .totals .item .icon {
  width: 70px;
  height: 70px;
  padding: 15px;
  border-radius: 100rem;
  background-color: #FFDD5B;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimo .totals .item .icon img {
  width: 100%;
  object-fit: contain;
  max-width: 30px;
}
.testimo .totals .item .numb {
  font-size: 40px;
  font-family: "SVN-Gilroy Bold";
  color: inherit;
}
@media (max-width: 767px) {
  .testimo .totals .item .numb {
    font-size: 30px;
    margin: 10px 0;
  }
}
@media (max-width: 567px) {
  .testimo .totals .item .numb {
    font-size: 25px;
  }
}
.testimo .totals .item .sub {
  font-size: 18px;
  font-family: "SVN-Gilroy Medium";
  color: inherit;
}
.testimo .totals .item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 60%;
  background-color: #686663;
  bottom: 0;
}
@media (max-width: 1100px) {
  .testimo .totals .item::before {
    display: none;
  }
}
.testimo .totals .item:first-child::before {
  display: none;
}
.testimo .wrap_totals {
  position: relative;
  bottom: -100px;
  display: inline-block;
  width: 100%;
}
@media (max-width: 1100px) {
  .testimo .wrap_totals {
    bottom: unset;
  }
}
.testimo .wrap_totals::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background-image: linear-gradient(to bottom, #FFDD5B 50%, #fff 50%);
  z-index: 0;
}

.news {
  background-color: #fff;
  position: relative;
}
@media (max-width: 1100px) {
  .news {
    padding-top: 60px;
  }
}
.news .news_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
  flex-wrap: wrap;
  gap: 30px;
}
.news .news_content .column {
  flex: 0 0 calc(50% - 30px);
  max-width: 50%;
}
@media (max-width: 1100px) {
  .news .news_content .column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.news .news_content .column:first-child .post_large {
  position: relative;
  border-radius: 7px;
}
@media (max-width: 767px) {
  .news .news_content .column:first-child .post_large {
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 10px;
  }
}
.news .news_content .column:first-child .post_large img {
  width: 100%;
}
.news .news_content .column:first-child .post_large .boxed {
  width: calc(100% - 20px);
  padding: 20px;
  border-radius: 8px;
  background-color: #FFDD5B;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.news .news_content .column:first-child .post_large .boxed .title {
  font-size: 28px;
  font-family: "SVN-Gilroy SemiBold";
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  transition: all 0.15s ease-in-out;
}
@media (max-width: 767px) {
  .news .news_content .column:first-child .post_large .boxed .title {
    font-size: 24px;
  }
}
.news .news_content .column:first-child .post_large:hover {
  box-shadow: rgba(0, 0, 0, 0.26) 0px 1px 10px;
}
.news .news_content .column:first-child .post_large:hover .title {
  color: #fff;
}
.news .news_content .column:last-child {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  gap: 30px;
}
.news .news_content .column:last-child .post {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 32px;
  transition: all 0.25s linear;
  border-radius: 7px;
  padding: 0;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .news .news_content .column:last-child .post {
    flex-wrap: nowrap;
  }
}
@media (max-width: 650px) {
  .news .news_content .column:last-child .post {
    gap: 20px;
  }
}
.news .news_content .column:last-child .post img {
  border-radius: 7px;
  width: 185px;
  height: 135px;
  object-fit: cover;
}
@media (max-width: 650px) {
  .news .news_content .column:last-child .post img {
    width: 130px;
    height: 130px;
  }
}
.news .news_content .column:last-child .post .boxed .title {
  font-size: 28px;
  font-family: "SVN-Gilroy SemiBold";
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  transition: all 0.15s ease-in-out;
}
@media (max-width: 767px) {
  .news .news_content .column:last-child .post .boxed .title {
    font-size: 24px;
  }
}
@media (max-width: 650px) {
  .news .news_content .column:last-child .post .boxed .title {
    font-size: 20px;
  }
}
.news .news_content .column:last-child .post .boxed .date {
  font-family: "SVN-Gilroy Medium";
  font-size: 18px;
}
.news .news_content .column:last-child .post:hover {
  box-shadow: rgba(0, 0, 0, 0.26) 0px 1px 10px;
}
.news .news_content .column:last-child .post:hover .title {
  color: #FFDD5B;
}
.news .btn_primary {
  margin-top: 50px;
}

.partners {
  background-color: #FFDD5B;
  position: relative;
}
.partners .bg_img {
  position: absolute;
  width: 60%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 2;
  object-fit: cover;
}
.partners .container {
  z-index: 4;
}
.partners .partners_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 50px;
  gap: 20px 0;
}
@media (max-width: 1100px) {
  .partners .partners_content {
    padding: 30px;
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  .partners .partners_content {
    gap: 10px 0;
  }
}
.partners .partners_content .partner {
  max-width: 280px;
  height: 100px;
  padding: 20px;
  transition: all 0.25s linear;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 650px) {
  .partners .partners_content .partner {
    max-width: 200px;
    padding: 0;
  }
}
.partners .partners_content .partner a {
  text-align: center;
  padding: 20px;
}
@media (max-width: 650px) {
  .partners .partners_content .partner a {
    padding: 0;
  }
}
.partners .partners_content .partner a img {
  margin-left: auto;
  margin-right: auto;
}
.partners .partners_content .partner:hover {
  box-shadow: rgba(0, 0, 0, 0.36) 0px 1px 4px;
}

.partners:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(71.66deg, #FDD561 53.43%, rgba(247, 245, 239, 0) 99.67%);
  mix-blend-mode: normal;
  z-index: 3;
}

.sec_breadcrumb {
  min-height: calc(228px + var(--height_header));
  background-color: #fff;
  padding: 30px 0;
  position: relative;
  top: var(--height_header);
}
.sec_breadcrumb .breadcrumb {
  list-style: none;
  display: flex;
  margin-bottom: 20px;
}
.sec_breadcrumb .breadcrumb .breadcrumb-item {
  position: relative;
  padding: 0 10px;
  color: #686663;
}
.sec_breadcrumb .breadcrumb .breadcrumb-item a {
  color: inherit;
  font-size: 16px;
  transition: all 0.25s linear;
}
.sec_breadcrumb .breadcrumb .breadcrumb-item a:hover {
  color: #FFDD5B;
}
.sec_breadcrumb .breadcrumb .breadcrumb-item::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url(/images/iconsvg/chevron-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.sec_breadcrumb .breadcrumb .breadcrumb-item.active {
  color: #000;
}
.sec_breadcrumb .breadcrumb .breadcrumb-item.active::before {
  display: none;
}
.sec_breadcrumb .breadcrumb .breadcrumb-item:first-child {
  padding-left: 0;
}

.title_page {
  font-size: 45px;
  color: #000;
  font-family: "SVN-Gilroy Bold";
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 767px) {
  .title_page {
    font-size: 35px;
  }
}

.tabs {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .tabs {
    margin-bottom: 60px;
    justify-content: center;
  }
}
.tabs .tab {
  margin-bottom: 5px;
}
.tabs .tab button {
  line-height: 1;
  padding: 10px 20px;
  border-radius: 100rem;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 16px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .tabs .tab button {
    padding: 8px 15px;
  }
}
.tabs .tab button:hover {
  color: #FAA819;
}
.tabs .tab button.active {
  background-color: #FFDD5B;
  color: #000;
}
.tabs .tab button.active:hover {
  color: #FAA819;
}

.content_tab {
  display: none;
}

.content_tab.active {
  display: block;
}

.content_tab .post_large {
  background-color: #F8F2E6;
  position: relative;
  padding: 40px 0;
}
.content_tab .post_large .decor {
  position: absolute;
  width: 235px;
}
.content_tab .post_large .decor_left {
  left: 0;
  top: 10%;
}
.content_tab .post_large .decor_right {
  right: 0;
  bottom: 0;
}

.post {
  background-color: #fff;
  padding: 20px 40px 20px 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 55px;
}
@media (max-width: 991px) {
  .post {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
}
.post .post_image {
  width: 611px;
  height: 447px;
  border-radius: 7px;
}
@media (max-width: 991px) {
  .post .post_image {
    width: 100%;
    height: auto;
  }
}
.post .post_content .title {
  font-size: 28px;
  font-family: "SVN-Gilroy Bold";
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  margin-bottom: 20px;
  transition: all 0.15s ease-in-out;
}
@media (max-width: 767px) {
  .post .post_content .title {
    font-size: 24px;
  }
}
.post .post_content .date {
  color: #686663;
  margin-bottom: 25px;
}
.post .post_content .date img {
  display: inline-block;
  position: relative;
  top: 2px;
  margin-right: 8px;
}
.post .post_content .desc {
  margin-bottom: 40px;
}
.post .post_content .btn_primary {
  text-align: right;
}

.post:hover .title {
  color: #FAA819;
}

.cat {
  color: #000;
  border-radius: 100rem;
  background-color: #FFDD5B;
  text-transform: uppercase;
  padding: 12px 18px;
  line-height: 1;
  display: inline-block;
  font-family: "SVN-Gilroy Bold";
  font-size: 16px;
  margin-bottom: 25px;
}

.posts .posts_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(415px, 1fr));
  gap: 20px;
}
@media (max-width: 567px) {
  .posts .posts_wrapper {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
.posts .posts_wrapper .post {
  background: linear-gradient(126.3deg, #FFFFFF 62%, rgba(255, 255, 255, 0.76) 127.91%);
  box-shadow: 8px 12px 32px rgba(12, 15, 134, 0.1);
  backdrop-filter: blur(107.5px);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 25px;
  padding: 20px;
}
.posts .posts_wrapper .post .post_image {
  width: 100%;
  height: 272px;
  object-fit: cover;
  flex-shrink: 0;
}
.posts .posts_wrapper .post .post_content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.posts .posts_wrapper .post .post_content .cat {
  height: 40px;
  flex-shrink: 0;
  width: fit-content;
}
.posts .posts_wrapper .post .post_content .wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
.posts .posts_wrapper .post .post_content a {
  display: inline-block;
}
.posts .posts_wrapper .post .post_content a .title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
@media (max-width: 767px) {
  .posts .posts_wrapper .post .post_content a .title {
    font-size: 24px;
  }
}
.posts .posts_wrapper .post .post_content .post_content__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.posts .posts_wrapper .post .post_content .post_content__bottom .date {
  margin-bottom: 0;
}

.pagination {
  width: 400px;
  height: 60px;
  border-radius: 9px;
  overflow: hidden;
}
@media (max-width: 567px) {
  .pagination {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.pagination, .pagination__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.pagination__button {
  width: 35px;
  height: 35px;
}
.pagination__button .icon_prev {
  width: 15px;
  height: 15px;
  object-fit: contain;
  position: relative;
  transform: rotate(180deg);
}
.pagination__button .icon_next {
  width: 15px;
  height: 15px;
  object-fit: contain;
  position: relative;
}

.pagination__item > button, .pagination__button {
  border: none;
  outline: none;
  stroke: none;
  box-shadow: none;
  cursor: pointer;
  border-radius: 9px;
  background: transparent;
  color: #686663;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination__item > button[data-level=target] {
  color: #000;
}

.pagination__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 260px;
  height: 50px;
  border-radius: 9px;
  margin: 0 5px;
  overflow: hidden;
}
@media (max-width: 567px) {
  .pagination__list {
    width: 210px;
  }
}

.pagination__item {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  font-size: 1.1rem;
}
@media (max-width: 567px) {
  .pagination__item {
    width: 40px;
  }
}

.pagination__item > button {
  width: 45px;
  height: 45px;
  font-size: 18px;
}

@keyframes pagination-move-prev {
  from, 0% {
    transform: translateX(25px);
  }
  50% {
    transform: translateX(-5px);
  }
  to, 100% {
    transform: translateX(0px);
  }
}
@keyframes pagination-move-next {
  from, 0% {
    transform: translateX(-25px);
  }
  50% {
    transform: translateX(5px);
  }
  to, 100% {
    transform: translateX(0px);
  }
}
@keyframes pagination-move-top {
  from, 0% {
    transform: translateY(-25px);
  }
  50% {
    transform: translateY(10px);
  }
  to, 100% {
    transform: translateY(0px);
  }
}
.main_kb .sec_breadcrumb {
  min-height: calc(50px + var(--height_header));
  position: relative;
  left: 0;
}

.hero_kb {
  position: relative;
  padding-top: 0;
  min-height: 100vh;
  padding-bottom: 0;
}
.hero_kb .hero_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  min-height: 75vh;
  flex-wrap: wrap;
}
.hero_kb .hero_content .part {
  flex: 0 0 calc(50% - 15px);
  max-width: 50%;
  position: relative;
}
@media (max-width: 1100px) {
  .hero_kb .hero_content .part {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.hero_kb .hero_content .part .boxed {
  position: relative;
  display: inline-block;
  overflow: unset;
}
@media (max-width: 1100px) {
  .hero_kb .hero_content .part .boxed .hero_kb_image {
    transform: scale(0.8);
  }
}
.hero_kb .hero_content .part .boxed::before {
  content: "";
  position: absolute;
  left: 20%;
  top: 50%;
  border-radius: 27px;
  background: linear-gradient(133.12deg, #FDD561 13.48%, rgba(253, 213, 97, 0.68) 99.08%);
  z-index: -1;
  width: 130%;
  height: 130%;
  transform: translateY(-50%);
}
@media (max-width: 1100px) {
  .hero_kb .hero_content .part .boxed::before {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1100px) {
  .hero_kb .hero_content .part:first-child {
    margin: 30px 0;
  }
}
.hero_kb .hero_content .part:first-child .title_page {
  margin-bottom: 30px;
}
.hero_kb .hero_content .part:first-child ul {
  max-width: 525px;
}
.hero_kb .hero_content .part:first-child ul li {
  list-style: none;
  margin-bottom: 20px;
  position: relative;
  padding-left: 50px;
}
.hero_kb .hero_content .part:first-child ul li:before {
  content: attr(data);
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 33px;
  color: #000;
  transform: translateY(-50%);
  font-family: "SVN-Gilroy SemiBold";
}
.hero_kb .hero_content .part:first-child .totals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFDD5B;
  border-radius: 8px;
  padding: 20px 40px 15px 40px;
  max-width: 580px;
  gap: 35px;
  border: 1px solid;
  position: relative;
  flex-wrap: wrap;
}
.hero_kb .hero_content .part:first-child .totals .item {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 35px);
  max-width: 50%;
  position: relative;
}
@media (max-width: 650px) {
  .hero_kb .hero_content .part:first-child .totals .item {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
}
.hero_kb .hero_content .part:first-child .totals .item .score {
  display: flex;
  justify-content: start;
  gap: 15px;
  align-items: center;
}
@media (max-width: 650px) {
  .hero_kb .hero_content .part:first-child .totals .item .score {
    justify-content: center;
  }
}
.hero_kb .hero_content .part:first-child .totals .item .score strong {
  font-size: 40px;
  font-family: "SVN-Gilroy Bold";
  color: #000;
}
.hero_kb .hero_content .part:first-child .totals .item .score img {
  width: 40px;
  height: 40px;
  padding: 3px;
  background: black;
  border-radius: 100rem;
}
.hero_kb .hero_content .part:first-child .totals .item:first-child {
  border-right: 2px solid #7c7c7c;
}
@media (max-width: 567px) {
  .hero_kb .hero_content .part:first-child .totals .item:first-child {
    border: none;
  }
}
.hero_kb .hero_content .part:first-child .totals::before {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: 2px;
  top: 2px;
  background-color: black;
  z-index: -1;
  position: absolute;
  border-radius: inherit;
}
.hero_kb .hero_content .part:last-child {
  position: relative;
}
.hero_kb .hero_content .part:last-child .line {
  position: absolute;
  top: 0;
  right: -100px;
  max-width: 500px;
  max-height: 500px;
  z-index: -1;
}
.hero_kb .hero_content .part:last-child .decor {
  position: absolute;
  top: 5%;
  left: -80px;
  max-width: 150px;
  object-fit: cover;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero_kb .hero_content .part:last-child .decor {
    top: 14%;
    left: 0;
    z-index: 2;
  }
}

.hero_kb .line_hero {
  position: absolute;
  top: -10%;
  left: -13%;
  transform: rotate(17deg);
  z-index: -1;
  width: 30%;
  height: 38%;
}

.courses_kb .swiper_courses_kb {
  overflow: hidden;
  padding-left: 2px;
}
.courses_kb .swiper_courses_kb .swiper-slide:nth-child(odd) {
  margin-top: unset;
}
.courses_kb .course {
  background: #FFFFFF;
  border: 0.75px solid #000000;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
}
.courses_kb .course .top {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  gap: 28px;
}
.courses_kb .course .top img {
  width: 54px;
  height: 54px;
  border-radius: 100rem;
  object-fit: cover;
}
.courses_kb .course .top .name {
  font-size: 28px;
  font-family: "SVN-Gilroy Bold";
  text-transform: uppercase;
}
.courses_kb .course .top .price {
  font-family: "SVN-Gilroy semiBold";
  color: #FAA819;
}
.courses_kb .course .center li {
  list-style: none;
  font-family: "SVN-Gilroy Medium";
  margin-bottom: 10px;
  color: #000;
}
.courses_kb .course .center li .field {
  color: #686663;
}
.courses_kb .course .center li:last-child {
  margin-bottom: 0;
}
.courses_kb .course .bottom {
  width: 100%;
  text-align: center;
}
.courses_kb .course .bottom .btn {
  position: relative;
}
.courses_kb .course .bottom .btn a {
  display: flex;
  position: relative;
  z-index: 1;
}
.courses_kb .course .bottom .btn::before {
  content: "";
  width: 100%;
  height: 100%;
  left: -2px;
  top: 2px;
  background-color: black;
  z-index: 0;
  position: absolute;
  border-radius: inherit;
}
.courses_kb .course .bottom .btn .icon {
  width: 20px;
  height: 20px;
}
.courses_kb .course .bottom .slot {
  margin-top: 10px;
  font-size: 16px;
}

.intro_course {
  background-image: url(/images/img_koreabasic/dots.svg);
  background-repeat: repeat;
  background-size: contain;
  background-position: top left;
  position: relative;
}
.intro_course::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #F8F2E6;
}
.intro_course .part:first-child {
  flex: 0 0 calc(20% - 30px);
  max-width: 20%;
}
@media (max-width: 991px) {
  .intro_course .part:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.intro_course .part:last-child {
  flex-grow: 1;
  max-width: unset;
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.accordion .label {
  background-color: #fff;
  color: #fff;
  width: 100%;
  padding: 20px;
  position: relative;
}
.accordion .label .translate_left {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: "SVN-Gilroy semiBold";
  border-radius: 16px;
  position: relative;
  transform: translateX(-30px);
  overflow: unset;
}
@media (max-width: 767px) {
  .accordion .label .translate_left {
    transform: unset;
    padding-right: 35px;
    flex-wrap: wrap;
  }
}
.accordion .label .translate_left::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 53%;
  width: 98%;
  height: 1.5px;
  background-color: transparent;
  transform: translateX(-50%);
}
.accordion .label .hightlight {
  color: #000;
  font-size: 18px;
  padding: 7px 16px;
  background-color: #FFDD5B;
  border-radius: 3px;
  min-width: fit-content;
}
.accordion .label .title {
  font-size: 28px;
  font-family: "SVN-Gilroy SemiBold";
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
@media (max-width: 1100px) {
  .accordion .label .title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .accordion .label .title {
    font-size: 20px;
  }
}
.accordion .label::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  background-image: url(/images/iconsvg/chevron-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 25px;
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.5s linear;
}
@media (max-width: 767px) {
  .accordion .label::before {
    width: 18px;
    height: 18px;
    right: 18px;
  }
}
.accordion .label:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100rem;
  border: 1px solid black;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .accordion .label:after {
    width: 30px;
    height: 30px;
  }
}
.accordion .content {
  background-color: #fff;
  overflow: hidden;
  overflow-y: auto;
  height: 0;
  position: relative;
  transition: all 0.25s linear;
  padding: 0 20px;
  border-radius: 0 0 16px 16px;
}
.accordion .content li {
  margin-bottom: 10px;
}
.accordion .content::-webkit-scrollbar {
  display: none;
}
.accordion .box.active .label {
  border-radius: 16px 16px 0 0;
}
.accordion .box.active .content {
  height: fit-content;
  padding: 15px 40px;
}
.accordion .box.active .label .translate_left::before {
  background-color: rgb(199, 198, 198);
}
.accordion .box.active .label::before {
  transform: translateY(-50%) rotate(450deg);
}

.outline_course {
  background-image: url(/images/img_koreabasic/square.svg);
}
.outline_course .accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.outline_course .accordion .label {
  background-color: #fff;
  color: #fff;
  width: 100%;
  padding: 20px;
  position: relative;
  border-radius: 20px;
}
.outline_course .accordion .label .translate_left {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: "SVN-Gilroy semiBold";
  border-radius: 16px;
  position: relative;
  transform: none;
  overflow: unset;
}
.outline_course .accordion .label .translate_left::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 53%;
  width: 98%;
  height: 1.5px;
  background-color: transparent;
  transform: translateX(-50%);
}
.outline_course .accordion .label .title {
  font-size: 28px;
  font-family: "SVN-Gilroy SemiBold";
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
@media (max-width: 1100px) {
  .outline_course .accordion .label .title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .outline_course .accordion .label .title {
    font-size: 20px;
  }
}
.outline_course .accordion .label .time {
  color: #000;
  padding: 7px 15px;
  background-color: #FEF2D0;
  border-radius: 20px;
  color: #FAA819;
}
.outline_course .accordion .label::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  background-image: url(/images/iconsvg/chevron-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 25px;
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.5s linear;
}
@media (max-width: 767px) {
  .outline_course .accordion .label::before {
    width: 18px;
    height: 18px;
    right: 18px;
  }
}
.outline_course .accordion .label:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100rem;
  border: 1px solid black;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .outline_course .accordion .label:after {
    width: 30px;
    height: 30px;
  }
}
.outline_course .accordion .content {
  background-color: #fff;
  overflow: hidden;
  overflow-y: auto;
  height: 0;
  position: relative;
  transition: all 0.25s linear;
  padding: 0 20px;
  border-radius: 0 0 16px 16px;
}
.outline_course .accordion .content li {
  margin-bottom: 10px;
}
.outline_course .accordion .content::-webkit-scrollbar {
  display: none;
}
.outline_course .accordion .box2.active .label {
  border-radius: 16px 16px 0 0;
}
.outline_course .accordion .box2.active .content {
  height: fit-content;
  padding: 15px 40px;
}
.outline_course .accordion .box2.active .label .translate_left::before {
  background-color: rgb(199, 198, 198);
}
.outline_course .accordion .box2.active .label::before {
  transform: translateY(-50%) rotate(450deg);
}
.outline_course .viewmore {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: black;
  font-family: "SVN-Gilroy Bold";
}

.testimokb {
  padding: 60px 0;
}

.footer {
  background-color: #F8F2E6;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 100px 0 15px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .footer {
    padding: 50px 0 15px 0;
  }
}
.footer .line_f {
  position: absolute;
  max-width: 400px;
  height: auto;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.footer .wrap_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.footer .wrap_content .part {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1100px) {
  .footer .wrap_content .part {
    align-items: flex-start;
  }
}
@media (max-width: 650px) {
  .footer .wrap_content .part {
    gap: 0;
  }
}
.footer .wrap_content .part .item:nth-child(1) {
  flex: 0 0 calc(33% - 30px);
  max-width: 33%;
}
@media (max-width: 991px) {
  .footer .wrap_content .part .item:nth-child(1) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.footer .wrap_content .part .item:nth-child(1) .wrap {
  max-width: 330px;
  position: relative;
  top: -58px;
}
@media (max-width: 767px) {
  .footer .wrap_content .part .item:nth-child(1) .wrap {
    top: unset;
  }
}
.footer .wrap_content .part .item:nth-child(2) {
  flex: 0 0 calc(22% - 30px);
  max-width: 22%;
}
@media (max-width: 991px) {
  .footer .wrap_content .part .item:nth-child(2) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.footer .wrap_content .part .item:nth-child(3) {
  flex: 0 0 calc(22% - 30px);
  max-width: 22%;
}
@media (max-width: 991px) {
  .footer .wrap_content .part .item:nth-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.footer .wrap_content .part .item:nth-child(4) {
  flex: 0 0 calc(22% - 30px);
  max-width: 22%;
}
@media (max-width: 1100px) {
  .footer .wrap_content .part .item:nth-child(4) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.footer .wrap_content .part .item {
  flex: 0 0 calc(25% - 100px);
  max-width: 25%;
}
@media (max-width: 1100px) {
  .footer .wrap_content .part .item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  .footer .wrap_content .part .item {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.footer .wrap_content .part .item .boxed_img {
  max-width: 150px;
  margin-bottom: 20px;
}
.footer .wrap_content .part .item .boxed_img img {
  width: 100%;
}
.footer .wrap_content .part .item .desc {
  text-align: justify;
  margin-bottom: 30px;
  color: #000;
}
.footer .wrap_content .part .item .title {
  font-size: 18px;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #000;
  font-family: "SVN-Gilroy Bold";
  font-weight: 600;
}
@media (max-width: 767px) {
  .footer .wrap_content .part .item .title {
    width: 100%;
    text-align: left;
    text-decoration: underline;
  }
}
.footer .wrap_content .part .item .list_item_footer {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .footer .wrap_content .part .item .list_item_footer {
    width: 100%;
  }
}
.footer .wrap_content .part .item .list_item_footer li {
  margin-bottom: 15px;
  transition: all 0.25s linear;
}
.footer .wrap_content .part .item .list_item_footer li * {
  display: flex;
  flex-wrap: nowrap;
  font-size: 16px;
  font-family: "SVN-Gilroy Bold";
  color: #000;
}
.footer .wrap_content .part .item .list_item_footer a:hover {
  color: #FAA819;
}
.footer .wrap_content .part .item .list_item_footer li .lable {
  font-family: "SVN-Gilroy Medium";
  color: #686663;
  margin-bottom: 10px;
}
.footer .wrap_content .part .item .menu_footer {
  list-style: none;
}
@media (max-width: 767px) {
  .footer .wrap_content .part .item .menu_footer {
    width: 100%;
  }
}
.footer .wrap_content .part .item .menu_footer li {
  margin-bottom: 15px;
  font-family: "SVN-Gilroy semiBold";
  font-size: 16px;
  transition: all 0.15s ease-in-out;
  position: relative;
}
.footer .wrap_content .part .item .menu_footer li:hover {
  transform: translateX(10px);
}
.footer .wrap_content .part .item .menu_footer li:hover a {
  color: #FAA819;
}
.footer .wrap_content .part .item form {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .footer .wrap_content .part .item form {
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 650px) {
  .footer .wrap_content .part .item form {
    display: inline-block;
    width: 100%;
  }
}
.footer .wrap_content .part .item form input {
  background: #FFFFFF;
  border: 2px solid #686663;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 15px;
  padding: 8px 15px;
  max-width: 420px;
  min-width: 400px;
}
@media (max-width: 650px) {
  .footer .wrap_content .part .item form input {
    min-width: 100%;
  }
}
.footer .wrap_content .part .item form button {
  padding: 10px 30px;
  margin-top: 10px;
}
.footer .wrap_content .part .item form ::placeholder {
  font-style: italic;
  font-family: "SVN-Gilroy Light";
  color: #686663;
  font-size: 16px;
}

.list_social ul {
  list-style: none;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.list_social ul li a {
  display: flex;
  align-items: self-end;
  width: 30px;
  height: 30px;
  justify-content: center;
}
.list_social ul li a i {
  font-size: 24px;
  color: #6C6C6C;
  transition: all 0.25s linear;
}
.list_social ul li:hover i {
  color: #FFDD5B;
}

.copyright {
  text-align: center;
  margin-top: 50px;
  font-family: "SVN-Gilroy Medium";
  font-size: 16px;
}
@media (max-width: 650px) {
  .copyright {
    font-size: 14px;
    margin-top: 30px;
  }
}

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