@font-face {
  font-family: "Roboto";
  /* Name of the font */
  src: url("../fonts/Roboto-VariableFont_wdth\,wght.ttf") format("truetype");
  /* Path to the font file */
}

@font-face {
  font-family: "Outfit";
  /* Name of the font */
  src: url("../fonts/Outfit.ttf") format("truetype");
  /* Path to the font file */
}

body {
  font-family: "Roboto";
  margin: 0;
  padding: 0;
}

:root {
  --blue-color: #214fbe;
  --white-color: #ffffff;
  --orange-color: #ef7f1a;
  --pink-color: #f73260;
  --green-color: #3bce42;
  --bg-color: #fff6ed;
  --red-color: #b12d2d;
  --black-color: #000000;
  --text-color: #5c5c63;
  --bg-2-color: ##f3f3f3;
}

.navbar {
  background: var(--white-color);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0px 1px 10px #9b9b9b;
}

.navbar ul li {
  gap: 10px;
}

.nav-heading h5 {
  font-family: "Roboto";
  font-weight: 600;
  font-size: 21px;
  line-height: 24.61px;
  letter-spacing: 0%;
}

.nav-heading p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 12px;
  line-height: 14.06px;
  letter-spacing: 0%;
  margin-bottom: 0;
}

.navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center !important;
  gap: 20px;
}

.nav-heading {
  align-items: center;
}

.banner-heading {
  font-weight: 300;
  font-size: 96px;
  line-height: 88px;
  color: var(--white-color);
}

.banner-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: var(--white-color);
}

.hero-banner img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-banner .carousel-caption {
  position: relative;
  color: var(--white-color);
  width: 48%;
  height: 100%;
  background: #0000009e;
  text-align: left;
  left: 0;
  padding: 100px 74px;
  margin-bottom: -20px;
}

.hero-banner h1 span {
  font-weight: 600;
}

.carousel-indicators {
  position: absolute;
  left: -180px;
  right: auto;
}

.carousel-indicators [data-bs-target] {
  height: 10px;
  width: 10px;
  margin: 8px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: var(--orange-color);
}

.highlight {
  padding: 100px 0;
}

.Admission {
  /* background: var(--orange-color); */
  background: var(--blue-color);

  padding: 40px;
  align-items: center;
}

.Circular {
  background: var(--blue-color);
  padding: 40px;
}

.Newsletter {
  background: var(--pink-color);
  padding: 40px;
}

.Plan {
  background: var(--green-color);
  padding: 38px;
}

.highlight .br {
  border-left: 2px solid var(--pink-color);
  margin-right: 20px;
  height: 100%;
}

.highlight .right p {
  padding-left: 20px;
  height: 60px;
}

.highlight .right {
  overflow-y: auto;
  scroll-behavior: smooth;
}

.highlight .left h2 {
  color: var(--white-color);
  font-weight: 500;
  font-size: 24px;
  line-height: 28.13px;
  letter-spacing: 0%;
  text-align: center;
  padding-top: 20px;
}

.highlight .left a {
  text-decoration: none !important;
  color: var(--white-color) !important;
}

.marquee-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.marquee-container a {
  text-decoration: none;
  color: var(--red-color);
}

.marquee-container hr {
  margin: 20px 0;
  border: 1px dashed !important;
  width: 100%;
}

.marquee-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  animation: scrollUp 8s linear infinite;
}

/* .marquee-content:hover {
  animation: paused;
} */
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-100%);
  }
}

.about {
  background: var(--bg-color);
  padding: 100px 0;
}

.about .left {
  display: flex;
  align-items: center;
}

.about-heading {
  padding-left: 40px;
}

.about h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
}

.about h1 {
  font-weight: 700;
  font-size: 72px;
  line-height: 84.38px;
  letter-spacing: 0%;
}

.about p {
  font-weight: 600;
  font-size: 32px;
  line-height: 37.5px;
  letter-spacing: 0%;
}

.about .right p {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: 0%;
}

.about .right a {
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: 0%;
  text-decoration: none;
  color: var(--orange-color);
}

.about .fa-play {
  color: var(--black-color);
  padding-right: 10px;
}

.mission {
  padding: 100px 0;
}

.heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 34px;
  letter-spacing: 0%;
  border-bottom: 2px solid var(--orange-color);
  width: fit-content;
  margin-bottom: 24px;
}

.sub-heading {
  font-weight: 500;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0%;
  padding-bottom: 30px;
}

.text {
  font-weight: 300;
  font-size: 18px;
  line-height: 34px;
}

.vision {
  background: var(--bg-color);
  padding: 100px 0;
}

.wcu {
  padding: 100px 0;
}

.card-head-1 {
  background: var(--green-color);
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
}

.card-head-2 {
  background: var(--pink-color);
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
}

.card-head-3 {
  background: var(--blue-color);
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
}

.card-head-4 {
  background: var(--orange-color);
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
}

.bg-1 {
  background: rgba(59, 206, 66, 0.2);
  padding: 30px;
  border-radius: 10px;
}

.bg-2 {
  background: rgba(247, 50, 96, 0.2);
  padding: 30px;
  border-radius: 10px;
}

.bg-3 {
  background: rgba(33, 79, 190, 0.2);
  padding: 30px;
  border-radius: 10px;
}

.bg-4 {
  background: rgba(239, 127, 26, 0.2);
  padding: 30px;
  border-radius: 10px;
}

.card-head h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 23.44px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white-color);
  padding-top: 10px;
}

.card-4 {
  padding-top: 10px !important;
}

.card-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  padding: 16px;
}

.card {
  border: none;
}

.gallery img {
  width: 100%;
  min-height: 320px;
}

.tablet-pannel {
  padding: 68px 0;
}

.tablet-panel .nav-tabs {
  border-bottom: none;
  border-radius: none;
  --bs-nav-tabs-border-radius: none;
  padding: 40px 0;
}

.tablet-panel .nav-item .active {
  border: 2px solid var(--orange-color) !important;
}

.tablet-panel .nav-item {
  margin: 0 16px;
}

.tablet-panel .nav-link {
  color: var(--black-color);
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  text-align: center;
}

.gallery {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.slider {
  display: flex;
  white-space: nowrap;
  animation: slideLeft 10s linear infinite;
  width: 100%;
}

.slider img {
  height: 250px;
  /* Adjust as needed */
  width: 288px;
  margin: 0;
  padding: 0;
  margin-right: 20px;
  cursor: pointer;
}

@keyframes slideLeft {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

.modal {
  width: 100%;
}

.modal-dialog {
  max-width: 80%;
  /* Adjust modal width */
}

.modal-content {
  text-align: center;
  /* Center the image */
  background: transparent;
  /* Remove default white background */
  border: none;
  /* Remove border */
  width: 50%;
  display: flex;
  margin: auto;
}

.modal-content img {
  width: 100%;
  padding: 0;
  margin: 0;

  object-fit: contain;
  /* Keep aspect ratio */
}

#lightbox .modal-dialog {
  max-width: 90vw;
  /* Reduce width */
  max-height: 90vh;
  /* Reduce height */
  margin: auto;
  /* Center the modal */
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox .modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider:hover {
  animation-play-state: paused;
}

.school {
  background: var(--bg-color);
  padding: 100px 0;
}

.school p {
  font-weight: 500;
  font-size: 24px;
  line-height: 28.13px;
}

.school h1 {
  font-weight: 900;
  font-size: 47px;
  line-height: 55.08px;
  padding: 10px 0;
}

.card-1 h1 {
  color: var(--green-color);
}

.card-2 h1 {
  color: var(--pink-color);
}

.card-3 h1 {
  color: var(--blue-color);
  margin-top: 10px;
}

.card-4 h1 {
  color: var(--orange-color);
}

.testimonial {
  padding: 74px 0;
}

.testimonial .card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
}

.testimonial .card-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0%;
}

.card-2-text {
  padding-bottom: 33px;
}

.testimonial .card-body {
  padding: 25px;
}

.testimonial hr {
  border: 1px solid #000000;
}

.footer {
  background: var(--bg-color);
}

.footer-left-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 23px;
  padding: 20px 0;
}

.footer-left h6 {
  font-weight: 600;
  font-size: 21px;
  line-height: 24.61px;
  padding: 0px 0;
}

.footer-left span {
  font-weight: 400;
  font-size: 12px;
  line-height: 14.06px;
}

.social-media a {
  text-decoration: none;
  display: flex;
}

.fa-brands {
  display: flex !important;
  align-items: center;
  background-color: var(--red-color);
  /* Red background */
  color: white;
  /* White icon */
  padding: 5px;
  height: 24px;
  width: 24px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.left-top {
  padding-top: 30px;
  font-weight: 600;
  font-size: 21px;
  line-height: 24.61px;
}

.footer-right span {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  padding: 10px 0;
}

.footer-right h5 {
  padding-bottom: 20px;
}

.footer-right {
  padding: 0 50px;
}

.footer-left {
  padding-right: 50px;
}

.footer-left img:hover {
  cursor: pointer;
}

.copyright {
  background: var(--red-color);
}

.copyright h5 {
  color: var(--white-color);
  font-weight: 400;
  font-size: 13px;
  line-height: 16.41px;
  letter-spacing: 0%;
  align-items: center;
  padding: 20px 0;
}

.copyright a {
  text-decoration: none;
  color: var(--white-color);
}

.copyright .right h5 {
  text-align: right;
}

.principal {
  padding: 74px 0;
}

.principal h5 {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0%;
}

.p-text-1 {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: 0%;
  margin-bottom: 0;
  color: var(--text-color);
}

.p-text-2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0%;
  margin-bottom: 0;
  color: var(--text-color);
}

.name-heading {
  color: var(--orange-color);
}

.principal .center {
  padding: 0 54px;
}

.principal-text {
  background: #e7e9ed;
  padding: 20px;
}

.principal-text h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: 0%;
}

.principal-text span {
  font-weight: 400;
  font-size: 18px;
  line-height: 21.09px;
  letter-spacing: 0%;
}

.report {
  background: var(--bg-color);
  padding: 40px 0;
}

.report-heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0%;
  color: var(--red-color);
}

.report-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: 0%;
}

.information {
  padding: 40px 0;
}

.information hr {
  margin: 32px 0;
}

ul {
  margin-bottom: 0;
  padding-left: 20px;
}

ul li {
  padding-top: 3px;
  color: var(--text-color);
}

.information .br {
  border: 1px solid red;
  margin-right: 40px;
  padding-right: 40px;
}

.center-line {
  /* width: 1px; */
  border-left: 1px solid var(--black-color);
  /* background-color: var(--black-color); */
  height: 100%;
  min-height: 150px;
  /* Adjust as needed */
  /* margin-left: -40px; */
}

.information span {
  font-weight: 500;
  color: var(--black-color);
}

hr {
  border: 1px solid var(--black-color);
}

.staff-section .br {
  padding: 32px 0;
  border-right: 1px solid var(--black-color);
  margin-top: 10px;
}

.staff-section h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}

.staff-section h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.name-title {
  padding-left: 24px;
}

.staff-section h6 {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  padding-left: 15px;
}

.staff-section .contact-section {
  padding-left: 30px;
}

.staff-section hr {
  margin: 10px 0;
  border-bottom: 1px solid var(--black-color);
}

.staff-section .right {
  padding-left: 24px;
}

.staff-section {
  padding: 80px 0;
}

.teacher h2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--text-color);
}

.teacher h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.teacher {
  padding: 40px 0;
}

.teacher-title {
  padding: 24px 0;
}

.commitee-heading {
  font-weight: 500;
  font-size: 24px;
  line-height: 28.13px;
  letter-spacing: 0%;
}

.books {
  padding: 40px 0;
}

.sidebar {
  border-right: 1px solid #ccc;
  padding: 10px;
}

.sidebar h2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 21.09px;
  letter-spacing: 0%;
  border-bottom: 1px solid var(--text-color);
  padding-bottom: 15px;
}

.sidebar h5 {
  border-bottom: 1px solid var(--text-color);
  padding-bottom: 15px;
}

.books .section h2 span {
  font-weight: 400;
  font-size: 14px;
  line-height: 16.41px;
  color: var(--red-color);
  padding-right: 10px;
}

.books .section h2 {
  font-weight: 400;
  font-size: 14px;
  line-height: 16.41px;
}

.sidebar a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.sidebar a i {
  padding-left: 100px;
}

.standard.active {
  color: var(--red-color);
  border-bottom: 1px solid var(--red-color) !important;
}

.standard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 10px 0;
  width: 90%;
  color: var(--text-color);
  cursor: pointer;
  margin-bottom: 5px;
  border: none !important;
  border-bottom: 1px dashed var(--text-color) !important;
  font-weight: 500;
  font-size: 18px !important;
  line-height: 21.09px;
}

.icon {
  font-size: 18px;
  font-weight: bold;
}

.content {
  flex: 1;
  padding-left: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  margin: 10px 0 !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 18.75px;
  letter-spacing: 0%;
  padding: 20px 20px 20px 0;
  border-bottom: 2px solid var(--text-color);
  margin-bottom: 50px;
  text-align: left;
}

td:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  /* Adjust height from the top */
  height: 50%;
  /* Control the short border height */
  width: 1px;
  background-color: #ccc;
  /* Gray border */
}

td {
  font-weight: 400;
  font-size: 15px;
  line-height: 20.58px;
  margin: 10px 0;
  padding: 5px 0;
  border-bottom: 1px solid var(--text-color);
  color: var(--text-color);
  margin-top: 50px;
}

.total td {
  font-weight: 800;
}

.section {
  display: none;
  /* Hide all sections initially */
  padding-left: 50px;
}

.section.active {
  display: block;
  /* Show active section */
}

.th-bottom {
  border-top: 2px solid var(--text-color);
  margin-top: 80px;
  border-bottom: 2px solid var(--text-color);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 380px;
  background-image: linear-gradient(rgba(8, 0, 58, 0.7), rgba(8, 0, 58, 0.7)),
    url("../images/Banner-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white-color);
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  max-width: 80%;
}

.hero-content h1 {
  font-weight: 300;
  font-size: 96px;
  line-height: 88px;
  letter-spacing: 0px;
}

.hero-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 33px;
  letter-spacing: 0px;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Ensure it disappears when not hovered */
.dropdown-menu {
  display: none;
}

.subjects {
  display: none;
}

.subjects:first-of-type {
  display: block;
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.standard.open .toggle-icon {
  transform: rotate(45deg);
}

.standard-section {
  padding: 40px 0;
}

.admission-section ul {
  margin: 20px;
}

.content-area {
  padding-left: 70px;
}

.content-area #selectedStd,
.year {
  color: var(--red-color);
  line-height: 30px;
  font-weight: 700;
}

.active-subject {
  color: var(--red-color);
}

.content-area .fas {
  padding: 0 10px;
  font-size: 14px;
}

.content-area h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 16.41px;
}

.act {
  padding: 100px 0;
  text-align: center;
}

.pasco {
  font-size: 50px;
  font-weight: 900;
}

.general {
  padding: 50px 0;
}

.generel-table a {
  text-decoration: none;
  color: var(--text-color);
}

.admission-section {
  padding: 100px 0;
}

.admission-section ul li {
  list-style: circle;
}

.comitee td {
  border: 1px solid;
}

.comitee th {
  border: 1px solid var(--text-color);
  text-align: center;
}

.act .right {
  background: var(--bg-2-color);
  background-color: #f3f3f3;
  padding: 40px 24px;
}

.act .right h5 {
  font-weight: 500;
  font-size: 32px;
  line-height: 37.5px;
  letter-spacing: 0%;
  text-align: center;
  padding: 30px 0;
}

.act .right span {
  font-weight: 500;
  font-size: 18px;
  line-height: 21.09px;
  letter-spacing: 0%;
  text-align: center;
  padding-bottom: 30px !important;
  margin-bottom: 30px;
}

.contact .right {
  background: var(--bg-color);
}

.contact {
  padding: 86px 0;
}

.contact-c {
  padding-top: 24px;
}

.contact hr {
  border-bottom: 1px solid var(--text-color);
  margin: 24px 0;
}

.contact h1 {
  font-weight: 400;
  font-size: 48px;
  line-height: 56.25px;
  letter-spacing: -2%;
}

.social-media-link {
  color: var(--red-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 23.44px;
  padding-bottom: 24px !important;
}

.contact-heading {
  font-weight: 800 !important;
}

.contact .left .fa-brands {
  height: 32px;
  width: 32px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.contact.left p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  padding-bottom: 24px;
}

.contact .left span {
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--red-color);
}

.contact .left h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 23.44px;
  letter-spacing: 0%;
}

.contact .left img {
  padding-right: 30px;
}

.contact .right {
  margin-left: 108px;
  padding: 48px;
}

.contact .right p {
  padding-bottom: 32px;
}

.contact input,
select,
textarea {
  height: 62px;
  border-radius: 0;
  border: none;
  outline: none;
}

.contact select {
  height: 62px;
  color: var(--text-color);
  border-radius: 0;
  border: none;
  outline: none;
}

.select option {
  color: var(--text-color);
}

.contact textarea {
  height: 132px;
  border: none;
}

.contact button {
  background: var(--red-color);
  color: var(--white-color);
  border: none;
  outline: none;
  margin-top: 32px !important;
  font-size: 20px;
  line-height: 27px;
  width: 150px;
  height: 59px;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 8px;
  align-items: center;
}

.subjects:hover {
  display: none;
  cursor: pointer;
}

.admission-contact {
  padding: 84px 0;
}

.contact-heading-1 {
  padding-bottom: 50px;
}

.contact-heading-2 {
  padding-top: 30px;
  margin-left: -40px !important;
}

.contact-heading-3 {
  background: var(--bg-color);
  padding: 40px;
}

input::placeholder {
  font-size: 14px;
}

textarea::placeholder {
  font-size: 14px;
}

.contact h6 {
  text-align: left;
}

.right-1 {
  margin-left: 0 !important;
}

.full-gallery {
  padding: 84px 0;
}

.full-gallery .gallery {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0; */
}

.full-gallery .gallery img {
  /* width: 400px; */
  height: 300px;
  border-radius: 8px;
  cursor: pointer;
  margin: 10px;
  border-radius: 0;
}

.full-gallery .fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1111;
}

.full-gallery .fullscreen img {
  display: flex;
  margin: 50px 0 0 0;
  height: 80%;
  width: 80%;
}

.full-gallery iframe {
  height: 300px;
  width: 400px;
  padding: 10px;
}

.infrastructure {
  padding: 50px 0;
}

.infrastructure .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

table li::marker {
  margin-right: 0 !important;
  /* Adjust spacing between marker and text */
}

textarea:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

textarea {
  padding: 10px;
  color: #212529;
}

select option {
  font-size: 1rem;
  color: #212529;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  border: 0;
  border-radius: 0;
  box-shadow: 0px 3px 5px #ccc;
}

.copyright h5 {
  margin-bottom: 0;
}

.terms-policy a {
  border-right: 1px solid #fff;
  padding: 0 5px;
  font-size: 13px;
}

.terms-policy a:last-child {
  border-right: inherit;
}