body {
  overflow-x: hidden;
  font-family: "SVN-Gilroy";
  font-size: 14px;
  background: white;
}
h1,
h2,
h3 {
  font-family: "SVN-GilroyBold";
  font-weight: normal;
}

b,
strong {
  font-family: "SVN-GilroyBold";
  font-weight: normal;
}
.text_bold {
  font-family: "SVN-GilroyBold";
}
.text_center {
  text-align: center;
}
.text_left {
  text-align: left;
}
.text_right {
  text-align: right;
}
.text_white {
  color: #fff !important;
}
.float_left {
  float: left;
}
.float_right {
  float: right;
}
.overflow_hidden {
  overflow: hidden;
}
/*.heading_h2 {*/
/*    color: #333333;*/
/*    font-size: 50px;*/
/*    position: relative;*/
/*    line-height: 56px;*/
/*    text-transform: uppercase;*/
/*    margin-bottom: 60px;*/
/*}*/
/*.heading_h2_line{*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    font-size: 40px;*/
/*    display: inline-block;*/
/*    margin-bottom: 30px;*/
/*    padding-left: 45px;*/
/*}*/
/*.heading_h2_line:before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    height: 1px;*/
/*    width: 1000px;*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*    opacity: 0.5;*/
/*    top: 50%;*/
/*    z-index: -1;*/
/*    margin-top: -1px;*/
/*    right: -1010px;*/
/*}*/
/*.heading_h2_line:after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    height: 1px;*/
/*    width: 35px;*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*    opacity: 0.5;*/
/*    top: 50%;*/
/*    z-index: -1;*/
/*    margin-top: -1px;*/
/*    left:0;*/
/*}*/
/*.heading_h2_line.text_white:before{*/
/*    background-color: rgba(255, 255, 255, 0.5);*/
/*}*/
/*.heading_h2_line.text_white:after{*/
/*    background-color: rgba(255, 255, 255, 0.5);*/
/*}*/
.headline_h3 {
  color: #333;
  line-height: 23px;
  margin-bottom: 40px;
}

.headline_h4 {
  color: #333;
  font-weight: 400;
  font-size: 20px;
  position: relative;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 1.13px;
  margin-bottom: 30px;
}

.button_style {
  background-color: #f69a31;
  color: #fff !important;
  text-align: center;
  padding: 0 30px;
  /*padding: 12px 0 12px 0;*/
  min-width: 200px;
  font-size: 16px;
  font-family: "SVN-GilroyBold";
  font-weight: normal;
  line-height: 53px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 9;
  border-radius: 26px;
}

.button_style i {
  font-size: 25px;
  position: relative;
  top: 2px;
  margin-left: 10px;
}
/*.button_style:after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    right: 40px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    -moz-transform: translateY(-50%);*/
/*    -webkit-transform: translateY(-50%);*/
/*    -o-transform: translateY(-50%);*/
/*    -ms-transform: translateY(-50%);*/
/*    width: 0;*/
/*    height: 0;*/
/*    border-style: solid;*/
/*    border-width: 0 0 48px 48px;*/
/*    border-color: transparent transparent rgba(152, 178, 205, 0.5) transparent;*/
/*    z-index: -1;*/
/*}*/
.button_style:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.button_style:hover:before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
.button_style span {
  position: absolute;
  width: 40px;
  height: 48px;
  top: 0;
  right: 0;
  background-color: rgba(152, 178, 205, 0.5);
}
/*--------------------*/
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.arrow {
  background: #1683c1;
  height: 2px;
  width: 12px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}
.arrow span {
  width: 40px;
  height: 40px;
  border: 1px solid #e1e1e1;
  position: absolute;
  border-radius: 50%;
  top: -20px;
  left: -15px;
  transition: all 0.5s;
}
.arrow:hover span {
  border: 1px solid #fd0607;
}
.arrow:hover span:after {
  background: #fd0607;
}
/*.arrow:before,*/
/*.arrow:after {*/
/*    content: "";*/
/*    background: #e1e1e1;*/
/*    position: absolute;*/
/*    height: 2px;*/
/*    width: 8px;*/
/*    z-index: 9;*/
/*    transition: all 0.5s;*/
/*}*/
.arrow:hover:before,
.arrow:hover:after {
  background: #fd0607;
}
/*.arrow:before {*/
/*    right: -2px;*/
/*    bottom: -3px;*/
/*    transform: rotate(-45deg);*/
/*}*/

/*.arrow:after {*/
/*    right: -3px;*/
/*    top: -2px;*/
/*    transform: rotate(45deg);*/
/*}*/

.arrow-prev {
  -ms-transform: rotate(20deg);
  transform: rotate(-180deg);
  top: 50%;
  left: -55px;
}

.arrow-next {
  top: 50%;
  right: -55px;
}
.arrow span:after {
  content: "";
  position: absolute;
  background: #e1e1e1;
  height: 2px;
  width: 12px;
  top: 19px;
  left: 13px;
  transition: all 0.5s;
}
ul.slick-dots {
  display: inline-block;
  margin: 0px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  list-style: none;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
ul.slick-dots li {
  /*border: 1px solid transparent;*/
  transition: 0.3s;
  position: relative;
  border-radius: 50%;
  transition: 0.3s;
  display: inline-block;
  /*margin: 0px 5px;*/
  width: 20px;
  height: 20px;
  background: none;
  cursor: pointer;
}
ul.slick-dots li button {
  font-size: 0px;
  padding: 0px;
  margin: 0px;
  height: 10px;
  width: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}
ul.slick-dots li.slick-active button {
  background-color: #f69a31;
}
/*ul.slick-dots li.slick-active{transition: .3s;border: 1px solid white;}*/
/*ul.slick-dots li.slick-active button{transition: .3s;}*/
nav.breadcrumb ul {
  list-style: none;
  margin: 0;
  /*margin-top: 30px;*/
}
nav.breadcrumb ul li {
  display: inline-block;
  font-size: 14px;
  margin-right: 5px;
  margin-left: 5px;
}
nav.breadcrumb ul li:first-child {
  margin-left: 0;
}
nav.breadcrumb ul li a,
nav.breadcrumb ul li span,
nav.breadcrumb ul li cite {
  color: #333333;
  font-style: normal;
  font-size: 20px;
}
nav.breadcrumb span.divider {
  font-size: 0;
}
nav.breadcrumb span.divider:before {
  content: "|";
  font-family: fontawesome;
  font-size: 14px;
  color: #b2b2b2;
}

body div.wpcf7 .ajax-loader {
  position: absolute;
  bottom: 12px !important;
  width: 150px;
  height: 19px;
  left: 50%;
  margin-left: -75px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  transform: unset !important;
  background-image: url(../images/loading_form.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
body div.wpcf7 .ajax-loader.is-active {
  opacity: 1;
  z-index: 9999;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.form-error-message {
  color: red;
}

.main-navigation .main-nav ul li a {
  font-family: "SVN-GilroySemiBold";
  color: #20344b;
  text-transform: uppercase;
  font-size: 15px;
}
.nav-float-right .inside-header .main-navigation {
  float: unset;
}
.main-navigation,
.main-navigation ul ul {
  background: transparent;
}
.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li:focus > a,
.main-navigation .main-nav ul li.sfHover > a {
  background: transparent;
  color: #f69a31;
}
.main-navigation .main-nav ul li a {
  padding: 0 15px;
  line-height: 38px;
}
.logo_header {
  width: 250px;
}
.logo_header a {
  font-size: 0 !important;
}
.site-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
.site-logo:before {
  position: absolute;
  left: 50%;
  bottom: -23px;
  transform: translateX(-50%);
  background-image: url(../images/logo_bf.png);
  background-size: contain;
  width: 246px;
  height: 49px;
  content: "";
  z-index: -1;
  background-repeat: no-repeat;
}
.inside-header {
  padding: 15px 0;
}
/*.site-header{*/
/*    margin-bottom: 100px;*/
/*}*/

.section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
body .grid-container {
  max-width: 1200px;
}
.text_up {
  text-transform: uppercase;
}
.content_slider {
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: 1200px;
  transform: translate(-50%, -50%);
  top: 50%;
}
.content_slider .content_inner {
  display: inline-block;
  position: relative;
}

.content_slider .content_inner:before {
  position: absolute;
  width: 170%;
  height: 170%;
  background: white;
  opacity: 0.8;
  filter: blur(30px);
  content: "";
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40%;
  z-index: -1;
}
.content_slider h2 {
  color: #1683c1;
  font-size: 35px;
  margin-bottom: 22px;
  margin-top: 20px;
  font-family: "SVN-Gilroy";
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 51px;
  height: 51px;
  background-color: transparent;
  font-size: 30px;
  color: #1c82c0;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  line-height: 55px;
  transition: 0.3s all;
  z-index: 9;
  box-shadow: 0 0 32px rgba(0, 48, 79, 0.2);
  border: 1px solid #1c82c0;
  opacity: 0.4;
}
.banner_slider .slick-arrow {
  font-size: 60px !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  color: #1c82c0 !important;
}
.slick-arrow:hover {
  background-color: transparent;
  color: #1c82c0;
  border-color: transparent;
  box-shadow: 0 0 30px rgba(0, 48, 79, 0.25);
}
.slick-prev.slick-arrow {
  left: -80px;
}
.slick-next.slick-arrow {
  right: -80px;
}
.banner_slider .slick-arrow {
  opacity: 0;
}

.banner_slider .slick-prev.slick-arrow {
  /*margin-left: calc(calc(100vw - 1400px)/2);*/
  transform: translate(-20px, -50%);
  left: 70px;
}
.banner_slider .slick-next.slick-arrow {
  /*margin-right: calc(calc(100vw - 1400px)/2);*/
  transform: translate(0px, -50%);
  right: 70px;
}
.banner_slider:hover .slick-arrow {
  opacity: 0.6;
  transform: translate(0px, -50%);
}
.bf_banner {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 50%;
}
.bf_banner.bf_left {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.bf_banner.bf_right {
  right: 0;
  left: unset;
}
.bg_slider {
  /*height: 100vh;*/
  width: 100%;
  height: auto;
}
.scroll_down {
  position: absolute;
  bottom: 25px;
  left: calc(50% - 47px);
  transform: translate(0%, 50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  box-shadow: 2px 2px 79px rgba(0, 91, 154, 0.23);
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 10;
}
h3.subtitle {
  color: #1683c1;
  font-size: 35px;
  margin-bottom: 10px;
  font-family: "SVN-GilroyLight";
}
h3.subtitle.text_bold {
  font-family: "SVN-GilroySemiBold";
}
.heading_h2 {
  color: #20344b;
  font-family: "SVN-GilroyBold";
  font-size: 50px;
  line-height: 1.2;
}
.heading_h2 span {
  color: #f69a31;
}
.content {
  color: #20344b;
  line-height: 1.5;
}
.about_us {
  padding-top: 95px;
}

.similar_button a {
  position: relative;
  z-index: 11;
  display: block;
  padding: 20px 45px;
  border-radius: 27px;
  line-height: 10px;
  font-family: "SVN-GilroyBold";
  /*box-shadow: 0 0 40px rgba(22, 23, 42, 0.23);*/
  border: 1px solid #1683c1;
}
.similar_button.button-white a {
  /*box-shadow: 0 0 40px rgba(22, 23, 42, 0.23);*/
  background-color: #ffffff;
  color: #1683c1;
  transition: color 0.1s ease-in-out, background-color 1s ease-in-out;

  padding: 0 60px 0 30px;
  height: 50px;
  display: inline-block;
  align-items: center;
  line-height: 53px;
}
.has-arrow a::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 32px;
  height: 32px;
  top: 9px;
  right: 9px;
  display: block;
  border-radius: 27px;
  background-color: #1683c1;
  transition: 0.2s all ease-in-out;
}
.has-arrow .arrow {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 9px;
  right: 9px;
  display: block;
  border-radius: 27px;
  text-align: center;
  line-height: 32px;
}
.similar_button.button-white a:hover,
.similar_button.button-white.has-arrow a .arrow {
  color: #fff;
}
.has-arrow a::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 32px;
  height: 32px;
  top: 9px;
  right: 9px;
  display: block;
  border-radius: 27px;
  background-color: #1683c1;
  transition: 0.2s all ease-in-out;
}
.has-arrow a:hover::before {
  width: calc(100% - 18px);
  height: calc(100% + 2px);
  padding-right: 19px;
  right: -1px;
  top: -1px;
  line-height: 50px;
}
.about_us .box_video a {
  display: inline-block;
  position: relative;
}
.about_us .box_video a:after {
  position: absolute;
  content: url(../images/bf_video.png);
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.about_us .box_video h3 {
  position: absolute;
  left: 50%;
  top: calc(50% + 60px);
  transform: translate(-50%, -50%);
  font-size: 16px;
}
.about_us .box_video a:before {
  background-image: url(../images/play_button.png);
  width: 74px;
  height: 74px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
}
.bg_ab_us {
  position: absolute;
  z-index: -1;
  top: 700px;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.bg_ab_us img {
  max-width: unset;
  width: auto;
}
.box_program .item .box_img img {
  width: 100%;
  /*margin-bottom: 25px;*/
}
.box_program a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.box_program .item {
  width: calc(100% - 20px) !important;
  margin: 0 10px;
  box-shadow: 2px 2px 10px rgba(0, 48, 79, 0.15);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 0;
  padding-bottom: 150px;
  cursor: pointer;
}
.box_program .item:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, calc(50% + 150px));
  width: 800px;
  height: 500px;
  border-radius: 50%;
  background-color: #edf8ff;
  content: "";
  z-index: -1;
  pointer-events: none;
  transition: 0.3s all;
}
.box_program .item:hover:before {
  transition: 0.3s all;
  background-image: linear-gradient(to right, #f69a31 0%, #ff951d 100%);
}
.box_program .item .box_content {
  padding: 30px 30px 0 30px;
}
.box_program .item .box_content h3 {
  font-size: 30px;
  color: #1f344b;
}
img.logo_bottom {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.box_program .item:hover img.logo_bottom {
  filter: brightness(0) invert(1);
}
.box_program .slick-track {
  display: grid;
  grid-auto-flow: column;
}
.box_program .slick-slide,
.box_program .slick-slide > div {
  height: 100%;
}
.box_program .item {
  height: calc(100% - 150px);
  transition: 0.3s all;
  transform: translateY(0);
}
.box_program .item:hover {
  transform: translateY(-50px);
}
.box_program .slick-list {
  padding-top: 70px;
}
.why_choose img.bg,
.elementary_program_sec4 img.bg {
  position: absolute;
  top: 0;
  width: unset;
  z-index: -1;
  max-width: unset;
  left: 50%;
  transform: translateX(-50%);
}
.why_choose {
  padding-top: 175px;
}

.customer_comment .item {
  border-radius: 5px;
  background-image: linear-gradient(-259deg, #1683c1 0%, #06679e 100%);
  /*overflow: hidden;*/
  display: flex !important;
  position: relative;
}
.customer_comment .item .box_content,
.customer_comment .item .box_img {
  width: 50%;
}

.customer_comment .item .box_content h4 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 8px;
}
.customer_comment .item .box_content span {
  font-size: 14px;
}

.customer_comment .item .box_img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.customer_comment .slick-list {
  padding: 85px 0;
}
.customer_comment .item .box_content .avatar {
  display: flex;
  margin-bottom: 25px;
}
.customer_comment .item .box_content .avatar img.active {
  box-shadow: 2px 2px 16px rgba(0, 49, 84, 0.27);
  border: 3px solid #f79729;
  background-color: #ffffff;
  border-radius: 50%;
}
.customer_comment .item .box_content .avatar img {
  margin-right: 7px;
  object-fit: contain;
}
.customer_comment .item .box_content {
  padding: 50px 65px 70px 130px;
  width: calc(50% - 195px);
}
.customer_comment .item .box_content h3 {
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 15px;
}
/*.customer_comment ul.slick-dots{*/
/*    position: unset;*/
/*    transform: unset;*/
/*    display: block;*/
/*}*/
.news_home .box {
  display: flex;
  flex-wrap: wrap;
}
.news_home .first_box {
  width: 40%;
  float: left;
}
.news_home .first_box .item .box_content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.news_home .last_box {
  width: 60%;
  float: left;
  display: flex;
}
.news_home .item {
  position: relative;
  background-color: #1683c1;
}
.news_home .item a {
  width: 100%;
  height: 100%;
}
.news_home .item a img {
  display: block;
}
.news_home .last_box .item a {
  display: flex;
  flex-wrap: wrap;
}
.news_home .first_box .item .box_content {
  left: 60px;
  right: 60px;
  bottom: 50px;
}
.news_home .first_box .item .box_content h3 {
  padding-right: 100px;
  color: #ffffff;
  font-size: 33px;
  margin-bottom: 30px;
}
.news_home .last_box .item:nth-child(3n + 2) a .box_img {
  order: 2;
}
.news_home .last_box .item .box_content {
  height: 50%;
}
.news_home .last_box .item .box_content {
  display: flex;
  align-items: center;
}
.news_home .last_box .item .box_content .content {
  display: none;
}
section.section.news_home {
  padding-top: 120px;
}
section.section.news_home .heading_h2 {
  margin-bottom: 50px;
}
.news_home .last_box .item:nth-child(3n + 2) {
  background-color: #f69a31;
}
.news_home .last_box .item:nth-child(3n + 3) {
  background-color: #20344b;
}

.mb_20 {
  margin-bottom: 20px;
}
.font_bold {
  font-family: "SVN-GilroyBold";
}
.fz-15 {
  font-size: 16px;
}
.fz-16 {
  font-size: 16px;
}
.fz-20 {
  font-size: 20px;
}
.fz-25 {
  font-size: 25px;
}
.program_section {
  padding-top: 55px;
}
.customer_comment ul.slick-dots {
  left: 130px;
  transform: unset;
  bottom: 110px;
}
.news_home .item .content {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 18px;
}
.news_home .first_box .item:before {
  width: 100%;
  height: 40%;
  background-image: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.8;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}
.news_home .last_box .item .box_content .content_inner {
  padding: 0 50px;
}
.news_home .last_box .item .box_content .content_inner h3 {
  font-size: 23px;
  color: white;
  font-family: "SVN-Gilroy";
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.news_home .last_box .item .box_content .content_inner .date_post {
  display: block;
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 20px;
}
.news_home .item .box_img {
  overflow: hidden;
  width: 100%;
}
.news_home .item .box_img img {
  width: 100%;
  height: 100%;
}
.news_home .item .box_img img {
  transform: scale(1);
  transition: 0.3s all;
}
.news_home .item:hover .box_img img {
  transform: scale(1.2);
}
.css_bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.home_last_section {
  padding: 215px 0 195px 0;
}
.home_last_section .box_form {
  box-shadow: 2px 2px 79px rgba(0, 91, 154, 0.23);
  border-radius: 30px;
  background-color: #1683c1;
  padding: 60px 50px 40px 50px;
  position: relative;
  z-index: 0;
}
.home_last_section .box_form:after {
  background-color: #1683c1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  border-radius: 30px;
}
.home_last_section .box_form form {
  position: relative;
  z-index: 9;
}
.home_last_section .box_form:before {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: #20344b;
  right: -20px;
  bottom: -20px;
  content: "";
  position: absolute;
  z-index: -1;
}
.home_last_section .box_form h3 {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 25px;
}
.home_last_section .box_form input,
.home_last_section .box_form select {
  width: 100%;
  margin-bottom: 25px;
  height: 49px;
  border-radius: 25px;
  border: 1px solid #ffffff;
  font-size: 14px;
  background: transparent;
  color: white;
  outline: none !important;
  transition: 0.3s all;
}
.home_last_section .box_form input:focus,
.home_last_section .box_form select:focus {
  background-color: #ffffff;
  color: #2d4764;
}
.home_last_section .box_form input:focus::placeholder,
.home_last_section .box_form select:focus::placeholder {
  color: #2d4764;
}
.home_last_section .box_form input::placeholder {
  color: white;
  font-size: 14px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
.form_select {
  position: relative;
}
.form_select:before {
  position: absolute;
  right: 20px;
  top: 25px;
  transform: translateY(-50%);
  font-size: 15px;
  color: #ffffff;
  content: "\f0d7";
  font-family: "FontAwesome";
}
.form_select:focus:before {
  color: #2d4764;
}
.enter_form_dk {
  float: right;
}
.enter_form_dk.similar_button.button-white a {
  background-color: #f98b0d;
  color: white;
}
.enter_form_dk.similar_button.button-white a:hover,
.enter_form_dk.similar_button.button-white.has-arrow a .arrow {
  color: #f98b0d;
}
.enter_form_dk .arrow {
  background-color: white;
}
#form_dk {
  display: none;
}
.wpcf7-not-valid-tip,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  display: none !important;
}
.wpcf7-not-valid {
  border-color: red !important;
}
img.bf_form {
  position: absolute;
  top: -110px;
  left: 90px;
  transform: translate(-100%, 0);
}
img.at_form {
  position: absolute;
  bottom: 50px;
  right: 50px;
  transform: translate(100%, 100%);
  z-index: -5;
}
.home_last_section .box_content {
  padding-right: 150px;
}
.home_last_section .box_form .has-arrow a::before {
  background: white;
}
.footer_section {
  /*overflow: hidden;*/
}
.bg_footer {
  position: absolute;
  bottom: 0;
  z-index: 0;
  position: absolute;
  bottom: 0;
  z-index: 0;
  width: unset;
  max-width: unset;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.footer_section .grid-container {
  position: relative;
}
.footer_1 .content_inner {
  display: flex;
  align-items: center;
}
a.hotline {
  border-radius: 32px;
  border: 1px dashed #ffffff;
  height: 64px;
  line-height: 64px;
  font-size: 30px;
  color: white;
  padding: 0 35px;
  font-family: "SVN-GilroyBold";
  margin-left: 75px;
  margin-right: 15px;
}
a.hotline i {
  margin-right: 15px;
}
.footer_1 .wpcf7 {
  width: 590px;
  position: relative;
}
.footer_1 .wpcf7 p {
  margin-bottom: 0;
}
.footer_1 input:not(.wpcf7-submit) {
  width: 100%;
  height: 64px;
  border-radius: 32px;
  background-color: #ffffff;
  padding: 0 45px;
}
.footer_1 input:not(.wpcf7-submit)::placeholder {
  color: rgba(32, 52, 75, 0.6);
  font-size: 16px;
}
.footer_1 input {
  outline: none;
}
.footer_1 input.wpcf7-submit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 51px;
  height: 51px;
  border-radius: 26px;
  background-color: #f6992f;
  font-size: 0;
  padding: 0;
}
.form_footer i {
  z-index: 9;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  pointer-events: none;
}
.footer_2 ul {
  margin: 0;
  list-style: none;
}
.footer_2 ul li:not(:last-child) {
  margin-bottom: 20px;
}
.footer_2 ul li * {
  color: white;
}
.footer_2 ul li {
  display: flex;
  flex-wrap: wrap;
}
.footer_2 ul li img {
  object-fit: contain;
}
.footer_2 ul li .box_img {
  width: 22px;
}
.footer_2 ul li .content {
  width: calc(100% - 22px);
}
.title_footer {
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 30px;
}
.footer_1 {
  margin-bottom: 55px;
}
.form_footer br {
  display: none;
}
.footer_3 .box {
  display: flex;
  flex-wrap: wrap;
}
.footer_3 .box .item {
  width: calc(100% / 3);
  margin-bottom: 35px;
}
.footer_3 .box .item * {
  color: white;
}
.footer_3 .box .item .content {
  padding-right: 40px;
}
.footer_3 .box .item:nth-child(3n + 3) .content {
  padding-right: 0;
}
.footer_2 .content_ft {
  padding-right: 50px;
}
.footer_3 .content_ft {
  padding-left: 50px;
}
.footer_3 .content_ft {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer_3 .box .item .content *:last-child {
  margin-bottom: 0;
}
.footer_3 .box .item:nth-child(3),
.footer_3 .box .item:nth-child(4),
.footer_3 .box .item:nth-child(5) {
  margin-bottom: 0;
}
.footer_3 .content ul {
  list-style: none;
  margin: 0;
}
.footer_3 .content ul li {
  margin-right: 5px;
  display: inline-block;
}
.footer_nav {
  margin: 100px 0 40px 0;
  display: inline-block;
}
footer.site-info {
  display: none;
}
.footer_3 .content strong {
  text-transform: uppercase;
}
.footer_3 .content {
  line-height: 1.5;
}
header#masthead {
  position: fixed;
  z-index: 99;
  left: 0;
  width: 100%;
  top: 0;
  box-shadow: 2px 2px 111px rgba(0, 0, 0, 0.1);
}
div#page {
  margin-top: 68px;
}
.site-header {
  transform: translateY(0);
  transition: 0.5s all;
}
.site-header.active {
  transform: translateY(-200%);
}
.why_choose img.bg {
  max-width: 100%;
  min-height: 110%;
  object-fit: cover;
}
.bg_footer {
  max-width: 100%;
  min-height: 120%;
}
img.img_bf_banner {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 9;
}
.gr_head {
  position: absolute;
  bottom: 60px;
  max-width: 1200px;
  left: calc(calc(100vw - 1200px) / 2);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.91);
  padding: 40px 58px 28px 50px;
}
.gr_head h1 {
  color: #1683c1;
  font-size: 35px;
  margin-bottom: 0;
}
.elementary_program_sec1 {
  padding: 135px 0 95px 0;
}
.elementary_program_sec1 .box {
  display: flex;
  align-items: center;
}
.similar_button.button-white.oranges_color a {
  color: white;
}
.similar_button.button-white.oranges_color a::before {
  background-color: white;
}
.similar_button.button-white.oranges_color a .arrow {
  color: #f88d12;
  background: white;
}
.similar_button.button-white.oranges_color a:hover {
  color: white;
  background: #1683c1;
  border-color: #1683c1;
}
.similar_button.button-white.oranges_color a:hover i {
  color: #1683c1;
}
.similar_button.button-white.oranges_color a:hover::before {
  background: #1683c1;
}
.similar_button.button-white.oranges_color a {
  background-color: #f88d12;
  border-color: #f88d12;
}

.similar_button.button-white.oranges_color.blue a {
  color: white;
}
.similar_button.button-white.oranges_color.blue a::before {
  background-color: white;
}
.similar_button.button-white.oranges_color.blue a .arrow {
  color: #1683c1;
  background: white;
}
.similar_button.button-white.oranges_color.blue a:hover {
  color: white;
  background: #f88d12;
  border-color: #f88d12;
}
.similar_button.button-white.oranges_color.blue a:hover i {
  color: #f88d12;
}
.similar_button.button-white.oranges_color.blue a:hover::before {
  background: #f88d12;
}
.similar_button.button-white.oranges_color.blue a {
  background-color: #1683c1;
  border-color: #1683c1;
}
img.bf_sec1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  z-index: -1;
}

.elementary_program_sec1 .box_img {
  padding-right: 40px;
  display: flex;
  justify-content: flex-end;
}
.elementary_program_sec1 .box_img img {
  max-width: unset;
}
.elementary_program_sec2 {
  padding: 0 0 165px 0;
}
img.bg_sec2 {
  position: absolute;
  top: -230px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  max-width: unset;
}
.elementary_program_sec2 .box img {
  display: block;
}

.elementary_program_sec2 .box_top .item:nth-child(2) img {
  height: 100%;
}
.elementary_program_sec2 .box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 0 0 68px 93px;
  overflow: hidden;
}
.elementary_program_sec2 .box .item:nth-child(1) {
  width: 60%;
}
.elementary_program_sec2 .box .item:nth-child(2) {
  width: 40%;
}
.elementary_program_sec2 .box .item:nth-child(2) img {
  position: absolute;
  top: 0;
  right: 0;
}
.elementary_program_sec2 .box .item .box_content {
  position: absolute;
  left: 70px;
  top: 80px;
  right: 90px;
}
.elementary_program_sec2 .box .item {
  position: relative;
  box-shadow: 2px 2px 70px rgba(0, 48, 79, 0.15);
}
.elementary_program_sec2 .box .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.elementary_program_sec2 .box img {
  max-width: unset;
}
.elementary_program_sec2 .box_top {
  margin-bottom: 12px;
}
.elementary_program_sec2 .box_bottom .item:nth-child(1) {
  position: relative;
  z-index: 2;
}
.elementary_program_sec2 .box .item .box_content span {
  color: #ffffff;
  font-size: 35px;
  display: block;
}
.elementary_program_sec2 .box .item h3 {
  font-size: 35px;
  color: white;
  margin-bottom: 45px;
}
.elementary_program_sec2 .box .item .content {
  color: white;
  font-size: 15px;
}
.elementary_program_sec2 .box .item ul {
  list-style: none;
  margin: 0;
}
.elementary_program_sec2 .box .item ul li:not(:last-child) {
  margin-bottom: 10px;
}
.elementary_program_sec2 .box .item ul li {
  position: relative;
  color: white;
  padding-left: 20px;
  font-size: 18px;
}
.elementary_program_sec2 .box .item ul li:before {
  font-family: "FontAwesome";
  font-size: 10px;
  color: white;
  position: absolute;
  top: 0px;
  left: 0;
  content: "\f00c";
}
.elementary_program_sec2 .box .item:nth-child(2) .box_content {
  left: 130px;
}
.elementary_program_sec2 .box_top {
  margin-bottom: 12px;
  display: inline-flex;
  display: inline-flex;
  border-radius: 72px 0 0 0;
  overflow: hidden;
}
.elementary_program_sec2 .heading_h2 {
  margin-bottom: 100px;
}
.elementary_program_sec2 h3.subtitle,
.elementary_program_sec3 h3.subtitle {
  color: #1f344b;
}
.elementary_program_sec3 .heading_h2 {
  margin-bottom: 60px;
}
.elementary_program_sec3 {
  padding-bottom: 140px;
}
.elementary_program_sec4 {
  padding: 130px 0 140px 0;
}
.elementary_program_sec4 .box {
  display: flex;
  flex-wrap: wrap;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  width: 80%;
  margin: 30px auto 58px auto;
}
.elementary_program_sec4 .box .item .content_inner {
  padding: 40px;
}
.elementary_program_sec4 .box .item .content_inner .content {
  margin-top: 20px;
}
.elementary_program_sec4 .box .item {
  width: 50%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.08);
}
.elementary_program_sec4 img.bg {
  height: 93%;
}
.elementary_program_sec4 .box .item img {
  max-height: 100%;
  max-width: 100%;
}
.elementary_program_sec4 .box .item:nth-child(2),
.elementary_program_sec4 .box .item:nth-child(3) {
  background-color: #f2f2f2;
}
.elementary_program_sec4 .box .item:nth-child(1),
.elementary_program_sec4 .box .item:nth-child(4) {
  position: relative;
  z-index: 9;
}
.elementary_program_sec4 .box .item:nth-child(1):before,
.elementary_program_sec4 .box .item:nth-child(4):before {
  position: absolute;
  left: 25px;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  transform: translateY(calc(100% - 10px));
  content: "";
}
.elementary_program_sec4 .box .item:nth-child(1):after,
.elementary_program_sec4 .box .item:nth-child(4):after {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  transform: translateX(calc(100% - 10px));
  content: "";
}
.elementary_program_sec4 .box .item:nth-child(4):after {
  right: unset;
  left: 0;
  transform: translateX(calc(-100% + 10px));
}
.elementary_program_sec4 .box .item:nth-child(4):before {
  bottom: unset;
  top: 0;
  left: unset;
  right: 25px;
  transform: translateY(calc(-100% + 10px));
}
.elementary_program_sec5 {
  padding-top: 100px;
}
.bf_sec5_pg {
  position: absolute;
  left: 0;
  top: 130px;
  pointer-events: none;
  z-index: -1;
}
.elementary_program_sec5 .content {
  margin-bottom: 60px;
}
.elementary_program_sec5 .item * {
  display: block;
  text-align: center;
  margin: auto;
}
.elementary_program_sec5 .box {
  margin-bottom: 135px;
  display: inline-block;
  width: 100%;
}
.elementary_program_sec5 .box img {
  margin-bottom: 30px;
}
.elementary_program_sec5 .box span {
  font-size: 20px;
}
.elementary_program_sec5 .box h3 {
  font-size: 25px;
}
.elementary_program_sec5 .box_item_bottom {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 180px;
}
.elementary_program_sec5 .box_item_bottom * {
  margin: auto;
}
.elementary_program_sec5 .box_item_bottom i {
  display: unset;
}
.elementary_program_sec5 .box_item_bottom .item {
  width: calc(50% - 30px);
  margin: 0 15px;
  text-align: center;
}
.elementary_program_sec5 .box_item_bottom .box_img {
  position: relative;
}
.elementary_program_sec5 .box_item_bottom .box_img:before {
  position: absolute;
  content: url(../images/Shape_7_copy_9.png);
  top: 2px;
  left: 1px;
  z-index: -1;
}
.elementary_program_sec5 .box_item_bottom .item img {
  margin-bottom: 35px;
}
.elementary_program_sec5 .box_item_bottom .item h3 {
  margin-bottom: 25px;
}
.admissions_sec1 {
  padding: 80px 0 110px 0;
}
.admissions_sec1 .box {
  display: flex;
  flex-wrap: wrap;
}
.admissions_sec1 .box .item {
  width: calc(50% - 15px);
  margin-right: 15px;
  box-shadow: 2px 2px 45px rgba(0, 91, 154, 0.15);
  border-radius: 36px;
  margin-bottom: 30px;
  overflow: hidden;
}
.admissions_sec1 .box .item:nth-child(2n + 2) {
  margin-right: 0px;
  margin-left: 15px;
}
.admissions_sec1 .intro {
  height: 130px;
  /* line-height: 170px; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 36px 36px 36px 36px;
  position: relative;
  margin-bottom: 45px;
}
.admissions_sec1 .intro .border {
  position: absolute;
  left: 15px;
  top: 15px;
  bottom: 15px;
  right: 15px;
  border-radius: 26px 26px 19px 19px;
  border: 2px dashed #ffffff;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
}
.admissions_sec1 .intro h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 0;
}

.admissions_sec1 .item .box_content {
  padding: 0 45px 65px 45px;
}
.admissions_sec1 .item .box_content ul {
  margin: 0;
  list-style: none;
}
.admissions_sec1 .item .box_content ul li:not(:last-child) {
  margin-bottom: 25px;
}
.admissions_sec1 .item .box_content ul li {
  display: flex;
  align-items: center;
}
.admissions_sec1 .item .box_content ul li h3 {
  margin-bottom: 0;
  font-size: 40px;
  width: 80px;
}
.admissions_sec1 .item .box_content ul li .content {
  width: calc(100% - 80px);
  font-size: 18px;
}
.admissions_sec1 .heading_h2 {
  margin-bottom: 45px;
}
.bg_admissions_sec2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.admissions_sec2 {
  padding-bottom: 510px;
}
.admissions_sec2 .slider img {
  margin: 0 auto 15px auto;
}
.admissions_sec2 .slider .item {
  width: calc(100% - 30px) !important;
  margin: 0 15px;
}
.admissions_sec2 .slider h3 {
  color: #f9ab53;
  font-size: 26px;
}
.admissions_sec2 .slider .content {
  /*max-width: 210px;*/
  margin: auto;
}
.admissions_sec2 .heading_h2 {
  margin-bottom: 45px;
}
.fz_18 {
  font-size: 18px;
}
.admissions_sec2 .slider .slick-list {
  padding-top: 40px !important;
}

.admissions_sec2 .slick-slide,
.admissions_sec2
  .slick-slide[aria-hidden="true"]:not(.slick-cloned)
  ~ .slick-cloned[aria-hidden="true"] {
  transform: translateY(0);
  transition: 1s;
}
.admissions_sec2 .slick-center,
.admissions_sec2
  .slick-slide[aria-hidden="true"]:not([tabindex="-1"])
  + .slick-cloned[aria-hidden="true"] {
  transform: translateY(-40px);
  transition: 1s;
}
.admissions_sec2 .box_slider {
  position: relative;
}
.admissions_sec2 .box_slider > img {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  max-width: unset;
}
.admissions_sec2 .slick-arrow {
  opacity: 1;
  background: white;
}
.admissions_sec2 .slick-arrow:hover {
  border: 1px solid #1683c2;
  background-color: #1683c1;
  color: white;
}
.admissions_sec2 .slick-prev.slick-arrow {
  left: -120px;
  top: calc(50% + 30px);
}
.admissions_sec2 .slick-next.slick-arrow {
  right: -110px;
  top: calc(50% - 70px);
}
.admissions_sec2 .blue {
  margin-top: 40px;
}
.home_last_section.admissions_sec3 {
  padding-top: 0;
}
.box_file_down_load {
  margin-bottom: 40px;
  box-shadow: 2px 2px 79px rgba(0, 91, 154, 0.24);
  border-radius: 75px;
  background-color: #f69a31;
  min-height: 110px;
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
  transform: translateY(-50%);
}
.box_file_down_load .border {
  position: absolute;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
  border-radius: 60px;
  border: 2px dashed #ffffff;
  pointer-events: none;
}
.box_file_down_load .box_inner {
  display: flex;
  flex-wrap: wrap;
}
.box_file_down_load .box_inner .item .icon_down {
  font-size: 50px;
  margin-right: 20px;
}

.box_file_down_load .box_inner .item {
  width: calc(50% - 180px);
  margin: 0 90px;
  display: flex;
  align-items: center;
}
.box_file_down_load .box_inner .item a {
  font-family: "SVN-GilroyBold";
  font-size: 22px;
  color: white !important;
}
.box_center {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 155px;
}
.box_center .item {
  width: calc(50% - 30px);
  margin: 0 15px 30px 15px;
}
.box_center .item img {
  margin: 0 auto 30px auto;
}
.box_center .item h4 {
  margin-bottom: 0;
  color: #1683c1;
  font-size: 16px;
}
.box_center .item h3 {
  color: #20344b;
  font-size: 28px;
  margin-bottom: 0;
}
.contact_page {
  padding: 125px 0 55px 0;
}

.contact_page .box {
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  border-radius: 60px;
  background-color: #ffffff;
  overflow: hidden;
  align-items: center;
  margin-bottom: 90px;
}
.contact_page .box .box_form {
  width: 65%;
}
.contact_page .box .info_general {
  width: 35%;
  border-radius: 60px;
  background-color: #1683c2;
  position: relative;
}
.contact_page .box .info_general .border {
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  left: 25px;
  top: 25px;
  right: 25px;
  bottom: 25px;
  pointer-events: none;
  border: 2px dashed #ffffff;
  position: absolute;
  border-radius: 60px;
}
.contact_page .box .info_general * {
  color: white !important;
}
.contact_page .box .box_form .form_inner {
  padding-left: 75px;
  padding-right: 45px;
}
.contact_page .box .box_form .form_inner h2 {
  color: #1071bb;
  font-size: 30px;
  display: block;
  margin-bottom: 55px;
  text-transform: uppercase;
}
.contact_page .box .box_form .form_inner label {
  font-family: "SVN-GilroyBold";
  display: block;
  margin-bottom: 5px;
  color: #333333;
  font-size: 14px;
}
.contact_page .box .box_form .form_inner input {
  width: 100%;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #e1e1e1;
  background: transparent;
  padding: 0;
  height: 38px;
}
.contact_page .box .box_form .form_inner input::placeholder {
  color: #959595;
  font-size: 13px;
  text-transform: uppercase;
}
.contact_page .box .box_form .form_inner br {
  display: none;
}
input#form_contact {
  display: none;
}
.contact_page .box .info_general .content_inner {
  padding: 70px 70px 100px;
}
.contact_page .box .info_general .content_inner > h2 {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 50px;
}
.contact_page .box .info_general .content_inner .content strong {
  font-size: 16px;
  /*margin-bottom: 10px;*/
}
.link_social_contact {
  list-style: none;
  margin: 30px 0 0 0;
  display: inline-flex;
}
.link_social_contact a {
  margin-right: 10px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_page .box .link_social_contact a i {
  color: #1683c2 !important;
}
.info_system h3.subtitle {
  font-size: 24px;
}

.info_system .heading_h2 {
  font-size: 36px;
}
.info_system .slider {
  margin: 0 -15px 0px -15px;
}
.info_system .item {
  width: calc(100% - 30px) !important;
  box-shadow: 2px 2px 10px rgba(0, 48, 79, 0.15);
  border-radius: 25px;
  background-color: #ffffff;
  margin: 10px 15px;
  cursor: pointer;
  height: calc(100% - 20px);
}
.info_system .slick-track {
  display: grid;
  grid-auto-flow: column;
}
.info_system .slick-slide,
.info_system .slick-slide > div {
  height: 100%;
}
.info_system .item .content_inner {
  padding: 30px;
}
.info_system .item .content_inner h3 {
  color: #333333;
  font-size: 16px;
  margin-bottom: 15px;
  transition: 0.3s all;
}
.info_system .item .content_inner h3 i {
  margin-right: 10px;
}
.info_system .item .content_inner .content {
  color: #333333;
  transition: 0.3s all;
}
.info_system .item:hover,
.info_system .slick-slide.slick-current.slick-active .item {
  background-image: linear-gradient(to right, #f98b0d 0%, #f69a31 100%);
}
.info_system .item:hover *,
.info_system .slick-slide.slick-current.slick-active .item * {
  color: white !important;
}
.info_system .slick-arrow {
  opacity: 1;
  border-color: #cccccc;
  color: #cccccc;
}
.info_system .slick-arrow:hover {
  background: #f98b0d;
  color: white;
}
.map_iframe iframe {
  width: 100%;
  display: block !important;
  height: 100vh;
}
/*.map_iframe:before{*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    content: '';*/
/*    height: 255px;*/
/*}*/
.page-template-contact .footer_section {
  overflow: hidden;
  padding-top: 60px;
}
.box_for_slider {
  position: relative;
}

img.bf_cmt {
  position: absolute;
  z-index: 9;
  left: -50px;
  top: 200px;
}

.home_last_section .box_content .content {
  font-size: 18px;
}
.elementary_program_sec4 {
  overflow: hidden;
}
.elementary_program_sec5 {
  padding-top: 0;
}
.bg_sec_last {
  position: absolute;
  bottom: 0;
  z-index: -1;
  max-width: unset;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  max-width: 100%;
}
.bg_sec_last img {
  max-width: unset;
  display: block;
}
.page-template-elementary_program .home_last_section {
  padding-top: 0;
}
.about_us .content_bottom {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 16px;
}
.learning_sec1.about_us .content_bottom {
  font-size: 14px;
}
.about_sec2 {
  padding-bottom: 160px;
}
.about_sec2 .box_program .one_item img {
  margin: auto;
}
.about_sec2 .box_program .one_item {
  text-align: center;
  cursor: pointer;
}
.about_sec2 .box_program .one_item .box_img {
  position: relative;
  display: inline-block;
}
.about_sec2 .box_program .one_item .box_img:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: url(../images/bg_hover_gallery.png);
  z-index: 1;
  opacity: 0;
  transition: 0.3s all;
}
.about_sec2 .box_program .one_item .box_img:after {
  position: absolute;
  left: -20px;
  top: 0;
  content: url(../images/border_img.png);
  z-index: 2;
}
.about_sec2 .box_program .one_item:hover .box_img:before {
  opacity: 1;
}
.about_sec2 .box_program .slick-list {
  margin: 0 -40px !important;
}
.about_sec2 .slick-prev.slick-arrow {
  left: -130px;
}

.about_sec2 .slick-next.slick-arrow {
  right: -130px;
}
.about_sec2 .slick-arrow {
  top: calc(50% + 35px);
}
.about_sec2 .one_item {
  transform: translateY(0);
  transition: 0.3s all;
}
.about_sec2 .one_item:hover {
  transform: translateY(-40px);
}
.program_section.about_sec2 {
  padding-top: 80px;
  padding-bottom: 280px;
}
.page-template-about .bg_ab_us {
  left: 50%;
  position: absolute;
  z-index: -1;
  overflow: hidden;
  text-align: center;
  width: 100vw;
  transform: translateX(-50%);
  top: 32%;
  display: flex;
  justify-content: center;
}
.program_section.about_sec2 .text_center .content {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
}
.popup_gallery {
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: transparent;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all;
}
.popup_gallery.pop {
  opacity: 1;
  pointer-events: unset;
}
.close_popup {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.8;
}
.popup_gallery .popup_inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: calc(100% - 300px);
  max-height: calc(100% - 200px);
}
.popup_gallery .popup_inner .box_img {
  background: white;
  padding: 50px;
  width: auto !important;
  max-width: calc(100% - 100px) !important;
}
.popup_gallery .popup_inner .slick-slide {
  text-align: center;
}
.popup_gallery .popup_inner .box_img img {
  max-height: 600px;
}

.popup_gallery .slick-prev.slick-arrow {
  left: -100px;
}
.popup_gallery .slick-next.slick-arrow {
  right: -100px;
}

.popup_gallery .slick-arrow {
  background: white;
  opacity: 1;
}
.button_close {
  color: white;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
  font-size: 30px;
  line-height: 0;
  margin: 10px 10px 0 0;
  border: 3px solid white;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.button_close i {
  transform: rotate(0deg);
  transition: 0.3s all;
}
.button_close:hover i {
  transform: rotate(-360deg);
}
@keyframes contentheight {
  from {
    max-height: 0px;
    opacity: 0;
  }
  to {
    max-height: 5000px;
    opacity: 1;
  }
}
#load_gallery .content_inner {
  animation-name: contentheight;
  animation-duration: 2s;
}
.about_sec3 .bg,
.preschool_program_3 .bg {
  position: absolute;
  left: 0;
  width: 100vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.about_sec3 .bg img,
.preschool_program_3 .bg img {
  max-width: unset;
}
section.section.why_choose.about_sec3 {
  padding: 0px;
  z-index: 2;
}
.about_sec3 .box_program .item .box_content h3 {
  margin-bottom: 70px;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.about_sec3 .box_program .item {
  height: 100%;
  padding: 0;
  position: relative;
}
.about_sec3 .box_program .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about_sec3 .box_program .item .content {
  padding: 0px 110px 0px 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 80px;
  margin-bottom: 20px;
  transition: 0.3s all;
  position: relative;
}
.about_sec3 .box_program .item:hover .content {
  color: white;
}
.about_sec3 .box_program .item:before {
  height: 600px;
}
.about_sec3 .text_center .content {
  max-width: 575px;
  margin: auto;
}
.home_last_section.about_sec4 {
  padding-top: 400px;
}
section.section.about_us.about_sec1 > img {
  width: auto;
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 130px;
  z-index: -1;
  transform: translateX(-50%);
}
.school_year_calendar {
  padding: 100px 0 120px 0;
}
.nav_tabs_1 .item {
  cursor: pointer;
}
.nav_tabs_1 {
  margin-bottom: 40px;
}
.nav_tabs_1 .slick-track {
  transform: unset !important;
  display: flex;
  justify-content: center;
  width: auto !important;
}
.nav_tabs_1 .slick-track .slick-slide {
  width: auto !important;
}
.nav_tabs_1 .slick-track .item {
  height: 44px;
  border-radius: 23px;
  border: 1px solid #f69a31;
  background-color: #ffffff;
  font-size: 16px;
  color: #f59a40;
  line-height: 45px;
  margin: 0 5px;
  padding: 0 35px;
  width: calc(100% - 80px) !important;
  text-transform: uppercase;
  font-family: "SVN-GilroyBold";
  transition: 0.3s all;
  cursor: pointer;
}
.nav_tabs_1 .slick-slide.slick-current.slick-center .item {
  background-color: #f59a40;
  color: white;
}
.for_tabs_1 .item {
  border-radius: 60px;
  background-color: #1683c2;
  padding: 65px 200px;
  width: calc(100% - 400px) !important;
  position: relative;
}
.for_tabs_1 .item .border {
  position: absolute;
  left: 25px;
  top: 25px;
  right: 25px;
  bottom: 25px;
  border-radius: 40px;
  border: 3px dashed #ffffff;
}
.for_tabs_1 .item h3 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  text-align: left;
}
.for_tabs_1 .item ul {
  list-style: none;
  margin: 0;
  width: calc(50% - 20px);
}
.for_tabs_1 .item ul:nth-child(1) {
  padding-right: 20px;
}
.for_tabs_1 .item ul:nth-child(2) {
  padding-left: 20px;
}
.for_tabs_1 .item .box {
  display: flex;
  text-align: left;
  font-size: 18px;
}
.for_tabs_1 .item ul li {
  padding-left: 25px;
  position: relative;
}
.for_tabs_1 .item ul li:before {
  position: absolute;
  top: 0;
  content: "\f00c";
  color: white;
  font-size: 15px;
  left: 0;
  font-family: "FontAwesome";
}
.for_tabs_1 .item ul li:not(:last-child) {
  margin-bottom: 25px;
}
.note {
  text-align: left;
  margin-top: 35px;
  padding: 0 250px 0 90px;
}
.note h3 {
  color: #f59a40;
  font-size: 22px;
  text-transform: uppercase;
  font-family: "SVN-GilroyBold";
  display: block;
  margin-bottom: 20px;
}
.note ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.note ul li {
  width: 50%;
}
.note ul li .title {
  width: calc(100% - 35px);
}
.note ul li {
  margin-bottom: 25px;
  color: #333333;
  font-size: 17px;
  display: flex;
}
.note ul li span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 15px;
  transform: translateY(2px);
}

.tabs > input[type="radio"] {
  display: none;
}

.tabs > div {
  display: none;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  font-size: 16px;
}

/*#tab-btn-0:checked ~ #content-0,*/
/*#tab-btn-1:checked ~ #content-1,*/
/*#tab-btn-2:checked ~ #content-2,*/
/*#tab-btn-3:checked ~ #content-3 {*/
/*    display: block;*/
/*}*/

.tabs > label {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  padding: 2px 8px;
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  cursor: pointer;
  position: relative;
  top: 1px;
  margin: 0 4px;
}

.tabs > label:not(:first-of-type) {
  border-left: none;
}

.tabs > input[type="radio"]:checked + label {
  background-color: #fff;
  border-bottom: 1px solid #fff;
}
.tabs {
  text-align: center;
}
.tabs > label {
  height: 45px;
  border-radius: 23px;
  border: 1px solid #1683c1 !important;
  background-color: #ffffff;
  line-height: 45px;
  display: inline-block;
  min-width: 85px;
  padding: 0 15px;
  color: #1683c1;
  font-size: 17px;
  text-transform: uppercase;
  font-family: "SVN-GilroyBold";
  transition: 0.3s all;
}
.tabs > input[type="radio"]:checked + label,
.tabs > label:hover {
  background: #1683c1;
  color: white;
}

.content_tab {
  margin-top: 30px;
  border: none !important;
  padding: 0 !important;
}
.content_tab .item {
  border-radius: 60px;
  background-color: #f5f5f5;
  padding: 15px;
  display: block;
  margin-bottom: 20px;
}
.content_tab .item .content_inner {
  display: flex;
  align-items: center;
  text-align: left;
}
.content_tab .item .content_inner .box_img {
  width: 50%;
}
.content_tab .item .content_inner .box_img img {
  width: 100%;
  height: auto;
  display: block;
}
.content_tab .item .content_inner .box_content {
  width: calc(50% - 80px);
  margin: 0 40px;
}
.content_tab .item .content_inner .box_content h3 {
  color: #1683c1;
  font-size: 17px;
  margin-bottom: 0;
  width: 95px;
  padding-right: 40px;
}
.item_action:not(:last-child) {
  margin-bottom: 30px;
}
.item_action {
  display: flex;
  color: #333333;
  font-size: 17px;
}

.page-template-content_and_schedule .elementary_program_sec5 .box_item_bottom {
  margin-bottom: 0;
}
.page-template-team img.img_bf_banner,
.page-template-vision_mission img.img_bf_banner,
.page-template-message img.img_bf_banner,
.category img.img_bf_banner,
.page-template-bris_learning_center .img_bf_banner,
.page-template-recruitment .img_bf_banner {
  display: none !important;
}
.page-template-team .site-footer {
  overflow: hidden;
  padding-top: 100px;
}
.page-template-team .bg_footer {
  min-height: 140%;
}

div#banner_gr img {
  display: block;
}
.team {
  padding: 115px 0 100px 0;
}
.team > img {
  position: absolute;
  z-index: -1;
  top: 530px;
}
.box_team {
  display: flex;
  flex-wrap: wrap;
  margin-top: 90px;
  margin-bottom: 290px;
}
.box_team .item {
  width: calc(50% - 120px);
  margin: 0 60px 65px 60px;
  position: relative;
}

.box_team .item img {
  display: block;
}
.box_team .item .box_img {
  display: inline-block;
  margin: 0 auto 30px auto;
  position: relative;
}
.box_team .item .box_img:before {
  position: absolute;
  left: -10px;
  top: -8px;
  content: url(../images/bg_img_team.png);
  z-index: -1;
}
.box_team .item span {
  display: block;
  color: #333333;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 20px;
}
.box_team .item h3 {
  color: #f69d36;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.box_team .item:nth-child(2n + 2) .box_img:before {
  left: unset;
  right: -10px;
}
.box_team_2 {
  display: flex;
  flex-wrap: wrap;
}

.box_team_2 .item {
  width: calc(calc(100% / 3) - 20px);
  margin: 0 10px 40px 10px;
}
.box_team_2 .item .box_img {
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}
.box_team_2 .item .box_img:before {
  position: absolute;
  left: -9px;
  top: -11px;
  content: url(../images/bf_img_team_2.png);
  z-index: -1;
}
.box_team_2 .item span {
  color: #333333;
  font-size: 20px;
  display: block;
  margin-bottom: 15px;
}
.box_team_2 .item h3 {
  margin-bottom: 0;
  color: #333333;
  font-size: 20px;
  text-transform: uppercase;
}
.bg_team {
  position: absolute;
  bottom: 200px;
  z-index: -2;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  overflow: hidden;
}
.bg_team img {
  max-width: unset;
  min-height: 100%;
}
div#load_more_team {
  margin: 50px 0 60px 0;
  cursor: pointer;
  display: inline-block;
  transform: scale(0.9);
  transition: 0.3s all;
}
div#load_more_team:hover {
  transform: scale(1);
}
.box_team_2 .item {
  display: none;
}
.page-template-team .elementary_program_sec5 .box_item_bottom {
  margin-bottom: 0;
}

.page-template-team .elementary_program_sec5 .heading_h2 {
  margin-bottom: 48px;
}
.menu_about ul,
.menu_news ul {
  list-style: none;
  margin: 0;
  margin-bottom: 70px;
  display: flex;
  justify-content: center;
}
.menu_about ul a,
.menu_news ul a {
  height: 50px;
  box-shadow: 1px 1px 20px rgba(46, 46, 46, 0.05);
  border-radius: 25px;
  background-color: #ffffff;
  font-family: "SVN-GilroyBold";
  color: #999999;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0 30px;
  min-width: 170px;
  line-height: 50px;
  margin: 0 7px;
  display: inline-block;
  transition: 0.3s all;
}

.menu_about li.current-menu-item a,
.menu_about ul a:hover,
.menu_news li.current-menu-item a,
.menu_news ul a:hover {
  background-color: #f69b31;
  color: white;
}

.menu_news ul a {
  border: 1px solid #f69a31;
  color: #f59a40;
  min-width: 130px;
}
.vision_mistion {
  padding-top: 115px;
  min-height: 1300px;
}
.vision_mistion .box .subtitle {
  margin-bottom: 20px;
}
.vision_mistion .box .item {
  width: 50%;
  float: left;
}
.vision_mistion .box .item h3 {
  color: #20344b;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.vision_mistion .box {
  padding-left: 100px;
}
.vision_mistion .box .item_first .content_inner {
  padding-right: 140px;
}
.vision_mistion .box .item_last .content_inner {
  padding-right: 75px;
}
.vision_mistion .bg {
  width: 100vw;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
}
.vision_mistion .bg img {
  min-width: 100%;
  max-width: unset;
  object-fit: cover;
}
.core_values .box {
  display: flex;
  flex-wrap: wrap;
}
.core_values .box .item_center .box_img {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.core_values .box .item_left,
.core_values .box .item_right {
  width: 25%;
}
.core_values .box .item_center {
  width: 50%;
}
.core_values .heading_h2 {
  margin-bottom: 30px;
}
.core_values .text_center .content {
  max-width: 540px;
  margin: 0 auto 15px auto;
}
.core_values .box .item h3 {
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 20px;
  margin-bottom: 10px;
}
.core_values .box .item h3 .icon {
  margin-right: 10px;
}
.core_values .box .item h3 .icon img {
  object-fit: contain;
}
.core_values .box .item .one_item:not(:last-child) {
  margin-bottom: 40px;
}
.core_values .bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  justify-content: center;
  width: 100vw;
  z-index: -1;
  overflow: hidden;
}
.core_values .bg img {
  max-width: unset;
}
.core_values {
  z-index: 2;
}
.page-template-vision_mission .footer_section {
  padding-top: 380px;
}
.page-template-message .footer_section {
  overflow: hidden;
}
.page-template-message .footer_section {
  padding-top: 80px;
}
section.message {
  padding: 115px 0 130px 0;
}
section.message .content {
  font-size: 19px;
  line-height: 1.5;
}
section.message .content > *:last-child {
  margin-bottom: 0;
}
section.message .box_content {
  padding: 0 70px;
}
section.message .content_inner {
  padding: 105px 115px 130px;
  box-shadow: 2px 2px 59px rgba(0, 48, 79, 0.08);
  border-radius: 20px;
  background-color: rgba(255, 250, 245, 0.8);
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
section.message .content_inner:before {
  position: absolute;
  top: 0;
  right: 0;
  content: url(../images/book_border.png);
  transform: translate(calc(100px), calc(-50%));
}
section.message .menu_about {
  margin-bottom: 170px;
}
section.message .content_inner h1 {
  font-size: 45px;
  margin-bottom: 40px;
}
.message .bg {
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.message .bg img {
  max-width: unset;
}
.preschool_program_2 .box .item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
}
.preschool_program_2 .box .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.preschool_program_2 .box .item .box_img {
  width: 60%;
}
.preschool_program_2 .box .item .box_content {
  width: 40%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.preschool_program_2 .box .item .box_content > img {
  position: absolute;
  right: 0;
  top: -20px;
  max-width: unset;
  z-index: -1;
  height: calc(100% + 20px);
  border-radius: 0 107px 0 0;
}
.preschool_program_2 .box .item .box_img img {
  height: 100%;
}
.preschool_program_2 .box .item .box_content .content_inner {
  padding: 0 85px 0 80px;
}
.preschool_program_2 .box .item.bottom .box_content {
  width: 60%;
}
.preschool_program_2 .box .item.bottom .box_content img {
  right: unset;
  left: 0;
  top: 0;
  border-radius: 0 0 0 95px;
}
.preschool_program_2 .box .item.bottom .box_img {
  width: 40%;
}
.preschool_program_2 .box .item .box_content .content_inner h3 {
  font-family: "SVN-Gilroy";
  color: #ffffff;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.preschool_program_2 .bg {
  position: absolute;
  bottom: -560px;
  width: 100vw;
  display: flex;
  justify-content: center;
  z-index: -1;
  overflow: hidden;
}
.preschool_program_2 .bg img {
  max-width: unset;
}
.preschool_program_2 {
  padding-bottom: 100px;
}
.preschool_program_2 .text_center .heading_h2 {
  margin-bottom: 60px;
}
.preschool_program_3 {
  padding: 110px 0;
}
.preschool_program_3 .text_center .content {
  max-width: 830px;
  margin: 0 auto 35px auto;
}
.preschool_program_3 .box {
  display: flex;
  flex-wrap: wrap;
}
.preschool_program_3 .box .item {
  width: calc(50% - 30px);
  background: white;
  margin: 0 15px;
  box-shadow: 2px 2px 111px rgba(0, 48, 79, 0.15);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.preschool_program_3 .box .item > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.preschool_program_3 .box .item:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, calc(100% - 132px));
  background-color: #edf8ff;
  content: "";
  width: 700px;
  height: 300px;
  border-radius: 50%;
  transition: 0.3s all;
}
.preschool_program_3 .box .item .content_inner {
  padding: 35px 70px 135px 55px;
}
.preschool_program_3 .box .item .content_inner .content {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 60px;
}
.preschool_program_3 .box .item .content_inner h3 {
  font-size: 25px;
  text-transform: uppercase;
  color: #1f344b;
  margin-bottom: 20px;
  line-height: 1.5;
  transition: 0.3s;
}

.preschool_program_3 .box .item .content_inner a {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  font-family: "SVN-GilroyBold";
  color: #1f344b;
  font-size: 25px;
  text-transform: uppercase;
  transition: 0.3s all;
}
.preschool_program_3 .box .item:hover .content_inner a {
  color: white;
}
.preschool_program_3 .box .item .content_inner a span {
  width: 40px;
  height: 40px;
  background-color: #f69b31;
  display: inline-flex;
  margin-left: 20px;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  transition: 0.3s all;
}
.preschool_program_3 .box .item:hover:before {
  background-color: #f69b31;
}
.preschool_program_3 .box .item:hover .content_inner a span {
  background-color: rgba(51, 51, 51, 0.6);
}
.preschool_program_4 .box {
  display: flex;
  margin-bottom: 90px;
}
.preschool_program_4:before {
  position: absolute;
  top: 300px;
  right: 0;
  /*transform: translateX(-50%);*/
  content: url(../images/bf_sec5.png);
  z-index: -1;
}
section.section.preschool_program_4 {
  padding-top: 150px;
}
.preschool_program_4 .box img {
  margin: 0 auto 25px auto;
}
.preschool_program_4 .box h3 {
  color: #333333;
  font-size: 50px;
  margin-bottom: 10px;
}
.preschool_program_4 .box h4 {
  color: #333333;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "SVN-GilroyBold";
}
.preschool_program_4 .box .box_content {
  padding: 0 60px;
}
.preschool_program_4.elementary_program_sec5 .box_item_bottom {
  margin-bottom: 0;
}
.home_last_section.preschool_program_5 {
  padding-top: 200px;
}
.section.section.preschool_program_4.elementary_program_sec5 .heading_h2 {
  margin-bottom: 70px;
}
.news_page {
  padding: 75px 0 60px 0;
}
.category .footer_section,
.single-learning .footer_section,
.page-template-bris_learning_center .footer_section,
.page-template-recruitment .footer_section,
.single-tuyen-dung .footer_section {
  overflow: hidden;
  padding-top: 80px;
}
.news_page .box {
  display: inline-block;
}
.news_page .item {
  width: calc(25% - 20px);
  margin: 0 10px;
  float: left;
  box-shadow: 1px 1px 27px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  position: relative;
}
.news_page .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.news_page .item .box_img {
  width: 100%;
  height: 190px;
  overflow: hidden;
}
.news_page .item .box_img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s all;
}
.news_page .item:hover .box_img img {
  transform: scale(1.2);
}
.news_page .item .content {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 15px;
  color: #666666;
  height: 64px;
}
.news_page .item h3 {
  margin-bottom: 10px;
  color: #333333;
  font-size: 15px;
  line-height: 1.5;
  height: 42px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.news_page .item .box_content {
  padding: 10px 40px 20px 20px;
  position: relative;
}
.news_page .item .box_content span.arrows {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 2px solid #ffffff;
  background-color: #1683c2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 0;
  right: 40px;
  transform: translateY(-50%);
  transition: 0.3s all;
}
.news_page .item:hover .box_content span.arrows {
  background-color: #f59a40;
}
.news_page .item .box_content .date_post {
  color: #999999;
  font-size: 12px;
  display: block;
  margin-bottom: 15px;
}
.news_page .item:nth-child(1) {
  width: calc(50% - 20px);
}
.news_page .item:not(:first-child) .content {
  display: none;
}
.news_page .item:first-child .box_img {
  height: 390px;
}
.news_page .item:nth-child(2),
.news_page .item:nth-child(3) {
  margin-bottom: 20px;
}
.news_page .item:first-child .box_content {
  padding: 30px 50px 60px 40px;
}
.news_page .item:first-child .box_content h3 {
  color: #515151;
  font-size: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.news_page ul.thenativePagination {
  list-style: none;
  margin: 50px 0 0 0;
  display: flex;
  justify-content: center;
}
.news_page ul.thenativePagination a {
  width: 41px;
  height: 41px;
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #666666;
  font-size: 18px;
  border-radius: 50%;
  margin: 0 4px;
  transition: 0.3s all;
}
.news_page ul.thenativePagination a i {
  font-size: 11px;
}
.news_page ul.thenativePagination li.active a,
.news_page ul.thenativePagination li:hover a {
  background-color: #1683c2;
  color: white;
  border-color: #1683c2;
}

li.thenativePaginationStart,
li.thenativePaginationEnd {
  display: none !important;
}
.news_page .text_center .heading_h2 {
  margin-bottom: 40px;
}
.menu_news ul {
  margin-bottom: 35px;
}
.single-post .footer_section {
  overflow: hidden;
  padding-top: 70px;
}
.post_details {
  padding: 140px 0 65px 0;
}
.post_details .content img {
  width: 100%;
  margin: 10px 0;
}
.post_details .title_post {
  color: #1683c2;
  font-size: 38px;
  padding-bottom: 30px;
  display: block;
  border-bottom: 2px solid #e1e1e1;
  margin-bottom: 25px;
}
.post_details .date_post {
  opacity: 0.8;
  color: #666666;
  font-size: 14px;
  display: block;
  margin-bottom: 25px;
}
.post_details .share_post {
  border-top: 1px solid rgba(183, 183, 183, 0.5);
  padding-top: 30px;
  margin-top: 50px;
  display: flex;
  align-items: center;
}
.post_details .share_post h3 {
  margin-bottom: 0;
  margin-right: 20px;
  color: #333333;
  font-size: 14px;
}

div#socialSharing a i {
  /*width: 26px;*/
  /*height: 26px;*/
  /*border-radius: 50%;*/
  /*border: 1px solid #333333;*/
  /*color: #333333;*/
  width: unset;
  left: unset;
}
div#socialSharing a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #333333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #333333;
  margin-right: 6px;
  transition: 0.3s all;
}
div#socialSharing a:hover {
  border-color: #f59a40;
  color: #f59a40;
}
.list_cat {
  list-style: none;
  margin: 0;
  margin-bottom: 30px;
}
.list_cat a {
  color: #333333;
  font-size: 13px;
  display: flex;
  align-items: center;
  padding: 13px 0;
}
.list_cat li:not(:last-child) a {
  border-bottom: 1px solid rgba(215, 215, 215, 0.6);
}
.list_cat a i {
  margin-right: 10px;
  font-size: 9px;
}
h3.title_cat {
  color: #333333;
  font-size: 20px;
  margin-bottom: 14px;
  padding-bottom: 15px;
  border-bottom: 2px solid #d7d7d7;
}
.post_related .item {
  position: relative;
  display: flex;
  padding: 15px 0;
}
.post_related .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.post_related .item .box_img {
  width: 135px;
  height: 90px;
}
.post_related .item .box_img img {
  display: block;
  width: 100%;
  height: 100%;
}
.post_related .item .box_content {
  width: calc(100% - 145px);
  padding-left: 10px;
  padding-top: 12px;
}
.post_related .item .box_content h3 {
  color: #333333;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}
.post_related .item .box_content .date_post {
  font-size: 12px;
  color: rgba(102, 102, 102, 0.8);
}
.post_related .item:not(:last-child) {
  border-bottom: 1px solid rgba(215, 215, 215, 0.6);
}
.post_details .content_inner {
  padding-right: 120px;
}
.post_details > .bg {
  position: absolute;
  top: 50px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  width: 100vw;
}
.learning_details_sec1 {
  padding-top: 50px;
}
.learning_details_sec1 .grid-container {
  display: flex;
  flex-wrap: wrap;
}
.learning_details_sec1 .content_inner {
  padding-top: 60px;
  padding-right: 40px;
}
.learning_details_sec1 .box_img img {
  max-width: unset;
}
.heading_h2 b {
  color: #f69a31;
}
.learning_details_sec2 .box .item .intro {
  background-color: #1683c2;
}
.learning_details_sec2 .box .item:nth-child(even) .intro {
  background-color: #f59a40;
}
.learning_details_sec2.admissions_sec1 .box .item .intro {
  margin-bottom: 30px;
}
.learning_details_sec2.admissions_sec1 .item .box_content {
  padding: 0 110px 45px;
}
.learning_details_sec2.admissions_sec1
  .item
  .box_content
  .content
  > *:last-child {
  margin-bottom: 0;
}
.learning_details_sec2.admissions_sec1 .content_bottom {
  margin-top: 55px;
}
.learning_details_sec2.admissions_sec1 .bg {
  position: absolute;
  bottom: -150px;
  width: 100vw;
  display: flex;
  justify-content: center;
  overflow: hidden;
  z-index: -1;
}
.learning_details_sec2.admissions_sec1 .bg img {
  max-width: unset;
}
.learning_details_sec2.admissions_sec1 .box .item {
  background: white;
}
.learning_details_sec3 .box {
  display: flex;
  flex-wrap: wrap;
}
.learning_details_sec3 .box .item {
  width: 25%;
}
.learning_details_sec3 .heading_h2 {
  margin-bottom: 80px;
}
.learning_details_sec3 .box {
  display: flex;
}
.learning_details_sec3 .box .item img {
  margin-bottom: 40px;
}
.learning_details_sec3 .box .item h3 {
  color: #333333;
  font-size: 50px;
  margin-bottom: 0;
}
.learning_details_sec3 .box .item .content_inner {
  padding: 0 40px;
}
.learning_details_sec3 .bg {
  position: absolute;
  top: 50%;
  width: 100vw;
  overflow: hidden;
  transform: translateY(-50%);
  z-index: -1;
  display: flex;
  justify-content: center;
}
.learning_details_sec3 .bg img {
  max-width: unset;
}
section.section.learning_details_sec4.about_sec2.elementary_program_sec5 {
  padding-bottom: 85px;
  padding-top: 120px;
}
section.section.learning_details_sec4.about_sec2.elementary_program_sec5
  .box_item_bottom {
  margin-bottom: 0;
  margin-top: 95px;
}
section.section.learning_details_sec3 {
  padding: 130px 0;
}
.learning_details_sec1 > img {
  position: absolute;
  right: 100px;
  top: 60px;
  z-index: -1;
}
.learning_sec1.about_us .box_video a {
  pointer-events: none;
}
.learning_sec1.about_us .box_video a:before {
  display: none;
}
.learning_sec2 .box_program {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.learning_sec2 .box_program .item {
  width: calc(50% - 30px) !important;
  margin: 0 15px 30px 15px;
  transform: unset;
}
.learning_sec2 {
  padding-bottom: 80px;
  padding-top: 40px;
}
.learning_sec2 .text_center .content {
  max-width: 700px;
  margin: auto;
}
.learning_sec2 .box_program .item:before {
  width: 1000px;
  transform: translate(-50%, calc(50% + 130px));
}
.learning_sec2 .box_program img.logo_bottom {
  max-height: 70px;
}
.learning_sec2 .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  z-index: -2;
}
.learning_sec2 .bg img {
  max-width: unset;
}

.learning_sec2 .box_program span.arrow,
.about_sec3 .box_program .item .content span.arrow {
  position: absolute;
  right: 80px;
  bottom: 22px;
  width: 45px;
  height: 45px;
  background-color: #f69a31;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s all;
  color: white;
}
.about_sec3 .box_program .item .content span.arrow {
  top: 50%;
  transform: translateY(-50%);
  left: unset;
  right: 30px;
}
.learning_sec2 .box_program .item:hover span.arrow,
.about_sec3 .box_program .item:hover .content span.arrow {
  background-color: rgba(51, 51, 51, 0.41);
}
.recruitment_sec1 {
  padding: 100px 0 80px 0;
}
.recruitment_sec1 .bg {
  position: absolute;
  top: 76px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}
.recruitment_sec1 .bg img {
  max-width: unset;
}
.recruitment_sec1 .box {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.recruitment_sec2 .heading_h2 {
  font-size: 36px;
  margin-bottom: 40px;
}
.recruitment_sec1 .box .content {
  font-size: 18px;
}
.recruitment_sec1 .box h2.title {
  margin-bottom: 30px;
  font-size: 26px;
  line-height: 1.5;
}
.recruitment_sec2 {
  z-index: 2;
}
.recruitment_sec2 .bg {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  z-index: -1;
  overflow: hidden;
}
.recruitment_sec2 .bg img {
  max-width: unset;
}
.page-template-recruitment .footer_section {
  padding-top: 160px;
}
.recruitment_sec2 {
  padding-bottom: 100px;
}
.tuition_sec1 {
  padding-top: 100px;
}
.tuition_sec1 .heading_h2 {
  margin-bottom: 35px;
}
.tuition_sec1 .box {
  display: flex;
  flex-wrap: wrap;
}
.tuition_sec1 .box .item {
  width: calc(50% - 30px);
  margin: 0 15px;
}
.tuition_sec1 .box .top_info h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 0;
}

.tuition_sec1 .box .top_info {
  background-color: #1683c2;
  padding: 20px;
  min-height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  position: relative;
  margin-bottom: 30px;
}
.tuition_sec1 .box .top_info .border {
  position: absolute;
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px dashed #ffffff;
  background: transparent;
  border-radius: 30px;
}
.tuition_sec1 .box .one_item {
  box-shadow: 2px 2px 45px rgba(0, 91, 154, 0.15);
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
  border-radius: 30px;
}
.tuition_sec1 .box .one_item ul {
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.tuition_sec1 .box .one_item .content_inner {
  /*display: flex;*/
  padding: 0 20px 40px 20px;
}
.tuition_sec1 .box .one_item ul li {
  width: calc(50% - 36px);
}
.tuition_sec1 .box .one_item ul li:first-child {
  margin-right: 10px;
}
.tuition_sec1 .box .one_item ul li:last-child {
  margin-left: 10px;
}
.tuition_sec1 .box .one_item li.title_col {
  background-color: rgba(246, 154, 49, 0.11);
  color: #f69a31;
  font-size: 18px;
  font-family: "SVN-GilroyBold";
  border-radius: 23px;
  padding: 13px;
  text-align: center;
  margin-bottom: 15px;
}
.tuition_sec1 .box .one_item .content_inner li:not(.title_col) {
  padding: 15px 0;
  border-bottom: 1px dashed #e1e1e1;
  font-family: "SVN-GilroyBold";
  font-size: 16px;
}
.tuition_sec1 .box .one_item .content_inner li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.tuition_sec1 .box .one_item li i {
  color: #1683c2;
  margin-right: 2px;
}
.tuition_sec1 .box .one_item ul.left_col li:not(.title_col) {
  margin-left: 20px;
}
.tuition_sec1 .box .one_item ul.right_col li:not(.title_col) {
  margin-right: 20px;
  text-align: center;
  font-size: 18px;
  color: #1683c2;
}
.tuition_sec1 .box .box_item {
  width: calc(100% - 40px);
  display: flex;
  margin: 0 20px;
  padding: 15px 0;
  border-bottom: 1px dashed #e1e1e1;
}
.tuition_sec1 .box .box_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.tuition_sec1 .box .box_item > div {
  width: 50%;
}
.tuition_sec1 .box .box_item > div i {
  margin-right: 2px;
  color: #1683c2;
}
.tuition_sec1 .box .box_item > div.left {
  font-size: 16px;
  font-family: "SVN-GilroyBold";
}
.tuition_sec1 .box .box_item > div.right {
  font-size: 18px;
  text-align: center;
  color: #1683c2;
  font-family: "SVN-GilroyBold";
}
.tuition_sec2 .box {
  box-shadow: 2px 2px 45px rgba(0, 91, 154, 0.15);
  border-radius: 36px;
  background-color: #ffffff;
  padding: 20px 10px;
  margin-bottom: 50px;
}
.tuition_sec2 .box .item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.tuition_sec2 .heading_h2 {
  margin-bottom: 30px;
}
.tuition_sec2 .box .item .one_item {
  width: 40%;
  text-align: center;
}
.tuition_sec2 .box .item .one_item:first-child {
  width: 20%;
}
.tuition_sec2 .box .item.title_col .one_item .inner_col {
  color: #f69a31;
  font-size: 18px;
  font-family: "SVN-GilroyBold";
  background-color: rgba(246, 154, 49, 0.11);
  min-height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  border-radius: 16px;
}
.tuition_sec2 .box .item:not(.title_col) .one_item {
  text-align: left;
}
.tuition_sec2 .box .item:not(.title_col) {
  padding: 15px 0px;
  margin: 0 30px;
  border-bottom: 1px dashed #e1e1e1;
}
.tuition_sec2 .box .item:not(.title_col) .one_item.col_2,
.tuition_sec2 .box .item:not(.title_col) .one_item.col_3 {
  text-align: center;
  color: #1683c2;
  font-size: 18px;
}
.tuition_sec2 .box .item .one_item.col_1 i {
  color: #1683c2;
  margin-right: 4px;
  font-size: 12px;
}
.tuition_sec2 .box .item:last-child {
  border: none;
}
.tuition_sec2 .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  overflow: hidden;
  z-index: -1;
  width: 100vw;
}
.tuition_sec2 .bg img {
  max-width: unset;
}
section.section.tuition_sec3 .box {
  position: relative;
}
.section.section.tuition_sec3 .box .box_content {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  padding: 45px 55px;
  border-radius: 59px;
  background-color: #1683c2;
}
.section.section.tuition_sec3 .box .box_content:before {
  position: absolute;
  bottom: 0;
  left: 72px;
  width: 41px;
  height: 41px;
  border-radius: 9px;
  background-color: #1683c2;
  transform: translateY(calc(50% - 8px)) rotate(45deg);
  content: "";
}
.section.section.tuition_sec3 .box .box_content .border {
  position: absolute;
  left: 18px;
  top: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 50px;
  border: 2px dashed #ffffff;
  pointer-events: none;
}
.section.section.tuition_sec3 .box .box_content h4 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 5px;
}
.section.section.tuition_sec3 .box .box_content span {
  display: block;
  margin-bottom: 20px;
}
.section.section.tuition_sec3 .box .box_content h3,
.section.section.tuition_sec3 .box .box_content h3 a {
  margin-bottom: 0;
  color: #f7a752;
  font-size: 30px;
}
section.section.tuition_sec2 {
  padding: 180px 0;
}
section.section.tuition_sec3 {
  padding: 100px 0;
}
section.section.tuition_sec3 .heading_h2 {
  margin-bottom: 30px;
}
section.section.tuition_sec3 .box.top {
  margin-bottom: 80px;
}
.tuition_sec2 .similar_button.button-white a {
  background: transparent;
}
section.section.tuition_sec3 .box.bottom .box_content {
  right: unset;
  left: 55px;
}
section.section.tuition_sec3 .box.bottom .bg {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100vw;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
section.section.tuition_sec3 .box.bottom .bg img {
  max-width: unset;
}
.tuition_sec4 .box_content {
  padding-left: 110px;
}
.tuition_sec4 .heading_h2 {
  margin-bottom: 40px;
}
.tuition_sec4 .box {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.tuition_sec4 .box img {
  max-width: unset;
}
.tuition_sec4 .box .content_inner {
  position: absolute;
  top: 50%;
  left: 80px;
  max-width: 317px;
  transform: translateY(-50%);
}
.tuition_sec4 .box span {
  font-size: 18px;
}
.tuition_sec4 .box h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.tuition_sec4 .box .content {
  margin-bottom: 20px;
}
.tuition_sec4 .box a {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #ffffff;
  font-size: 16px;
  position: relative;
  border-radius: 25px;
  background-color: #f69a31;
  min-width: 150px;
  display: inline-block;
  text-align: center;
}
.tuition_sec4 .box a:before {
  position: absolute;
  left: -4px;
  right: -4px;
  top: -4px;
  bottom: -4px;
  border-radius: 29px;
  border: 1px dashed #f69a31;
  content: "";
}
.home_last_section.about_sec4.tuition_sec5 {
  padding-top: 175px;
}
.main-navigation .main-nav ul li[class*="current-menu-"] > a,
.main-navigation .main-nav ul li[class*="current-menu-"] > a:hover,
.main-navigation .main-nav ul li[class*="current-menu-"].sfHover > a {
  background: transparent;
  color: #f69a31;
}
section.section.search_page {
  padding: 120px 0 150px;
}
.search_page .item {
  margin-bottom: 30px;
}
.search_page .item h3 {
  color: #333333;
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 0;
}
.search_page .item .box_img {
  height: 185px;
  overflow: hidden;
  border-radius: 10px;
}
.search_page .item .box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
  transform: scale(1);
}
.search_page .item:hover .box_img img {
  transform: scale(1.2);
}
.load_more_post {
  height: 50px;
  background-color: #f6992f;

  display: inline-block;
  line-height: 50px;
  font-size: 15px;
  padding: 0 30px;
  border-radius: 20px;
  color: white;
  text-transform: uppercase;
}
.load_more_post i {
  margin-left: 5px;
}
section.section.page_404 {
  height: 600px;
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section.page_404 h1 {
  margin-bottom: 0;
  font-size: 130px;
}
body .form_footer div.wpcf7 .ajax-loader {
  left: unset;
  right: 10px;
  bottom: -25px !important;
  top: unset;
}
.main-navigation ul ul {
  background: white;
}
.main-navigation .main-nav ul ul li a {
  color: #333333;
}
.main-navigation .main-nav ul ul li[class*="current-menu-"] > a,
.main-navigation .main-nav ul ul li:hover > a,
.main-navigation .main-nav ul ul li:focus > a,
.main-navigation .main-nav ul ul li.sfHover > a,
.main-navigation .main-nav ul ul li[class*="current-menu-"] > a:hover,
.main-navigation .main-nav ul ul li[class*="current-menu-"].sfHover > a {
  background: #1683c1;
  color: white;
}
.navigation-search input {
  height: 50px;
}
.navigation-search {
  left: unset !important;
  right: 0;
  bottom: -66px;
  top: unset;
  max-width: 350px;
}

.tuition_sec4 .box_content p {
  font-size: 20px;
}
.tuition_sec4 .box_content span {
  font-size: 25px;
}
.grid-100.content_show {
  font-size: 18px;
  color: white;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  margin: 0;
  color: white;
  font-size: 18px;
}

section:not(.banner_slider) div:not(.customer_comment) ul.slick-dots {
  position: unset;
  width: 100%;
  text-align: center;
  transform: unset;
  margin-top: 30px;
}
section:not(.banner_slider) ul.slick-dots li:not(.slick-active) button {
  background: #20344b;
}
.customer_comment .slick-list {
  padding: 50px 0 0 0;
}
ul.options.language_flag {
  margin-left: 20px;
  display: inline-block;
}
ul.options.language_flag a {
  font-size: 0 !important;
  line-height: 33px;
  display: flex;
  align-items: center;
}
ul.options.language_flag a img {
  margin: 0 5px 0 0 !important;
}

@media only screen and (max-height: 800px) {
  .popup_gallery .popup_inner .box_img img {
    max-height: 400px;
  }
}

@media only screen and (max-width: 1800px) {
  img.bg_sec2 {
    width: 100%;
  }
}

@media only screen and (max-width: 1440px) {
  .banner_slider .slick-prev.slick-arrow {
    left: 20px;
  }
  .banner_slider .slick-next.slick-arrow {
    right: 20px;
  }
  .admissions_sec2 .box_slider > img {
    max-width: 110%;
  }
  .admissions_sec2 .slick-next.slick-arrow {
    right: -65px;
    top: calc(50% - 75px);
  }
  .admissions_sec2 .slick-prev.slick-arrow {
    left: -75px;
    top: calc(50% + 20px);
  }
  .about_sec2 .box_program .slick-list {
    margin: 0 -15px !important;
  }
  .about_sec2 .box_program .one_item .box_img:after {
    left: -15px;
  }
  .about_sec2 .slick-prev.slick-arrow {
    left: -80px;
  }
  .about_sec2 .slick-next.slick-arrow {
    right: -80px;
  }
  .contact_page .slick-prev.slick-arrow {
    left: -60px;
  }
  .contact_page .slick-next.slick-arrow {
    right: -60px;
  }
}
