@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
.country-section {
  display: flex;
  gap: 40px;
  position: relative;
  align-items: start;
}
.country-section .all-countries {
  width: 300px;
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}
.country-section .all-countries a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.country-section .all-countries a.active {
  background-color: #008aff;
  color: #fff;
}
.country-section .all-countries a i {
  font-size: 0.7rem;
}
.country-section .all-countries a:not(.active):hover {
  background-color: rgba(0, 138, 255, 0.1882352941);
}
.country-section .country-content {
  flex: 1;
}
.country-section .country-content .country-media video {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(10px 10px 4px rgba(0, 0, 0, 0.7));
  border-radius: 10px;
}
.country-section .country-content .country-info {
  margin-top: 30px;
}
.country-section .country-content .country-info h2 {
  position: relative;
  display: inline;
}
.country-section .country-content .country-info h2::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  left: 0;
  background-image: radial-gradient(#008aff 25%, #fff 80%);
  bottom: 0;
  transition: 0.3s;
}
.country-section .country-content .country-info h2:hover::after {
  background-image: radial-gradient(#008aff 15%, #fff 70%);
}
.country-section .country-content .country-info p {
  text-align: justify;
  margin-top: 10px;
}

.myAccordian {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.myAccordian .singleState {
  width: 300px;
  border: 1px solid #eee;
  border-radius: 8px;
  height: 45px;
  overflow: hidden;
  transition: height 0.3s;
}
.myAccordian .singleState .provName {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ddd;
  cursor: pointer;
  gap: 8px;
}
.myAccordian .singleState .provName i {
  font-size: 0.8rem;
}
.myAccordian .singleState .provName:hover {
  background-color: rgba(0, 138, 255, 0.1882352941);
}
.myAccordian .singleState .provUnivs {
  padding: 10px 15px;
  line-height: 30px;
  list-style-position: outside;
}
.myAccordian .singleState .provUnivs li {
  display: list-item;
  margin-left: 20px;
  list-style: disc;
  list-style-position: outside;
}
.myAccordian .singleState.open {
  height: auto;
}

.theme-dark .singleState {
  border: 1px solid #333 !important;
}
.theme-dark .provName {
  background: #222 !important;
}/*# sourceMappingURL=new.css.map */