@import url("https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spectral", serif;
}

html {
  scroll-behavior: smooth;
}

.scrollTop {
  display: flex;
  position: fixed;
  z-index: 9999;
  bottom: 150px;
  right: 10px;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  background: #2461ff;
  cursor: pointer;

  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

.scrollTop_active {
  bottom: 100px;
  visibility: visible;
  opacity: 1;
}

.scrollTop img {
  width: 50%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* body::-webkit-scrollbar {
  width: 20px;
  opacity: 1;
}

body::-webkit-scrollbar-track {
  background: #2462ff82;
  border-radius: 6px;
  opacity: 1;
}

body::-webkit-scrollbar-thumb {
  background: #2461ff;
  opacity: 1;
} */

body::-webkit-scrollbar {
  width: 0px;
  opacity: 0;
  display: none;
}

body::-webkit-scrollbar-track {
  background: none;
  opacity: 0;
  display: none;
}

body::-webkit-scrollbar-thumb {
  background: none;
  opacity: 0;
  display: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

header {
  display: flex;
  width: 100%;
  height: 70px;
  justify-content: center;
  align-items: center;
  background: #2461ff;
}

.header_cont {
  display: flex;
  width: 95%;
  height: 100%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  display: flex;
  height: 75%;
  width: auto;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.header_logo img {
  height: 100%;
}

.header_line {
  display: flex;
  width: 60%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.header_l_card {
  display: flex;
  width: auto;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: linear 0.3s;
}

.header_l_card .a_a {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  text-align: center;

  color: #ffffff;
}

.hl_imf {
  display: flex;
  height: 40%;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 5px;
}

.hl_imf img {
  height: 100%;
}

.burGer {
  display: flex;
  margin-left: 25px;
}

/* menu */

.menu {
  display: flex;
  width: 100%;
  height: 40px;
  background: white;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #2461ff;
}

.menu_cont {
  display: flex;
  width: 95%;
  height: 100%;
  max-width: 1200px;
  justify-content: center;
  align-items: center;
}

.menu_cont nav {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.menu_cont nav .ul {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu_cont nav .ul .li {
  display: block;
  height: 100%;
}

.menu_cont nav .ul .li .titleName {
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  align-items: center;
  color: black;
  transition: linear 0.3s;
  padding: 0px 10px;
}

.menu_cont nav .ul .li .titleName:hover {
  transition: linear 0.3s;
  background: #2461ff;
  color: white;
}

.baekUp {
  margin-left: 5px;
  transition: linear 0.3s;
  transform: rotate(180deg);
}

.menu_cont nav .ul .li .titleName:hover > .baekUp {
  transition: linear 0.3s;
  transform: rotate(0deg);
}
.menu_cont nav .ul .li a {
  display: flex;
  height: 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 17px;
  color: black;
}

.menu_cont nav .ul .li ul {
  background: #ffffff;
}

.menu_cont nav .ul .li ul li a {
  transition: linear 0.3s;
  padding: 10px 10px;
}

.menu_cont nav .ul .li ul li a:hover {
  background: #2461ff;
  transition: linear 0.3s;
  color: white;
}

nav .ul .li ul {
  position: absolute;
  transition: linear 0.3s;
  visibility: hidden;
  opacity: 0;
  top: 40px;
  display: flex;
  flex-direction: column;
  height: auto;
  z-index: 999;
}

nav .ul .li:hover ul {
  visibility: visible;
  opacity: 1;
  transition: linear 0.3s;
}

nav .ul .li ul li {
  display: block;
}

@media screen and (max-width: 1200px) {
  .header_line {
    width: 80%;
  }
}

@media screen and (max-width: 900px) {
  .header_l_card .a_a {
    display: none;
  }

  .header_line {
    width: 20%;
  }

  .header_l_card:hover {
    transition: linear 0.3s;
    transform: scale(1.15);
  }
}

@media screen and (max-width: 900px) {
  /* burger */

  .burGer {
    position: relative;
    display: none;
    width: 34px;
    height: 25px;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }

  .burGer span {
    position: relative;
    display: flex;
    border: 2px solid #ccd2e3;
    border-radius: 2px;
    width: 30px;
    margin: 3px 0px;
    transition: linear 0.3s;
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
  }

  .burGer span:nth-child(1) {
    top: 0;
    transform: rotate(0deg);
    transition: linear 0.3s;
  }

  .activeBurger .burGer span:nth-child(1) {
    transition: linear 0.3s;
    transform: rotate(-45deg);
    top: 10px;
  }

  .activeBurger .burGer span:nth-child(2) {
    transition: linear 0.3s;
    transform: translateX(10px);
    opacity: 0;
    visibility: hidden;
  }

  .burGer span:nth-child(3) {
    bottom: 0;
    transform: rotate(0deg);
    transition: linear 0.3s;
  }

  .activeBurger .burGer span:nth-child(3) {
    transition: linear 0.3s;
    transform: rotate(45deg);
    bottom: 9px;
  }

  .burGer {
    display: flex;
  }

  /* /byrger */
  .header_line {
    width: auto;
  }

  .header_l_card {
    padding-left: 10px;
  }

  /* menu */
  .menu {
    position: absolute;
    width: 100%;
    height: auto;
    background: none;
    justify-content: flex-start;
    top: 80px;
    left: 0;
    transition: linear 0.5s;
    visibility: hidden;
    opacity: 0;
    z-index: 999999999;
  }

  .menuActive {
    transition: linear 0.5s;
    visibility: visible;
    opacity: 1;
    top: 70px;
  }

  .menu_cont {
    width: 100%;
    height: auto;
    background: none;
    justify-content: flex-start;
  }

  .menu_cont nav .ul {
    flex-direction: column;
    background: white;
    width: 100%;
    height: auto;

    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    padding-bottom: 100px;
  }

  .menu_cont nav .ul .li {
    display: flex;
    align-items: flex-start;
    padding: 0;
    height: auto;
  }

  .menu .menu_cont nav .ul .li a {
    padding: 10px 10px;
    width: 100%;
    font-size: 20px;
    font-weight: 400;
  }

  .menu .menu_cont nav .ul .li .titleName {
    font-weight: 600;
    justify-content: flex-start;
  }

  .menu_cont nav .ul .li ul {
    padding: 0;
  }

  .menu_cont nav .ul .li ul li {
    padding: 0;
  }

  .menu_cont nav .ul .li ul li a {
    padding: 0;
  }

  .menu_cont nav .ul .li ul li a {
    padding: 0;
  }

  .ul li {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    flex-direction: column;
  }

  .menu .menu_cont nav .ul .li ul {
    top: auto;
    width: 100%;
    position: relative;
    visibility: visible;
    opacity: 1;
    display: none;
  }

  .menu .menu_cont nav .ul .liActive ul {
    display: flex;
  }

  .menu .menu_cont nav .ul .li ul a {
    padding-left: 20px;
    width: 100%;
  }

  nav .ul .li:hover ul {
    position: relative;
  }

  /* /menu */
}

/* header and menu end */

/* slide */

.wSlideHeight {
  height: 600px;
}

.baekSlide {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.baekSlide_img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.baekSlide_img img {
  width: 120%;
  /* height: 100%; */
}

.baekSlide_cont {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  background: rgba(2, 63, 89, 0.4);
}

.baekSlide_card {
  display: flex;

  width: 95%;
  max-width: 1200px;
  padding: 46px 26px;
  background: rgba(0, 0, 0, 0.36);
  border-radius: 25px;
  justify-content: space-between;
  align-items: flex-start;
}

.baekSlide_text {
  display: flex;
  width: 80%;
  font-style: normal;
  font-weight: 400;
  font-size: 65px;
  line-height: normal;
  color: #ffffff;
}

.baek_img {
  display: flex;
  /* width: 158.7px;
  height: 158.7px; */

  width: 15%;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.baek_img img {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .wSlideHeight {
    height: 400px;
  }

  .baekSlide_card {
    padding: 36px 26px;
  }

  .baekSlide_text {
    width: 80%;
    font-size: 45px;
  }

  .baek_img {
    width: 15%;
  }
}

@media screen and (max-width: 800px) {
  .wSlideHeight {
    height: 380px;
  }

  .baekSlide_card {
    padding: 25px 20px;
  }

  .baekSlide_text {
    width: 80%;
    font-size: 35px;
  }

  .baek_img {
    width: 18%;
  }
}

@media screen and (max-width: 600px) {
  .wSlideHeight {
    height: 350px;
  }

  .baekSlide_card {
    padding: 25px 20px;
  }

  .baekSlide_text {
    width: 85%;
    font-size: 28px;
  }

  .baek_img {
    width: 15%;
  }
}

@media screen and (max-width: 533px) {
  .wSlideHeight {
    height: 350px;
  }

  .baekSlide_card {
    padding: 25px 20px;
  }

  .baekSlide_text {
    width: 80%;
    font-size: 28px;
  }

  .baek_img {
    width: 20%;
  }
}

@media screen and (max-width: 473px) {
  .wSlideHeight {
    height: 300px;
  }

  .baekSlide_card {
    padding: 25px 20px;
  }

  .baekSlide_text {
    width: 80%;
    font-size: 25px;
    line-height: normal;
  }

  .baek_img {
    width: 20%;
  }
}

@media screen and (max-width: 410px) {
  .wSlideHeight {
    height: 300px;
  }

  .baekSlide_img img {
    /* width: 100%; */
    height: 100%;
  }

  .baekSlide_card {
    padding: 25px 20px;
  }

  .baekSlide_text {
    width: 80%;
    font-size: 25px;
    line-height: normal;
  }

  .baek_img {
    width: 18%;
  }
}

/* /slide */

/* mission */

.mission {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.mission_cont {
  display: flex;
  width: 95%;
  max-width: 1200px;
  justify-content: space-around;
  /* align-items: center; */
  /* flex-wrap: wrap; */
}

.mission_card {
  display: flex;
  width: 100%;
  max-width: 500px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 35px;
  margin: 20px;
}

.mission_title {
  display: flex;
  width: 100%;

  font-style: normal;
  font-weight: 500;
  font-size: 33px;
  line-height: 103.7%;
}

.mission_subtitle {
  display: flex;
  width: 100%;
  margin: 23px 0 12px 0;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 103.7%;
}

.mission_text {
  display: flex;
  width: 100%;
  font-family: "Spectral";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* text-align: justify; */
}

.car1M {
  color: black;
  background: #ffffff;
  box-shadow: 0px 0px 33px 1px rgba(36, 97, 255, 0.45);
  border-radius: 22px;
}
.card2M {
  color: #ffffff;
  background: #2461ff;
  box-shadow: 0px 0px 33px 1px rgba(0, 0, 0, 0.45);
  border-radius: 22px;
}
@media screen and (max-width: 800px) {
  .mission_cont {
    flex-direction: column;
  }

  .mission_card {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
  }
}
@media screen and (max-width: 500px) {
  .mission_card {
    padding: 25px;
    margin: 20px 0px;
  }

  .mission_title {
    font-size: 25px;
    line-height: normal;
  }
  .mission_subtitle {
    font-size: 19px;
    line-height: normal;
    margin: 12px 0 10px 0px;
  }
  .mission_text {
    font-size: 16px;
    line-height: normal;
    text-align: justify;
  }
}
/* /misson */

/* rektor */
.rektor {
  display: flex;
  margin: 55px 0px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.rektor_cont {
  display: flex;
  width: 95%;
  max-width: 1200px;
  justify-content: space-between;
  /* align-items: center; */
  flex-wrap: wrap;
}

.rektor_card {
  display: flex;
  width: 48%;
  flex-direction: column;
  justify-content: space-between;
}
.allRe {
  display: flex;
  width: 100%;
}

.top,
.bottom {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.rektor_status {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
  color: #2461ff;
}

.rektor_name {
  width: 100%;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 33px;
  margin: 5px 0;
  color: #000000;
}

.rektor_text {
  width: 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;

  color: rgba(0, 0, 0, 0.8);
}

.rektor_sts {
  width: 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;

  color: #000000;
}

.rektor_desc {
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 10px;
  color: #2461ff;
}

.rektor_card img {
  width: 100%;
}

@media screen and (max-width: 700px) {
  .rektor {
    margin: 25px 0px;
  }
  .rektor_cont {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .rektor_card {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .rektor_status,
  .rektor_name,
  .rektor_text,
  .rektor_sts,
  .rektor_desc {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .rektor_card img {
    width: 80%;
  }
}
/* /rektor */

/* allHead */
.allHead {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 55px;
}

.allHead_cont {
  display: flex;
  width: 95%;
  max-width: 1200px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.allHead_title {
  display: flex;
  width: 100%;
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 38px;
  color: #000000;
}

.allHead_subtitle {
  display: flex;
  width: 100%;

  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;

  color: #000000;
}

/* /allHead */

.allOtd {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.allOtd_cont {
  display: flex;
  width: 95%;
  max-width: 1200px;
  justify-content: space-around;
  /* align-items: center; */
  flex-wrap: wrap;
}

.allOtd_card {
  display: flex;
  width: 100%;
  max-width: 230px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 17px;
  margin: 15px;
  background: #ffffff;
  box-shadow: 0px 0px 32px -3px rgba(36, 97, 255, 0.5);
  border-radius: 20px;
  transition: linear 0.3s;
}

.allOtd_card:hover {
  transition: linear 0.3s;
  transform: scale(1.05);
}

.allOtd_img {
  display: flex;
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
}

.allOtd_img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.allOtd_namr {
  display: flex;
  width: 100%;
  /* height: 55px; */
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;

  color: #000000;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .allOtd_cont {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .allOtd_card {
    display: flex;
    width: 80%;
    max-width: 100%;
    margin: 15px 0;
  }
}

@media screen and (max-width: 400px) {
  .allOtd_card {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 15px 0;
  }
}
/* /allOtd */

/* /ingo_main */

.ingo_main {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.ingo_main_cont {
  display: flex;
  width: 95%;
  max-width: 1200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ingo_main_title {
  display: flex;
  width: 100%;
  margin: 25px 0 11px 0px;
  border-bottom: 2px solid #2461ff;
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 38px;
  color: #000000;
}

.ingo_main_text {
  display: flex;
  width: 100%;

  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;

  color: #000000;
}

@media screen and (max-width: 500px) {
  .ingo_main_title {
    display: flex;
    width: 100%;
    margin: 25px 0 11px 0px;
    border-bottom: 2px solid #2461ff;
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
    color: #000000;
  }

  .ingo_main_text {
    display: flex;
    width: 100%;

    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: justify;

    color: #000000;
  }
}
/* ingo_main  */

/* about_us */

.about_us {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 45px 0;
}

.about_us_cont {
  display: flex;
  width: 95%;
  max-width: 1200px;
  justify-content: center;
  align-items: center;
  border: 1px solid #2461ff;
  border-radius: 19px;
}

.about_us_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 16px 20px;
}

.us_card1 {
  width: 300px;
}

.us_card2 {
  width: 70%;
}

.about_us_card img {
  width: 90%;
}

.about_us_card_title {
  display: flex;
  width: 100%;

  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 38px;
  text-align: center;

  color: #000000;
}

.about_us_card_text {
  display: flex;
  width: 100%;
  height: 200px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  color: #000000;
  overflow: hidden;
  position: relative;
}

.bottomLineBoxShadow {
  position: absolute;
  bottom: 0;
  background: #ffffff;
  background: #ffffff;
  box-shadow: 0px -20px 58px 39px #ffffff;
  display: flex;
  width: 100%;
  height: 20px;
  left: 0;
}
.about_us_card_line {
  display: flex;
  width: 100%;
  margin-top: 25px;
}

.about_us_card_btn {
  display: flex;
  padding: 10px 55px;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;

  background: #2461ff;
  border-radius: 21px;

  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-align: center;

  color: #ffffff;
}

@media screen and (max-width: 800px) {
  .about_us_cont {
    flex-direction: column;
  }

  .us_card1 {
    width: 100%;
  }

  .about_us_card img {
    width: 30%;
  }

  .us_card2 {
    width: 100%;
  }
}

/* /about_us */

/* footer */

footer {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: #000000;
  flex-direction: column;
}

.footer_cont {
  display: flex;
  width: 95%;
  max-width: 1200px;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer_cont_card {
  display: flex;
  width: 45%;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.footer_icon {
  display: flex;
  width: 213.85px;
  height: 61px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.footer_icon img {
  width: 100%;
}

.footer_title {
  display: flex;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 15px;
  color: #ffffff;
  margin-top: 35px;
}

.footer_info {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.footer_subtitle {
  display: flex;
  width: 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer_text {
  display: flex;
  width: 100%;

  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;

  color: #ffffff;
}

.footer_cont_card iframe {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  /* filter: grayscale(100%); */
  transition: linear 0.3s;
  border-radius: 10px;
}

.footer_cont_card iframe:hover {
  filter: grayscale(0%);
  transition: linear 0.3s;
}

.footer_line {
  display: block;
  width: 100%;
  border-top: 1px solid #ffffff;
  padding: 10px 0px;

  justify-content: center;
  align-items: center;
  text-align: center;

  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;

  color: #ffffff;
}

.footer_line a {
  color: #00fcd4;
  margin-left: 5px;
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .footer_cont {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer_cont_card {
    width: 100%;
  }

  .footer_cont_card iframe {
    height: 300px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 500px) {
  .footer_title {
    display: flex;
    width: 100%;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 33px;
    margin-bottom: 10px;
    color: #ffffff;
    margin-top: 35px;
  }

  .footer_info {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .footer_subtitle {
    display: flex;
    width: 100%;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 5px;
    color: #ffffff;
  }

  .footer_text {
    display: flex;
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;

    color: #ffffff;
  }

  .footer_line {
    font-size: 14px;
  }
}
/*  admin_images */
.admin_images {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.admin_images img {
  width: 80%;
}

/* for__us_students  */

.for__us_students {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  /* align-items: center; */
  flex-wrap: wrap;
  margin: 25px 0;
}

.for__us_students_card {
  display: flex;
  width: 300px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  flex-direction: column;
  border-radius: 10px;
  margin: 15px;
  transition: linear 0.3s;
  box-shadow: 0 0 8px 1px rgb(0 75 187 / 23%);
}

.for__us_students_card:hover {
  transition: linear 0.3s;
  transform: scale(1.05);
  background: white;
  box-shadow: 0px 0px 32px -3px rgba(36, 97, 255, 0.5);
}

.for__us_students_img {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 80px;
  overflow: hidden;
}

.for__us_students_img img {
  border-radius: 10px;
  height: 100%;
}

.for__us_students_name {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 10px;
}

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

  .for__us_students_card:hover {
    transition: linear 0.3s;
    transform: scale(1);
    box-shadow: 0px 0px 32px -3px rgba(36, 97, 255, 0.5);
  }
}
.media__block .media__block_cont {
  margin-bottom: 0;
}

.home .media_db .media_db_card {
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.home .media_db_card {
  width: 100%;
  max-width: 100%;
}

.navigator a {
  transition: linear 0.3s;
  font-size: 18px;
  margin-right: 5px;
  cursor: pointer;
  color: black;
}

.navigator a:hover {
  transition: linear 0.3s;
  color: #2461ff;
}

.media_db_text {
  height: 55px;
  overflow: hidden;
}

.media_db_img img {
  width: 100%;
}

.newBAEK .media_db_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.moreBaek .moreBaek_ing {
  width: 50%;
}

.docMore .moreBaek_ing {
  width: 30%;
}

@media screen and (max-width: 700px) {
  .docMore .moreBaek_ing {
    width: 50%;
  }
}

.moreBaek .moreBaek_ing img {
  border-radius: 10px;
}

.moreBaek .moreDate {
  font-size: 16px;
}

/* video media */

.media_db .media_db_img video {
  width: 100%;
}

/* video more */

.moreBaek_ing video {
  width: 100%;
  border-radius: 10px;
}
/* social */
.soc_block {
  display: flex;
  width: 100%;
  margin-top: 15px;
}
.soc_card {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 15px;
}

.soc_card img {
  width: 100%;
}

/* /social */

.media_db_cont {
  border-radius: 10px;
}
.moreBaek .moreBaek_text {
  flex-direction: column;
  text-align: left;
}

.moreBaek .moreBaek_text a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin-top: 10px;
  text-align: center;
  padding: 10px 20px;
  color: white;
  background: #2461ff;
  border-radius: 5px;
}

.t_baek .moreBaek_ing {
  width: 20%;
}

@media screen and (max-width: 650px) {
  .media__block .media_db {
    flex-direction: column;
    width: 95%;
  }

  .navigator a {
    font-size: 14px;
  }

  .moreBaek .moreBaek_ing {
    margin: 20px 0;
  }

  .moreBaek_cont {
    justify-content: center;
    align-items: center;
  }

  .moreBaek .moreBaek_name {
    font-size: 20px;
  }

  .t_baek .moreBaek_ing {
    width: 50%;
  }

  .footer_title {
    margin-top: 15px;
    font-size: 18px;
  }

  .footer_icon {
    width: 150px;
  }
}

.burGer {
  z-index: 9999999;
}

.footer_buttonBAEK {
  display: flex;
  width: 100%;
}

.click_btn {
  display: flex;
  width: auto;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #2461ff;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

     .contact_form .form_line textarea{ font-size: 14px; }
