* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  font-family: var(--poppins);
}
:root {
  /*-------- colors ---------*/
  --maroon: #7b1113;
  --yellow: #fdb91a;
  --dark: #111111;
  --dark-gray: #3f3f3f;
  --light-gray: #9b9b9b;
  --light: #f1f1f1;
  /*-------- colors ---------*/

  /*-------- fonts ---------*/
  --poppins: "Poppins", sans-serif;
  /*-------- fonts ---------*/
}
/*-------- global ---------*/
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--dark);
}
h4 {
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
}
hr {
  width: 90%;
  display: flex;
  align-items: center;
  margin: auto;
}
button.cta-btn {
  border: none;
  border-radius: 2rem;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}
/*-------- global ---------*/

/*-------- main-section - banner ---------*/
.site-banner .site-banner-background {
  background: url("../assets/background-picture-1.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  height: 70vh;
}
/*-------- main-section - banner ---------*/

/*-------- main-section - tabs ---------*/
main .container h1 {
  padding-top: 3rem;
  padding-left: 4.7rem;
}
main .site-content {
  display: grid;
  grid-template-columns: 70% 30%;
  width: 90%;
  padding-bottom: 3rem;
  margin: auto;
}
main .site-content .tabs {
  position: relative;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  width: 98%;
  min-height: 100vh;
  padding: 3rem 0;
  overflow: hidden;
}
main .site-content .tabs .tab-header {
  height: 60px;
  display: flex;
  align-items: center;
  margin: auto;
}
main .site-content .tabs .tab-header > div {
  width: calc(100% / 4);
  text-align: left;
  color: #888;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
}
main .site-content .tabs .tab-header > div > i {
  display: block;
  margin-bottom: 5px;
}
main .site-content .tabs .tab-header > div.active {
  color: var(--maroon);
}
main .site-content .tabs .tab-indicator {
  position: relative;
  width: calc(100% / 5);
  height: 3px;
  background: var(--maroon);
  left: 0px;
  bottom: 0.2rem;
  border-radius: 5px;
  transition: all 300ms ease-in-out;
}
main .site-content .tabs .tab-body {
  overflow-y: auto;
  position: relative;
  height: calc(100% - 60px);
  padding: 10px 5px;
}
main .site-content .tabs .tab-body > div {
  position: absolute;
  top: -500%;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 300ms ease-in-out 0ms, transform 300ms ease-in-out 0ms;
}
main .site-content .tabs .tab-body > div.active {
  top: 0%;
  opacity: 1;
  transform: scale(1);
}
/*-------- main-section - tabs ---------*/

/*-------- main-section - tab - content - about OSG ---------*/
main .site-content .tabs .tab-body .active {
  padding-top: 3rem;
  width: 95%;
}
main .site-content .tabs .tab-body .active .container .about .about-OSG h3 {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.about-OSG ul {
  list-style: disc outside none;
  text-align: justify;
  overflow-x: visible;
  margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
  padding: 0vh 0vh 0vh 3vw; /*top right bottom left*/
}

.about-OSG li {
  overflow-x: visible;
}

.about-OSG ol {
  text-align: justify;
  overflow-x: visible;
  margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
  padding: 0vh 0vh 0vh 3vw; /*top right bottom left*/
}

main .site-content .tabs .tab-body .active .container .about .about-OSG p {
  text-align: justify;
  margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
}

main .site-content .tabs .tab-body .active .container .about .about-OSG a {
  display: flex;
  flex-direction: column;
  color: var(--maroon);
  text-decoration: underline 1px solid var(--maroon);
  font-weight: bold;
}
main
  .site-content
  .tabs
  .tab-body
  .active
  .container
  .about
  .about-OSG
  a:hover {
  color: var(--yellow);
  text-decoration: underline 1px solid var(--yellow);
}
/*-------- main-section - tab - content - services---------*/
main .site-content .tabs .tab-body div:nth-child(2) {
  padding-top: 2rem;
  width: 95%;
}
main .site-content .tabs .tab-body div:nth-child(2) .services h3 {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
main .site-content .tabs .tab-body div:nth-child(2) .services h4 {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
/*-------- main-section - tab - content - services---------*/

/*-------- main-section - tab - content - scholarships ---------*/
main .site-content .tabs .tab-body div:nth-child(3) .scholarship-menu h3 {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

main .site-content .tabs .tab-body div:nth-child(3) .scholarship-menu p {
  text-align: justify;
  margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
}

.scholarship-menu ul {
  list-style: disc outside none;
  text-align: justify;
  overflow-x: visible;
  margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
  padding: 0vh 0vh 0vh 3vw; /*top right bottom left*/
}

.scholarship-menu li {
  overflow-x: visible;
}

.scholarship-menu ol {
  text-align: justify;
  overflow-x: visible;
  margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
  padding: 0vh 0vh 0vh 3vw; /*top right bottom left*/
}

/*-------- main-section - tab - content - scholarships---------*/

/*-------- main-section - tab - content - org charts ---------*/
main .site-content .tabs .tab-body div:nth-child(4) .org-chart {
  width: 90%;
}
main .site-content .tabs .tab-body div:nth-child(4) .org-chart h3 {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
main .site-content .tabs .tab-body div:nth-child(4) .org-chart .org-charts img {
  transition: all 1s ease;
  padding-top: 3rem;
  width: 120vh;
}
/*-------- main-section - tab - content - org charts ---------*/

/*-------- main-section - side ---------*/

main .category h4 {
  padding-left: 1rem;
  font-weight: bold;
  color: var(--maroon);
}
main .site-content > .sidebar {
  width: 100%;
  height: 100vh;
  margin-top: 3rem;
  padding-top: 1rem;
  padding-left: 1rem;
  background-color: var(--light);
  border-radius: 2rem;
}
main .site-content > .sidebar .social-links {
  margin-top: 2rem;
}
main .site-content > .sidebar .social-links .links {
  padding-top: 1.5rem;
  padding-left: 1.1rem;
}
main .site-content > .sidebar .social-links .links a:hover {
  opacity: 0.5;
}
main .site-content > .sidebar .social-links .links img {
  opacity: 0.7;
  width: 45px;
}
main .site-content > .sidebar .contact-us-list .contact-us-items {
  padding: 0.5rem 1rem;
  margin: 0.8rem 0;
  border-radius: 3rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
main .site-content > .sidebar .contact-us-list {
  margin-top: 2rem;
  border-radius: 2rem;
}
main .site-content > .sidebar .contact-us-list .contact-us-items span {
  overflow: hidden;
  color: var(--dark);
}
main .site-content > .sidebar .contact-us-list .contact-us-items span:hover {
  color: var(--maroon);
}
main
  .site-content
  > .sidebar
  .contact-us-list
  .contact-us-items
  .class
  .address {
  width: 95%;
}
/*-------- main-section - side ---------*/
.sidebar-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3vh;
}

.unit-logo {
  width: 10vw;
}

/*--------------student services--------------------*/
.student-services-container {
  padding: 3rem 0;
  padding-left: 2rem;
  width: 100%;
}

.services-container p {
  text-align: justify;
  margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
}

.services-container ul {
  list-style: disc outside none;
  text-align: justify;
  overflow-x: visible;
  margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
  padding: 0vh 0vh 0vh 3vw; /*top right bottom left*/
}

.services-container li {
  overflow-x: visible;
}

.services-container ol {
  text-align: justify;
  overflow-x: visible;
  margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
  padding: 0vh 0vh 0vh 3vw; /*top right bottom left*/
}

.section-title {
  padding-left: 3rem;
}
.student-services-img {
  height: 85vh;
  width: 100%;
  background-size: 100%;
}
.student-services-container .ss-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: auto;
}
.student-services-post .student-services-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 8px;
  height: 60vh;
  width: 80%;
  margin: 3rem 2rem;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
}
.student-services-content .student-services-title {
  padding: 2rem 0;
}
.student-services-content .student-services-title h3 {
  font-size: 17px;
}
.student-services-content .student-services-title span {
  padding-bottom: 3rem;
}
.student-services-content .cta-ss {
  color: white;
  padding: 0.7rem 2rem;
  background: #7b1113;
  margin: 0.5rem;
}
.student-services-content .cta-ss:hover {
  color: #fdb91a;
  padding: 0.7rem 2rem;
  background-color: transparent;
  border: 2px solid #fdb91a;
  margin: 0.5rem;
}
.student-services-content span {
  display: block;
}
.owl-dots {
  text-align: center !important;
  margin-top: 40px;
}
.owl-dot {
  height: 20px;
  width: 24px;
  margin: 0 5px;
  outline: none;
  border-radius: 14px;
  transition: all 0.3s ease;
}
.owl-dot.active,
.owl-dot:hover {
  background: #7b1113 !important;
}
/*--------------student services--------------------*/

/*-------- responsive - 750px ---------*/
@media only screen and (max-width: 750px) {
  main .site-banner .site-banner-background {
    height: 45vh;
  }
  main .container h1 {
    width: 90%;
    font-size: 1.3rem;
    padding-left: 3.5rem;
  }
  main .site-content {
    display: flex;
    flex-direction: column;
    padding-top: 40rem;
    width: 90%;
    padding-left: 2rem;
  }
  main .site-content .tabs {
    height: 170vh;
  }
  main .site-content .tabs .tab-header > div h4 {
    font-size: 12px;
  }
  main .site-content .tabs .tab-body .active .container .about .about-OSG h3 {
    font-size: 1.1rem;
  }
  main .site-content .tabs .tab-body .active .container .about .about-OSG p {
    text-align: left;
  }
  main .site-content .tabs .tab-body div:nth-child(2) .services h3 {
    font-size: 1.1rem;
  }
  main .site-content .tabs .tab-body div:nth-child(2) .services p {
    text-align: left;
  }
  main .site-content .tabs .tab-body div:nth-child(2) .services h4 {
    font-size: 1rem;
  }

  main .site-content .tabs .tab-body div:nth-child(4) .org-chart h3 {
    font-size: 1.1rem;
  }
  main .site-content .tabs .tab-body div:nth-child(3) .scholarship-menu h3 {
    font-size: 1.1rem;
  }
  main
    .site-content
    .tabs
    .tab-body
    div:nth-child(3)
    .scholarship-menu
    .scholarships {
    font-size: 0.9rem;
  }
  main
    .site-content
    .tabs
    .tab-body
    div:nth-child(4)
    .org-chart
    .org-charts
    img {
    width: 50vh;
  }
  main .site-content > .sidebar {
    height: 85vh;
    width: 85%;
    position: absolute;
    right: 7%;
    bottom: -277%;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
  }
  main .site-content > .sidebar .category .contact-us-list {
    margin-top: 3rem;
  }
}
/*-------- responsive - 414px ---------*/
@media only screen and (max-width: 415px) {
  main .site-banner .site-banner-background {
    height: 35vh;
  }
  main .site-content {
    padding-top: 28rem;
    width: 90%;
    padding-left: 2rem;
    padding-bottom: 12rem;
  }
  main .site-content .tabs {
    height: 120vh;
  }
  main .site-content .tabs .tab-header > div h4 {
    font-size: 10px;
  }
  main .site-content > .sidebar {
    height: 80vh;
    width: 85%;
    position: absolute;
    right: 7%;
    bottom: -213% !important;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
  }
  main .site-content > .sidebar .category .contact-us-list {
    margin-top: 3rem;
  }
  .student-services-container {
    padding-left: 1.5rem;
  }
  .section-title {
    padding-left: 2.3rem;
  }
  .student-services-img {
    height: 75vh;
    width: 100%;
    background-size: 100%;
  }
  .student-services-post .student-services-content {
    height: 57vh;
    width: 80%;
  }
}
/*-------- responsive - 414px ---------*/

/*-------- responsive - 411px ---------*/
@media only screen and (max-width: 412px) {
  main .site-content > .sidebar {
    height: 75vh;
    width: 85%;
    position: absolute;
    right: 7%;
    bottom: -205% !important;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
  }
}
/*-------- responsive - 411px ---------*/

/*-------- responsive - 375px ---------*/
@media only screen and (max-height: 668px) {
  main .site-banner .site-banner-background {
    height: 35vh;
  }
  main .site-content {
    padding-top: 28rem;
    width: 90%;
    padding-left: 2rem;
    padding-bottom: 12rem;
  }
  main .site-content .tabs {
    height: 120vh;
  }
  main .site-content .tabs .tab-header > div h4 {
    font-size: 10px;
  }
  main .site-content > .sidebar {
    height: 80vh;
    width: 85%;
    position: absolute;
    right: 7%;
    bottom: -224% !important;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
  }
  main .site-content > .sidebar .category .contact-us-list {
    margin-top: 3rem;
  }
  .student-services-container {
    padding-left: 1rem;
  }
  .section-title {
    padding-left: 2.3rem;
  }
  .student-services-img {
    height: 80vh;
    width: 100%;
    background-size: 100%;
  }
  .student-services-post .student-services-content {
    height: 60vh;
    width: 80%;
  }
}
/*-------- responsive - 375px ---------*/

/*-------- responsive - 768px ---------*/
@media only screen and (min-height: 1024px) {
  main .site-banner .site-banner-background {
    height: 45vh;
  }
  main .container h1 {
    font-size: 1.3rem;
    padding-left: 4.5rem;
  }
  main .site-content {
    display: flex;
    flex-direction: column;
    padding-top: 33rem;
    padding-bottom: 6rem;
    width: 90%;
    padding-left: 2rem;
  }
  main .site-content .tabs {
    height: 100vh;
  }
  main .site-content .tabs .tab-header > div h4 {
    font-size: 12px;
  }
  main .site-content .tabs .tab-body .active .container .about .about-OSG h3 {
    font-size: 1.1rem;
  }
  main .site-content .tabs .tab-body .active .container .about .about-OSG p {
    text-align: left;
  }

  .about-OSG ul {
    list-style: disc outside none;
    text-align: justify;
    overflow-x: visible;
    margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
    padding: 0vh 0vh 0vh 3vw; /*top right bottom left*/
  }

  .about-OSG li {
    overflow-x: visible;
  }

  .about-OSG ol {
    text-align: justify;
    overflow-x: visible;
    margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
    padding: 0vh 0vh 0vh 3vw; /*top right bottom left*/
  }

  main .site-content .tabs .tab-body div:nth-child(2) .services-menu h3 {
    font-size: 1.1rem;
  }
  main .site-content .tabs .tab-body div:nth-child(3) .org-chart h3 {
    font-size: 1.1rem;
  }
  main
    .site-content
    .tabs
    .tab-body
    div:nth-child(2)
    .services-menu
    .activities-container
    .activities
    .activities-content
    .activities-image
    img {
    width: 50vh;
  }
  main
    .site-content
    .tabs
    .tab-body
    div:nth-child(3)
    .org-chart
    .org-charts
    img {
    width: 50vh;
  }
  main .site-content > .sidebar {
    height: 55vh;
    width: 85%;
    position: absolute;
    right: 7%;
    bottom: -170%;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
  }
  main .site-content > .sidebar .category .contact-us-list {
    margin-top: 3rem;
  }
  .student-services-container {
    padding-left: 1.5rem;
  }
  .student-services-container .section-title {
    padding-left: 3rem;
  }
  .student-services-img {
    height: 60vh;
    background-size: 100%;
  }
  .student-services-post .student-services-content {
    height: 45vh;
    width: 80%;
  }
}
/*-------- responsive - 768px ---------*/

/*-------- responsive - 640px - height ---------*/
@media only screen and (max-height: 641px) {
  main .site-content > .sidebar {
    height: 80vh;
    width: 85%;
    position: absolute;
    right: 7%;
    bottom: -230% !important;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
  }
}
/*-------- responsive - 640px - height ---------*/

/*-------- responsive - 1366px - height ---------*/
@media only screen and (min-height: 1366px) {
  main .site-banner .site-banner-background {
    height: 45vh;
  }
  main .container h1 {
    font-size: 1.3rem;
    padding-left: 4.5rem;
  }
  main .site-content {
    display: flex;
    flex-direction: column;
    padding-top: 45rem;
    padding-bottom: 7rem;
    width: 90%;
    padding-left: 2rem;
  }
  main .site-content .tabs {
    height: 100vh;
  }
  main .site-content .tabs .tab-header > div h4 {
    font-size: 12px;
  }
  main .site-content .tabs .tab-body .active .container .about .about-OSG h3 {
    font-size: 1.1rem;
  }
  main .site-content .tabs .tab-body .active .container .about .about-OSG p {
    text-align: left;
  }

  .about-OSG ul {
    list-style: disc outside none;
    text-align: justify;
    overflow-x: visible;
    margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
    padding: 0vh 0vh 0vh 3vw; /*top right bottom left*/
  }

  .about-OSG li {
    overflow-x: visible;
  }

  .about-OSG ol {
    text-align: justify;
    overflow-x: visible;
    margin: 3vh 0vh 3vh 0vh; /*top right bottom left*/
    padding: 0vh 0vh 0vh 3vw; /*top right bottom left*/
  }

  main .site-content .tabs .tab-body div:nth-child(2) .services-menu h3 {
    font-size: 1.1rem;
  }
  main .site-content .tabs .tab-body div:nth-child(3) .org-chart h3 {
    font-size: 1.1rem;
  }
  main
    .site-content
    .tabs
    .tab-body
    div:nth-child(2)
    .services-menu
    .activities-container
    .activities
    .activities-content
    .activities-image
    img {
    width: 50vh;
  }
  main
    .site-content
    .tabs
    .tab-body
    div:nth-child(3)
    .org-chart
    .org-charts
    img {
    width: 50vh;
  }
  main .site-content > .sidebar {
    height: 55vh;
    width: 85%;
    position: absolute;
    right: 7%;
    bottom: -125%;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
  }
  main .site-content > .sidebar .category .contact-us-list {
    margin-top: 3rem;
  }
  .student-services-container {
    padding-left: 1.5rem;
  }
  .student-services-container .section-title {
    padding-left: 3rem;
  }
  .student-services-img {
    height: 45vh;
    background-size: 100%;
  }
  .student-services-post .student-services-content {
    height: 35vh;
    width: 80%;
  }
}
/*-------- responsive - 1366px - height ---------*/
