﻿
/******* RESPONSIVE ********/
@keyframes fadeInRight {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(-120deg);
    opacity: 0.8;
  }
  10% {
    transform: rotate(0deg);
    opacity: 1;
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
header {
  top: 0;
  z-index: 5;
  position: absolute !important;
}

#img-carousel {
  height: 935px;
  position: relative;
  color: #eee;
}
#img-carousel .carousel-inner {
  position: initial;
}
#img-carousel .carousel-inner:before {
  content: "";
  width: 100%;
  height: 150px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, color(srgb 255 255 255/0.9) 20%, color(srgb 255 255 255/0.8) 50%, color(srgb 255 255 255/0.3) 70%, transparent);
}
#img-carousel .carousel-inner:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to top, color(srgb 0 0 0/0.5) 30%, transparent);
}
#img-carousel .carousel-inner .carousel-item {
  height: 935px;
  overflow: hidden;
}
#img-carousel .carousel-inner .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#img-carousel .carousel-control-prev, #img-carousel .carousel-control-next {
  z-index: 1;
}

.btn-downapp {
  animation: fadeInUp 1.5s;
  line-height: 1rem;
  position: absolute;
  width: 100%;
  top: 750px;
  z-index: 2;
}
.btn-downapp p {
  margin: 3px !important;
  width: 100%;
}
.btn-downapp .flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: auto;
}
.btn-downapp .app-btn {
  justify-content: center;
  color: #fff;
  margin-right: 10px;
  text-align: left;
  border-radius: 5px;
  text-decoration: none;
  font-size: 10px;
  text-transform: uppercase;
}
.btn-downapp .app-btn.blu {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.25s linear;
  opacity: 0.8;
  padding: 5px;
}
.btn-downapp .app-btn.blu:hover {
  opacity: 1;
}
.btn-downapp .app-btn i {
  width: 20%;
  text-align: center;
  font-size: 28px;
  margin-right: 7px;
}
.btn-downapp .app-btn .big-txt {
  font-size: 17px;
  text-transform: capitalize;
  display: block;
  width: max-content;
}

#graphic {
  position: absolute;
  width: 100%;
  top: calc(10vh + 70px);
  z-index: 3;
}
#graphic .img-wrapper {
  height: 60vh;
  align-items: center;
  padding: 0;
}
#graphic .img {
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
#graphic .img img:first-child {
  z-index: 2;
  position: relative;
  width: 100%;
  object-fit: contain;
}
#graphic .img img:last-child {
  animation: 10s rotate;
  position: absolute;
  width: 100%;
  object-fit: contain;
}
#graphic .img img:last-child {
  animation: rotating 10s linear infinite;
}
#graphic .link-group {
  flex-direction: column;
}
#graphic .link-group .clip-down {
  clip-path: polygon(10% 0, 100% 0, 100% 50%, 90% 100%, 0 100%, 0% 50%);
}
#graphic .link-group .clip-up {
  clip-path: polygon(0 0, 90% 0%, 100% 50%, 100% 100%, 10% 100%, 0 50%);
}
#graphic .link-group .link-item {
  height: 25%;
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 2px;
  animation: 1.5s fadeInRight;
  position: relative;
}
#graphic .link-group .link-item a {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  color: #fff;
  transition: all 0.5s ease-in-out;
  background: linear-gradient(90deg, #2f41f9 15%, rgba(106, 129, 213, 0.7) 64%, rgba(255, 255, 255, 0.3) 95%, rgba(255, 255, 255, 0.22) 100%);
  transition: all 0.5s ease-in-out;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 5px;
  border: solid 1px;
  justify-content: center;
  text-align: center;
}
#graphic .link-group .link-item a span {
  width: 80%;
  display: block;
  text-align: center;
}
#graphic .link-group .link-item > span {
  position: absolute;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  align-items: center;
  backdrop-filter: blur(5px);
  border-radius: 5px;
  border: solid 1px #fff;
  justify-content: center;
  transition: all ease-in-out 0.2s;
}
#graphic .link-group .link-item:nth-child(1), #graphic .link-group .link-item:nth-child(4) {
  margin-left: -20%;
  margin-right: 20%;
}
#graphic .link-group .link-item:hover a {
  color: #2155ce;
  background: #fff;
  border: solid 2px #2155ce;
}
#graphic .link-group .link-item:hover > span {
  border: solid 3px #2155ce;
  transform: scale(1.03);
}
#graphic .link-group.link-group-left {
  align-items: flex-end;
}
#graphic .link-group.link-group-left .link-item {
  justify-content: flex-end;
  animation: 1.5s fadeInLeft;
}
#graphic .link-group.link-group-left .link-item a {
  background: linear-gradient(-90deg, #2f41f9 15%, rgba(106, 129, 213, 0.7) 64%, rgba(255, 255, 255, 0.3) 95%, rgba(255, 255, 255, 0.22) 100%);
  border-radius: 5px;
  border: solid 1px;
  justify-content: center;
}
#graphic .link-group.link-group-left .link-item > span {
  left: 0;
}
#graphic .link-group.link-group-left .link-item:nth-child(1), #graphic .link-group.link-group-left .link-item:nth-child(4) {
  margin-left: 20%;
  margin-right: -20%;
}
#graphic .link-group.link-group-left .link-item:hover a {
  background: #fff;
}

#graphic-mobile {
  position: absolute;
  width: 100%;
  top: 150px;
  z-index: 3;
  height: auto;
  padding-bottom: 50px;
}
#graphic-mobile .img-wrapper {
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}
#graphic-mobile .img {
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#graphic-mobile .img img:first-child {
  z-index: 2;
  position: relative;
  width: 100%;
  object-fit: contain;
}
#graphic-mobile .img img:last-child {
  animation: 10s rotate;
  position: absolute;
  width: 200px;
  object-fit: contain;
}
#graphic-mobile .img img:last-child {
  animation: rotating 10s linear infinite;
}
#graphic-mobile .link-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#graphic-mobile .link-group .clip-down {
  clip-path: polygon(10% 0, 100% 0, 100% 50%, 90% 100%, 0 100%, 0% 50%);
}
#graphic-mobile .link-group .clip-up {
  clip-path: polygon(0 0, 90% 0%, 100% 50%, 100% 100%, 10% 100%, 0 50%);
}
#graphic-mobile .link-group .link-item {
  height: 70px;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 35px;
  animation: 1.5s fadeInUp;
  position: relative;
  margin-bottom: 10px;
}
#graphic-mobile .link-group .link-item a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  color: #fff;
  transition: all 0.5s ease-in-out;
  background: linear-gradient(180deg, #2f41f9 15%, rgba(106, 129, 213, 0.7) 64%, rgba(255, 255, 255, 0.3) 95%, rgba(255, 255, 255, 0.22) 100%);
  transition: all 0.5s ease-in-out;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 35px;
  border: solid 1px;
  justify-content: center;
  text-align: center;
  padding: 15px 20px;
}
#graphic-mobile .link-group .link-item a span {
  width: 80%;
  display: block;
  text-align: center;
}
#graphic-mobile .link-group .link-item > span {
  position: absolute;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  align-items: center;
  backdrop-filter: blur(5px);
  border-radius: 35px;
  border: solid 1px #fff;
  justify-content: center;
  transition: all ease-in-out 0.2s;
}
#graphic-mobile .link-group .link-item:hover a {
  color: #2155ce;
  background: #fff;
  border: solid 2px #2155ce;
}
#graphic-mobile .link-group .link-item:hover > span {
  border: solid 3px #2155ce;
  transform: scale(1.03);
}
#graphic-mobile .link-group.link-group-left {
  align-items: flex-end;
}
#graphic-mobile .link-group.link-group-left .link-item {
  justify-content: flex-end;
  animation: 1.5s fadeInDown;
  /*&:nth-child(1), &:nth-child(4) {
      margin-left: 20%;
      margin-right: -20%;
  }*/
}
#graphic-mobile .link-group.link-group-left .link-item a {
  background: linear-gradient(0deg, #2f41f9 15%, rgba(106, 129, 213, 0.7) 64%, rgba(255, 255, 255, 0.3) 95%, rgba(255, 255, 255, 0.22) 100%);
  border-radius: 35px;
  border: solid 1px;
  justify-content: center;
}
#graphic-mobile .link-group.link-group-left .link-item > span {
  left: 0;
}
#graphic-mobile .link-group.link-group-left .link-item:hover a {
  background: #fff;
}

#graphic {
  display: none;
}

#graphic-mobile {
  display: block;
}

#media {
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  animation: fadeInUp 1.5s;
  line-height: 1rem;
  position: absolute;
  width: 80%;
  top: 820px;
  left: 10%;
  z-index: 2;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}
#media:hover {
  background: rgba(0, 0, 0, 0.5);
}
#media span, #media i {
  display: block;
}
#media i {
  color: red;
  font-size: 32px;
  margin-right: 10px;
}
#media span {
  color: #fff;
  margin-top: 3px;
}
#media span:first-child {
  font-weight: 900;
  font-size: 15px;
}
#media span:last-child {
  font-size: 13px;
}

#links {
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(0deg, rgba(220, 220, 220, 0.25) 0%, rgba(220, 220, 220, 0.25) 100%), url("../../images/master/section-background.png") white 50%;
}
#links .row {
  margin-top: 20px;
}
#links .title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #2155ce;
}
#links .link-group {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  padding-bottom: 30px;
  width: 100%;
  height: 100%;
  animation: 1.5s fadeInUp;
}
#links .link-group > p {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
#links .link-group > p span {
  display: block;
  width: fit-content;
  padding: 5px 20px;
  color: #2155ce;
  font-size: 1.2rem;
  font-weight: 700;
  background: aliceblue;
  border-radius: 30px;
}
#links a {
  color: #444;
  margin: 15px 0;
  transition: all 0.5s ease-in-out;
  padding: 5px 10px;
}
#links a p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 10px;
}
#links a:hover p {
  color: #2155ce;
}
#links img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

#dashboard {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fff;
}
#dashboard .row {
  margin-top: 50px;
}
#dashboard .title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #2155ce;
}
#dashboard .count-group {
  display: flex;
  flex-wrap: wrap;
}
#dashboard .count-group .count-container {
  padding: 20px;
  width: 25%;
  height: fit-content;
}
#dashboard .count-group .count-container .count {
  text-decoration: none;
  display: block;
  height: 100%;
  width: 100%;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  height: fit-content;
}
#dashboard .count-group .count-container .count a {
  color: #2155ce;
}
#dashboard .count-group .count-container .count a .count__image {
  padding: 0 20px;
  margin-top: 20px;
  display: flex;
}
#dashboard .count-group .count-container .count a .count__image .square {
  width: 50px;
  height: 50px;
  background-color: antiquewhite;
}
#dashboard .count-group .count-container .count a .count__image img {
  margin: auto;
  height: 100px;
  width: 150px;
  border-radius: 10px;
  border: 3px solid #fff;
}
#dashboard .count-group .count-container .count a .count__label {
  font-size: 15px;
  margin-top: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: calc(1rem + 3px);
  color: #475467;
  text-align: center;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  display: -webkit-box;
  padding: 0 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
#dashboard .count-group .count-container .count .count__label_small {
  margin-top: 0;
  font-style: normal;
  font-weight: 700;
  color: #2155ce;
  text-align: center;
  padding: 0 20px;
  padding-bottom: 50px;
}
#dashboard .count-group .count-container .count .count__label_small a {
  font-size: 30px;
  color: #475467;
}
#dashboard .block-container {
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}
#dashboard .block-container.block-media {
  position: relative;
  height: 100%;
  cursor: pointer;
}
#dashboard .block-container.block-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#dashboard .block-container.block-media > a {
  background: #2155ce;
  opacity: 0.8;
  position: absolute;
  height: 100%;
  width: 35%;
  right: 0;
  top: 0;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.5s;
}
#dashboard .block-container.block-media > a p {
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}
#dashboard .block-container.block-media:hover > a {
  width: 100%;
}
#dashboard .block-title {
  background-color: white;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#dashboard .block-title span:first-child {
  font-weight: 700;
  font-size: 24px;
  position: relative;
}
#dashboard .block-title span:first-child:after {
  content: "";
  height: 3px;
  width: 150px;
  background: #2155ce;
  position: absolute;
  bottom: 0;
  left: 10px;
}
#dashboard .block-title span:last-child {
  font-style: italic;
  color: #2155ce;
}
#dashboard .block-content {
  padding: 15px 30px;
  height: 700px;
  overflow-y: scroll;
  background-color: white;
}
#dashboard .block-content ul {
  padding: 0;
}
#dashboard .block-content ul li a {
  display: flex;
  border-bottom: solid 1px #ccc;
}
#dashboard .block-content ul li a:hover {
  cursor: pointer;
  color: #2155ce;
}
#dashboard .block-content ul li a img {
  height: 60px;
  width: auto;
  border-radius: 3px;
  margin: 10px 0px;
}
#dashboard .block-content ul li a div {
  font-weight: 500;
  padding: 10px;
  font-size: 13px;
  display: list-item;
  list-style: square;
}
#dashboard .block-content ul li a div p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#dashboard .block-content ul li a div span {
  font-size: 12px;
  color: #ccc;
  display: block;
  margin-bottom: 10px;
}
#dashboard .block-content ul li a div::marker {
  color: #355DAF !important;
}
#dashboard .block-content ul#kehoach img {
  height: 90px;
  width: 90px;
  object-fit: cover;
}
#dashboard .chart {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 10px;
}
#dashboard .chart .data-chart {
  height: 450px;
}
#dashboard .chart .data-chart svg {
  width: unset;
}
#dashboard .chart .data-table-title {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}
#dashboard .chart .data-table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  animation: 1.5s fadeInUp;
  /* @media screen and (max-width: 768px) {
       .table {
           display: block
       }
   }*/
  /*     @media screen and (max-width: 768px) {
                  .row {
                      display: block
                  }

                  .row.header {
                      padding: 0;
                      height: 0
                  }

                  .row.header .cell {
                      display: none
                  }

                  .row .cell:before {
                      //  font-size: 12px;
                      color: gray;
                      line-height: 1.2;
                      text-transform: uppercase;
                      font-weight: bold;
                      margin-bottom: 13px;
                      content: attr(data-title);
                      min-width: 98px;
                      display: block
                  }
              }
  */
  /*@media screen and (max-width: 768px) {
      .cell {
          display: block
      }
  }*/
  /* @media(max-width: 768px) {
       .row {
           border-bottom: 1px solid #f2f2f2;
           padding-bottom: 18px;
           padding-top: 30px;
           padding-right: 15px;
           margin: 0
       }

       .row .cell {
           border: none;
           padding-left: 30px;
           padding-top: 16px;
           padding-bottom: 16px
       }

       .row .cell:nth-child(1) {
           padding-left: 30px
       }

       .row .cell {
           //  font-size: 18px;
           color: #555;
           line-height: 1.2;
           font-weight: unset !important
       }

       .table, .row, .cell {
           width: 100% !important
       }
   }*/
}
#dashboard .chart .data-table .table {
  width: 100%;
  display: table;
  margin: 0;
}
#dashboard .chart .data-table .row {
  display: table-row;
  background: #fafdff;
}
#dashboard .chart .data-table .row:nth-child(2) .cell {
  font-weight: bold;
  color: #2155ce;
}
#dashboard .chart .data-table .row.header {
  color: #fff;
  background: #2f79f9;
}
#dashboard .chart .data-table .cell {
  display: table-cell;
}
#dashboard .chart .data-table .row .cell {
  color: #444;
  line-height: 1.2;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-bottom: 1px solid #f2f2f2;
  text-align: center;
}
#dashboard .chart .data-table .row .cell:nth-child(2) {
  text-align: left;
  font-weight: bold;
}
#dashboard .chart .data-table .row.header .cell {
  color: #fff;
  line-height: 1.2;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 12px;
  font-weight: bold;
}
#dashboard .chart .data-table .table, #dashboard .chart .data-table .row {
  width: 100% !important;
}
#dashboard .chart .data-table .row:hover {
  background-color: #ececff;
  cursor: pointer;
}
#dashboard .giamsat {
  width: 100%;
  background-color: white;
  border-radius: 10px;
  min-height: 200px;
}
#dashboard .giamsat .block-content {
  height: 220px;
}
#dashboard .giamsat .block-content .wg-table.table-tram > * {
  min-width: 521px;
}
#dashboard .giamsat .block-content .wg-table .table-title {
  justify-content: space-between;
}
#dashboard .giamsat .block-content .mb-14 {
  margin-bottom: 14px !important;
}
#dashboard .giamsat .block-content .gap20 {
  gap: 20px !important;
}
#dashboard .giamsat .block-content .gap18 {
  gap: 18px !important;
}
#dashboard .giamsat .block-content .flex {
  display: flex;
}
#dashboard .giamsat .block-content .items-center {
  align-items: center;
}
#dashboard .giamsat .block-content .justify-between {
  justify-content: space-between;
}
#dashboard .giamsat .block-content .flex-grow {
  flex-grow: 1;
}
#dashboard .giamsat .block-content .mt-4 {
  margin-top: 4px !important;
}
#dashboard .giamsat .block-content .gap10 {
  gap: 10px !important;
}
#dashboard .giamsat .block-content .body-title, #dashboard .giamsat .block-content .body-title-2 {
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
#dashboard .giamsat .block-content .wg-table.table-tram ul.table-title li:first-child {
  width: 220px;
}
#dashboard .giamsat .block-content .wg-table.table-tram ul.table-title li:nth-child(2) {
  width: 60px;
}
#dashboard .giamsat .block-content .wg-table.table-tram ul.table-title li:nth-child(3) {
  width: 115px;
}
#dashboard .giamsat .block-content .wg-table.table-tram ul.table-title li:nth-child(4) {
  width: 107px;
}
#dashboard .giamsat .block-content .tram-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: all 0.3s ease;
}
#dashboard .giamsat .block-content .tram-item .body-text {
  color: #111;
  font-weight: 400;
}
#dashboard .giamsat .block-content .tram-item .image {
  flex-shrink: 0;
}
#dashboard .giamsat .block-content .tram-item .image img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
#dashboard .giamsat .block-content .tram-item > .flex > div:first-child {
  width: 170px;
}
#dashboard .giamsat .block-content .tram-item > .flex > div:first-child .body-text {
  font-weight: 400;
}
#dashboard .giamsat .block-content .tram-item > .flex .body-text {
  font-weight: 400;
}
#dashboard .giamsat .block-content .tram-item > .flex .text-tiny {
  color: #95989d;
  font-size: 12px;
  line-height: 15px;
}
#dashboard .giamsat .block-content .tram-item > .flex .progress-level-bar {
  position: relative;
  display: block;
  border-radius: 14px;
  width: 70px;
  height: 4px;
  background: #ebfff1;
}
#dashboard .giamsat .block-content .tram-item > .flex .progress-level-bar span {
  width: 0;
  height: 100%;
  overflow: hidden;
  background: #22c55e;
  transition-property: width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
#dashboard .giamsat .block-content .tram-item > .flex .progress-level-bar.t1 {
  background: #ffe9e0;
}
#dashboard .giamsat .block-content .tram-item > .flex .progress-level-bar.t1 .progress-level-bar.t1 span {
  background: #ff5200;
}
#dashboard .giamsat .block-content .tram-item > .flex .progress-level-bar.t2 {
  background: #ecf5ff;
}
#dashboard .giamsat .block-content .tram-item > .flex .progress-level-bar.t2 span {
  background: #cbd5e1;
}
#dashboard .giamsat .block-content .tram-item > .flex .progress-level-bar.t3 {
  background: #fffce6;
}
#dashboard .giamsat .block-content .tram-item > .flex .progress-level-bar.t3 .progress-level-bar.t3 span {
  background: #ecd71f;
}

#news {
  padding: 30px 0;
}
#news .row {
  z-index: 2;
}
#news .title {
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #2155ce;
}
#news #tinmoi li {
  margin: 20px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: flex;
  border-radius: 10px;
  background: #fff;
}
#news #tinmoi li i {
  color: red;
  margin-top: 7px;
  margin-right: 10px;
}
#news #tinmoi li > div {
  display: flex;
  flex-direction: column;
}
#news #tinmoi li a {
  color: #021639;
}
#news #tinmoi li .ttitle a.nhomtin {
  font-size: 1.1rem;
  font-weight: 600;
}
#news #tinmoi li p {
  font-size: 0.9rem;
  color: #666;
  text-align: right;
  margin: 0;
}

#page-intro .section-1 {
  position: relative;
  height: 400px;
  overflow: hidden;
  padding-top: 75px;
}
#page-intro .section-1 p {
  z-index: 1;
  color: #fff;
  font-size: 16px;
  margin-left: 0;
  width: 60%;
  font-weight: 500;
  line-height: 30px;
}
#page-intro .section-1 p.small-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}
#page-intro .section-1 p.big-title {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 900;
}
#page-intro .section-1 img {
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 400px;
}
#page-intro .section-2 {
  padding: 50px 0;
  background: #fff;
}
#page-intro .section-2 p {
  font-size: 20px;
  color: #fff;
}
#page-intro .section-3 {
  padding: 50px 0;
  background-image: url("../../images/master/section-background.png");
  background-size: contain;
}
#page-intro .section-3 span {
  display: flex;
  justify-content: center;
  align-content: center;
  height: 50px;
  width: 50px;
  background: aliceblue;
  color: #2155ce;
  font-size: 30px;
  font-weight: bold;
}
#page-intro .section-3 .block-item {
  display: flex;
  padding: 50px;
  margin: 10px 0;
  border-radius: 10px;
  background: #f4f5f6;
}
#page-intro .section-3 .block-item img {
  height: 50px;
  width: 50px;
}
#page-intro .section-3 .block-item div p {
  margin-left: 0;
  padding-left: 20px;
  font-size: 18px;
}
#page-intro .section-3 .block-item div p:first-child {
  font-weight: bold;
  color: #2155ce;
  font-size: 24px;
}

/******** RESPONSIVE **********/
@media only screen and (max-width: 576px) {
  #links .row {
    gap: 10px;
  }
  #links .link-group {
    margin-top: 10px;
  }
  #links .link-group .d-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
  }
  #links .link-group .d-flex p {
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) {
  #img-carousel {
    height: 850px;
  }
  #img-carousel .carousel-inner .carousel-item {
    height: 850px;
  }
  .btn-downapp {
    top: 750px;
  }
  .btn-downapp .social-btns {
    margin-right: 10%;
  }
  #media {
    width: 100%;
    top: 750px;
    left: 100px;
    z-index: 2;
    width: fit-content;
    clip-path: polygon(0 0, 90% 0%, 100% 50%, 100% 100%, 10% 100%, 0 50%);
  }
  #media i {
    font-size: 3vw;
  }
  #media span:first-child {
    font-size: 1vw;
  }
  #media span:last-child {
    font-size: 0.8vw;
  }
}
@media only screen and (min-width: 768px) {
  #links .link-group > .d-flex {
    flex-direction: column;
  }
}
@media only screen and (min-width: 992px) {
  #img-carousel {
    height: 100vh;
  }
  #img-carousel .carousel-inner .carousel-item {
    height: 100vh;
  }
  .btn-downapp {
    top: 85vh;
  }
  #media {
    top: 85vh;
  }
  #graphic {
    display: block;
  }
  #graphic-mobile {
    display: none;
  }
  #links .link-group > .d-flex {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1200px) {
  #img-carousel {
    height: 120vh;
  }
  #img-carousel .carousel-inner .carousel-item {
    height: 120vh;
  }
  .btn-downapp {
    top: 110vh;
  }
  #media {
    top: 110vh;
  }
  #graphic .img-wrapper {
    height: 80vh;
  }
  #graphic .link-group .link-item {
    margin: 20px 0;
    width: 80%;
  }
  #graphic .link-group .link-item a {
    font-size: 3vh;
  }
}
