#content > .ast-container {
  max-width: 100%;
  padding: 0;
}

#primary {
  margin: 0 !important;
}

section > .ast-container {
  display: block !important;
}
/* Banner Section > */
.banner-section {
  padding: 40px 0px;
}
.banner-title-subtitle-wrapper {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .banner-title-subtitle-wrapper {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: unset;
  }
}
.banner-title-subtitle-wrapper .banner-title {
  font-size: 4rem;
  color: var(--site-gray);
  font-weight: 300;
  text-transform: capitalize;
  text-align: center;
  align-self: start;
  border-bottom: 1px solid var(--site-gray);
}
@media (max-width: 768px) {
  .banner-title-subtitle-wrapper .banner-title {
    font-size: 3rem;
  }
}
.banner-title-subtitle-wrapper .banner-summary {
  font-size: 16px;
  line-height: 1.3;
  color: var(--site-gray);
  text-align: center;
  width: 60%;
}
@media (max-width: 768px) {
  .banner-title-subtitle-wrapper .banner-summary {
    width: 100%;
    font-size: 16px;
    line-height: 1.3;
    color: var(--site-gray);
    font-weight:400;
    text-align: left;
  }
}
/* Banner Section > */
/* ---------- < Video background with logo >--------------------- */
.bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 80vh;
  background: url(http://sangramstudio.com/wp-content/uploads/2023/12/cropped-Screenshot-2023-12-19-at-22.03.34.png)
    no-repeat center center/cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .bg-video-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 40vh;
    background: url(http://sangramstudio.com/wp-content/uploads/2023/12/cropped-Screenshot-2023-12-19-at-22.03.34.png)
      no-repeat center center/cover;
    background-repeat: no-repeat;
  }
}
video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  video {
    /* object-fit: contain; */
  }
}
.overlay {
  width: 100%;
  height: 80vh;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(
    25deg,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 50%
  );
  background-size: 3px 3px;
  z-index: 2;
}
.overlay-content {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}

.overlay-logo {
  max-width: 400px;
  width: 100%;
  height: 120px;
  opacity: 0.2;
  transform: rotate(-8deg);
  -webkit-transform: rotate(-8deg);
  -moz-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  -o-transform: rotate(-8deg);
}

.overlay-title {
  color: #ffffff;
}

/* ---------- < Video background with logo />--------------------- */
/* Journal Cards Section */

.latest-blogs-row {
  row-gap: 2rem;
  display: flex;
  justify-content: center;
}
.blogs-ajax-search-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blogs-ajax-search-bar-wrapper .search-icon {
  font-size: 2rem;
  font-weight: 100;
}
.blogs-ajax-search-bar-wrapper input {
  width: 80%;
  margin: 0rem 0rem 1.5rem 0rem;
  border: none;
  outline: none;
  border-bottom: 1px solid #000000;
  background-color: inherit;
}
@media (max-width: 768px) {
  .blogs-ajax-search-bar-wrapper input {
    width: 90%;
  }
}
.blogs-ajax-search-bar-wrapper input:focus {
  background-color: inherit;
  outline: none;
  border: none;
  border-bottom: 1px solid #000000;
}
.blogs-ajax-search-bar-wrapper .search-icon-wrapper .search-icon {
  width: 100%;
  height: 30px;
  object-fit: contain;
}
.blog-card {
  padding: 3rem 2rem;
  height: 350px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  cursor: pointer;
  background-size: cover !important;
  background-position: center center !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.blog-card .read-more-btn-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.read-more-btn {
  align-self: end;
}
.blog-card .read-more-btn-icon-wrapper .arrow-right-icon {
  font-size: 1.5rem;
  transform: translateX("-45deg");
  -webkit-transform: translateX("-45deg");
  -moz-transform: translateX("-45deg");
  -ms-transform: translateX("-45deg");
  -o-transform: translateX("-45deg");
}
.blog-title-summary-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.blog-card:hover {
  background: var(--color-black) !important;
}
.blog-card:hover .blog-title {
  opacity: 0;
}
.blog-date {
  color: var(--color-white);
}
h3.blog-title {
  font-size: 1.8rem;
  transform: translateX(0);
  color: var(--color-white);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
  opacity: 1;
}
.blog-excerpt {
  font-size: 16px;
  color: var(--color-white);
  transform: translateY(0);
  opacity: 1;
}
.blog-card:hover .blog-excerpt {
  opacity: 0;
  transition: all 0.4s ease;
}
.blog-cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  opacity: 0;
}
.blog-cta:hover {
  text-decoration-color: var(--color-accent-dark);
}
.blog-card:hover .blog-cta {
  opacity: 1;
}
/* test */
