* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.html {
  margin: 0px;
}
@font-face {
  font-family: fontBWD;
  src: url(/assets/font/00119-UTM-HelvetIns/00119-UTM-HelvetIns.ttf);
}
/* header  */
.navbar li {
  list-style: none;
  font-size: 1rem;
}
.navbar a {
  text-decoration: none;
  color: black;
  font-size: 1.1rem;
  line-height: 1.6;
}
.navbar a:hover {
  color: #46a4d2;
}
#header {
  padding: 0 2rem;
  font-family: fontBWD;
}
.navbar {
  background-color: whitesmoke;
  position: fixed;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: -32px;
  z-index: 1000; /* Đảm bảo tiêu đề nằm trên cùng */
}
.navbar .logo img {
  width: 160px;
  margin-top: 10px;
}
.navbar .links {
  display: flex;
  gap: 2rem;
}
.navbar .toggle_btn {
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}
.action_btn {
  background-image: linear-gradient(
    180deg,
    rgb(22, 167, 239),
    rgb(148, 45, 212)
  );
  color: whitesmoke !important;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 20px;
  font-size: 1rem !important;
  cursor: pointer;
  transition: scale 0.2 ease;
  margin-right: 32px;
}

.action_btn:hover {
  scale: 1.05;
  opacity: 0.8;
}
.action_btn:active {
  scale: 0.95;
}
.action_btn2 {
  background-image: linear-gradient(
    180deg,
    rgb(22, 167, 239),
    rgb(148, 45, 212)
  );
  color: whitesmoke !important;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 20px;
  font-size: 0.8rem !important;
  cursor: pointer;
  transition: scale 0.2 ease;
}

.action_btn2:hover {
  scale: 1.05;
  opacity: 0.8;
}
.action_btn2:active {
  scale: 0.95;
}
.dropdown_menu {
  display: none;
  position: absolute;
  height: 0px;
  top: 60px;
  width: 100%;
  background-color: rgb(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.open {
  height: 550px;
}
.dropdown_menu li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown_menu .action_btn2 {
  width: 100%;
  display: flex;
  justify-content: center;
}
/* Container chính */
.container {
  /* display: flex; */
  /* flex-direction: column; */
  /* background-image: url(/assets/img/bg.png); */
  /* background-position: center; */
}

/* Phần header */
.background .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.head .img {
  width: 150px;
  height: 150px;
  padding: 0cm;
}

.head .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* repon header  */
@media (max-width: 1026px) {
  .navbar .links {
    display: none;
  }
  .navbar {
    display: none;
    display: flex;
  }
  .navbar .action_btn {
    display: none;
  }
  .navbar .toggle_btn {
    display: block;
  }
  .dropdown_menu {
    display: block;
  }
}
/* end header  */
/* content  */
#content {
  /* display: flex;
  justify-content: center; */

  line-height: 1.8;
}
.content__container {
  /* width: 33.33%; */
}
.content__container--header {
  padding-top: 128px;
  text-transform: uppercase;
  font-family: fontBWD;
  text-align: center;
}
.content__container--header__title {
  color: #000;
  text-align: center;
  font-size: 32px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  letter-spacing: 2px;
}
.content__container--header--line {
  background-color: #97bade;
  width: 10%;
  height: 16px;
  right: 45%;
  position: absolute;
  bottom: 2px;
  z-index: -1;
  border-radius: 0 0 10px 10px;
}
.content__container--header--content {
  text-align: center;
  font-size: 18px;
  font-weight: lighter;
  color: rgba(0, 0, 0, 0.5);
  margin: 32px 16px;
}
.content__container--header--button {
  background-color: #97bade;
  color: whitesmoke;
  text-align: center;
  padding: 8px 32px;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-family: fontBWD;
  text-transform: uppercase;
  margin-bottom: 32px;
  cursor: pointer;
}
.content__container--header--button:hover {
  opacity: 0.8;
}
.thongke {
  display: flex;
  list-style: none;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.thongke li {
  padding: 8px 64px;
  position: relative;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
}
.border-right {
  position: absolute;
  right: 0;
  height: 80%;
  border-right: 3px solid #97bade;
  top: 14px;
}
.phu {
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 15px;
}
.thongke li p {
  color: #97bade;
  font-size: 22px;
}
.content__container--body {
  text-align: center;
  color: #97bade;
  font-family: fontBWD;
}
.content__container--body--title {
  font-size: 30px;
  text-transform: uppercase;
  margin: 32px 0px;
}
.content__container--body--content {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(0, 0, 0, 0.5);
}
.sub--content {
  display: flex;
  margin-bottom: 32px;
  justify-content: center;
}
.sub--content p {
  font-size: 22px;
  padding: 0 4px;
  text-transform: uppercase;
  text-align: center;
}
.sub--content li {
  list-style: none;
  border: 3px solid #97bade;
  border-radius: 20px;
  padding: 0 32px;
  margin: 0 32px;
  width: 360px;
  font-size: 18px;
  text-align: left;
  line-height: 1.8;
}
.content__container--footer {
  font-family: fontBWD;
  width: 80%;
  margin: auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 5px solid #97bade;
  margin-bottom: 32px;
}
.content__container--footer--title {
  text-align: center;
  font-size: 30px;
  color: #97bade;
}
table {
  width: 100%;
  border-collapse: collapse;
}

td {
  vertical-align: top;
  padding: 10px;
  border-top: 1px solid #ddd;
}

td h2 {
  font-size: 18px;
  color: #97bade;
  margin: 0 0 10px;
  margin-top: 30px;
  border-right: 2px solid #97bade;
  padding-right: 8px;
}

td ul {
  list-style-type: none;
  padding-left: 0;
}

td ul li {
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.5);
}
.content__container--end {
  text-align: center;
  text-transform: uppercase;
  font-family: fontBWD;
  font-size: 30px;
  color: #97bade;
}
/* .image-placeholder {
  margin-top: 20px;
  text-align: center;
  background-color: #add8e6;
  padding: 20px;
  border-radius: 10px;
} */

/* end content  */
/* footer  */
.copyright {
  display: inline;
  font-family: sans-serif;
}
.logo-img {
  width: 450px;
}
.lienhe li {
  margin: 8px 0px;
}
.col-xs-6 {
  float: left;
  width: 33.33333%;
}
#site-footer {
  background-color: #97bade;
  padding: 45px 0 20px;
  color: whitesmoke;
  font-family: fontBWD;
  line-height: 1.8;
  font-size: 18px;
  text-transform: uppercase;
  width: 100%;
}
.tieude {
  font-size: 32px;
  text-transform: uppercase;
}
.phude {
  font-size: 28px;
  margin: 4px 0px;
  text-transform: uppercase;
}
#site-footer hr {
  border-top-color: whitesmoke;
}
#site-footer hr.small {
  margin: 20px 0;
}
#site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}
#site-footer a {
  color: whitesmoke;
}
#site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}
.footer-links {
  padding-left: 0;
  list-style: none;
}
.footer-links li {
  display: block;
}
.footer-links a {
  color: whitesmoke;
  text-decoration: none;
}
.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}
.footer-links.inline li {
  display: inline-block;
}
#site-footer .social-icons {
  text-align: right;
  padding: 8px;
}
#site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: whitesmoke;
}
.copyright-text {
  margin: 0;
  margin: 8px 0px;
}
@media (min-width: 740px) and (max-width: 1023px) {
  /* repon content  */
  .content__container--header--line {
    width: 15%;
    right: 43%;
  }
  .sub--content {
    flex-direction: column;
    align-items: center;
  }
  .sub--content li {
    margin: 16px 0px;
    width: 500px;
  }

  /* end repon conent  */
  /* reopn footer  */
  #site-footer [class^="col-"] {
    margin-bottom: 30px;
    padding: 0px 8px;
  }
  .logo-img {
    width: 330px;
  }
  /* end repon foter  */
}
@media (max-width: 739px) {
  /* repon content  */
  .content__container--header--line {
    width: 15%;
    right: 43%;
  }
  .sub--content {
    flex-direction: column;
    align-items: center;
  }
  .sub--content li {
    margin: 16px 0px;
    width: 300px;
  }
  .phu {
    flex-direction: column;
  }
  .border-right {
    width: 100%;
    border-bottom: 3px solid #97bade;
    top: 26px;
    border-right: none;
  }
  .content__container--body--content {
    margin: 16px;
  }
  td h2 {
    border-right: none;
    border-bottom: 3px solid #97bade;
    padding-bottom: 8px;
  }
  /* end repon conent  */
  /* repon footer  */
  #site-footer {
    padding-bottom: 0;
  }
  #site-footer .copyright-text,
  #site-footer .social-icons {
    text-align: center;
  }
  .logo-img {
    width: 250px;
    margin-left: 55px;
    margin-bottom: -64px;
    margin-top: -64px;
  }
  .col-xs-6 {
    text-align: center;
    width: auto;
    float: none;
    margin-bottom: 16px;
  }
  #site-footer {
    text-align: center;
  }
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
  .social-icons {
    text-align: center;
    margin-right: 0px !important;
  }
  /* end repon footer  */
}
.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-right: 64px;
}
.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}
.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: black;
  font-weight: 700;
  font-size: 13px;
}
#site-footer .social-icons a {
  background-color: #eceeef;
  color: black;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe;
}
.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}
#site-footer .social-icons a.facebook:hover {
  background-color: #3b5998;
}
#site-footer .social-icons a.twitter:hover {
  background-color: #00aced;
}
#site-footer .social-icons a.linkedin:hover {
  background-color: #007bb6;
}
#site-footer .social-icons a.dribbble:hover {
  background-color: #ea4c89;
}
/* end footer  */
/* back top  */
.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;

  color: #000;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: whitesmoke;
  border: 3px solid rgb(61, 61, 231);
  transition: 0.25s ease;
  visibility: visible;
  opacity: 1;
  z-index: 4;
  transform: translateY(-10px);
}

.back-top-btn:is(:hover, :focus-visible) {
  box-shadow: 0px 3px 20px hsla(180, 90%, 43%, 0.2);
}

.back-top-btn.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-10px);
}




@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

.form-container {
	width: 100%;
	height: 80vh;
	background-color: #fff;
	display: flex;
   	justify-content: center;
	align-items: center;
}
.upload-files-container {
	background-color: #f7fff7;
	width: 420px;
	padding: 30px 60px;
	border-radius: 40px;
	display: flex;
   	align-items: center;
   	justify-content: center;
	flex-direction: column;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 10px 20px, rgba(0, 0, 0, 0.28) 0px 6px 6px;
}
.drag-file-area {
	border: 2px dashed #7b2cbf;
	border-radius: 40px;
	margin: 10px 0 15px;
	padding: 30px 50px;
	width: 350px;
	text-align: center;
}
.drag-file-area .upload-icon {
	font-size: 50px;
}
.drag-file-area h3 {
	font-size: 26px;
	margin: 15px 0;
}
.drag-file-area label {
	font-size: 19px;
}
.drag-file-area label .browse-files-text {
	color: #7b2cbf;
	font-weight: bolder;
	cursor: pointer;
}
.browse-files span {
	position: relative;
	top: -25px;
}
.default-file-input {
	opacity: 0;
}
.cannot-upload-message {
	background-color: #ffc6c4;
	font-size: 17px;
	display: flex;
	align-items: center;
	margin: 5px 0;
	padding: 5px 10px 5px 30px;
	border-radius: 5px;
	color: #BB0000;
	display: none;
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cannot-upload-message span, .upload-button-icon {
	padding-right: 10px;
}
.cannot-upload-message span:last-child {
	padding-left: 20px;
	cursor: pointer;
}
.file-block {
	color: #f7fff7;
	background-color: #7b2cbf;
  	transition: all 1s;
	width: 390px;
	position: relative;
	display: none;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0 15px;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
}
.file-info {
	display: flex;
	align-items: center;
	font-size: 15px;
}
.file-icon {
	margin-right: 10px;
}
.file-name, .file-size {
	padding: 0 3px;
}
.remove-file-icon {
	cursor: pointer;
}
.progress-bar {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 4.5%;
	width: 0;
	height: 5px;
	border-radius: 25px;
	background-color: #4BB543;
}
.upload-button {
	font-family: 'Montserrat';
	background-color: #7b2cbf;
	color: #f7fff7;
	display: flex;
	align-items: center;
	font-size: 18px;
	border: none;
	border-radius: 20px;
	margin: 10px;
	padding: 7.5px 50px;
	cursor: pointer;
}
/* animation  */
.animation-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Đặt phía sau tất cả các phần tử khác */
  overflow: hidden;
}
.box-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.box-area li {
  position: absolute;
  display: block;
  list-style: none;
  width: 25px;
  height: 25px;
  background-image: linear-gradient(
    180deg,
    rgb(22, 167, 239),
    rgb(148, 45, 212)
  );
  animation: animate 5s linear infinite;
  bottom: -150px;
}
.box-area li:nth-child(1) {
  left: 86%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.box-area li:nth-child(2) {
  left: 12%;
  width: 30px;
  height: 30px;
  animation-delay: 1.5s;
  animation-duration: 10s;
}
.box-area li:nth-child(3) {
  left: 70%;
  width: 100px;
  height: 100px;
  animation-delay: 5.5s;
}
.box-area li:nth-child(4) {
  left: 42%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 15s;
}
.box-area li:nth-child(5) {
  left: 65%;
  width: 40px;
  height: 40px;
  animation-delay: 0s;
}
.box-area li:nth-child(6) {
  left: 15%;
  width: 110px;
  height: 110px;
  animation-delay: 3.5s;
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-800px) rotate(360deg);
    opacity: 0;
  }
}

/* end animation  */
.vertical {
    width: 5px;
    top: 0;
    left: 50%;
    height: 100%;
    background-color: #97bade;
    position: absolute;
    z-index: -1;
}
.comment {
    position: relative;
    margin: 60px auto;
    width: 700px;
    padding: 3px 20px 3px 20px;
}
.comment p{
    padding: 10px;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    position: relative;
    max-width: 300px;
    background-color: #97bade;
}
.comment p:nth-child(odd) {
    left: 55%;
}
.comment p:nth-child(even) {
    right: 0;
}
.comment p:nth-child(odd)::before , .comment p:nth-child(even)::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    display: block;
    border: 3px solid #97bade;
    border-radius: 50%;
    background-color: #2c3e50;
    top: 40%;
}
.comment p:nth-child(odd)::before {
    right: 107.5%;
}
.comment p:nth-child(even)::before {
    left: 107.5%;
}
.comment p:nth-child(odd)::after , .comment p:nth-child(even)::after {
    content: '';
    position: absolute;
    border: solid 8px;
    top: 40%;
}
.comment p:nth-child(odd)::after {
    right: 100%;
    border-color: transparent #ccc transparent transparent;
}
.comment p:nth-child(even)::after {
    left: 100%;
    border-color: transparent  transparent transparent #ccc;
}
