* {
  margin: auto 0;
  padding: 0;
}

body
 {
  position: relative;
  justify-content: center;
  align-items: center;
  background-color: #B0C4DE;
  font-family:arial;
  

}
/* for about page*/
.container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.main-header {
  background-image: url("../img/edu-back.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  height: 800px;

}
.header-text {
  margin-top: 250px;
}
.header-text h1 {
  color: #fff;
  font-size: 30px;
	font-family: "Times New Roman", Times, serif;
}
.header-text h2 {
  color: #fff;
  font-size: 23px;
 text-align: center;
	width: 80%;
	margin: 0 auto;
	padding: 20px;
	/**background-color: rgba(0, 0, 0, 0.4);**/
	line-height: 1.5;
	font-family: "Arial", Times, serif;
}
.courses h1 {
  color: #f9ef34;
  font-size: 30px;
	margin: 0 auto;
  padding: 20px;
}
.home-welcome {
  width: 40%;
  margin: 0 auto;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
font-family: "Times New Roman", Times, serif;
}
.home-welcome h1{
  color: #f9ef34;
  font-size: 23px;
}
.header-text p {
  width: 75%;
  margin: 0 auto;
  margin-top: 40px;
  padding: 10px;
  /**background-color: rgba(0, 0, 0, 0.5); */
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.header {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 700px;
  margin: 0 auto;
  text-align: center;
}
.header .title {
  display: flex;
}
.header .title img {
  width: 200px;
  height: 130px;
  margin-top: 20px;
  margin-left: 10px;
}
.header .title h1 {
  height: 100%;
  margin-top: 40px;
  margin-left: 20px;
  color: white;
  font-size: 35px;
}
/* Navbar styles */
.header .nav {
  width: 100%;
  margin-top: 50px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 0px 10px 0px;
  padding-left: 5%;
  color: #fff;
}

/* Menu icon styles */
.menu-icon {
  display: none;
  font-size: 18px;
  cursor: pointer;
}

/* Menu styles */
.menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menu li {
  margin: 2px;
  box-shadow: 2px 3px #0a2727;
  background-color: rgba(40,182,229,0.8);
  padding: 15px 30px;
  text-align: left;
}

.menu li a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
	left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .3);
    display: grid;
    place-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 200ms ease-in-out opacity;
}
.popup-content {
    width: clamp(300px, 90vw, 600px);
    background-color: #fff;
    padding: clamp(1.5rem, 100vw, 3rem);
    box-shadow: 0 0 .5em rgba(0, 0, 0, .5);
    border-radius: .5em;
    opacity: 0;
    transform: translateY(20%);
    transition: 200ms ease-in-out opacity,
                200ms ease-in-out transform;
    position: relative;
}
.popup-content img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    margin: 20px 0; /* Add margin for spacing */
}
.popup h1 {
    position: absolute;
    top: 2rem;
    right: 2rem;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}
.popup h1:active {
    transform: scale(.9);
}

.popup .popup-content h2 {
  color: #000081;
	font-size: 16px;
  text-align: center;
}
.popup .popup-content h3 {
  margin-top: 16px;
  color: #FF7F50;
  text-align: center;
}
.popup .popup-content p {
  margin-top: 10px;
  margin-block-end: 10px;
  color: #154360;
  font-size: 14px;
  text-align: justify;
  text-justify: inter-word;
	line-height: 1.5;
}

.showPopup {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}


.button-container {
    text-align: center; /* Center the button */
    margin: 10px; /* Space above the button */
}
.register-button {
    display: inline-block;
    padding: 10px 20px; /* Adjust padding as needed */
    margin: 10px; /* Space above the button */
    background-color: #007BFF; /* Button color */
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth hover effect */
}

.register-button:hover {
    background-color: #0056b3; /* Darker color on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
  }

  .menu {
      flex-direction: column;
      align-items: center;
  }

  .menu li {
      margin: 5px 0;
  }

  .research-content {
      flex-direction: column;
      align-items: center;
  }

  .research, .notice {
      width: 100%;
      margin-bottom: 20px;
  }
}

/* Content */

.content {
  width: 100%;
}
.content .vision,
.content .mission {
  width: 80%;

  margin: 0 auto;
  margin-bottom: 10px;
}
.content .vision p,
.content .mission p{
  
 color: #000000;
}
.content .vision .dis-img {
  display: flex;
  flex-wrap: wrap;
	gap: 5px;
  justify-content: center;
 /* margin-top: 20px;
  margin-bottom: 20px;*/
}

.content .vision .dis-img .img-container {
  /*flex-basis: 45%;
  /*background-color: rgba(93, 92, 92, 0.4);*/
  
	padding: 5px;
  /*box-sizing: border-box;
  margin-bottom: 5px;
	flex-direction: column;*/
  flex: 1 1 auto; /* Allow images to grow and shrink */
    max-width: 30%; /* Limit the width of each image container */
	align-items: center;
}

.content .vision .dis-img .img-container img {
  width: 100%;
   height: 400px; /* Set a fixed height for the images */
  object-fit: contain; /* Maintain aspect ratio and fill the container */
}
.content .vision .dis-img .img-container figcaption {
  color: #000081;
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
}
.content .vision .dis-img .img-container1 {
  /*flex-basis: 48%;
  /*background-color: rgba(93, 92, 92, 0.4);*/
  /*max-width: 80%;*/
  /*box-sizing: border-box;
  margin-bottom: 5px;
	flex-direction: column;
  align-items: center;*/
	
	padding: 5px;
	flex: 1 1 auto; /* Allow images to grow and shrink */
    max-width: 40%; /* Limit the width of each image container */
	align-items: center;
}
.content .vision .dis-img .img-container1 img {
  width: 100%;
   height: 300px; /* Set a fixed height for the images */
  object-fit: cover; /* Maintain aspect ratio and fill the container */
}
.content .vision .dis-img .img-container2 {
  flex-basis: 100%;
  /*background-color: rgba(93, 92, 92, 0.4);*/
  padding: 5px;
  box-sizing: border-box;
  margin-bottom: 5px;
	flex-direction: column;
  align-items: center;
}
.content .vision .dis-img .img-container2 img {
  width: 100%;
   height: 300px; /* Set a fixed height for the images */
  object-fit: contain; /* Maintain aspect ratio and fill the container */
}
.content .vision .dis-img .img-container3 {
  /*flex-basis: 33.33%;
  /*background-color: rgba(93, 92, 92, 0.4);*/
	padding: 5px;
	flex: 1 1 30%; /* Allow images to grow and shrink
    max-width: 40%; /* Limit the width of each image container */
	align-items: center;
	box-sizing: border-box;
}
.content .vision .dis-img .img-container3 img {
  width: 100%;
   height: 400px; /* Set a fixed height for the images */
  object-fit: contain; /* Maintain aspect ratio and fill the container */
}
.content .vision .dis-img .img-container4 {
width: 80%; /* Make the container take full width */
    text-align: center; /* Center the caption */

}
.content .vision .dis-img .img-container4 img {
    width: 100%; /* Make the image take the full width of the container */
    height: 300px; /* Maintain aspect ratio */
    object-fit: cover; /* Cover the area without distortion */
}
.content .vision .dis-img figcaption {
  color: #000081;
  font-size: 12px;
  text-align: center;
  margin-top: 5px;
	width: 100%;
	padding: 5px;
}

@media (max-width: 767px) {
  .content .vision .dis-img .img-container {
    flex-basis: 100%;
  }
}

.content h2 {
  margin-top: 20px;
  color: #000000;
  text-align: justify;
  text-justify: inter-word;
}
.content h3 {
  margin-top: 20px;
  color: #154360;
  text-align: justify;
  text-justify: inter-word;
}
.content p {
  margin-top: 10px;
  margin-block-end: 10px;
  color: black;
  font-size: 16px;
  text-align: justify;
  text-justify: inter-word;
	line-height: 1.5;
}
.about {
  width: 80%;
  margin: 0 auto;
  background-color: #B0C4DE;
  padding-bottom: 0px;
  font-size: 16px;
  text-align: justify;
  text-justify: inter-word;
}
.about h2 {
  padding-top: 10px;
  text-align: start;
}
.inner-about {
  width: 80%;
  margin: 0 auto;
}
.inner-about h2 {
  padding-top: 20px;
  text-align: start;
}
.inner-about p {
  padding-top: 10px;
  padding-bottom: 0px;
  font-size: 16px;
  text-align: justify;
  text-justify: inter-word;
}
.inner-about img {
  width: 100%;
}

ul.courseinfo {
list-style-type: square;
	text-align: justify;
	font-size: 16px;
  /*margin-top: 20px;
  margin-left: 20px;*/
	margin: 10px 20px;
	/*padding: 10px;*/
	line-height: 1.5;
}
.cyllabus img{
  width: 35%;
  margin: 0 auto;
  background-color: #B0C4DE;
	align-items: center;
	padding-top: 20px
}

.home-research {
  background-color: #EEE8AA;
}
.research-content {
  display: flex;
  width: 80%;
  margin: 0 auto;
}
.home-research .research-content .research {
  width: 60%;
  margin-top: 20px;
}
.research-content .notice {
  width: 50%;
  margin-top: 20px;
}
.research-content h4 {
  color: #000081;
  font-size: 18px;
	}

.research-content .notice .title {
    border-bottom: 2px solid #007BFF; /* Line color and thickness */
    padding-bottom: 10px; /* Space between text and line */
    margin-bottom: 10px; /* Space below the line */
}
.research-content .notice p {
  height: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px 20px 15px;
 /*border-style: solid;*/
  background-color: #B0C4DE;
  color: #000081;
  font-size: 16px;
  font-weight: 600;

}
.research-content .notice h3 {
  color: #FF7F50;
  font-size: 18px;
	text-align: center;
	}

.research-content .research ul {
  display: flex;
  margin: 5px;
  list-style-type: none;
}
.research-content .research ul li {
  width: 100%;
  margin-right: 10px;
	color: #000081;
	font-size: 16px;
  text-align: center;
}
.research ul li img {
  width: 100%;
	margin: 0px;
  }
.research ul li h3 {
  color: #000081;
  font-size: 16px;
text-align: center;
	}
.no-underline {
    text-decoration: none; /* Remove underline */
}
.disciplines {
  width: 100%;
  margin: 0 auto;
  background-color: #B0C4DE;
	align-items: center;
}
.disciplines img{
  width: 35%;
  margin: 0 auto;
  background-color: #B0C4DE;
	align-items: center;
	padding-top: 10px
}
.img-edu img{
  width: 60%;
  align-items: center;
	 
}
.dis-content {
  width: 80%;
  margin: 0 auto;
  color: rgb(19, 19, 79);
  display: flex;
  align-items: center;
}
.dis-content .content {
  display: flex;
}
.dis-content h3 {
  padding-top: 10px;
}
.dis-content h4{
  padding-top: 10px;
}
.dis-content img{
    padding-top: 10px;
    width: 50%;
    align-items: center;
	
}
.dis-content .content .dis-list {
  width: 50%;
 /* margin-bottom: 10px;
  padding-left: 40px;*/
  padding: 0 !important;
  margin: 0 !important;
  
}
.dis-content .content .dis-list ul li{
  padding: 8px;
}
.dis-content .content .division {
  width: 50%;
 /* padding-left: 40px;*/
 padding: 0 !important;
  margin: 0!important;
  
}
.dis-content .content .division ul li{
  padding: 8px;
}
.dis-content .content {
  margin-top: 10px;
}
.footer {
  display: flex;
  /*padding: 10px 0px;*/
  justify-content: space-between;
  width: 100%;
  margin: 10px auto;
	padding: inherit;
   background-color: #395871; */
  /*background-color: #0085f9;*/
  text-align: center;
}

.footer img {
  margin-left:10%;
}
.footer h3 {
  padding-top: 20px;
  padding-left: 50px;
  color: black;
  font-size: 15px;
}
/* .footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 40px;
  width: 30%;
  margin: 0 auto;
} */
.footer .follow {
  margin-right: 10%;
  text-align: start;
}
.footer .follow ul {
  display: flex;
  list-style: none;
  margin-top: 5px;
  margin-left: 5px;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
}
.footer-content ul {
  list-style: none;
	text-align: center
  /*margin-top: 20px;*/
  margin-left: 20px;
	margin:20 20 auto;
	padding: 20px;
}
.footer-content ul li {
  text-align: start;
  padding: 0px 0px;
}
.footer-content h3 {
  margin-right: 30px;
}
.footer-content h4 {
 color="#e67e22";
 line-height: 30px;
 text-align:center;
}
.footer-content p {
  line-height: 30px;
  text-align:center;
}
.footer-content ul li h5 {
  color: #000081;
  font-size: 14px;
  text-align:center;
}
 .footer ul li img {
    width: 40px;
  }
.footer p {
    padding-bottom: 20px;
    color: #000081;
    font-size: 14px;
}
.footer h5 {
  color: #fff;
}
.footer h2 {
    color: #ffff;
    text-align: center;
}

/* footer social media icon*/
.fa {
  padding: 10px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-telegram {
  background: #dd4b39;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

/*For About Page*/
.about-content {
  display: flex;
  width: 80%;
  height: 300px;
  margin: 0 auto;
  /* background-color: rgba(0, 0, 0, 0.4); */
}
.about-content .about-left {
  width: 60%;
  padding: 10px;
}
.about-content .about-left h2 {
  margin-top: 10px;
  color: #fff;
  font-size: 20px;
}
.about-content .about-left h1 {
  margin-top: 20px;
  color: #fff;
  font-size: 25px;
}
.about-content img {
  width: 40%;
  height: 100%;
}
.about-left p {
  margin-top: 20px;
  color: #fff;
}

/*For Education*/

.edu-content {
  display: flex;
  width: 80%;
  height: 400px;
  margin: 0 auto;
  /* background-color: rgba(0, 0, 0, 0.4); */
}

.edu-content .edu-left {
  width: 30%;
  height: 100%;
  padding-left: 20px;
  background-color: #154c79;
  color: white;
  text-align: left;
}
.edu-content .edu-left h2 {
  margin-top: 10px;
}
.edu-left ul li {
  margin-top: 10px;
}
.edu-left h4 {
  margin-top: 10px;
  margin-bottom: 20px;
  color: red;
  font-size: 16px;
  font-weight: 300;
}
.edu-left a {
  margin-top: 20px;
  padding: 10px;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  background-color: #fff;
  color: #154c79;
  text-decoration: none;
  border-radius: 4px;
}
#content1,
#content2,
#content3,
#content4,
#content5,
#content6,
#content7,
#content8 {
  display: none;
  margin-top: 10px;
  margin-left: 40px;
  color: #fff;
  text-align: left;
}
#option-list {
  display: none;
}
#edu-right ul {
  margin-top: 20px;
}
#edu-right ul li {
  margin-bottom: 10px;
}
.edu-content #edu-right {
  justify-content: center;
  align-items: center;
  width: 70%;
  margin: 0;
  padding: 0;
  text-align: center;
}

#edu-right #content {
  display: none;
  margin: 0 auto;
}
#edu-right #content h2 {
  margin-top: 50px;
  color: #fff;
  font-size: 30px;
}
#edu-right #content h3 {
  margin-top: 20px;
  margin-right: 50px;
  margin-left: 50px;
  color: #fff;
  font-size: 20px;
}
#content .divide {
  display: flex;
  width: 100%;
  margin-top: 50px;
}
.divide .img-container {
  position: relative;
  width: 20%;
  height: 100%;
  margin-left: 15px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.img-container img {
  width: 100%;
}
/*Our Mission*/
.our-mission {
  display: flex;
  width: 80%;
  margin: 0 auto;

  background-color: rgba(0, 0, 0, 0.4);
}
.o-mission {
  width: 50%;
  height: 100%;
  color: #fff;
  text-align: start;
  border-right: #fff solid;
}
.o-vision {
  width: 50%;
  height: 100%;
  margin-top: 0;
  color: #fff;
  text-align: start;
}
/* .our-mission h2,
p {
  margin: 10px;
} */
/*.our-mission p {
  padding-top: 10px;
  padding-bottom: 0px;
  font-size: 16px;
  text-align: justify;
  text-justify: inter-word;
}*/

.second-content {
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 0 auto;
 }
.second-content h3 {
  color: #fff;
  padding-top: 10px;
  font-size: 20px;
  font-weight: 300;
}
.notice h3{
  color:#000081;
}
.second-content .notice-content {
  display: flex;
  width: 80%;
	height: 350px;
  margin: 0 auto;
  margin-top: 10px;
  justify-content: space-between;
}
.notice-content .notice {
  border-radius: 4px;
  width: 75%;
  background-color:aliceblue;
  height: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.notice-content .notice .list {
  width: auto;
  overflow: auto;
  height: auto;
  margin: 10px;
	paddin: 10px;
  }
/*.notice-content .notice .list::-webkit-scrollbar {
width: 0.5em;} /* Set the width of the scrollbar */
.notice-content .notice ul {
  text-align: left;
}
.notice ul li {
  padding: 4px;
  margin: 1;
  border-bottom: solid 1px white;
}
.notice ul li h4 {
  color:#000081;
  font-weight: 300;
  font-size: 14px;
}
.notice ul li p {
  font-size: 12px;
  color:#000081;
  text-align: justify;
  font-style: italic;
}
.notice-content .news {
  width: 35%;
  background-color: aliceblue;
  height: 240px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.notice-content .news h3{
  color:#000081;
}
.notice-content .news .list {
  width: 100%;
  overflow: auto;
  height: 200px;
  margin-left: 4px;
  margin-top: 4px;
}
.notice-content .news .list::-webkit-scrollbar {
  width: 0.5em; /* Set the width of the scrollbar */
}
.notice-content .news ul {
  text-align: left;
}
.news ul li {
  padding: 4px;
  margin: 4px;
  border-bottom: solid 1px white;
  background-color: #154c79;
}
.news ul li h4 {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
}
.news ul li p {
  font-size: 12px;
  color: red;
  text-align: end;
  font-style: italic;
}

.notice-content .platform {
  width: 23%;
  background-color: aliceblue;
  height: 300px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.notice-content .platform h3{
  color:#000081;
}
.notice-content .platform .login-btn {
  padding: 10px;
  width: 50%;
  margin-top: 60px;
  background-color: #154c79;
  color: #fff;
  border-radius: 8px;
}
.third-content {
  margin: 0 auto;
  width: 80%;
}
.third-content h4 {
  font-size: 25px;
  color: #000081;
  text-align: start;
  padding-top: 15PX;
}
.third-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.third-content ul li {
  background-color: rgba(93, 92, 92, 0.4);
  flex-basis: 25%; /* Adjust this value to control the width of each column */
  text-align: center;
  margin: 10px;

}
.third-content ul li img {
  width: 100%;
}
.third-content ul li h5 {
  font-size: 20px;
  color: #000081;
  text-align: start;
  margin-left: 4px;
}
.third-content ul li p {
  color: #fff;
  text-align: end;
  font-size: 16px;
  margin-right: 4px;
}

@media only screen and (max-width: 1204px) and (min-width: 300px) {
  .header .title h1 {
    font-size: 20px;
    margin: 0;
  }

}
/* Media query for small screens */

@media (max-width: 300px) {
  body {
    font-size: 14px;
    margin: 0;
  }
  .header {
    width: 100%;
    height: 220px;
    margin: auto 0;
  }
  .header .title h1 {
    margin-top: 40px;
    color: white;
    font-size: 20px;
  }
  .menu {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .menu-icon.active {
    color: #000;
  }
  .header .nav {
    width: 100%;
    margin-top: 70px;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .navbar {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }

  .menu-icon.active + .menu {
    display: flex;
    position: absolute;
    top: 5px;
    right: 0;
    left: 0;
    flex-direction: column;
    margin-right: 60%;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
  }

  .menu li {
    margin-bottom: 10px;
    margin-left: 0;
  }

  .content {
    display: block;
    position: relative;
    width: 100%;
    height: 500px;
    margin: auto 0;
    margin-top: 0;
  }
  .mission {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45%;

    background-image: url("../img/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
  }
  .course-list {
    width: 100%;
    height: 50%;
    margin-top: 4px;
    margin-left: 0;
    background-color: #154c79;
  }
  .course-list .header {
    padding-top: 18px;
  }
  .course-list .header h2 {
    font-size: 16px;
  }

  .mission .text {
    margin-top: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
  }
  .mission ul {
    margin: 10px;
  }
  .mission ul li {
    color: #fff;
    font-size: 12px;
    list-style-type: none;
  }
  .course-list ul {
    margin: 0 20px;
  }
  .course-list ul li {
    padding: 5px;
    color: #fff;
    font-size: 14px;
    list-style-type: none;
    border-bottom: solid 1px white;
  }
  .second-content {
    height: auto;
    margin: auto;
  }
  .second-content .notice-content {
    display: block;
    justify-content: space-between;
    width: 80%;
	  height: auto;
    margin: auto;
	}
  .notice-content .notice {
    width: 100%;
    height: 350px;
  }
.notice-content .notice .list ul li {
    padding: auto;
    color: #fff;
    font-size: 14px;
    list-style-type: circle;
}
  .notice-content .news {
    width: 100%;
    height: 200px;
    margin-top: 10px;
  }
  .notice-content .news .list {
    height: 150px;
  }
  .notice-content .platform {
    width: 100%;
    height: 350px;
    margin-top: 10px;
  }

  .third-content ul li {
    flex-basis: 40%; /* Adjust this value to control the width of each column */
    margin-top: 4px;
    margin-bottom: 10px;
    background-color: rgba(93, 92, 92, 0.4);
    text-align: center;
  }
  .third-content ul li h5 {
    font-size: 12px;
  }
  .third-content ul li p {
    font-size: 10px;
  }
  .third-content h4 {
    font-size: 16px;
  }
  .footer ul {
    width: 60%;
  }
  .last-content .contact h3 {
    font-size: 16px;
  }
  .last-content .contact h4 {
    font-size: 14px;
  }
  .last-content .contact ul li h5 {
    font-size: 14px;
  }
  .last-content .contact ul li p {
    font-size: 12px;
  }
  .last-content .contact ul li {
    flex-basis: 40%;
    text-align: center;
  }
  /*For About */
  .about-content {
    width: 100%;
  }
  .about-content .about-left {
    width: 100%;
  }
  .about-content img {
    display: none;
  }
  /*Our Mission*/
  .our-mission {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-right: 10px;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .o-mission {
    width: 100%;
    height: 100%;
    margin-top: 10px;
    color: #fff;
    text-align: start;
    border-right: 0px;
    border-bottom: #fff dotted 1px;
  }
  .o-vission {
    width: 100%;
    height: 100%;
    margin-top: 20px;
    color: #fff;
    text-align: start;
  }
  .our-mission h2 {
    padding-top: 20px;
  }
  .o-vission p {
    padding-bottom: 10px;
  }

  /*Education*/

  .edu-content {
    display: block;
    width: 100%;
    height: 600px;
    padding: 0;
  }
  .edu-content .edu-left {
    width: 100%;
    height: 200px;
    padding-left: 0px;
    background-color: #154c79;
    color: white;
    text-align: left;
  }
  .edu-content #edu-right {
    width: 100%;
  }
  .edu-content .edu-left h2 {
    display: none;
  }
  .edu-content .edu-left ul {
    text-align: center;
  }
  .edu-content .edu-left ul li {
    display: inline-block;
    padding: 0 10px;
    border: none;
    text-decoration: underline;
  }
  .edu-left #option-list {
    display: block;
    margin-top: 20px;
    margin-left: 10px;
  }
  .edu-left h4 {
    margin-bottom: 20px;
    margin-left: 10px;
    padding-top: 10px;
    color: red;
    font-size: 16px;
    font-weight: 300;
  }
  .edu-left a {
    margin-top: 20px;
    margin-left: 10px;
    padding: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    background-color: #fff;
    color: #154c79;
    text-decoration: none;
    border-radius: 4px;
  }
  .divide .img-container {
    display: none;
  }
  #content .divide {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #edu-right #content h3 {
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-top: 50px;
    padding: 0;
    color: #fff;
    text-align: center;
  }
	
	#platform .button {
		background-color:#18f98f;
		border: none;
		position: absolute;
		transform: translate(-50%, -50%);
		top: 50%
		left: 50%
		padding: 20px 50px;
		font-size: 30px;
		font-weight: bold;
	}
  .footer {
    display: block;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    /* background-color: #072e4d; */
    background-color: blue;
    text-align: center;
  }
  .footer img {
    margin-top: 10px;
    margin-left: 10%;
  }
  .footer h3 {
    padding-top: 20px;
    color: #fff;
    font-size: 25px;
  }
  /* .footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 40px;
    width: 30%;
    margin: 0 auto;
  } */
  .footer .follow {
    justify-content: center;
    margin: 0 auto;
    margin-right: 5%;
    text-align: center;
  }
  .footer .follow ul {
    display: flex;
    list-style: none;
    margin: 10 auto;
    margin-top: 20px;
    margin-left: 10px;
  }
  .footer .follow span {
    position: relative;
    left: -12px;
  }
  .footer .footer-content {
    display: block;
    justify-content: space-between;
  }
  .footer .footer-content ul {
    list-style: none;
    margin: 0 auto;
    margin-top: 20px;
    margin-left: 20px;
  }
  .footer-content ul li {
    text-align: start;
  }
  .footer-content h3 {
    margin-right: 30px;
    margin-bottom: 10px;
  }
  .footer-content ul li h5 {
    color: #f9ef34;
    font-size: 14px;
  }
 
  .footer p {
    padding-bottom: 20px;
    color: #fff;
    font-size: 14px;
    text-align: start;
  }
  .footer h5 {
    color: #fff;
  }
}
