/* TEST Boxes */
.tb {
  border: #000000 1px solid;
}

.tw {
  border: #ffffff 1px solid;
}

/* ********************************************** */


/* General */
body {
  margin: 0px;
  background-color: #e0e0e0;
  font-family: Poppins;
  
  /* color:#393939; */
  /* font-weight: 300; */
}

a {text-decoration: none;}

/* h1 {
  font-weight: 300;
} */

/* h2,h3,h4,h5,h6 {
  font-weight: 300;
} */

/* p {
  font-weight: 100;
} */

/* header {
  background-color: #5d27bb;
} */

header a {
  text-decoration: none;
  color: inherit;
}

.material-symbols-outlined {
  vertical-align: middle;
  font-family: 'Material Icons Outlined';
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

.row {
  display: flex;
  flex-direction: row nowrap;
}

.column {
  display: flex;
  flex-direction: column nowrap;
  justify-content: center;
  align-items: center;
}

.item {
  flex: 0 1 auto;
  text-align: center;
  align-self: center;
}

.cntr {
  text-align: center;
}

.hide-b {
  display: none;
}

/* ****************************************** */



/* HEADER START */
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  border-bottom: 1px solid #31313132;
  background-color: #e8e8e8;
}

.logo-container {
  /* flex:10%; */
  padding: 20px 1px;
  background-color: #5d27bb;
  position: sticky;
  top: 0;
  left: 0;
  /* width:50px; */
}

.logo-container:hover,
.logo-container:focus {
  cursor: pointer;
}

.logo {
  width: auto;
  height: 50px;
  filter:invert();
}

.review-header {
  flex: 80%;
  text-align: left;
  margin: 0px 20px;
  /* background-color: #5d27bb; */
}

.review-header-title {
  color: #5d27bb;
  /* color: #ffffff; */
  font-size: 1.5em;
}

.review-header-title-sm {
  color: #ffffff;
  font-size: 0.8em;
}

.see-whats-new {
  /* color: #5d27bb; */
  cursor: pointer;
}

.login {
  flex: 10%;
}

.login-btn {
  background-color: #5d27bb;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  text-align: center;
  /* text-decoration: none; */
  /* padding: 8px 20px; */
  margin: 0px 12px;
  font-size: 10px;
  white-space: nowrap;
}

.login-btn:hover {
  /* box-shadow: 0px 0px 5px 2px #b5b5b5; */
  background-color: #401a82;
}

.menu {
  padding: 0px 20px;
  color: #ffffff;
}

.menu-btn {
  cursor: pointer;
  margin: 0px 10px;
  font-size: 24px;
}

.menu-header {
  background-color: #5d27bb;
}

.top-nav {
  display: flex;
  flex-flow: column nowrap;
}

.top-nav-bar {
  flex: 0 1 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0px 30px;
}

.top-nav-item {
  position: relative;
  flex: 0 1 auto;
  font-size: 1em;
  padding: 0px 10px;
  margin: 0px 20px;
  text-align: left;
  justify-content: left;
  align-content: baseline;
}

.top-nav-item:hover .top-nav-item-name,
.top-nav-item:focus .top-nav-item-name {
  /* text-decoration: underline; */
  transition: all 0.3s ease-in-out;
}

.top-nav-item:hover .top-nav-menu {
  opacity: 1;
  visibility: visible;
}

.top-nav-item-name-container {
  display: flex;
  flex-flow: row nowrap;
}

.top-nav-item-name {
  flex: 0 1 auto;
}

.top-nav-item-icon {
  flex: 0 1 auto;
  margin: auto;
}

.top-nav-menu {
  flex: 0 1 auto;
  position: absolute;
  border: 1px solid #3939391e;
  border-radius: 8px;
  box-shadow: 0px 3px 10px 1px #00000028;
  background-color: #e0e0e0;
  overflow: hidden;
  width: max-content;
  transform: translate(-2%, -5%);
  text-align: left;
  list-style: none;
  padding-left: 0px;
  padding: 5px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.top-nav-menu-item {
  /* background-color: #5d27bb37; */
  /* color: #ffffff; */
  /* background-color: #0760ae52; */
  color: #313131;
  padding: 10px 25px;
  display: block;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 5px;
}

.top-nav-menu-item:hover,
.top-nav-menu-item:focus {
  background-color: #401a82;
  color: #ffffff;
}

.search-container {
  display: flex;
  /* flex-flow: row nowrap; */
  /* justify-content: center; */
  align-items: center;
  /* text-align: center; */
  /* margin: 0px; */
  position: relative;
}

.search-icon-container {
  /* position: relative;
  flex: 0 1 auto; */
  /* text-align: center;  */
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.search-icon {
  margin: 0;
  padding: 0;
  /* display: block; */
  /* margin: auto; */
  /* position: absolute;
  top:0;
  bottom:0; */
}

.search-bar-container {
  /* flex: 0 1 auto; */
  display: flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  transition: width 0.6s ease-in-out;
}

.search-bar {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  outline: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
/* HEADER END */



/* FOOTER START */
footer {
  border-top: 1px solid #00000020;
  /* flex: 0 1 5%; */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* background-color: #5d27bb; */
  /* color: #ffffff; */
  padding: 20px 0px;
  color: #393939;
}

footer a {
  text-decoration: none;
  color: inherit;
}

.container-footer {
  display: flex;
  width: 80%;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  text-align: center;
  margin: 25px 0px;
}

.ft-item {
  flex: 0 1 auto;
  display:flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  /* padding: 20px 10px; */
}

.logo-btm {
  position: relative;
  /* transform: scale(50%); */
}

/* .logo-btm-txt {
  font-size: 1rem;
} */

.support-agent {
  transform:scale(200%);
  padding:20px;
}

.footer-contact {
  text-align: left;
}

.copy-right {
  font-size: 12px;
  text-decoration: none;
  color: inherit;
}

/* FOOTER END */



/* SIDEBAR START */
.overlay {
  display: none;
  height: 100%;
  width: 100%;
  max-height: 100%;
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(7px);
  background-color: #292929e1;
}

.sidebar {
  height: 100%;
  max-height: 100%;
  width: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: #393939;
  overflow-x: hidden;
  transition: 0.5s;
  box-shadow: 0px 0px 2px 0.5px #00000050;
}

.accordion {
  background-color: #393939;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  white-space: nowrap;
}

.accordion:hover {
  background-color: #292929;
}

.badge {
  z-index: 4;
  background-color: #5d27bb;
  color: #ffffff;
  padding: 4px 8px;
  font-size: 8px;
  text-align: center;
  border-radius: 15px;
  float: right;
}

.active-title {
  margin: 50px;
}

.panel {
  display: flex;
  flex-flow: column nowrap;
  color: #313131;
  /* padding: 0px 18px; */
  /* background-color: #8888881d; */
  /* background-color: #cccccc; */
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel-mod,
.panel-doc,
.link {
  flex: 1 1 auto;
  padding: 15px 25px;
  white-space: nowrap;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
}

.panel-mod:hover,
.panel-mod:focus,
.panel-doc:hover,
.panel-doc:focus,
.link:hover,
.link:focus {
  color: white;
  background-color: #676767;
  /* transition: 0.2s; */
}

.panel-mod.active,
.panel-doc.active {
  color: white;
  background-color: #401a82;
  transition: 0.4s;
}

/* SIDEBAR END */



/* Variable Contewnt container style */
/* Homescreen */
.home-content {
  padding: 15px;

}

.home-text {
  /* width: 80%; */
  border-radius: 8px;
  background-color: #ffffff;
  padding: 30px 20px;
  /* margin: 20px 40px; */
  width:90%;
 justify-self: center;
  box-shadow:0px 2px 6px rgba(0, 0, 0, 0.1);
}

.container {
  display: flex;
  flex-flow: column nowrap;
  /* height: 80vh; */
  justify-content: space-around;
}

 .container-title {
  flex: 0 1 auto;
  text-align: center;
  position: sticky;
}
/*
.container-content {
  flex: 1 1 80%;
  text-align: center;
  align-content: center;
  justify-content: center;
}

.scroll-cont {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.scroll-cont-item {
  flex: 0 1 auto;
  background-color: #1c002f07;
  width: 90%;
  margin: 20px 0px;
  border-radius: 5px;
}

.scroll-title {
  font-size: medium;
}

.scroll-selection {
  display: flex;
  flex-flow: row nowrap;
  margin: 50px;
  overflow-x: scroll;
  align-items: center;
}

.scroll-selection-item {
  flex: 0 1 auto;
  justify-content: center;
}

.ssi-cont {
  display: flex;
  flex-flow: column nowrap;
  border: 0.5px solid #00000005;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  scroll-behavior: smooth;
  margin: 20px;
  width: 250px;
  height: 300px;
  cursor: pointer;
}

.ssi-cont:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.ssi-pic {
  flex: 1 1 auto;
  height: auto;
  width: auto;
  background-blend-mode: darken;
  background-size: cover;
  background-repeat: no-repeat;
}

.ssi-pic-mod {
  background-image: url("../images/kari-shea-1SAnrIxw5OY-unsplash.jpg");
}

.ssi-pic-doc {
  background-image: url("../images/sarah-b--VUqzJByyWo-unsplash.jpg");
}

.ssi-title {
  flex: 0 1 auto;
  background-color: #e0e0e0;
  padding: 50px 5px;
  overflow-y: hidden;
  font-size: 12px;
} */

.container-content {
  flex: 1 1 80%;
  min-height: 66.9dvh;
  text-align: center;
  align-content: center;
  justify-content: center;
  padding: 30px 20px;
  background-color: #f9f9f9;
  /* border-radius: 8px; */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  /* max-width: 1200px; */
  /* margin: 20px auto; */
}

.scroll-cont {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 25px;
}

.scroll-cont-item {
  flex: 0 1 auto;
  background: linear-gradient(to right, #ffffff, #f4f4f4);
  width: 90%;
  padding: 20px;
  margin: 20px 0px;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.scroll-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #401a82;
  /* margin-bottom: 10px; */
}

.scroll-selection {
  display: flex;
  flex-flow: row nowrap;
  overflow-x: auto;
  align-items: center;
  gap: 15px;
  /* padding-bottom: 10px; */
  padding: 15px 5px;
  scrollbar-width: thin;
  scrollbar-color: #401a82 #e0e0e0;
}

.scroll-selection::-webkit-scrollbar {
  height: 8px;
}

.scroll-selection::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 8px;
}

.scroll-selection::-webkit-scrollbar-thumb {
  background: #401a82;
  border-radius: 8px;
}

.scroll-selection-item {
  flex: 0 1 auto;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.scroll-selection-item:hover {
  transform: scale(1.08);
}

.ssi-cont {
  display: flex;
  flex-flow: column nowrap;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  scroll-behavior: smooth;
  margin: 10px;
  padding: 5px;
  width: 240px;
  min-height: 250px;
  cursor: pointer;
  /* background-color: #ffffff; */
  background-color: #f1f1f1;
  /* background-color: #393939; */
  /* color: #f1f1f1; */
  transition: all 0.3s ease-in-out;
}

.ssi-cont:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
  /* z-index: 1; */
}

.ssi-pic {
  border-radius: 5px;
  flex: 0 1 auto;
  height: 150px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.ssi-pic-mod {
  background-image: url("../images/kari-shea-1SAnrIxw5OY-unsplash.jpg");
}

.ssi-pic-doc {
  background-image: url("../images/sarah-b--VUqzJByyWo-unsplash.jpg");
}

.ssi-title {
  flex: 0 1 auto;
  /* background-color: #f1f1f1; */
  padding: 12px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  /* color: #333333; */
  /* border-top: 1px solid rgba(0, 0, 0, 0.08); */
}

/* FAQ */
/* .faq-section {
  margin: 0px 200px;
} */

.faq-catergory-title {
  width:100%;
  padding:25px;
  color: #494949;
}

.faq-categories {
  display: flex;
  flex-flow: row wrap;
  align-content: center;
  justify-content: center;
  margin: 0px 25px;
  padding: 35px 70px;
  background-color:#ffffff;
  border-radius: 8px;
}

.clear-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0px;
}

.clear-btn {
  align-self: center;
  width: fit-content;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #31313132;
  color: #393939;
  padding: 10px 20px;
}

.clear-btn:hover, .clear-btn:focus  {
  background-color: #393939;
  color: #ffffff;
}

.category {
  flex: 0 1 auto;
  padding: 30px;
  background-color: #5d27bb;
  color: #ffffff;
  margin: 10px 5px;
  border-radius: 8px;
  font-size: 1rem;
  height: 90px;
  width: 90px;
  align-content: center;
  display: flex;
  flex-flow: column nowrap;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.category:hover,
.category:focus,
.category.active {
  background-color: #401a82;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  cursor: pointer;
}

.category-icon {
  flex: 0 1 auto;
}

.category-name {
  flex: 0 1 auto;
}

.faq-content {
  /* display: none; */
  /* transition: 5s; */
  background-color: #ffffff;
  margin: 25px;
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 3px;
}

.faq {
  margin:0px;
}

.faq-q {
  text-align: left;
  padding: 25px;
  margin: unset;
  /* margin: 20px 0px; */
}

.faq-q:hover {
  color: #ffffff;
  background-color: #401a82;
}

.faq-q.active {
  color: #ffffff;
  background-color: #0a4fe5;
  /* width:fit-content; */
  border-radius: 8px;
  margin:3px 10px;
  transition:all 0.2s ease-in-out;
}

.faq-q:after {
  content: '\02795';
  font-size: 13px;
  /* color: #ffffff; */
  float: right;
  margin-left: 5px;
}

.faq-q:hover:after {
  color: #ffffff;
}

.faq-q.active:after {
  content: "\2796";
  /* Unicode character for "minus" sign (-) */
  color: #ffffff;
}

.faq-a {
  text-align: left;
  margin-right: 5dvw;
  margin-left: 5dvw;
  overflow: hidden;
  max-height: 0px;
  transition: 0.4s;
  background-color: #67676722;
  border-radius: 10px;
  /* white-space: nowrap; */
}

.faq-a.active {
  height: auto;
}

/*  */
iframe {
  width: 99.85%;
  /* height:100%; */
  height: 66dvh;
  border: 1px solid #31313132;
}

video {
  width: 74%;
  height: auto;
  border-radius: 5px;
}

/* SEARCH RESULTS */
.search-results-container {
  /* height:100%; */
  width: 95%;
  /* max-width: 1200px; */
  background-color: #0760ae52;
  flex: 95%;
  display:flex;
  margin: 20px auto;
  padding: 20px;
  /* background: #ffffff; */
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.query-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* width: 100%; */
  width: 50%;
  margin: 20px 0px;
  padding: 20px;
  background-color: #ffffff;
  /* color: #ffffff; */
  border: 1px solid #401a82;
  border-radius: 10px;
  /* border-radius: 8px; */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.queryText {
  font-size: 1.5rem;
  font-weight: 600;
  color: #401a82;
  margin-bottom: 10px;
}

.results-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr ; /* add for 1fr another column */
  gap: 15px;
  padding: 10px 0;
}

.result-card {
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #00000020;
  text-align: left;
  padding: 15px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

/* results badge in top right corner */
.result-category {
  position: absolute;
  top:0;
  right:0;
  background-color: #401a82;
  width: fit-content;
  font-size: 0.8rem;
  /* font-weight: bold; */
  color: #ffffff;
  padding: 8px 20px;
  margin-bottom: 10px;
  border-radius: 0px 8px 0px 8px;
}

.pagination-controls {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  margin: 20px;
}

.pagination-button {
  background-color: #393939;
  color: white;
  border: none;
  min-width:100px;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1rem;
  margin: 0 5px;
  cursor: pointer;
  opacity:0.8;
  transition: background 0.2s ease-in-out;
}

.pagination-button:hover {
  background: #292929;
  opacity: 1;
}

.pagination-button:disabled {
  background: #cccccc;
  cursor: not-allowed;
}

.paging {
  color:#ffffff;
}

@media screen and (max-width: 1000px) {
  .hide-s {
    display: none;
  }

  .hide-b {
    display: block;
  }

  header {
    background-color: #5d27bb;
  }

  .results-list {
    grid-template-columns: 1fr;
  }

  .container-footer {
    flex-flow: column wrap;
  }

  .footer-contact {
    text-align: center;
  }
}